importar base de datos

#file.choose()
base_de_datos <- read.csv("/Users/fedevaldes/Desktop/Datos Arca Continental Original.csv")

Entender la base de datos

#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
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" ...
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 vienen como caracter, tenemos que cambiarlo.

Convertir tipos de variables

# install.packages("janitor")
library(janitor)
## 
## Attaching package: 'janitor'
## The following objects are masked from 'package:stats':
## 
##     chisq.test, fisher.test
# install.packages("tidyverse")
library(tidyverse)
## ── Attaching packages
## ───────────────────────────────────────
## tidyverse 1.3.2 ──
## ✔ ggplot2 3.3.6     ✔ purrr   0.3.4
## ✔ tibble  3.1.8     ✔ stringr 1.4.1
## ✔ tidyr   1.2.1     ✔ forcats 0.5.2
## ✔ readr   2.1.2     
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
base_de_datos$Cliente <- as.integer(base_de_datos$Cliente)
## Warning: NAs introduced by coercion
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 introduced by coercion
base_de_datos$Febrero <- as.integer(base_de_datos$Febrero)
## Warning: NAs introduced by coercion
base_de_datos$Marzo <- as.integer(base_de_datos$Marzo)
## Warning: NAs introduced by coercion
base_de_datos$Abril <- as.integer(base_de_datos$Abril)
## Warning: NAs introduced by coercion
base_de_datos$Mayo <- as.integer(base_de_datos$Mayo)
## Warning: NAs introduced by coercion
base_de_datos$Junio <- as.integer(base_de_datos$Junio)
## Warning: NAs introduced by coercion
base_de_datos$Julio <- as.integer(base_de_datos$Julio)
## Warning: NAs introduced by coercion
base_de_datos$Agosto <- as.integer(base_de_datos$Agosto)
## Warning: NAs introduced by coercion
base_de_datos$Septiembre <- as.integer(base_de_datos$Septiembre)
## Warning: NAs introduced by coercion
base_de_datos$Octubre <- as.integer(base_de_datos$Octubre)
## Warning: NAs introduced by coercion
base_de_datos$Noviembre <- as.integer(base_de_datos$Noviembre)
## Warning: NAs introduced by coercion
base_de_datos$Diciembre <- as.integer(base_de_datos$Diciembre)
## Warning: NAs introduced by coercion
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 Tendencias Centrales

# Las medidas de tendenvias 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)))]
}

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

Función ggplot2

#install.packages("ggplot2")
library(ggplot2)
ggplot(data=base_de_datos, aes(CEDI,Enero)) + geom_point()
## Warning: Removed 233552 rows containing missing values (geom_point).

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               : int  NA NA NA NA NA NA 1 NA 3 NA ...
##  $ Febrero             : int  NA 2 NA NA NA NA NA 1 3 NA ...
##  $ Marzo               : int  NA 8 3 NA NA 1 NA NA 4 NA ...
##  $ Abril               : int  NA 4 6 NA NA NA NA 1 4 NA ...
##  $ Mayo                : int  NA 4 3 NA NA NA 0 NA 4 NA ...
##  $ Junio               : int  NA 2 3 NA NA NA NA 1 4 0 ...
##  $ Julio               : int  NA 2 3 NA NA NA 0 NA 4 NA ...
##  $ Agosto              : int  NA 2 3 NA NA NA NA 1 7 NA ...
##  $ Septiembre          : int  NA 2 3 NA NA NA NA 1 4 NA ...
##  $ Octubre             : int  NA 2 3 NA NA NA 0 NA 3 NA ...
##  $ Noviembre           : int  NA 4 3 NA 0 NA NA NA 1 NA ...
##  $ Diciembre           : int  1 2 3 1 NA NA NA NA 3 NA ...

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 Filtrar

filter(base_de_datos, Tamaño.Cte.Industria=="Micro")
##         ID  Año  Territorio Sub.Territorio           CEDI Cliente Nombre
## 1    58078 2016 Guadalajara      Huentitán Suc. Huentitán   72668  CESAR
## 2    58079 2016 Guadalajara      Huentitán Suc. Huentitán   72668  CESAR
## 3    58080 2016 Guadalajara      Huentitán Suc. Huentitán   72668  CESAR
## 4    58081 2016 Guadalajara      Huentitán Suc. Huentitán   72668  CESAR
## 5    58082 2016 Guadalajara      Huentitán Suc. Huentitán   72668  CESAR
## 6    58083 2016 Guadalajara      Huentitán Suc. Huentitán   72668  CESAR
## 7    58084 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 8    58085 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 9    58086 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 10   58087 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 11   58088 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 12   58089 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 13   58090 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 14   58091 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 15   58092 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 16   58093 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 17   58094 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 18   58095 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 19   58096 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 20   58097 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 21   58098 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 22   58099 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 23   58100 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 24   58101 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 25   58102 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 26   58103 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 27   58104 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 28   58105 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 29   58106 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 30   58107 2016 Guadalajara      Huentitán Suc. Huentitán   72672  SUSAN
## 31   58108 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 32   58109 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 33   58110 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 34   58111 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 35   58112 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 36   58113 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 37   58114 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 38   58115 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 39   58116 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 40   58117 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 41   58118 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 42   58119 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 43   58120 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 44   58121 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 45   58122 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 46   58123 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 47   58124 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 48   58125 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 49   58126 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 50   58127 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 51   58128 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 52   58129 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 53   58130 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 54   58131 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 55   58132 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 56   58133 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 57   58134 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 58   58135 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 59   58136 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 60   58137 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 61   58138 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 62   58139 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 63   58140 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 64   58141 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 65   58142 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 66   58143 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 67   58144 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 68   58145 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 69   58146 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 70   58147 2016 Guadalajara      Huentitán Suc. Huentitán   72707  GUADA
## 71   58148 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 72   58149 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 73   58150 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 74   58151 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 75   58152 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 76   58153 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 77   58154 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 78   58155 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 79   58156 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 80   58157 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 81   58158 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 82   58159 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 83   58160 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 84   58161 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 85   58162 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 86   58163 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 87   58164 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 88   58165 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 89   58166 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 90   58167 2016 Guadalajara      Huentitán Suc. Huentitán   72720  GENER
## 91   58168 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 92   58169 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 93   58170 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 94   58171 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 95   58172 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 96   58173 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 97   58174 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 98   58175 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 99   58176 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 100  58177 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 101  58178 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 102  58179 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 103  58180 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 104  58181 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 105  58182 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 106  58183 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 107  58184 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 108  58185 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 109  58186 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 110  58187 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 111  58188 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 112  58189 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 113  58190 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 114  58191 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 115  58192 2016 Guadalajara      Huentitán Suc. Huentitán   72728  MARIA
## 116  58193 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 117  58194 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 118  58195 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 119  58196 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 120  58197 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 121  58198 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 122  58199 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 123  58200 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 124  58201 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 125  58202 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 126  58203 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 127  58204 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 128  58205 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 129  58206 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 130  58207 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 131  58208 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 132  58209 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 133  58210 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 134  58211 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 135  58212 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 136  58213 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 137  58214 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 138  58215 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 139  58216 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 140  58217 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 141  58218 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 142  58219 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 143  58220 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 144  58221 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 145  58222 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 146  58223 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 147  58224 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 148  58225 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 149  58226 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 150  58227 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 151  58228 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 152  58229 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 153  58230 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 154  58231 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 155  58232 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 156  58233 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 157  58234 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 158  58235 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 159  58236 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 160  58237 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 161  58238 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 162  58239 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 163  58240 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 164  58241 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 165  58242 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 166  58243 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 167  58244 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 168  58245 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 169  58246 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 170  58247 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 171  58248 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 172  58249 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 173  58250 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 174  58251 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 175  58252 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 176  58253 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 177  58254 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 178  58255 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 179  58256 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 180  58257 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 181  58258 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 182  58259 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 183  58260 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 184  58261 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 185  58262 2016 Guadalajara      Huentitán Suc. Huentitán   72739   RUIZ
## 186  58263 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 187  58264 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 188  58265 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 189  58266 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 190  58267 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 191  58268 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 192  58269 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 193  58270 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 194  58271 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 195  58272 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 196  58273 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 197  58274 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 198  58275 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 199  58276 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 200  58277 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 201  58278 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 202  58279 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 203  58280 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 204  58281 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 205  58282 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 206  58283 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 207  58284 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 208  58285 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 209  58286 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 210  58287 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 211  58288 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 212  58289 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 213  58290 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 214  58291 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 215  58292 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 216  58293 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 217  58294 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 218  58295 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 219  58296 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 220  58297 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 221  58298 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 222  58299 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 223  58300 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 224  58301 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 225  58302 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 226  58303 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 227  58304 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 228  58305 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 229  58306 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 230  58307 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 231  58308 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 232  58309 2016 Guadalajara      Huentitán Suc. Huentitán   72740  ADAN 
## 233  58310 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 234  58311 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 235  58312 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 236  58313 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 237  58314 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 238  58315 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 239  58316 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 240  58317 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 241  58318 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 242  58319 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 243  58320 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 244  58321 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 245  58322 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 246  58323 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 247  58324 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 248  58325 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 249  58326 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 250  58327 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 251  58328 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 252  58329 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 253  58330 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 254  58331 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 255  58332 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 256  58333 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 257  58334 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 258  58335 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 259  58336 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 260  58337 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 261  58338 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 262  58339 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 263  58340 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 264  58341 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 265  58342 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 266  58343 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 267  58344 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 268  58345 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 269  58346 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 270  58347 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 271  58348 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 272  58349 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 273  58350 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 274  58351 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 275  58352 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 276  58353 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 277  58354 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 278  58355 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 279  58356 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 280  58357 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 281  58358 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 282  58359 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 283  58360 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 284  58361 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 285  58362 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 286  58363 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 287  58364 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 288  58365 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 289  58366 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 290  58367 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 291  58368 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 292  58369 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 293  58370 2016 Guadalajara      Huentitán Suc. Huentitán   72748  ELIA 
## 294  58371 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 295  58372 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 296  58373 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 297  58374 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 298  58375 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 299  58376 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 300  58377 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 301  58378 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 302  58379 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 303  58380 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 304  58381 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 305  58382 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 306  58383 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 307  58384 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 308  58385 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 309  58386 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 310  58387 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 311  58388 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 312  58389 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 313  58390 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 314  58391 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 315  58392 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 316  58393 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 317  58394 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 318  58395 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 319  58396 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 320  58397 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 321  58398 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 322  58399 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 323  58400 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 324  58401 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 325  58402 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 326  58403 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 327  58404 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 328  58405 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 329  58406 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 330  58407 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 331  58408 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 332  58409 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 333  58410 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 334  58411 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 335  58412 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 336  58413 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 337  58414 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 338  58415 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 339  58416 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 340  58417 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 341  58418 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 342  58419 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 343  58420 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 344  58421 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 345  58422 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 346  58423 2016 Guadalajara      Huentitán Suc. Huentitán   72762  KAREN
## 347  58424 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 348  58425 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 349  58426 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 350  58427 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 351  58428 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 352  58429 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 353  58430 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 354  58431 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 355  58432 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 356  58433 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 357  58434 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 358  58435 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 359  58436 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 360  58437 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 361  58438 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 362  58439 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 363  58440 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 364  58441 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 365  58442 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 366  58443 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 367  58444 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 368  58445 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 369  58446 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 370  58447 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 371  58448 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 372  58449 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 373  58450 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 374  58451 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 375  58452 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 376  58453 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 377  58454 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 378  58455 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 379  58456 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 380  58457 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 381  58458 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 382  58459 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 383  58460 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 384  58461 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 385  58462 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 386  58463 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 387  58464 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 388  58465 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 389  58466 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 390  58467 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 391  58468 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 392  58469 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 393  58470 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 394  58471 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 395  58472 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 396  58473 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 397  58474 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 398  58475 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 399  58476 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 400  58477 2016 Guadalajara      Huentitán Suc. Huentitán   72769  MARIA
## 401  58478 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 402  58479 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 403  58480 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 404  58481 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 405  58482 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 406  58483 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 407  58484 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 408  58485 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 409  58486 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 410  58487 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 411  58488 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 412  58489 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 413  58490 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 414  58491 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 415  58492 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 416  58493 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 417  58494 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 418  58495 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 419  58496 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 420  58497 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 421  58498 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 422  58499 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 423  58500 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 424  58501 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 425  58502 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 426  58503 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 427  58504 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 428  58505 2016 Guadalajara      Huentitán Suc. Huentitán   72770  MARIA
## 429  58506 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 430  58507 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 431  58508 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 432  58509 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 433  58510 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 434  58511 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 435  58512 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 436  58513 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 437  58514 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 438  58515 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 439  58516 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 440  58517 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 441  58518 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 442  58519 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 443  58520 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 444  58521 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 445  58522 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 446  58523 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 447  58524 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 448  58525 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 449  58526 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 450  58527 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 451  58528 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 452  58529 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 453  58530 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 454  58531 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 455  58532 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 456  58533 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 457  58534 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 458  58535 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 459  58536 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 460  58537 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 461  58538 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 462  58539 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 463  58540 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 464  58541 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 465  58542 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 466  58543 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 467  58544 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 468  58545 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 469  58546 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 470  58547 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 471  58548 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 472  58549 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 473  58550 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 474  58551 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 475  58552 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 476  58553 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 477  58554 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 478  58555 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 479  58556 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 480  58557 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 481  58558 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 482  58559 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 483  58560 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 484  58561 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 485  58562 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 486  58563 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 487  58564 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 488  58565 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 489  58566 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 490  58567 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 491  58568 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 492  58569 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 493  58570 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 494  58571 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 495  58572 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 496  58573 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 497  58574 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 498  58575 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 499  58576 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 500  58577 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 501  58578 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 502  58579 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 503  58580 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 504  58581 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 505  58582 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 506  58583 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 507  58584 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 508  58585 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 509  58586 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 510  58587 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 511  58588 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 512  58589 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 513  58590 2016 Guadalajara      Huentitán Suc. Huentitán   72782  ANA C
## 514  58591 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 515  58592 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 516  58593 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 517  58594 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 518  58595 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 519  58596 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 520  58597 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 521  58598 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 522  58599 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 523  58600 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 524  58601 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 525  58602 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 526  58603 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 527  58604 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 528  58605 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 529  58606 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 530  58607 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 531  58608 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 532  58609 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 533  58610 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 534  58611 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 535  58612 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 536  58613 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 537  58614 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 538  58615 2016 Guadalajara      Huentitán Suc. Huentitán   72784  LAURA
## 539  58616 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 540  58617 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 541  58618 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 542  58619 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 543  58620 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 544  58621 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 545  58622 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 546  58623 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 547  58624 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 548  58625 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 549  58626 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 550  58627 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 551  58628 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 552  58629 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 553  58630 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 554  58631 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 555  58632 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 556  58633 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 557  58634 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 558  58635 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 559  58636 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 560  58637 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 561  58638 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 562  58639 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 563  58640 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 564  58641 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 565  58642 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 566  58643 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 567  58644 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 568  58645 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 569  58646 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 570  58647 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 571  58648 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 572  58649 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 573  58650 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 574  58651 2016 Guadalajara      Huentitán Suc. Huentitán   72788  FARMA
## 575  58652 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 576  58653 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 577  58654 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 578  58655 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 579  58656 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 580  58657 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 581  58658 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 582  58659 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 583  58660 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 584  58661 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 585  58662 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 586  58663 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 587  58664 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 588  58665 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 589  58666 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 590  58667 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 591  58668 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 592  58669 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 593  58670 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 594  58671 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 595  58672 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 596  58673 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 597  58674 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 598  58675 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 599  58676 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 600  58677 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 601  58678 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 602  58679 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 603  58680 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 604  58681 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 605  58682 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 606  58683 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 607  58684 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 608  58685 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 609  58686 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 610  58687 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 611  58688 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 612  58689 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 613  58690 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 614  58691 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 615  58692 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 616  58693 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 617  58694 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 618  58695 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 619  58696 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 620  58697 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 621  58698 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 622  58699 2016 Guadalajara      Huentitán Suc. Huentitán   72799  DISTR
## 623  58700 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 624  58701 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 625  58702 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 626  58703 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 627  58704 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 628  58705 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 629  58706 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 630  58707 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 631  58708 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 632  58709 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 633  58710 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 634  58711 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 635  58712 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 636  58713 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 637  58714 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 638  58715 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 639  58716 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 640  58717 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 641  58718 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 642  58719 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 643  58720 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 644  58721 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 645  58722 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 646  58723 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 647  58724 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 648  58725 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 649  58726 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 650  58727 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 651  58728 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 652  58729 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 653  58730 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 654  58731 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 655  58732 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 656  58733 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 657  58734 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 658  58735 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 659  58736 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 660  58737 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 661  58738 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 662  58739 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 663  58740 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 664  58741 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 665  58742 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 666  58743 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 667  58744 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 668  58745 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 669  58746 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 670  58747 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 671  58748 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 672  58749 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 673  58750 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 674  58751 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 675  58752 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 676  58753 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 677  58754 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 678  58755 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 679  58756 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 680  58757 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 681  58758 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 682  58759 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 683  58760 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 684  58761 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 685  58762 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 686  58763 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 687  58764 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 688  58765 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 689  58766 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 690  58767 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 691  58768 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 692  58769 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 693  58770 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 694  58771 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 695  58772 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 696  58773 2016 Guadalajara      Huentitán Suc. Huentitán   72817  RUBEN
## 697  58774 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 698  58775 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 699  58776 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 700  58777 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 701  58778 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 702  58779 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 703  58780 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 704  58781 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 705  58782 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 706  58783 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 707  58784 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 708  58785 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 709  58786 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 710  58787 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 711  58788 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 712  58789 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 713  58790 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 714  58791 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 715  58792 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 716  58793 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 717  58794 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 718  58795 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 719  58796 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 720  58797 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 721  58798 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 722  58799 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 723  58800 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 724  58801 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 725  58802 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 726  58803 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 727  58804 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 728  58805 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 729  58806 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 730  58807 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 731  58808 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 732  58809 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 733  58810 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 734  58811 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 735  58812 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 736  58813 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 737  58814 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 738  58815 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 739  58816 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 740  58817 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 741  58818 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 742  58819 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 743  58820 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 744  58821 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 745  58822 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 746  58823 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 747  58824 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 748  58825 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 749  58826 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 750  58827 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 751  58828 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 752  58829 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 753  58830 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 754  58831 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 755  58832 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 756  58833 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 757  58834 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 758  58835 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 759  58836 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 760  58837 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 761  58838 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 762  58839 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 763  58840 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 764  58841 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 765  58842 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 766  58843 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 767  58844 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 768  58845 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 769  58846 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 770  58847 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 771  58848 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 772  58849 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 773  58850 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 774  58851 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 775  58852 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 776  58853 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 777  58854 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 778  58855 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 779  58856 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 780  58857 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 781  58858 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 782  58859 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 783  58860 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 784  58861 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 785  58862 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 786  58863 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 787  58864 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 788  58865 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 789  58866 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 790  58867 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 791  58868 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 792  58869 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 793  58870 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 794  58871 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 795  58872 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 796  58873 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 797  58874 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 798  58875 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 799  58876 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 800  58877 2016 Guadalajara      Huentitán Suc. Huentitán   72820  ABARR
## 801  58878 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 802  58879 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 803  58880 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 804  58881 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 805  58882 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 806  58883 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 807  58884 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 808  58885 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 809  58886 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 810  58887 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 811  58888 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 812  58889 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 813  58890 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 814  58891 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 815  58892 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 816  58893 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 817  58894 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 818  58895 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 819  58896 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 820  58897 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 821  58898 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 822  58899 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 823  58900 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 824  58901 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 825  58902 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 826  58903 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 827  58904 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 828  58905 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 829  58906 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 830  58907 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 831  58908 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 832  58909 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 833  58910 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 834  58911 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 835  58912 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 836  58913 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 837  58914 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 838  58915 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 839  58916 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 840  58917 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 841  58918 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 842  58919 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 843  58920 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 844  58921 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 845  58922 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 846  58923 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 847  58924 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 848  58925 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 849  58926 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 850  58927 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 851  58928 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 852  58929 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 853  58930 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 854  58931 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 855  58932 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 856  58933 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 857  58934 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 858  58935 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 859  58936 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 860  58937 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 861  58938 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 862  58939 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 863  58940 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 864  58941 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 865  58942 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 866  58943 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 867  58944 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 868  58945 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 869  58946 2016 Guadalajara      Huentitán Suc. Huentitán   72849  FRUTA
## 870  58947 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 871  58948 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 872  58949 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 873  58950 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 874  58951 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 875  58952 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 876  58953 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 877  58954 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 878  58955 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 879  58956 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 880  58957 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 881  58958 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 882  58959 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 883  58960 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 884  58961 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 885  58962 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 886  58963 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 887  58964 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 888  58965 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 889  58966 2016 Guadalajara      Huentitán Suc. Huentitán   72850  MARIA
## 890  58967 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 891  58968 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 892  58969 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 893  58970 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 894  58971 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 895  58972 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 896  58973 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 897  58974 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 898  58975 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 899  58976 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 900  58977 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 901  58978 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 902  58979 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 903  58980 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 904  58981 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 905  58982 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 906  58983 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 907  58984 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 908  58985 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 909  58986 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 910  58987 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 911  58988 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 912  58989 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 913  58990 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 914  58991 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 915  58992 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 916  58993 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 917  58994 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 918  58995 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 919  58996 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 920  58997 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 921  58998 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 922  58999 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 923  59000 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 924  59001 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 925  59002 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 926  59003 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 927  59004 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 928  59005 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 929  59006 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 930  59007 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 931  59008 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 932  59009 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 933  59010 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 934  59011 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 935  59012 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 936  59013 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 937  59014 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 938  59015 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 939  59016 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 940  59017 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 941  59018 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 942  59019 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 943  59020 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 944  59021 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 945  59022 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 946  59023 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 947  59024 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 948  59025 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 949  59026 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 950  59027 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 951  59028 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 952  59029 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 953  59030 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 954  59031 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 955  59032 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 956  59033 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 957  59034 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 958  59035 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 959  59036 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 960  59037 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 961  59038 2016 Guadalajara      Huentitán Suc. Huentitán   72855   GERA
## 962  59039 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 963  59040 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 964  59041 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 965  59042 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 966  59043 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 967  59044 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 968  59045 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 969  59046 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 970  59047 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 971  59048 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 972  59049 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 973  59050 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 974  59051 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 975  59052 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 976  59053 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 977  59054 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 978  59055 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 979  59056 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 980  59057 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 981  59058 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 982  59059 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 983  59060 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 984  59061 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 985  59062 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 986  59063 2016 Guadalajara      Huentitán Suc. Huentitán   72908  FAUST
## 987  59064 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 988  59065 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 989  59066 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 990  59067 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 991  59068 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 992  59069 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 993  59070 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 994  59071 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 995  59072 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 996  59073 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 997  59074 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 998  59075 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 999  59076 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1000 59077 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1001 59078 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1002 59079 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1003 59080 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1004 59081 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1005 59082 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1006 59083 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1007 59084 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1008 59085 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1009 59086 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1010 59087 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1011 59088 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1012 59089 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1013 59090 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1014 59091 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1015 59092 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1016 59093 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1017 59094 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1018 59095 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1019 59096 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1020 59097 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1021 59098 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1022 59099 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1023 59100 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1024 59101 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1025 59102 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1026 59103 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1027 59104 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1028 59105 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1029 59106 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1030 59107 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1031 59108 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1032 59109 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1033 59110 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1034 59111 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1035 59112 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1036 59113 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1037 59114 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1038 59115 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1039 59116 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1040 59117 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1041 59118 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1042 59119 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1043 59120 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1044 59121 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1045 59122 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1046 59123 2016 Guadalajara      Huentitán Suc. Huentitán   72909  LAURA
## 1047 59124 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1048 59125 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1049 59126 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1050 59127 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1051 59128 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1052 59129 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1053 59130 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1054 59131 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1055 59132 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1056 59133 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1057 59134 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1058 59135 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1059 59136 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1060 59137 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1061 59138 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1062 59139 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1063 59140 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1064 59141 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1065 59142 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1066 59143 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1067 59144 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1068 59145 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1069 59146 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1070 59147 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1071 59148 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1072 59149 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1073 59150 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1074 59151 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1075 59152 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1076 59153 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1077 59154 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1078 59155 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1079 59156 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1080 59157 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1081 59158 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1082 59159 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1083 59160 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1084 59161 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1085 59162 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1086 59163 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1087 59164 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1088 59165 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1089 59166 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1090 59167 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1091 59168 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1092 59169 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1093 59170 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1094 59171 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1095 59172 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1096 59173 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1097 59174 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1098 59175 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1099 59176 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1100 59177 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1101 59178 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1102 59179 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1103 59180 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1104 59181 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1105 59182 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1106 59183 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1107 59184 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1108 59185 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1109 59186 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1110 59187 2016 Guadalajara      Huentitán Suc. Huentitán   72943  ABARR
## 1111 59188 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1112 59189 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1113 59190 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1114 59191 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1115 59192 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1116 59193 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1117 59194 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1118 59195 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1119 59196 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1120 59197 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1121 59198 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1122 59199 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1123 59200 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1124 59201 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1125 59202 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1126 59203 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1127 59204 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1128 59205 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1129 59206 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1130 59207 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1131 59208 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1132 59209 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1133 59210 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1134 59211 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1135 59212 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1136 59213 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1137 59214 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1138 59215 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1139 59216 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1140 59217 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1141 59218 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1142 59219 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1143 59220 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1144 59221 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1145 59222 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1146 59223 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1147 59224 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1148 59225 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1149 59226 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1150 59227 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1151 59228 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1152 59229 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1153 59230 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1154 59231 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1155 59232 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1156 59233 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1157 59234 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1158 59235 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1159 59236 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1160 59237 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1161 59238 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1162 59239 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1163 59240 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1164 59241 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1165 59242 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1166 59243 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1167 59244 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1168 59245 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1169 59246 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1170 59247 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1171 59248 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1172 59249 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1173 59250 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1174 59251 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1175 59252 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1176 59253 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1177 59254 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1178 59255 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1179 59256 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1180 59257 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1181 59258 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1182 59259 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1183 59260 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1184 59261 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1185 59262 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1186 59263 2016 Guadalajara      Huentitán Suc. Huentitán   72979  JOSE 
## 1187 59264 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1188 59265 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1189 59266 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1190 59267 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1191 59268 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1192 59269 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1193 59270 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1194 59271 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1195 59272 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1196 59273 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1197 59274 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1198 59275 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1199 59276 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1200 59277 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1201 59278 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1202 59279 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1203 59280 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1204 59281 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1205 59282 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1206 59283 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1207 59284 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1208 59285 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1209 59286 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1210 59287 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1211 59288 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1212 59289 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1213 59290 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1214 59291 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1215 59292 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1216 59293 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1217 59294 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1218 59295 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1219 59296 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1220 59297 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1221 59298 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1222 59299 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1223 59300 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1224 59301 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1225 59302 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1226 59303 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1227 59304 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1228 59305 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1229 59306 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1230 59307 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1231 59308 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1232 59309 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1233 59310 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1234 59311 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1235 59312 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1236 59313 2016 Guadalajara      Huentitán Suc. Huentitán   72983  MARIA
## 1237 59314 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1238 59315 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1239 59316 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1240 59317 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1241 59318 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1242 59319 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1243 59320 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1244 59321 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1245 59322 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1246 59323 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1247 59324 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1248 59325 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1249 59326 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1250 59327 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1251 59328 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1252 59329 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1253 59330 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1254 59331 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1255 59332 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1256 59333 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1257 59334 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1258 59335 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1259 59336 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1260 59337 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1261 59338 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1262 59339 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1263 59340 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1264 59341 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1265 59342 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1266 59343 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1267 59344 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1268 59345 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1269 59346 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1270 59347 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1271 59348 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1272 59349 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1273 59350 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1274 59351 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1275 59352 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1276 59353 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1277 59354 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1278 59355 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1279 59356 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1280 59357 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1281 59358 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1282 59359 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1283 59360 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1284 59361 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1285 59362 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1286 59363 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1287 59364 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1288 59365 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1289 59366 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1290 59367 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1291 59368 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1292 59369 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1293 59370 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1294 59371 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1295 59372 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1296 59373 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1297 59374 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1298 59375 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1299 59376 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1300 59377 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1301 59378 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1302 59379 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1303 59380 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1304 59381 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1305 59382 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1306 59383 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1307 59384 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1308 59385 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1309 59386 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1310 59387 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1311 59388 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1312 59389 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1313 59390 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1314 59391 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1315 59392 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1316 59393 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1317 59394 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1318 59395 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1319 59396 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1320 59397 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1321 59398 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1322 59399 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1323 59400 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1324 59401 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1325 59402 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1326 59403 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1327 59404 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1328 59405 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1329 59406 2016 Guadalajara      Huentitán Suc. Huentitán   72997   ROSA
## 1330 59407 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1331 59408 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1332 59409 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1333 59410 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1334 59411 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1335 59412 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1336 59413 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1337 59414 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1338 59415 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1339 59416 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1340 59417 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1341 59418 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1342 59419 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1343 59420 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1344 59421 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1345 59422 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1346 59423 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1347 59424 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1348 59425 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1349 59426 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1350 59427 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1351 59428 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1352 59429 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1353 59430 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1354 59431 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1355 59432 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1356 59433 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1357 59434 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1358 59435 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1359 59436 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1360 59437 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1361 59438 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1362 59439 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1363 59440 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1364 59441 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1365 59442 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1366 59443 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1367 59444 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1368 59445 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1369 59446 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1370 59447 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1371 59448 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1372 59449 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1373 59450 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1374 59451 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1375 59452 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1376 59453 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1377 59454 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1378 59455 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1379 59456 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1380 59457 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1381 59458 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1382 59459 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1383 59460 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1384 59461 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1385 59462 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1386 59463 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1387 59464 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1388 59465 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1389 59466 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1390 59467 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1391 59468 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1392 59469 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1393 59470 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1394 59471 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1395 59472 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1396 59473 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1397 59474 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1398 59475 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1399 59476 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1400 59477 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1401 59478 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1402 59479 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1403 59480 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1404 59481 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1405 59482 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1406 59483 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1407 59484 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1408 59485 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1409 59486 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1410 59487 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1411 59488 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1412 59489 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1413 59490 2016 Guadalajara      Huentitán Suc. Huentitán   73005  PEDRO
## 1414 59491 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1415 59492 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1416 59493 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1417 59494 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1418 59495 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1419 59496 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1420 59497 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1421 59498 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1422 59499 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1423 59500 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1424 59501 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1425 59502 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1426 59503 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1427 59504 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1428 59505 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1429 59506 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1430 59507 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1431 59508 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1432 59509 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1433 59510 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1434 59511 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1435 59512 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1436 59513 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1437 59514 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1438 59515 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1439 59516 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1440 59517 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1441 59518 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1442 59519 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1443 59520 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1444 59521 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1445 59522 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1446 59523 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1447 59524 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1448 59525 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1449 59526 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1450 59527 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1451 59528 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1452 59529 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1453 59530 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1454 59531 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1455 59532 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1456 59533 2016 Guadalajara      Huentitán Suc. Huentitán   73012  ABARR
## 1457 59534 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1458 59535 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1459 59536 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1460 59537 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1461 59538 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1462 59539 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1463 59540 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1464 59541 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1465 59542 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1466 59543 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1467 59544 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1468 59545 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1469 59546 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1470 59547 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1471 59548 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1472 59549 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1473 59550 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1474 59551 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1475 59552 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1476 59553 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1477 59554 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1478 59555 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1479 59556 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1480 59557 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1481 59558 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1482 59559 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1483 59560 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1484 59561 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1485 59562 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1486 59563 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1487 59564 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1488 59565 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1489 59566 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1490 59567 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1491 59568 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1492 59569 2016 Guadalajara      Huentitán Suc. Huentitán   73015  ELOIS
## 1493 59570 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1494 59571 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1495 59572 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1496 59573 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1497 59574 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1498 59575 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1499 59576 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1500 59577 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1501 59578 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1502 59579 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1503 59580 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1504 59581 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1505 59582 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1506 59583 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1507 59584 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1508 59585 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1509 59586 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1510 59587 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1511 59588 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1512 59589 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1513 59590 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1514 59591 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1515 59592 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1516 59593 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1517 59594 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1518 59595 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1519 59596 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1520 59597 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1521 59598 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1522 59599 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1523 59600 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1524 59601 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1525 59602 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1526 59603 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1527 59604 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1528 59605 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1529 59606 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1530 59607 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1531 59608 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1532 59609 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1533 59610 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1534 59611 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1535 59612 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1536 59613 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1537 59614 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1538 59615 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1539 59616 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1540 59617 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1541 59618 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1542 59619 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1543 59620 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1544 59621 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1545 59622 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1546 59623 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1547 59624 2016 Guadalajara      Huentitán Suc. Huentitán   73018  BLANC
## 1548 59625 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1549 59626 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1550 59627 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1551 59628 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1552 59629 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1553 59630 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1554 59631 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1555 59632 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1556 59633 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1557 59634 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1558 59635 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1559 59636 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1560 59637 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1561 59638 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1562 59639 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1563 59640 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1564 59641 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1565 59642 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1566 59643 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1567 59644 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1568 59645 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1569 59646 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1570 59647 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1571 59648 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1572 59649 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1573 59650 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1574 59651 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1575 59652 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1576 59653 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1577 59654 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1578 59655 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1579 59656 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1580 59657 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1581 59658 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1582 59659 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1583 59660 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1584 59661 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1585 59662 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1586 59663 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1587 59664 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1588 59665 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1589 59666 2016 Guadalajara      Huentitán Suc. Huentitán   73030  VINOS
## 1590 59667 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1591 59668 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1592 59669 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1593 59670 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1594 59671 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1595 59672 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1596 59673 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1597 59674 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1598 59675 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1599 59676 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1600 59677 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1601 59678 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1602 59679 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1603 59680 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1604 59681 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1605 59682 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1606 59683 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1607 59684 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1608 59685 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1609 59686 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1610 59687 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1611 59688 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1612 59689 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1613 59690 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1614 59691 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1615 59692 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1616 59693 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1617 59694 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1618 59695 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1619 59696 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1620 59697 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1621 59698 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1622 59699 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1623 59700 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1624 59701 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1625 59702 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1626 59703 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1627 59704 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1628 59705 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1629 59706 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1630 59707 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1631 59708 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1632 59709 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1633 59710 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1634 59711 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1635 59712 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1636 59713 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1637 59714 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1638 59715 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1639 59716 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1640 59717 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1641 59718 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1642 59719 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1643 59720 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1644 59721 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1645 59722 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1646 59723 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1647 59724 2016 Guadalajara      Huentitán Suc. Huentitán   73034  JAVIE
## 1648 59725 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1649 59726 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1650 59727 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1651 59728 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1652 59729 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1653 59730 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1654 59731 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1655 59732 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1656 59733 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1657 59734 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1658 59735 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1659 59736 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1660 59737 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1661 59738 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1662 59739 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1663 59740 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1664 59741 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1665 59742 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1666 59743 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1667 59744 2016 Guadalajara      Huentitán Suc. Huentitán   73052  BIONI
## 1668 59745 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1669 59746 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1670 59747 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1671 59748 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1672 59749 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1673 59750 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1674 59751 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1675 59752 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1676 59753 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1677 59754 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1678 59755 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1679 59756 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1680 59757 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1681 59758 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1682 59759 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1683 59760 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1684 59761 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1685 59762 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1686 59763 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1687 59764 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1688 59765 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1689 59766 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1690 59767 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1691 59768 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1692 59769 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1693 59770 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1694 59771 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1695 59772 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1696 59773 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1697 59774 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1698 59775 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1699 59776 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1700 59777 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1701 59778 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1702 59779 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1703 59780 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1704 59781 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1705 59782 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1706 59783 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1707 59784 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1708 59785 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1709 59786 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1710 59787 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1711 59788 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1712 59789 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1713 59790 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1714 59791 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1715 59792 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1716 59793 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1717 59794 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1718 59795 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1719 59796 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1720 59797 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1721 59798 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1722 59799 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1723 59800 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1724 59801 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1725 59802 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1726 59803 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1727 59804 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1728 59805 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1729 59806 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1730 59807 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1731 59808 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1732 59809 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1733 59810 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1734 59811 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1735 59812 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1736 59813 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1737 59814 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1738 59815 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1739 59816 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1740 59817 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1741 59818 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1742 59819 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1743 59820 2016 Guadalajara      Huentitán Suc. Huentitán   73075  NEMEC
## 1744 59821 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1745 59822 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1746 59823 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1747 59824 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1748 59825 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1749 59826 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1750 59827 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1751 59828 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1752 59829 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1753 59830 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1754 59831 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1755 59832 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1756 59833 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1757 59834 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1758 59835 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1759 59836 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1760 59837 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1761 59838 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1762 59839 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1763 59840 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1764 59841 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1765 59842 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1766 59843 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1767 59844 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1768 59845 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1769 59846 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1770 59847 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1771 59848 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1772 59849 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1773 59850 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1774 59851 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1775 59852 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1776 59853 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1777 59854 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1778 59855 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1779 59856 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1780 59857 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1781 59858 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1782 59859 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1783 59860 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1784 59861 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1785 59862 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1786 59863 2016 Guadalajara      Huentitán Suc. Huentitán   73082  HUMBE
## 1787 59864 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1788 59865 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1789 59866 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1790 59867 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1791 59868 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1792 59869 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1793 59870 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1794 59871 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1795 59872 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1796 59873 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1797 59874 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1798 59875 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1799 59876 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1800 59877 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1801 59878 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1802 59879 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1803 59880 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1804 59881 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1805 59882 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1806 59883 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1807 59884 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1808 59885 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1809 59886 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1810 59887 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1811 59888 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1812 59889 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1813 59890 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1814 59891 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1815 59892 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1816 59893 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1817 59894 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1818 59895 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1819 59896 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1820 59897 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1821 59898 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1822 59899 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1823 59900 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1824 59901 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1825 59902 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1826 59903 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1827 59904 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1828 59905 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1829 59906 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1830 59907 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1831 59908 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1832 59909 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1833 59910 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1834 59911 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1835 59912 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1836 59913 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1837 59914 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1838 59915 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1839 59916 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1840 59917 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1841 59918 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1842 59919 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1843 59920 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1844 59921 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1845 59922 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1846 59923 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1847 59924 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1848 59925 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1849 59926 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1850 59927 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1851 59928 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1852 59929 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1853 59930 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1854 59931 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1855 59932 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1856 59933 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1857 59934 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1858 59935 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1859 59936 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1860 59937 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1861 59938 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1862 59939 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1863 59940 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1864 59941 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1865 59942 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1866 59943 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1867 59944 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1868 59945 2016 Guadalajara      Huentitán Suc. Huentitán   73089  ABARR
## 1869 59946 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1870 59947 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1871 59948 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1872 59949 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1873 59950 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1874 59951 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1875 59952 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1876 59953 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1877 59954 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1878 59955 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1879 59956 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1880 59957 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1881 59958 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1882 59959 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1883 59960 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1884 59961 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1885 59962 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1886 59963 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1887 59964 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1888 59965 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1889 59966 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1890 59967 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1891 59968 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1892 59969 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1893 59970 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1894 59971 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1895 59972 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1896 59973 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1897 59974 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1898 59975 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1899 59976 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1900 59977 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1901 59978 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1902 59979 2016 Guadalajara      Huentitán Suc. Huentitán   73097  MARIA
## 1903 59980 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1904 59981 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1905 59982 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1906 59983 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1907 59984 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1908 59985 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1909 59986 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1910 59987 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1911 59988 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1912 59989 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1913 59990 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1914 59991 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1915 59992 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1916 59993 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1917 59994 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1918 59995 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1919 59996 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1920 59997 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1921 59998 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1922 59999 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1923 60000 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1924 60001 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1925 60002 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1926 60003 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1927 60004 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1928 60005 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1929 60006 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1930 60007 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1931 60008 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1932 60009 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1933 60010 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1934 60011 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1935 60012 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1936 60013 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1937 60014 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1938 60015 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1939 60016 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1940 60017 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1941 60018 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1942 60019 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1943 60020 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1944 60021 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1945 60022 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1946 60023 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1947 60024 2016 Guadalajara      Huentitán Suc. Huentitán   73115  MISCE
## 1948 60025 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1949 60026 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1950 60027 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1951 60028 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1952 60029 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1953 60030 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1954 60031 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1955 60032 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1956 60033 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1957 60034 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1958 60035 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1959 60036 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1960 60037 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1961 60038 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1962 60039 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1963 60040 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1964 60041 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1965 60042 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1966 60043 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1967 60044 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1968 60045 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1969 60046 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1970 60047 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1971 60048 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1972 60049 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1973 60050 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1974 60051 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1975 60052 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1976 60053 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1977 60054 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1978 60055 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1979 60056 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1980 60057 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1981 60058 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1982 60059 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1983 60060 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1984 60061 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1985 60062 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1986 60063 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1987 60064 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1988 60065 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1989 60066 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1990 60067 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1991 60068 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1992 60069 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1993 60070 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1994 60071 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1995 60072 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1996 60073 2016 Guadalajara      Huentitán Suc. Huentitán   73117  ABARR
## 1997 60074 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 1998 60075 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 1999 60076 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2000 60077 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2001 60078 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2002 60079 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2003 60080 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2004 60081 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2005 60082 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2006 60083 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2007 60084 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2008 60085 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2009 60086 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2010 60087 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2011 60088 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2012 60089 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2013 60090 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2014 60091 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2015 60092 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2016 60093 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2017 60094 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2018 60095 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2019 60096 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2020 60097 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2021 60098 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2022 60099 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2023 60100 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2024 60101 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2025 60102 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2026 60103 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2027 60104 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2028 60105 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2029 60106 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2030 60107 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2031 60108 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2032 60109 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2033 60110 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2034 60111 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2035 60112 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2036 60113 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2037 60114 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2038 60115 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2039 60116 2016 Guadalajara      Huentitán Suc. Huentitán   73210  MARTH
## 2040 60117 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2041 60118 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2042 60119 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2043 60120 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2044 60121 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2045 60122 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2046 60123 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2047 60124 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2048 60125 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2049 60126 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2050 60127 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2051 60128 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2052 60129 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2053 60130 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2054 60131 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2055 60132 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2056 60133 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2057 60134 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2058 60135 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2059 60136 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2060 60137 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2061 60138 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2062 60139 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2063 60140 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2064 60141 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2065 60142 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2066 60143 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2067 60144 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2068 60145 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2069 60146 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2070 60147 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2071 60148 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2072 60149 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2073 60150 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2074 60151 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2075 60152 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2076 60153 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2077 60154 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2078 60155 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2079 60156 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2080 60157 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2081 60158 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2082 60159 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2083 60160 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2084 60161 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2085 60162 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2086 60163 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2087 60164 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2088 60165 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2089 60166 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2090 60167 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2091 60168 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2092 60169 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2093 60170 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2094 60171 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2095 60172 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2096 60173 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2097 60174 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2098 60175 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2099 60176 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2100 60177 2016 Guadalajara      Huentitán Suc. Huentitán   73229  MANUE
## 2101 60178 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2102 60179 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2103 60180 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2104 60181 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2105 60182 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2106 60183 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2107 60184 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2108 60185 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2109 60186 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2110 60187 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2111 60188 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2112 60189 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2113 60190 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2114 60191 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2115 60192 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2116 60193 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2117 60194 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2118 60195 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2119 60196 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2120 60197 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2121 60198 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2122 60199 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2123 60200 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2124 60201 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2125 60202 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2126 60203 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2127 60204 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2128 60205 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2129 60206 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2130 60207 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2131 60208 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2132 60209 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2133 60210 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2134 60211 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2135 60212 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2136 60213 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2137 60214 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2138 60215 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2139 60216 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2140 60217 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2141 60218 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2142 60219 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2143 60220 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2144 60221 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2145 60222 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2146 60223 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2147 60224 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2148 60225 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2149 60226 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2150 60227 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2151 60228 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2152 60229 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2153 60230 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2154 60231 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2155 60232 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2156 60233 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2157 60234 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2158 60235 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2159 60236 2016 Guadalajara      Huentitán Suc. Huentitán   73275  DARIO
## 2160 60237 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2161 60238 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2162 60239 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2163 60240 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2164 60241 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2165 60242 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2166 60243 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2167 60244 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2168 60245 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2169 60246 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2170 60247 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2171 60248 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2172 60249 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2173 60250 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2174 60251 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2175 60252 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2176 60253 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2177 60254 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2178 60255 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2179 60256 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2180 60257 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2181 60258 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2182 60259 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2183 60260 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2184 60261 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2185 60262 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2186 60263 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2187 60264 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2188 60265 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2189 60266 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2190 60267 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2191 60268 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2192 60269 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2193 60270 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2194 60271 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2195 60272 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2196 60273 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2197 60274 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2198 60275 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2199 60276 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2200 60277 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2201 60278 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2202 60279 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2203 60280 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2204 60281 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2205 60282 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2206 60283 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2207 60284 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2208 60285 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2209 60286 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2210 60287 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2211 60288 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2212 60289 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2213 60290 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2214 60291 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2215 60292 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2216 60293 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2217 60294 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2218 60295 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2219 60296 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2220 60297 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2221 60298 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2222 60299 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2223 60300 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2224 60301 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2225 60302 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2226 60303 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2227 60304 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2228 60305 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2229 60306 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2230 60307 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2231 60308 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2232 60309 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2233 60310 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2234 60311 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2235 60312 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2236 60313 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2237 60314 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2238 60315 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2239 60316 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2240 60317 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2241 60318 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2242 60319 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2243 60320 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2244 60321 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2245 60322 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2246 60323 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2247 60324 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2248 60325 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2249 60326 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2250 60327 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2251 60328 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2252 60329 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2253 60330 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2254 60331 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2255 60332 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2256 60333 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2257 60334 2016 Guadalajara      Huentitán Suc. Huentitán   73286  ABARR
## 2258 60335 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2259 60336 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2260 60337 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2261 60338 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2262 60339 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2263 60340 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2264 60341 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2265 60342 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2266 60343 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2267 60344 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2268 60345 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2269 60346 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2270 60347 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2271 60348 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2272 60349 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2273 60350 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2274 60351 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2275 60352 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2276 60353 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2277 60354 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2278 60355 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2279 60356 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2280 60357 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2281 60358 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2282 60359 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2283 60360 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2284 60361 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2285 60362 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2286 60363 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2287 60364 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2288 60365 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2289 60366 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2290 60367 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2291 60368 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2292 60369 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2293 60370 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2294 60371 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2295 60372 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2296 60373 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2297 60374 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2298 60375 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2299 60376 2016 Guadalajara      Huentitán Suc. Huentitán   73318  MARIO
## 2300 60377 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2301 60378 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2302 60379 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2303 60380 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2304 60381 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2305 60382 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2306 60383 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2307 60384 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2308 60385 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2309 60386 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2310 60387 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2311 60388 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2312 60389 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2313 60390 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2314 60391 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2315 60392 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2316 60393 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2317 60394 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2318 60395 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2319 60396 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2320 60397 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2321 60398 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2322 60399 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2323 60400 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2324 60401 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2325 60402 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2326 60403 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2327 60404 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2328 60405 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2329 60406 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2330 60407 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2331 60408 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2332 60409 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2333 60410 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2334 60411 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2335 60412 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2336 60413 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2337 60414 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2338 60415 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2339 60416 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2340 60417 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2341 60418 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2342 60419 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2343 60420 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2344 60421 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2345 60422 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2346 60423 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2347 60424 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2348 60425 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2349 60426 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2350 60427 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2351 60428 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2352 60429 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2353 60430 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2354 60431 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2355 60432 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2356 60433 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2357 60434 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2358 60435 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2359 60436 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2360 60437 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2361 60438 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2362 60439 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2363 60440 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2364 60441 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2365 60442 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2366 60443 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2367 60444 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2368 60445 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2369 60446 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2370 60447 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2371 60448 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2372 60449 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2373 60450 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2374 60451 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2375 60452 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2376 60453 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2377 60454 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2378 60455 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2379 60456 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2380 60457 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2381 60458 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2382 60459 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2383 60460 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2384 60461 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2385 60462 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2386 60463 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2387 60464 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2388 60465 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2389 60466 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2390 60467 2016 Guadalajara      Huentitán Suc. Huentitán   73322  ABARR
## 2391 60468 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2392 60469 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2393 60470 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2394 60471 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2395 60472 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2396 60473 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2397 60474 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2398 60475 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2399 60476 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2400 60477 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2401 60478 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2402 60479 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2403 60480 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2404 60481 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2405 60482 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2406 60483 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2407 60484 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2408 60485 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2409 60486 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2410 60487 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2411 60488 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2412 60489 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2413 60490 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2414 60491 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2415 60492 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2416 60493 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2417 60494 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2418 60495 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2419 60496 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2420 60497 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2421 60498 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2422 60499 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2423 60500 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2424 60501 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2425 60502 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2426 60503 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2427 60504 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2428 60505 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2429 60506 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2430 60507 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2431 60508 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2432 60509 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2433 60510 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2434 60511 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2435 60512 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2436 60513 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2437 60514 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2438 60515 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2439 60516 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2440 60517 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2441 60518 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2442 60519 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2443 60520 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2444 60521 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2445 60522 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2446 60523 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2447 60524 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2448 60525 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2449 60526 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2450 60527 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2451 60528 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2452 60529 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2453 60530 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2454 60531 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2455 60532 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2456 60533 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2457 60534 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2458 60535 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2459 60536 2016 Guadalajara      Huentitán Suc. Huentitán   73332  MUNDO
## 2460 60537 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2461 60538 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2462 60539 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2463 60540 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2464 60541 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2465 60542 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2466 60543 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2467 60544 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2468 60545 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2469 60546 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2470 60547 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2471 60548 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2472 60549 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2473 60550 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2474 60551 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2475 60552 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2476 60553 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2477 60554 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2478 60555 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2479 60556 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2480 60557 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2481 60558 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2482 60559 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2483 60560 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2484 60561 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2485 60562 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2486 60563 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2487 60564 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2488 60565 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2489 60566 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2490 60567 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2491 60568 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2492 60569 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2493 60570 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2494 60571 2016 Guadalajara      Huentitán Suc. Huentitán   73333  HUGO 
## 2495 60572 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2496 60573 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2497 60574 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2498 60575 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2499 60576 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2500 60577 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2501 60578 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2502 60579 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2503 60580 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2504 60581 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2505 60582 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2506 60583 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2507 60584 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2508 60585 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2509 60586 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2510 60587 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2511 60588 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2512 60589 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2513 60590 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2514 60591 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2515 60592 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2516 60593 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2517 60594 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2518 60595 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2519 60596 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2520 60597 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2521 60598 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2522 60599 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2523 60600 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2524 60601 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2525 60602 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2526 60603 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2527 60604 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2528 60605 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2529 60606 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2530 60607 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2531 60608 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2532 60609 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2533 60610 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2534 60611 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2535 60612 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2536 60613 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2537 60614 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2538 60615 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2539 60616 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2540 60617 2016 Guadalajara      Huentitán Suc. Huentitán   73378  ABARR
## 2541 60618 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2542 60619 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2543 60620 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2544 60621 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2545 60622 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2546 60623 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2547 60624 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2548 60625 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2549 60626 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2550 60627 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2551 60628 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2552 60629 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2553 60630 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2554 60631 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2555 60632 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2556 60633 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2557 60634 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2558 60635 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2559 60636 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2560 60637 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2561 60638 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2562 60639 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2563 60640 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2564 60641 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2565 60642 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2566 60643 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2567 60644 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2568 60645 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2569 60646 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2570 60647 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2571 60648 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2572 60649 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2573 60650 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2574 60651 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2575 60652 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2576 60653 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2577 60654 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2578 60655 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2579 60656 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2580 60657 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2581 60658 2016 Guadalajara      Huentitán Suc. Huentitán   73414  CESAR
## 2582 60659 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2583 60660 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2584 60661 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2585 60662 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2586 60663 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2587 60664 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2588 60665 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2589 60666 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2590 60667 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2591 60668 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2592 60669 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2593 60670 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2594 60671 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2595 60672 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2596 60673 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2597 60674 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2598 60675 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2599 60676 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2600 60677 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2601 60678 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2602 60679 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2603 60680 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2604 60681 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2605 60682 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2606 60683 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2607 60684 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2608 60685 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2609 60686 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2610 60687 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2611 60688 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2612 60689 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2613 60690 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2614 60691 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2615 60692 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2616 60693 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2617 60694 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2618 60695 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2619 60696 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2620 60697 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2621 60698 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2622 60699 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2623 60700 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2624 60701 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2625 60702 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2626 60703 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2627 60704 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2628 60705 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2629 60706 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2630 60707 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2631 60708 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2632 60709 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2633 60710 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2634 60711 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2635 60712 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2636 60713 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2637 60714 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2638 60715 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2639 60716 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2640 60717 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2641 60718 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2642 60719 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2643 60720 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2644 60721 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2645 60722 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2646 60723 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2647 60724 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2648 60725 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2649 60726 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2650 60727 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2651 60728 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2652 60729 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2653 60730 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2654 60731 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2655 60732 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2656 60733 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2657 60734 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2658 60735 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2659 60736 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2660 60737 2016 Guadalajara      Huentitán Suc. Huentitán   73418  ALEJA
## 2661 60738 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2662 60739 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2663 60740 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2664 60741 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2665 60742 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2666 60743 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2667 60744 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2668 60745 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2669 60746 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2670 60747 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2671 60748 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2672 60749 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2673 60750 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2674 60751 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2675 60752 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2676 60753 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2677 60754 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2678 60755 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2679 60756 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2680 60757 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2681 60758 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2682 60759 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2683 60760 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2684 60761 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2685 60762 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2686 60763 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2687 60764 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2688 60765 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2689 60766 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2690 60767 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2691 60768 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2692 60769 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2693 60770 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2694 60771 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2695 60772 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2696 60773 2016 Guadalajara      Huentitán Suc. Huentitán   73432  ROSA 
## 2697 60774 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2698 60775 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2699 60776 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2700 60777 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2701 60778 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2702 60779 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2703 60780 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2704 60781 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2705 60782 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2706 60783 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2707 60784 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2708 60785 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2709 60786 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2710 60787 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2711 60788 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2712 60789 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2713 60790 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2714 60791 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2715 60792 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2716 60793 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2717 60794 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2718 60795 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2719 60796 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2720 60797 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2721 60798 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2722 60799 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2723 60800 2016 Guadalajara      Huentitán Suc. Huentitán   73486  ABEL 
## 2724 60801 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2725 60802 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2726 60803 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2727 60804 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2728 60805 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2729 60806 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2730 60807 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2731 60808 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2732 60809 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2733 60810 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2734 60811 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2735 60812 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2736 60813 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2737 60814 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2738 60815 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2739 60816 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2740 60817 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2741 60818 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2742 60819 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2743 60820 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2744 60821 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2745 60822 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2746 60823 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2747 60824 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2748 60825 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2749 60826 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2750 60827 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2751 60828 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2752 60829 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2753 60830 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2754 60831 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2755 60832 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2756 60833 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2757 60834 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2758 60835 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2759 60836 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2760 60837 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2761 60838 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2762 60839 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2763 60840 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2764 60841 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2765 60842 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2766 60843 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2767 60844 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2768 60845 2016 Guadalajara      Huentitán Suc. Huentitán   73560  CLARA
## 2769 60846 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2770 60847 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2771 60848 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2772 60849 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2773 60850 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2774 60851 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2775 60852 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2776 60853 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2777 60854 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2778 60855 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2779 60856 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2780 60857 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2781 60858 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2782 60859 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2783 60860 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2784 60861 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2785 60862 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2786 60863 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2787 60864 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2788 60865 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2789 60866 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2790 60867 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2791 60868 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2792 60869 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2793 60870 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2794 60871 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2795 60872 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2796 60873 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2797 60874 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2798 60875 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2799 60876 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2800 60877 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2801 60878 2016 Guadalajara      Huentitán Suc. Huentitán   73565  ROBER
## 2802 60879 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2803 60880 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2804 60881 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2805 60882 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2806 60883 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2807 60884 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2808 60885 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2809 60886 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2810 60887 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2811 60888 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2812 60889 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2813 60890 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2814 60891 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2815 60892 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2816 60893 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2817 60894 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2818 60895 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2819 60896 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2820 60897 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2821 60898 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2822 60899 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2823 60900 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2824 60901 2016 Guadalajara      Huentitán Suc. Huentitán   73630  CURSO
## 2825 60902 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2826 60903 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2827 60904 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2828 60905 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2829 60906 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2830 60907 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2831 60908 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2832 60909 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2833 60910 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2834 60911 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2835 60912 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2836 60913 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2837 60914 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2838 60915 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2839 60916 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2840 60917 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2841 60918 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2842 60919 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2843 60920 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2844 60921 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2845 60922 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2846 60923 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2847 60924 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2848 60925 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2849 60926 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2850 60927 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2851 60928 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2852 60929 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2853 60930 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2854 60931 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2855 60932 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2856 60933 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2857 60934 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2858 60935 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2859 60936 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2860 60937 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2861 60938 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2862 60939 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2863 60940 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2864 60941 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2865 60942 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2866 60943 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2867 60944 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2868 60945 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2869 60946 2016 Guadalajara      Huentitán Suc. Huentitán   73634  MARIA
## 2870 60947 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2871 60948 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2872 60949 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2873 60950 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2874 60951 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2875 60952 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2876 60953 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2877 60954 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2878 60955 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2879 60956 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2880 60957 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2881 60958 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2882 60959 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2883 60960 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2884 60961 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2885 60962 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2886 60963 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2887 60964 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2888 60965 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2889 60966 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2890 60967 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2891 60968 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2892 60969 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2893 60970 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2894 60971 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2895 60972 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2896 60973 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2897 60974 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2898 60975 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2899 60976 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2900 60977 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2901 60978 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2902 60979 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2903 60980 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2904 60981 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2905 60982 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2906 60983 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2907 60984 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2908 60985 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2909 60986 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2910 60987 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2911 60988 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2912 60989 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2913 60990 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2914 60991 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2915 60992 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2916 60993 2016 Guadalajara      Huentitán Suc. Huentitán   73658  MARIA
## 2917 60994 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2918 60995 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2919 60996 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2920 60997 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2921 60998 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2922 60999 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2923 61000 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2924 61001 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2925 61002 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2926 61003 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2927 61004 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2928 61005 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2929 61006 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2930 61007 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2931 61008 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2932 61009 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2933 61010 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2934 61011 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2935 61012 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2936 61013 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2937 61014 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2938 61015 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2939 61016 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2940 61017 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2941 61018 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2942 61019 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2943 61020 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2944 61021 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2945 61022 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2946 61023 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2947 61024 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2948 61025 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2949 61026 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2950 61027 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2951 61028 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2952 61029 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2953 61030 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2954 61031 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2955 61032 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2956 61033 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2957 61034 2016 Guadalajara      Huentitán Suc. Huentitán   73660  CATAL
## 2958 61035 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2959 61036 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2960 61037 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2961 61038 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2962 61039 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2963 61040 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2964 61041 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2965 61042 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2966 61043 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2967 61044 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2968 61045 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2969 61046 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2970 61047 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2971 61048 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2972 61049 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2973 61050 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2974 61051 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2975 61052 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2976 61053 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2977 61054 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2978 61055 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2979 61056 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2980 61057 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2981 61058 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2982 61059 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2983 61060 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2984 61061 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2985 61062 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2986 61063 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2987 61064 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2988 61065 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2989 61066 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2990 61067 2016 Guadalajara      Huentitán Suc. Huentitán   73661  CARLO
## 2991 61068 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 2992 61069 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 2993 61070 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 2994 61071 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 2995 61072 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 2996 61073 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 2997 61074 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 2998 61075 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 2999 61076 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3000 61077 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3001 61078 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3002 61079 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3003 61080 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3004 61081 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3005 61082 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3006 61083 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3007 61084 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3008 61085 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3009 61086 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3010 61087 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3011 61088 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3012 61089 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3013 61090 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3014 61091 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3015 61092 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3016 61093 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3017 61094 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3018 61095 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3019 61096 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3020 61097 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3021 61098 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3022 61099 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3023 61100 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3024 61101 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3025 61102 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3026 61103 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3027 61104 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3028 61105 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3029 61106 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3030 61107 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3031 61108 2016 Guadalajara      Huentitán Suc. Huentitán   73678  FRANC
## 3032 61109 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3033 61110 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3034 61111 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3035 61112 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3036 61113 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3037 61114 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3038 61115 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3039 61116 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3040 61117 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3041 61118 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3042 61119 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3043 61120 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3044 61121 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3045 61122 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3046 61123 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3047 61124 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3048 61125 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3049 61126 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3050 61127 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3051 61128 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3052 61129 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3053 61130 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3054 61131 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3055 61132 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3056 61133 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3057 61134 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3058 61135 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3059 61136 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3060 61137 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3061 61138 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3062 61139 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3063 61140 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3064 61141 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3065 61142 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3066 61143 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3067 61144 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3068 61145 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3069 61146 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3070 61147 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3071 61148 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3072 61149 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3073 61150 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3074 61151 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3075 61152 2016 Guadalajara      Huentitán Suc. Huentitán   73679  CONSU
## 3076 61153 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3077 61154 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3078 61155 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3079 61156 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3080 61157 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3081 61158 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3082 61159 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3083 61160 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3084 61161 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3085 61162 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3086 61163 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3087 61164 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3088 61165 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3089 61166 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3090 61167 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3091 61168 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3092 61169 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3093 61170 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3094 61171 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3095 61172 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3096 61173 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3097 61174 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3098 61175 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3099 61176 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3100 61177 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3101 61178 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3102 61179 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3103 61180 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3104 61181 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3105 61182 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3106 61183 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3107 61184 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3108 61185 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3109 61186 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3110 61187 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3111 61188 2016 Guadalajara      Huentitán Suc. Huentitán   73701  MARTH
## 3112 61189 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3113 61190 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3114 61191 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3115 61192 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3116 61193 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3117 61194 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3118 61195 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3119 61196 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3120 61197 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3121 61198 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3122 61199 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3123 61200 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3124 61201 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3125 61202 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3126 61203 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3127 61204 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3128 61205 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3129 61206 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3130 61207 2016 Guadalajara      Huentitán Suc. Huentitán   73713  VANES
## 3131 61208 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3132 61209 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3133 61210 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3134 61211 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3135 61212 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3136 61213 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3137 61214 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3138 61215 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3139 61216 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3140 61217 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3141 61218 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3142 61219 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3143 61220 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3144 61221 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3145 61222 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3146 61223 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3147 61224 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3148 61225 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3149 61226 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3150 61227 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3151 61228 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3152 61229 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3153 61230 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3154 61231 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3155 61232 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3156 61233 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3157 61234 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3158 61235 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3159 61236 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3160 61237 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3161 61238 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3162 61239 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3163 61240 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3164 61241 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3165 61242 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3166 61243 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3167 61244 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3168 61245 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3169 61246 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3170 61247 2016 Guadalajara      Huentitán Suc. Huentitán   73727  LEONI
## 3171 61248 2016 Guadalajara      Huentitán Suc. Huentitán   73738  MARIA
## 3172 61249 2016 Guadalajara      Huentitán Suc. Huentitán   73738  MARIA
## 3173 61250 2016 Guadalajara      Huentitán Suc. Huentitán   73738  MARIA
## 3174 61251 2016 Guadalajara      Huentitán Suc. Huentitán   73738  MARIA
## 3175 61252 2016 Guadalajara      Huentitán Suc. Huentitán   73738  MARIA
## 3176 61253 2016 Guadalajara      Huentitán Suc. Huentitán   73738  MARIA
## 3177 61254 2016 Guadalajara      Huentitán Suc. Huentitán   73738  MARIA
## 3178 61255 2016 Guadalajara      Huentitán Suc. Huentitán   73738  MARIA
## 3179 61256 2016 Guadalajara      Huentitán Suc. Huentitán   73738  MARIA
## 3180 61257 2016 Guadalajara      Huentitán Suc. Huentitán   73738  MARIA
## 3181 61258 2016 Guadalajara      Huentitán Suc. Huentitán   73738  MARIA
## 3182 61259 2016 Guadalajara      Huentitán Suc. Huentitán   73738  MARIA
## 3183 61260 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3184 61261 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3185 61262 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3186 61263 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3187 61264 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3188 61265 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3189 61266 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3190 61267 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3191 61268 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3192 61269 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3193 61270 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3194 61271 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3195 61272 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3196 61273 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3197 61274 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3198 61275 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3199 61276 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3200 61277 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3201 61278 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3202 61279 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3203 61280 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3204 61281 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3205 61282 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3206 61283 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3207 61284 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3208 61285 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3209 61286 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3210 61287 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3211 61288 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3212 61289 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3213 61290 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3214 61291 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3215 61292 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3216 61293 2016 Guadalajara      Huentitán Suc. Huentitán   73773  FRANC
## 3217 61294 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3218 61295 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3219 61296 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3220 61297 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3221 61298 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3222 61299 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3223 61300 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3224 61301 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3225 61302 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3226 61303 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3227 61304 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3228 61305 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3229 61306 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3230 61307 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3231 61308 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3232 61309 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3233 61310 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3234 61311 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3235 61312 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3236 61313 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3237 61314 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3238 61315 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3239 61316 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3240 61317 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3241 61318 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3242 61319 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3243 61320 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3244 61321 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3245 61322 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3246 61323 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3247 61324 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3248 61325 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3249 61326 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3250 61327 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3251 61328 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3252 61329 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3253 61330 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3254 61331 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3255 61332 2016 Guadalajara      Huentitán Suc. Huentitán   73785  MARIA
## 3256 61333 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3257 61334 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3258 61335 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3259 61336 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3260 61337 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3261 61338 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3262 61339 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3263 61340 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3264 61341 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3265 61342 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3266 61343 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3267 61344 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3268 61345 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3269 61346 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3270 61347 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3271 61348 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3272 61349 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3273 61350 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3274 61351 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3275 61352 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3276 61353 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3277 61354 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3278 61355 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3279 61356 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3280 61357 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3281 61358 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3282 61359 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3283 61360 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3284 61361 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3285 61362 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3286 61363 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3287 61364 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3288 61365 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3289 61366 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3290 61367 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3291 61368 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3292 61369 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3293 61370 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3294 61371 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3295 61372 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3296 61373 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3297 61374 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3298 61375 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3299 61376 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3300 61377 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3301 61378 2016 Guadalajara      Huentitán Suc. Huentitán   73803  ANTON
## 3302 61379 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3303 61380 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3304 61381 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3305 61382 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3306 61383 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3307 61384 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3308 61385 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3309 61386 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3310 61387 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3311 61388 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3312 61389 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3313 61390 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3314 61391 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3315 61392 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3316 61393 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3317 61394 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3318 61395 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3319 61396 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3320 61397 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3321 61398 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3322 61399 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3323 61400 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3324 61401 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3325 61402 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3326 61403 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3327 61404 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3328 61405 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3329 61406 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3330 61407 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3331 61408 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3332 61409 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3333 61410 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3334 61411 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3335 61412 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3336 61413 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3337 61414 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3338 61415 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3339 61416 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3340 61417 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3341 61418 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3342 61419 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3343 61420 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3344 61421 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3345 61422 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3346 61423 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3347 61424 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3348 61425 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3349 61426 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3350 61427 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3351 61428 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3352 61429 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3353 61430 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3354 61431 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3355 61432 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3356 61433 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3357 61434 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3358 61435 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3359 61436 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3360 61437 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3361 61438 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3362 61439 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3363 61440 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3364 61441 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3365 61442 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3366 61443 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3367 61444 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3368 61445 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3369 61446 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3370 61447 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3371 61448 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3372 61449 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3373 61450 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3374 61451 2016 Guadalajara      Huentitán Suc. Huentitán   73812  MARTH
## 3375 61452 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3376 61453 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3377 61454 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3378 61455 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3379 61456 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3380 61457 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3381 61458 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3382 61459 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3383 61460 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3384 61461 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3385 61462 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3386 61463 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3387 61464 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3388 61465 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3389 61466 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3390 61467 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3391 61468 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3392 61469 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3393 61470 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3394 61471 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3395 61472 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3396 61473 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3397 61474 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3398 61475 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3399 61476 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3400 61477 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3401 61478 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3402 61479 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3403 61480 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3404 61481 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3405 61482 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3406 61483 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3407 61484 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3408 61485 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3409 61486 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3410 61487 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3411 61488 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3412 61489 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3413 61490 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3414 61491 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3415 61492 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3416 61493 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3417 61494 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3418 61495 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3419 61496 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3420 61497 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3421 61498 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3422 61499 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3423 61500 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3424 61501 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3425 61502 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3426 61503 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3427 61504 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3428 61505 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3429 61506 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3430 61507 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3431 61508 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3432 61509 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3433 61510 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3434 61511 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3435 61512 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3436 61513 2016 Guadalajara      Huentitán Suc. Huentitán   73827  ELVIA
## 3437 61514 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3438 61515 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3439 61516 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3440 61517 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3441 61518 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3442 61519 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3443 61520 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3444 61521 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3445 61522 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3446 61523 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3447 61524 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3448 61525 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3449 61526 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3450 61527 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3451 61528 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3452 61529 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3453 61530 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3454 61531 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3455 61532 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3456 61533 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3457 61534 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3458 61535 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3459 61536 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3460 61537 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3461 61538 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3462 61539 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3463 61540 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3464 61541 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3465 61542 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3466 61543 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3467 61544 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3468 61545 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3469 61546 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3470 61547 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3471 61548 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3472 61549 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3473 61550 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3474 61551 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3475 61552 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3476 61553 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3477 61554 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3478 61555 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3479 61556 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3480 61557 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3481 61558 2016 Guadalajara      Huentitán Suc. Huentitán   73835  RODOL
## 3482 61559 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3483 61560 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3484 61561 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3485 61562 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3486 61563 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3487 61564 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3488 61565 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3489 61566 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3490 61567 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3491 61568 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3492 61569 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3493 61570 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3494 61571 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3495 61572 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3496 61573 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3497 61574 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3498 61575 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3499 61576 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3500 61577 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3501 61578 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3502 61579 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3503 61580 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3504 61581 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3505 61582 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3506 61583 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3507 61584 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3508 61585 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3509 61586 2016 Guadalajara      Huentitán Suc. Huentitán   73863  JENNI
## 3510 61587 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3511 61588 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3512 61589 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3513 61590 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3514 61591 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3515 61592 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3516 61593 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3517 61594 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3518 61595 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3519 61596 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3520 61597 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3521 61598 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3522 61599 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3523 61600 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3524 61601 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3525 61602 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3526 61603 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3527 61604 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3528 61605 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3529 61606 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3530 61607 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3531 61608 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3532 61609 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3533 61610 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3534 61611 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3535 61612 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3536 61613 2016 Guadalajara      Huentitán Suc. Huentitán   73888  MARIA
## 3537 61614 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3538 61615 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3539 61616 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3540 61617 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3541 61618 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3542 61619 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3543 61620 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3544 61621 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3545 61622 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3546 61623 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3547 61624 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3548 61625 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3549 61626 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3550 61627 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3551 61628 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3552 61629 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3553 61630 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3554 61631 2016 Guadalajara      Huentitán Suc. Huentitán   73900  ROSA 
## 3555 61632 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3556 61633 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3557 61634 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3558 61635 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3559 61636 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3560 61637 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3561 61638 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3562 61639 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3563 61640 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3564 61641 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3565 61642 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3566 61643 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3567 61644 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3568 61645 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3569 61646 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3570 61647 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3571 61648 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3572 61649 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3573 61650 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3574 61651 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3575 61652 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3576 61653 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3577 61654 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3578 61655 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3579 61656 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3580 61657 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3581 61658 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3582 61659 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3583 61660 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3584 61661 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3585 61662 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3586 61663 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3587 61664 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3588 61665 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3589 61666 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3590 61667 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3591 61668 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3592 61669 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3593 61670 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3594 61671 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3595 61672 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3596 61673 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3597 61674 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3598 61675 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3599 61676 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3600 61677 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3601 61678 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3602 61679 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3603 61680 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3604 61681 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3605 61682 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3606 61683 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3607 61684 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3608 61685 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3609 61686 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3610 61687 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3611 61688 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3612 61689 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3613 61690 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3614 61691 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3615 61692 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3616 61693 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3617 61694 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3618 61695 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3619 61696 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3620 61697 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3621 61698 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3622 61699 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3623 61700 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3624 61701 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3625 61702 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3626 61703 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3627 61704 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3628 61705 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3629 61706 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3630 61707 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3631 61708 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3632 61709 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3633 61710 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3634 61711 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3635 61712 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3636 61713 2016 Guadalajara      Huentitán Suc. Huentitán   73901  EFREN
## 3637 61714 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3638 61715 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3639 61716 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3640 61717 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3641 61718 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3642 61719 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3643 61720 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3644 61721 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3645 61722 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3646 61723 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3647 61724 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3648 61725 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3649 61726 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3650 61727 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3651 61728 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3652 61729 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3653 61730 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3654 61731 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3655 61732 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3656 61733 2016 Guadalajara      Huentitán Suc. Huentitán   73911  MARIA
## 3657 61734 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3658 61735 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3659 61736 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3660 61737 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3661 61738 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3662 61739 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3663 61740 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3664 61741 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3665 61742 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3666 61743 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3667 61744 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3668 61745 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3669 61746 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3670 61747 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3671 61748 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3672 61749 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3673 61750 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3674 61751 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3675 61752 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3676 61753 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3677 61754 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3678 61755 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3679 61756 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3680 61757 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3681 61758 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3682 61759 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3683 61760 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3684 61761 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3685 61762 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3686 61763 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3687 61764 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3688 61765 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3689 61766 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3690 61767 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3691 61768 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3692 61769 2016 Guadalajara      Huentitán Suc. Huentitán   73924  MARIA
## 3693 61770 2016 Guadalajara      Huentitán Suc. Huentitán   73933  ABARR
## 3694 61771 2016 Guadalajara      Huentitán Suc. Huentitán   73933  ABARR
## 3695 61772 2016 Guadalajara      Huentitán Suc. Huentitán   73933  ABARR
## 3696 61773 2016 Guadalajara      Huentitán Suc. Huentitán   73933  ABARR
## 3697 61774 2016 Guadalajara      Huentitán Suc. Huentitán   73933  ABARR
## 3698 61775 2016 Guadalajara      Huentitán Suc. Huentitán   73933  ABARR
## 3699 61776 2016 Guadalajara      Huentitán Suc. Huentitán   73933  ABARR
## 3700 61777 2016 Guadalajara      Huentitán Suc. Huentitán   73933  ABARR
## 3701 61778 2016 Guadalajara      Huentitán Suc. Huentitán   73933  ABARR
## 3702 61779 2016 Guadalajara      Huentitán Suc. Huentitán   73933  ABARR
## 3703 61780 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3704 61781 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3705 61782 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3706 61783 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3707 61784 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3708 61785 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3709 61786 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3710 61787 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3711 61788 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3712 61789 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3713 61790 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3714 61791 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3715 61792 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3716 61793 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3717 61794 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3718 61795 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3719 61796 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3720 61797 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3721 61798 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3722 61799 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3723 61800 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3724 61801 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3725 61802 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3726 61803 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3727 61804 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3728 61805 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3729 61806 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3730 61807 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3731 61808 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3732 61809 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3733 61810 2016 Guadalajara      Huentitán Suc. Huentitán   73935  MARIA
## 3734 61811 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3735 61812 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3736 61813 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3737 61814 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3738 61815 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3739 61816 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3740 61817 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3741 61818 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3742 61819 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3743 61820 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3744 61821 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3745 61822 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3746 61823 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3747 61824 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3748 61825 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3749 61826 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3750 61827 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3751 61828 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3752 61829 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3753 61830 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3754 61831 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3755 61832 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3756 61833 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3757 61834 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3758 61835 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3759 61836 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3760 61837 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3761 61838 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3762 61839 2016 Guadalajara      Huentitán Suc. Huentitán   73942  MANUE
## 3763 61840 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3764 61841 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3765 61842 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3766 61843 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3767 61844 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3768 61845 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3769 61846 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3770 61847 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3771 61848 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3772 61849 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3773 61850 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3774 61851 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3775 61852 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3776 61853 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3777 61854 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3778 61855 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3779 61856 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3780 61857 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3781 61858 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3782 61859 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3783 61860 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3784 61861 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3785 61862 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3786 61863 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3787 61864 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3788 61865 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3789 61866 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3790 61867 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3791 61868 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3792 61869 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3793 61870 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3794 61871 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3795 61872 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3796 61873 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3797 61874 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3798 61875 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3799 61876 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3800 61877 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3801 61878 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3802 61879 2016 Guadalajara      Huentitán Suc. Huentitán   73952  MARTH
## 3803 61880 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3804 61881 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3805 61882 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3806 61883 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3807 61884 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3808 61885 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3809 61886 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3810 61887 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3811 61888 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3812 61889 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3813 61890 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3814 61891 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3815 61892 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3816 61893 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3817 61894 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3818 61895 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3819 61896 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3820 61897 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3821 61898 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3822 61899 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3823 61900 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3824 61901 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3825 61902 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3826 61903 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3827 61904 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3828 61905 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3829 61906 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3830 61907 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3831 61908 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3832 61909 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3833 61910 2016 Guadalajara      Huentitán Suc. Huentitán   73962  JOSEF
## 3834 61911 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3835 61912 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3836 61913 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3837 61914 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3838 61915 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3839 61916 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3840 61917 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3841 61918 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3842 61919 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3843 61920 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3844 61921 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3845 61922 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3846 61923 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3847 61924 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3848 61925 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3849 61926 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3850 61927 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3851 61928 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3852 61929 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3853 61930 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3854 61931 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3855 61932 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3856 61933 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3857 61934 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3858 61935 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3859 61936 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3860 61937 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3861 61938 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3862 61939 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3863 61940 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3864 61941 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3865 61942 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3866 61943 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3867 61944 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3868 61945 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3869 61946 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3870 61947 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3871 61948 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3872 61949 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3873 61950 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3874 61951 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3875 61952 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3876 61953 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3877 61954 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3878 61955 2016 Guadalajara      Huentitán Suc. Huentitán   73966  ABARR
## 3879 61956 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3880 61957 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3881 61958 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3882 61959 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3883 61960 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3884 61961 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3885 61962 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3886 61963 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3887 61964 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3888 61965 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3889 61966 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3890 61967 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3891 61968 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3892 61969 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3893 61970 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3894 61971 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3895 61972 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3896 61973 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3897 61974 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3898 61975 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3899 61976 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3900 61977 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3901 61978 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3902 61979 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3903 61980 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3904 61981 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3905 61982 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3906 61983 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3907 61984 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3908 61985 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3909 61986 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3910 61987 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3911 61988 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3912 61989 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3913 61990 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3914 61991 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3915 61992 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3916 61993 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3917 61994 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3918 61995 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3919 61996 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3920 61997 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3921 61998 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3922 61999 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3923 62000 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3924 62001 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3925 62002 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3926 62003 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3927 62004 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3928 62005 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3929 62006 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3930 62007 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3931 62008 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3932 62009 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3933 62010 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3934 62011 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3935 62012 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3936 62013 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3937 62014 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3938 62015 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3939 62016 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3940 62017 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3941 62018 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3942 62019 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3943 62020 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3944 62021 2016 Guadalajara      Huentitán Suc. Huentitán   73972  ROSA 
## 3945 62022 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3946 62023 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3947 62024 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3948 62025 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3949 62026 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3950 62027 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3951 62028 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3952 62029 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3953 62030 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3954 62031 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3955 62032 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3956 62033 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3957 62034 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3958 62035 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3959 62036 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3960 62037 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3961 62038 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3962 62039 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3963 62040 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3964 62041 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3965 62042 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3966 62043 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3967 62044 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3968 62045 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3969 62046 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3970 62047 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3971 62048 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3972 62049 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3973 62050 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3974 62051 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3975 62052 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3976 62053 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3977 62054 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3978 62055 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3979 62056 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3980 62057 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3981 62058 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3982 62059 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3983 62060 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3984 62061 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3985 62062 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3986 62063 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3987 62064 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3988 62065 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3989 62066 2016 Guadalajara      Huentitán Suc. Huentitán   73987  ROSAL
## 3990 62067 2016 Guadalajara      Huentitán Suc. Huentitán   73989  ANA M
## 3991 62068 2016 Guadalajara      Huentitán Suc. Huentitán   73989  ANA M
## 3992 62069 2016 Guadalajara      Huentitán Suc. Huentitán   73989  ANA M
## 3993 62070 2016 Guadalajara      Huentitán Suc. Huentitán   73989  ANA M
## 3994 62071 2016 Guadalajara      Huentitán Suc. Huentitán   73989  ANA M
## 3995 62072 2016 Guadalajara      Huentitán Suc. Huentitán   73989  ANA M
## 3996 62073 2016 Guadalajara      Huentitán Suc. Huentitán   73989  ANA M
## 3997 62074 2016 Guadalajara      Huentitán Suc. Huentitán   73989  ANA M
## 3998 62075 2016 Guadalajara      Huentitán Suc. Huentitán   73989  ANA M
## 3999 62076 2016 Guadalajara      Huentitán Suc. Huentitán   73989  ANA M
##      Tamaño.Cte.Industria         Segmento.Det                Marca
## 1                   Micro         Agua Mineral      Topo Chico A.M.
## 2                   Micro     Bebidas de Fruta               Frutsi
## 3                   Micro        Colas Regular            Coca-Cola
## 4                   Micro        Colas Regular            Coca-Cola
## 5                   Micro        Colas Regular            Coca-Cola
## 6                   Micro      Sabores Regular               Fresca
## 7                   Micro      Agua Saborizada            Ciel Mini
## 8                   Micro     Bebidas de Fruta               Frutsi
## 9                   Micro     Bebidas de Fruta           Valle Frut
## 10                  Micro          Colas Light       Coca-Cola Life
## 11                  Micro          Colas Light      Coca-Cola Light
## 12                  Micro        Colas Regular            Coca-Cola
## 13                  Micro        Colas Regular            Coca-Cola
## 14                  Micro        Colas Regular            Coca-Cola
## 15                  Micro        Colas Regular            Coca-Cola
## 16                  Micro        Colas Regular            Coca-Cola
## 17                  Micro        Colas Regular            Coca-Cola
## 18                  Micro        Colas Regular            Coca-Cola
## 19                  Micro        Colas Regular            Coca-Cola
## 20                  Micro        Colas Regular            Coca-Cola
## 21                  Micro   Isotónicos Regular             Powerade
## 22                  Micro     Jugos y Néctares            Del Valle
## 23                  Micro     Jugos y Néctares Del Valle Nutridefen
## 24                  Micro      Sabores Regular                Fanta
## 25                  Micro      Sabores Regular                Fanta
## 26                  Micro      Sabores Regular               Fresca
## 27                  Micro      Sabores Regular         Manzana Lift
## 28                  Micro      Sabores Regular               Sprite
## 29                  Micro      Sabores Regular               Sprite
## 30                  Micro           Té Regular             Fuze Tea
## 31                  Micro      Agua Purificada Ciel Agua Purificada
## 32                  Micro      Agua Purificada Ciel Agua Purificada
## 33                  Micro      Agua Purificada Ciel Agua Purificada
## 34                  Micro      Agua Purificada Ciel Agua Purificada
## 35                  Micro      Agua Saborizada          Ciel Exprim
## 36                  Micro      Agua Saborizada            Ciel Mini
## 37                  Micro     Bebidas de Fruta               Frutsi
## 38                  Micro  Bebidas Energeticas              Glacéau
## 39                  Micro          Colas Light      Coca-Cola Light
## 40                  Micro          Colas Light      Coca-Cola Light
## 41                  Micro        Colas Regular            Coca-Cola
## 42                  Micro        Colas Regular            Coca-Cola
## 43                  Micro        Colas Regular            Coca-Cola
## 44                  Micro        Colas Regular            Coca-Cola
## 45                  Micro        Colas Regular            Coca-Cola
## 46                  Micro        Colas Regular            Coca-Cola
## 47                  Micro        Colas Regular            Coca-Cola
## 48                  Micro        Colas Regular            Coca-Cola
## 49                  Micro        Colas Regular            Coca-Cola
## 50                  Micro        Colas Regular            Coca-Cola
## 51                  Micro        Colas Regular            Coca-Cola
## 52                  Micro     Jugos y Néctares            Del Valle
## 53                  Micro     Jugos y Néctares            Del Valle
## 54                  Micro     Jugos y Néctares    Del Valle Reserva
## 55                  Micro     Jugos y Néctares    Del Valle Reserva
## 56                  Micro Leche UHT Especializ Santa Clara Deslacto
## 57                  Micro    Leche UHT Regular   Santa Clara Entera
## 58                  Micro Leche UHT Saborizada Santa Clara Saboriza
## 59                  Micro      Sabores Regular     Del Valle y Nada
## 60                  Micro      Sabores Regular     Del Valle y Nada
## 61                  Micro      Sabores Regular     Del Valle y Nada
## 62                  Micro      Sabores Regular                Fanta
## 63                  Micro      Sabores Regular                Fanta
## 64                  Micro      Sabores Regular               Fresca
## 65                  Micro      Sabores Regular               Fresca
## 66                  Micro      Sabores Regular         Manzana Lift
## 67                  Micro      Sabores Regular         Manzana Lift
## 68                  Micro      Sabores Regular               Sprite
## 69                  Micro      Sabores Regular               Sprite
## 70                  Micro           Té Regular             Fuze Tea
## 71                  Micro         Agua Mineral      Topo Chico A.M.
## 72                  Micro      Agua Purificada Ciel Agua Purificada
## 73                  Micro      Agua Saborizada          Ciel Exprim
## 74                  Micro      Agua Saborizada            Ciel Mini
## 75                  Micro     Bebidas de Fruta               Frutsi
## 76                  Micro        Colas Regular            Coca-Cola
## 77                  Micro        Colas Regular            Coca-Cola
## 78                  Micro        Colas Regular            Coca-Cola
## 79                  Micro        Colas Regular            Coca-Cola
## 80                  Micro        Colas Regular            Coca-Cola
## 81                  Micro        Colas Regular            Coca-Cola
## 82                  Micro        Colas Regular            Coca-Cola
## 83                  Micro     Jugos y Néctares            Del Valle
## 84                  Micro Leche UHT Saborizada Santa Clara Saboriza
## 85                  Micro      Sabores Regular     Del Valle y Nada
## 86                  Micro      Sabores Regular                Fanta
## 87                  Micro      Sabores Regular               Fresca
## 88                  Micro      Sabores Regular         Manzana Lift
## 89                  Micro      Sabores Regular         Manzana Lift
## 90                  Micro      Sabores Regular               Sprite
## 91                  Micro         Agua Mineral      Topo Chico A.M.
## 92                  Micro      Agua Purificada Ciel Agua Purificada
## 93                  Micro          Colas Light       Coca-Cola Life
## 94                  Micro        Colas Regular            Coca-Cola
## 95                  Micro        Colas Regular            Coca-Cola
## 96                  Micro        Colas Regular            Coca-Cola
## 97                  Micro        Colas Regular            Coca-Cola
## 98                  Micro        Colas Regular            Coca-Cola
## 99                  Micro        Colas Regular            Coca-Cola
## 100                 Micro        Colas Regular            Coca-Cola
## 101                 Micro        Colas Regular            Coca-Cola
## 102                 Micro     Jugos y Néctares            Del Valle
## 103                 Micro     Jugos y Néctares            Del Valle
## 104                 Micro     Jugos y Néctares            Del Valle
## 105                 Micro      Sabores Regular                Fanta
## 106                 Micro      Sabores Regular                Fanta
## 107                 Micro      Sabores Regular               Fresca
## 108                 Micro      Sabores Regular               Fresca
## 109                 Micro      Sabores Regular               Fresca
## 110                 Micro      Sabores Regular         Manzana Lift
## 111                 Micro      Sabores Regular         Manzana Lift
## 112                 Micro      Sabores Regular               Sprite
## 113                 Micro      Sabores Regular               Sprite
## 114                 Micro      Sabores Regular               Sprite
## 115                 Micro           Té Regular             Fuze Tea
## 116                 Micro         Agua Mineral      Topo Chico A.M.
## 117                 Micro      Agua Purificada Ciel Agua Purificada
## 118                 Micro      Agua Purificada Ciel Agua Purificada
## 119                 Micro      Agua Purificada Ciel Agua Purificada
## 120                 Micro      Agua Purificada Ciel Agua Purificada
## 121                 Micro      Agua Purificada Ciel Agua Purificada
## 122                 Micro      Agua Saborizada            Ciel Mini
## 123                 Micro     Bebidas de Fruta       Delaware Punch
## 124                 Micro     Bebidas de Fruta               Frutsi
## 125                 Micro     Bebidas de Fruta                Pulpy
## 126                 Micro     Bebidas de Fruta           Valle Frut
## 127                 Micro     Bebidas de Fruta           Valle Frut
## 128                 Micro     Bebidas de Fruta           Valle Frut
## 129                 Micro  Bebidas Energeticas                 Burn
## 130                 Micro          Colas Light       Coca-Cola Life
## 131                 Micro          Colas Light       Coca-Cola Life
## 132                 Micro          Colas Light      Coca-Cola Light
## 133                 Micro          Colas Light      Coca-Cola Light
## 134                 Micro          Colas Light      Coca-Cola Light
## 135                 Micro          Colas Light      Coca-Cola Light
## 136                 Micro          Colas Light       Coca-Cola Zero
## 137                 Micro          Colas Light       Coca-Cola Zero
## 138                 Micro        Colas Regular            Coca-Cola
## 139                 Micro        Colas Regular            Coca-Cola
## 140                 Micro        Colas Regular            Coca-Cola
## 141                 Micro        Colas Regular            Coca-Cola
## 142                 Micro        Colas Regular            Coca-Cola
## 143                 Micro        Colas Regular            Coca-Cola
## 144                 Micro        Colas Regular            Coca-Cola
## 145                 Micro        Colas Regular            Coca-Cola
## 146                 Micro        Colas Regular            Coca-Cola
## 147                 Micro        Colas Regular            Coca-Cola
## 148                 Micro        Colas Regular            Coca-Cola
## 149                 Micro        Colas Regular            Coca-Cola
## 150                 Micro        Colas Regular            Coca-Cola
## 151                 Micro        Colas Regular            Coca-Cola
## 152                 Micro   Isotónicos Regular             Powerade
## 153                 Micro   Isotónicos Regular             Powerade
## 154                 Micro   Isotónicos Regular             Powerade
## 155                 Micro     Jugos y Néctares            Del Valle
## 156                 Micro     Jugos y Néctares            Del Valle
## 157                 Micro     Jugos y Néctares            Del Valle
## 158                 Micro     Jugos y Néctares    Del Valle Reserva
## 159                 Micro Leche UHT Saborizada Santa Clara Saboriza
## 160                 Micro      Sabores Regular                Fanta
## 161                 Micro      Sabores Regular                Fanta
## 162                 Micro      Sabores Regular                Fanta
## 163                 Micro      Sabores Regular                Fanta
## 164                 Micro      Sabores Regular                Fanta
## 165                 Micro      Sabores Regular                Fanta
## 166                 Micro      Sabores Regular               Fresca
## 167                 Micro      Sabores Regular               Fresca
## 168                 Micro      Sabores Regular               Fresca
## 169                 Micro      Sabores Regular               Fresca
## 170                 Micro      Sabores Regular               Fresca
## 171                 Micro      Sabores Regular         Manzana Lift
## 172                 Micro      Sabores Regular         Manzana Lift
## 173                 Micro      Sabores Regular         Manzana Lift
## 174                 Micro      Sabores Regular         Manzana Lift
## 175                 Micro      Sabores Regular        Sidral Mundet
## 176                 Micro      Sabores Regular        Sidral Mundet
## 177                 Micro      Sabores Regular        Sidral Mundet
## 178                 Micro      Sabores Regular               Sprite
## 179                 Micro      Sabores Regular               Sprite
## 180                 Micro      Sabores Regular               Sprite
## 181                 Micro      Sabores Regular               Sprite
## 182                 Micro      Sabores Regular               Sprite
## 183                 Micro      Sabores Regular               Sprite
## 184                 Micro           Té Regular             Fuze Tea
## 185                 Micro           Té Regular             Fuze Tea
## 186                 Micro         Agua Mineral    Ciel Mineralizada
## 187                 Micro         Agua Mineral      Topo Chico A.M.
## 188                 Micro      Agua Purificada Ciel Agua Purificada
## 189                 Micro      Agua Saborizada      Ciel Saborizada
## 190                 Micro     Bebidas de Fruta               Frutsi
## 191                 Micro     Bebidas de Fruta                Pulpy
## 192                 Micro     Bebidas de Fruta           Valle Frut
## 193                 Micro          Colas Light      Coca-Cola Light
## 194                 Micro          Colas Light      Coca-Cola Light
## 195                 Micro          Colas Light      Coca-Cola Light
## 196                 Micro        Colas Regular            Coca-Cola
## 197                 Micro        Colas Regular            Coca-Cola
## 198                 Micro        Colas Regular            Coca-Cola
## 199                 Micro        Colas Regular            Coca-Cola
## 200                 Micro        Colas Regular            Coca-Cola
## 201                 Micro        Colas Regular            Coca-Cola
## 202                 Micro        Colas Regular            Coca-Cola
## 203                 Micro        Colas Regular            Coca-Cola
## 204                 Micro        Colas Regular            Coca-Cola
## 205                 Micro        Colas Regular            Coca-Cola
## 206                 Micro        Colas Regular            Coca-Cola
## 207                 Micro        Colas Regular            Coca-Cola
## 208                 Micro        Colas Regular            Coca-Cola
## 209                 Micro     Isotónicos Light        Powerade Zero
## 210                 Micro   Isotónicos Regular             Powerade
## 211                 Micro   Isotónicos Regular             Powerade
## 212                 Micro   Isotónicos Regular             Powerade
## 213                 Micro     Jugos y Néctares            Del Valle
## 214                 Micro     Jugos y Néctares            Del Valle
## 215                 Micro     Jugos y Néctares            Del Valle
## 216                 Micro     Jugos y Néctares    Del Valle Reserva
## 217                 Micro Leche UHT Saborizada Santa Clara Saboriza
## 218                 Micro      Sabores Regular                Fanta
## 219                 Micro      Sabores Regular                Fanta
## 220                 Micro      Sabores Regular                Fanta
## 221                 Micro      Sabores Regular               Fresca
## 222                 Micro      Sabores Regular               Fresca
## 223                 Micro      Sabores Regular         Manzana Lift
## 224                 Micro      Sabores Regular         Manzana Lift
## 225                 Micro      Sabores Regular        Sidral Mundet
## 226                 Micro      Sabores Regular               Sprite
## 227                 Micro      Sabores Regular               Sprite
## 228                 Micro      Sabores Regular               Sprite
## 229                 Micro      Sabores Regular               Sprite
## 230                 Micro           Té Regular             Fuze Tea
## 231                 Micro           Té Regular             Fuze Tea
## 232                 Micro           Té Regular             Fuze Tea
## 233                 Micro         Agua Mineral      Topo Chico A.M.
## 234                 Micro      Agua Purificada Ciel Agua Purificada
## 235                 Micro      Agua Purificada Ciel Agua Purificada
## 236                 Micro     Bebidas de Fruta       Delaware Punch
## 237                 Micro     Bebidas de Fruta               Frutsi
## 238                 Micro     Bebidas de Fruta           Valle Frut
## 239                 Micro     Bebidas de Fruta           Valle Frut
## 240                 Micro  Bebidas Energeticas                 Burn
## 241                 Micro  Bebidas Energeticas                 Burn
## 242                 Micro          Colas Light       Coca-Cola Life
## 243                 Micro          Colas Light       Coca-Cola Life
## 244                 Micro          Colas Light      Coca-Cola Light
## 245                 Micro          Colas Light      Coca-Cola Light
## 246                 Micro          Colas Light      Coca-Cola Light
## 247                 Micro          Colas Light       Coca-Cola Zero
## 248                 Micro          Colas Light       Coca-Cola Zero
## 249                 Micro        Colas Regular            Coca-Cola
## 250                 Micro        Colas Regular            Coca-Cola
## 251                 Micro        Colas Regular            Coca-Cola
## 252                 Micro        Colas Regular            Coca-Cola
## 253                 Micro        Colas Regular            Coca-Cola
## 254                 Micro        Colas Regular            Coca-Cola
## 255                 Micro        Colas Regular            Coca-Cola
## 256                 Micro        Colas Regular            Coca-Cola
## 257                 Micro        Colas Regular            Coca-Cola
## 258                 Micro        Colas Regular            Coca-Cola
## 259                 Micro        Colas Regular            Coca-Cola
## 260                 Micro        Colas Regular            Coca-Cola
## 261                 Micro   Isotónicos Regular             Powerade
## 262                 Micro   Isotónicos Regular             Powerade
## 263                 Micro   Isotónicos Regular             Powerade
## 264                 Micro     Jugos y Néctares            Del Valle
## 265                 Micro     Jugos y Néctares            Del Valle
## 266                 Micro     Jugos y Néctares            Del Valle
## 267                 Micro     Jugos y Néctares            Del Valle
## 268                 Micro     Jugos y Néctares Del Valle Nutridefen
## 269                 Micro Leche UHT Saborizada Santa Clara Saboriza
## 270                 Micro      Sabores Regular     Del Valle y Nada
## 271                 Micro      Sabores Regular                Fanta
## 272                 Micro      Sabores Regular                Fanta
## 273                 Micro      Sabores Regular                Fanta
## 274                 Micro      Sabores Regular                Fanta
## 275                 Micro      Sabores Regular                Fanta
## 276                 Micro      Sabores Regular               Fresca
## 277                 Micro      Sabores Regular               Fresca
## 278                 Micro      Sabores Regular               Fresca
## 279                 Micro      Sabores Regular         Manzana Lift
## 280                 Micro      Sabores Regular         Manzana Lift
## 281                 Micro      Sabores Regular         Manzana Lift
## 282                 Micro      Sabores Regular         Manzana Lift
## 283                 Micro      Sabores Regular         Manzana Lift
## 284                 Micro      Sabores Regular        Sidral Mundet
## 285                 Micro      Sabores Regular        Sidral Mundet
## 286                 Micro      Sabores Regular               Sprite
## 287                 Micro      Sabores Regular               Sprite
## 288                 Micro      Sabores Regular               Sprite
## 289                 Micro      Sabores Regular               Sprite
## 290                 Micro      Sabores Regular               Sprite
## 291                 Micro      Sabores Regular               Sprite
## 292                 Micro           Té Regular             Fuze Tea
## 293                 Micro           Té Regular             Fuze Tea
## 294                 Micro         Agua Mineral    Ciel Mineralizada
## 295                 Micro         Agua Mineral      Topo Chico A.M.
## 296                 Micro      Agua Purificada Ciel Agua Purificada
## 297                 Micro      Agua Purificada Ciel Agua Purificada
## 298                 Micro      Agua Purificada Ciel Agua Purificada
## 299                 Micro      Agua Purificada Ciel Agua Purificada
## 300                 Micro      Agua Saborizada            Ciel Mini
## 301                 Micro     Bebidas de Fruta               Frutsi
## 302                 Micro     Bebidas de Fruta           Valle Frut
## 303                 Micro     Bebidas de Fruta           Valle Frut
## 304                 Micro          Colas Light      Coca-Cola Light
## 305                 Micro          Colas Light      Coca-Cola Light
## 306                 Micro          Colas Light      Coca-Cola Light
## 307                 Micro        Colas Regular            Coca-Cola
## 308                 Micro        Colas Regular            Coca-Cola
## 309                 Micro        Colas Regular            Coca-Cola
## 310                 Micro        Colas Regular            Coca-Cola
## 311                 Micro        Colas Regular            Coca-Cola
## 312                 Micro        Colas Regular            Coca-Cola
## 313                 Micro        Colas Regular            Coca-Cola
## 314                 Micro        Colas Regular            Coca-Cola
## 315                 Micro        Colas Regular            Coca-Cola
## 316                 Micro        Colas Regular            Coca-Cola
## 317                 Micro        Colas Regular            Coca-Cola
## 318                 Micro        Colas Regular            Coca-Cola
## 319                 Micro        Colas Regular            Coca-Cola
## 320                 Micro        Colas Regular            Coca-Cola
## 321                 Micro   Isotónicos Regular             Powerade
## 322                 Micro   Isotónicos Regular             Powerade
## 323                 Micro     Jugos y Néctares            Del Valle
## 324                 Micro     Jugos y Néctares            Del Valle
## 325                 Micro     Jugos y Néctares            Del Valle
## 326                 Micro Leche UHT Saborizada Santa Clara Saboriza
## 327                 Micro      Sabores Regular                Fanta
## 328                 Micro      Sabores Regular                Fanta
## 329                 Micro      Sabores Regular                Fanta
## 330                 Micro      Sabores Regular                Fanta
## 331                 Micro      Sabores Regular                Fanta
## 332                 Micro      Sabores Regular               Fresca
## 333                 Micro      Sabores Regular               Fresca
## 334                 Micro      Sabores Regular               Fresca
## 335                 Micro      Sabores Regular         Manzana Lift
## 336                 Micro      Sabores Regular         Manzana Lift
## 337                 Micro      Sabores Regular        Sidral Mundet
## 338                 Micro      Sabores Regular        Sidral Mundet
## 339                 Micro      Sabores Regular        Sidral Mundet
## 340                 Micro      Sabores Regular               Sprite
## 341                 Micro      Sabores Regular               Sprite
## 342                 Micro      Sabores Regular               Sprite
## 343                 Micro      Sabores Regular               Sprite
## 344                 Micro      Sabores Regular               Sprite
## 345                 Micro      Sabores Regular               Sprite
## 346                 Micro           Té Regular             Fuze Tea
## 347                 Micro         Agua Mineral    Ciel Mineralizada
## 348                 Micro         Agua Mineral      Topo Chico A.M.
## 349                 Micro      Agua Purificada Ciel Agua Purificada
## 350                 Micro      Agua Purificada Ciel Agua Purificada
## 351                 Micro      Agua Purificada Ciel Agua Purificada
## 352                 Micro      Agua Purificada Ciel Agua Purificada
## 353                 Micro      Agua Saborizada          Ciel Exprim
## 354                 Micro      Agua Saborizada            Ciel Mini
## 355                 Micro      Agua Saborizada      Ciel Saborizada
## 356                 Micro      Agua Saborizada      Ciel Saborizada
## 357                 Micro     Bebidas de Fruta       Delaware Punch
## 358                 Micro     Bebidas de Fruta                Pulpy
## 359                 Micro     Bebidas de Fruta           Valle Frut
## 360                 Micro        Colas Regular            Coca-Cola
## 361                 Micro        Colas Regular            Coca-Cola
## 362                 Micro        Colas Regular            Coca-Cola
## 363                 Micro        Colas Regular            Coca-Cola
## 364                 Micro        Colas Regular            Coca-Cola
## 365                 Micro        Colas Regular            Coca-Cola
## 366                 Micro        Colas Regular            Coca-Cola
## 367                 Micro        Colas Regular            Coca-Cola
## 368                 Micro        Colas Regular            Coca-Cola
## 369                 Micro        Colas Regular            Coca-Cola
## 370                 Micro        Colas Regular            Coca-Cola
## 371                 Micro        Colas Regular            Coca-Cola
## 372                 Micro   Isotónicos Regular             Powerade
## 373                 Micro     Jugos y Néctares            Del Valle
## 374                 Micro     Jugos y Néctares            Del Valle
## 375                 Micro     Jugos y Néctares    Del Valle Reserva
## 376                 Micro     Jugos y Néctares    Del Valle Reserva
## 377                 Micro Leche UHT Saborizada Santa Clara Saboriza
## 378                 Micro      Sabores Regular                Fanta
## 379                 Micro      Sabores Regular                Fanta
## 380                 Micro      Sabores Regular                Fanta
## 381                 Micro      Sabores Regular                Fanta
## 382                 Micro      Sabores Regular                Fanta
## 383                 Micro      Sabores Regular               Fresca
## 384                 Micro      Sabores Regular               Fresca
## 385                 Micro      Sabores Regular               Fresca
## 386                 Micro      Sabores Regular               Fresca
## 387                 Micro      Sabores Regular               Fresca
## 388                 Micro      Sabores Regular         Manzana Lift
## 389                 Micro      Sabores Regular         Manzana Lift
## 390                 Micro      Sabores Regular         Manzana Lift
## 391                 Micro      Sabores Regular         Manzana Lift
## 392                 Micro      Sabores Regular        Sidral Mundet
## 393                 Micro      Sabores Regular        Sidral Mundet
## 394                 Micro      Sabores Regular               Sprite
## 395                 Micro      Sabores Regular               Sprite
## 396                 Micro      Sabores Regular               Sprite
## 397                 Micro      Sabores Regular               Sprite
## 398                 Micro      Sabores Regular               Sprite
## 399                 Micro      Sabores Regular               Sprite
## 400                 Micro           Té Regular             Fuze Tea
## 401                 Micro         Agua Mineral      Topo Chico A.M.
## 402                 Micro     Bebidas de Fruta               Frutsi
## 403                 Micro          Colas Light       Coca-Cola Life
## 404                 Micro          Colas Light      Coca-Cola Light
## 405                 Micro          Colas Light      Coca-Cola Light
## 406                 Micro        Colas Regular            Coca-Cola
## 407                 Micro        Colas Regular            Coca-Cola
## 408                 Micro        Colas Regular            Coca-Cola
## 409                 Micro        Colas Regular            Coca-Cola
## 410                 Micro        Colas Regular            Coca-Cola
## 411                 Micro        Colas Regular            Coca-Cola
## 412                 Micro        Colas Regular            Coca-Cola
## 413                 Micro        Colas Regular            Coca-Cola
## 414                 Micro        Colas Regular            Coca-Cola
## 415                 Micro        Colas Regular            Coca-Cola
## 416                 Micro   Isotónicos Regular             Powerade
## 417                 Micro     Jugos y Néctares            Del Valle
## 418                 Micro      Sabores Regular     Del Valle y Nada
## 419                 Micro      Sabores Regular                Fanta
## 420                 Micro      Sabores Regular                Fanta
## 421                 Micro      Sabores Regular                Fanta
## 422                 Micro      Sabores Regular               Fresca
## 423                 Micro      Sabores Regular         Manzana Lift
## 424                 Micro      Sabores Regular        Sidral Mundet
## 425                 Micro      Sabores Regular               Sprite
## 426                 Micro      Sabores Regular               Sprite
## 427                 Micro      Sabores Regular               Sprite
## 428                 Micro           Té Regular             Fuze Tea
## 429                 Micro         Agua Mineral      Topo Chico A.M.
## 430                 Micro         Agua Mineral      Topo Chico A.M.
## 431                 Micro      Agua Purificada Ciel Agua Purificada
## 432                 Micro      Agua Purificada Ciel Agua Purificada
## 433                 Micro      Agua Purificada Ciel Agua Purificada
## 434                 Micro      Agua Purificada Ciel Agua Purificada
## 435                 Micro      Agua Saborizada      Ciel Saborizada
## 436                 Micro      Agua Saborizada      Ciel Saborizada
## 437                 Micro     Bebidas de Fruta       Delaware Punch
## 438                 Micro     Bebidas de Fruta       Delaware Punch
## 439                 Micro     Bebidas de Fruta       Delaware Punch
## 440                 Micro     Bebidas de Fruta               Frutsi
## 441                 Micro     Bebidas de Fruta                Pulpy
## 442                 Micro     Bebidas de Fruta           Valle Frut
## 443                 Micro     Bebidas de Fruta           Valle Frut
## 444                 Micro     Bebidas de Fruta           Valle Frut
## 445                 Micro  Bebidas Energeticas              Glacéau
## 446                 Micro          Colas Light       Coca-Cola Life
## 447                 Micro          Colas Light      Coca-Cola Light
## 448                 Micro        Colas Regular            Coca-Cola
## 449                 Micro        Colas Regular            Coca-Cola
## 450                 Micro        Colas Regular            Coca-Cola
## 451                 Micro        Colas Regular            Coca-Cola
## 452                 Micro        Colas Regular            Coca-Cola
## 453                 Micro        Colas Regular            Coca-Cola
## 454                 Micro        Colas Regular            Coca-Cola
## 455                 Micro        Colas Regular            Coca-Cola
## 456                 Micro        Colas Regular            Coca-Cola
## 457                 Micro        Colas Regular            Coca-Cola
## 458                 Micro        Colas Regular            Coca-Cola
## 459                 Micro        Colas Regular            Coca-Cola
## 460                 Micro        Colas Regular            Coca-Cola
## 461                 Micro        Colas Regular            Coca-Cola
## 462                 Micro        Colas Regular            Coca-Cola
## 463                 Micro        Colas Regular            Coca-Cola
## 464                 Micro   Isotónicos Regular             Powerade
## 465                 Micro   Isotónicos Regular             Powerade
## 466                 Micro   Isotónicos Regular             Powerade
## 467                 Micro     Jugos y Néctares            Del Valle
## 468                 Micro     Jugos y Néctares            Del Valle
## 469                 Micro     Jugos y Néctares            Del Valle
## 470                 Micro     Jugos y Néctares            Del Valle
## 471                 Micro     Jugos y Néctares    Del Valle Reserva
## 472                 Micro Leche UHT Saborizada Santa Clara Saboriza
## 473                 Micro      Sabores Regular     Del Valle y Nada
## 474                 Micro      Sabores Regular                Fanta
## 475                 Micro      Sabores Regular                Fanta
## 476                 Micro      Sabores Regular                Fanta
## 477                 Micro      Sabores Regular                Fanta
## 478                 Micro      Sabores Regular                Fanta
## 479                 Micro      Sabores Regular                Fanta
## 480                 Micro      Sabores Regular                Fanta
## 481                 Micro      Sabores Regular                Fanta
## 482                 Micro      Sabores Regular                Fanta
## 483                 Micro      Sabores Regular                Fanta
## 484                 Micro      Sabores Regular               Fresca
## 485                 Micro      Sabores Regular               Fresca
## 486                 Micro      Sabores Regular               Fresca
## 487                 Micro      Sabores Regular               Fresca
## 488                 Micro      Sabores Regular               Fresca
## 489                 Micro      Sabores Regular               Fresca
## 490                 Micro      Sabores Regular               Fresca
## 491                 Micro      Sabores Regular               Fresca
## 492                 Micro      Sabores Regular         Manzana Lift
## 493                 Micro      Sabores Regular         Manzana Lift
## 494                 Micro      Sabores Regular         Manzana Lift
## 495                 Micro      Sabores Regular         Manzana Lift
## 496                 Micro      Sabores Regular         Manzana Lift
## 497                 Micro      Sabores Regular         Manzana Lift
## 498                 Micro      Sabores Regular         Manzana Lift
## 499                 Micro      Sabores Regular               Senzao
## 500                 Micro      Sabores Regular        Sidral Mundet
## 501                 Micro      Sabores Regular        Sidral Mundet
## 502                 Micro      Sabores Regular        Sidral Mundet
## 503                 Micro      Sabores Regular        Sidral Mundet
## 504                 Micro      Sabores Regular               Sprite
## 505                 Micro      Sabores Regular               Sprite
## 506                 Micro      Sabores Regular               Sprite
## 507                 Micro      Sabores Regular               Sprite
## 508                 Micro      Sabores Regular               Sprite
## 509                 Micro      Sabores Regular               Sprite
## 510                 Micro      Sabores Regular               Sprite
## 511                 Micro      Sabores Regular               Sprite
## 512                 Micro      Sabores Regular               Sprite
## 513                 Micro           Té Regular             Fuze Tea
## 514                 Micro         Agua Mineral      Topo Chico A.M.
## 515                 Micro      Agua Purificada Ciel Agua Purificada
## 516                 Micro      Agua Saborizada      Ciel Saborizada
## 517                 Micro          Colas Light       Coca-Cola Life
## 518                 Micro          Colas Light      Coca-Cola Light
## 519                 Micro        Colas Regular            Coca-Cola
## 520                 Micro        Colas Regular            Coca-Cola
## 521                 Micro        Colas Regular            Coca-Cola
## 522                 Micro        Colas Regular            Coca-Cola
## 523                 Micro        Colas Regular            Coca-Cola
## 524                 Micro        Colas Regular            Coca-Cola
## 525                 Micro   Isotónicos Regular             Powerade
## 526                 Micro     Jugos y Néctares            Del Valle
## 527                 Micro      Sabores Regular     Del Valle y Nada
## 528                 Micro      Sabores Regular                Fanta
## 529                 Micro      Sabores Regular                Fanta
## 530                 Micro      Sabores Regular               Fresca
## 531                 Micro      Sabores Regular               Fresca
## 532                 Micro      Sabores Regular         Manzana Lift
## 533                 Micro      Sabores Regular         Manzana Lift
## 534                 Micro      Sabores Regular         Manzana Lift
## 535                 Micro      Sabores Regular        Sidral Mundet
## 536                 Micro      Sabores Regular               Sprite
## 537                 Micro      Sabores Regular               Sprite
## 538                 Micro      Sabores Regular               Sprite
## 539                 Micro         Agua Mineral    Ciel Mineralizada
## 540                 Micro         Agua Mineral      Topo Chico A.M.
## 541                 Micro      Agua Purificada Ciel Agua Purificada
## 542                 Micro      Agua Purificada Ciel Agua Purificada
## 543                 Micro      Agua Purificada Ciel Agua Purificada
## 544                 Micro      Agua Purificada Ciel Agua Purificada
## 545                 Micro      Agua Saborizada            Ciel Mini
## 546                 Micro     Bebidas de Fruta                Pulpy
## 547                 Micro          Colas Light       Coca-Cola Life
## 548                 Micro          Colas Light      Coca-Cola Light
## 549                 Micro          Colas Light      Coca-Cola Light
## 550                 Micro          Colas Light      Coca-Cola Light
## 551                 Micro          Colas Light       Coca-Cola Zero
## 552                 Micro        Colas Regular            Coca-Cola
## 553                 Micro        Colas Regular            Coca-Cola
## 554                 Micro        Colas Regular            Coca-Cola
## 555                 Micro        Colas Regular            Coca-Cola
## 556                 Micro        Colas Regular            Coca-Cola
## 557                 Micro        Colas Regular            Coca-Cola
## 558                 Micro        Colas Regular            Coca-Cola
## 559                 Micro        Colas Regular            Coca-Cola
## 560                 Micro        Colas Regular            Coca-Cola
## 561                 Micro        Colas Regular            Coca-Cola
## 562                 Micro        Colas Regular            Coca-Cola
## 563                 Micro     Jugos y Néctares            Del Valle
## 564                 Micro     Jugos y Néctares            Del Valle
## 565                 Micro Leche UHT Saborizada Santa Clara Saboriza
## 566                 Micro      Sabores Regular                Fanta
## 567                 Micro      Sabores Regular               Fresca
## 568                 Micro      Sabores Regular               Fresca
## 569                 Micro      Sabores Regular         Manzana Lift
## 570                 Micro      Sabores Regular        Sidral Mundet
## 571                 Micro      Sabores Regular               Sprite
## 572                 Micro      Sabores Regular               Sprite
## 573                 Micro      Sabores Regular               Sprite
## 574                 Micro           Té Regular             Fuze Tea
## 575                 Micro      Agua Purificada Ciel Agua Purificada
## 576                 Micro      Agua Purificada Ciel Agua Purificada
## 577                 Micro      Agua Purificada Ciel Agua Purificada
## 578                 Micro      Agua Purificada Ciel Agua Purificada
## 579                 Micro     Bebidas de Fruta       Delaware Punch
## 580                 Micro     Bebidas de Fruta                Pulpy
## 581                 Micro     Bebidas de Fruta           Valle Frut
## 582                 Micro  Bebidas Energeticas                 Burn
## 583                 Micro          Colas Light      Coca-Cola Light
## 584                 Micro          Colas Light       Coca-Cola Zero
## 585                 Micro        Colas Regular            Coca-Cola
## 586                 Micro        Colas Regular            Coca-Cola
## 587                 Micro        Colas Regular            Coca-Cola
## 588                 Micro        Colas Regular            Coca-Cola
## 589                 Micro        Colas Regular            Coca-Cola
## 590                 Micro        Colas Regular            Coca-Cola
## 591                 Micro        Colas Regular            Coca-Cola
## 592                 Micro        Colas Regular            Coca-Cola
## 593                 Micro        Colas Regular            Coca-Cola
## 594                 Micro   Isotónicos Regular             Powerade
## 595                 Micro     Jugos y Néctares            Del Valle
## 596                 Micro     Jugos y Néctares            Del Valle
## 597                 Micro     Jugos y Néctares Del Valle Nutridefen
## 598                 Micro Leche UHT Saborizada Santa Clara Saboriza
## 599                 Micro      Sabores Regular     Del Valle y Nada
## 600                 Micro      Sabores Regular                Fanta
## 601                 Micro      Sabores Regular                Fanta
## 602                 Micro      Sabores Regular                Fanta
## 603                 Micro      Sabores Regular                Fanta
## 604                 Micro      Sabores Regular                Fanta
## 605                 Micro      Sabores Regular               Fresca
## 606                 Micro      Sabores Regular               Fresca
## 607                 Micro      Sabores Regular               Fresca
## 608                 Micro      Sabores Regular               Fresca
## 609                 Micro      Sabores Regular         Manzana Lift
## 610                 Micro      Sabores Regular         Manzana Lift
## 611                 Micro      Sabores Regular         Manzana Lift
## 612                 Micro      Sabores Regular         Manzana Lift
## 613                 Micro      Sabores Regular        Sidral Mundet
## 614                 Micro      Sabores Regular               Sprite
## 615                 Micro      Sabores Regular               Sprite
## 616                 Micro      Sabores Regular               Sprite
## 617                 Micro      Sabores Regular               Sprite
## 618                 Micro      Sabores Regular               Sprite
## 619                 Micro           Té Regular             Fuze Tea
## 620                 Micro           Té Regular             Fuze Tea
## 621                 Micro           Té Regular             Fuze Tea
## 622                 Micro           Té Regular             Fuze Tea
## 623                 Micro      Agua Purificada Ciel Agua Purificada
## 624                 Micro      Agua Purificada Ciel Agua Purificada
## 625                 Micro      Agua Purificada Ciel Agua Purificada
## 626                 Micro      Agua Purificada Ciel Agua Purificada
## 627                 Micro      Agua Saborizada          Ciel Exprim
## 628                 Micro      Agua Saborizada      Ciel Saborizada
## 629                 Micro     Bebidas de Fruta       Delaware Punch
## 630                 Micro     Bebidas de Fruta       Delaware Punch
## 631                 Micro     Bebidas de Fruta               Frutsi
## 632                 Micro     Bebidas de Fruta           Valle Frut
## 633                 Micro     Bebidas de Fruta           Valle Frut
## 634                 Micro     Bebidas de Fruta           Valle Frut
## 635                 Micro     Bebidas de Fruta           Valle Frut
## 636                 Micro     Bebidas de Fruta           Valle Frut
## 637                 Micro     Bebidas de Fruta           Valle Frut
## 638                 Micro          Colas Light      Coca-Cola Light
## 639                 Micro          Colas Light      Coca-Cola Light
## 640                 Micro          Colas Light      Coca-Cola Light
## 641                 Micro          Colas Light      Coca-Cola Light
## 642                 Micro          Colas Light      Coca-Cola Light
## 643                 Micro          Colas Light      Coca-Cola Light
## 644                 Micro          Colas Light       Coca-Cola Zero
## 645                 Micro          Colas Light       Coca-Cola Zero
## 646                 Micro          Colas Light       Coca-Cola Zero
## 647                 Micro        Colas Regular            Coca-Cola
## 648                 Micro        Colas Regular            Coca-Cola
## 649                 Micro        Colas Regular            Coca-Cola
## 650                 Micro        Colas Regular            Coca-Cola
## 651                 Micro        Colas Regular            Coca-Cola
## 652                 Micro        Colas Regular            Coca-Cola
## 653                 Micro        Colas Regular            Coca-Cola
## 654                 Micro        Colas Regular            Coca-Cola
## 655                 Micro        Colas Regular            Coca-Cola
## 656                 Micro        Colas Regular            Coca-Cola
## 657                 Micro        Colas Regular            Coca-Cola
## 658                 Micro        Colas Regular            Coca-Cola
## 659                 Micro        Colas Regular            Coca-Cola
## 660                 Micro        Colas Regular            Coca-Cola
## 661                 Micro   Isotónicos Regular             Powerade
## 662                 Micro   Isotónicos Regular             Powerade
## 663                 Micro     Jugos y Néctares            Del Valle
## 664                 Micro     Jugos y Néctares            Del Valle
## 665                 Micro     Jugos y Néctares            Del Valle
## 666                 Micro     Jugos y Néctares            Del Valle
## 667                 Micro     Jugos y Néctares            Del Valle
## 668                 Micro Leche UHT Saborizada Santa Clara Saboriza
## 669                 Micro        Sabores Light          Sprite Zero
## 670                 Micro      Sabores Regular     Del Valle y Nada
## 671                 Micro      Sabores Regular                Fanta
## 672                 Micro      Sabores Regular                Fanta
## 673                 Micro      Sabores Regular                Fanta
## 674                 Micro      Sabores Regular                Fanta
## 675                 Micro      Sabores Regular                Fanta
## 676                 Micro      Sabores Regular                Fanta
## 677                 Micro      Sabores Regular               Fresca
## 678                 Micro      Sabores Regular               Fresca
## 679                 Micro      Sabores Regular         Manzana Lift
## 680                 Micro      Sabores Regular         Manzana Lift
## 681                 Micro      Sabores Regular               Senzao
## 682                 Micro      Sabores Regular        Sidral Mundet
## 683                 Micro      Sabores Regular        Sidral Mundet
## 684                 Micro      Sabores Regular        Sidral Mundet
## 685                 Micro      Sabores Regular               Sprite
## 686                 Micro      Sabores Regular               Sprite
## 687                 Micro      Sabores Regular               Sprite
## 688                 Micro      Sabores Regular               Sprite
## 689                 Micro      Sabores Regular               Sprite
## 690                 Micro      Sabores Regular               Sprite
## 691                 Micro      Sabores Regular               Sprite
## 692                 Micro      Sabores Regular               Sprite
## 693                 Micro      Sabores Regular               Sprite
## 694                 Micro      Sabores Regular               Sprite
## 695                 Micro           Té Regular             Fuze Tea
## 696                 Micro           Té Regular             Fuze Tea
## 697                 Micro         Agua Mineral    Ciel Mineralizada
## 698                 Micro         Agua Mineral    Ciel Mineralizada
## 699                 Micro         Agua Mineral      Topo Chico A.M.
## 700                 Micro         Agua Mineral      Topo Chico A.M.
## 701                 Micro      Agua Purificada Ciel Agua Purificada
## 702                 Micro      Agua Purificada Ciel Agua Purificada
## 703                 Micro      Agua Purificada Ciel Agua Purificada
## 704                 Micro      Agua Purificada Ciel Agua Purificada
## 705                 Micro      Agua Purificada Ciel Agua Purificada
## 706                 Micro      Agua Saborizada          Ciel Exprim
## 707                 Micro      Agua Saborizada      Ciel Saborizada
## 708                 Micro      Agua Saborizada      Ciel Saborizada
## 709                 Micro     Bebidas de Fruta       Delaware Punch
## 710                 Micro     Bebidas de Fruta       Delaware Punch
## 711                 Micro     Bebidas de Fruta               Frutsi
## 712                 Micro     Bebidas de Fruta                Pulpy
## 713                 Micro     Bebidas de Fruta           Valle Frut
## 714                 Micro     Bebidas de Fruta           Valle Frut
## 715                 Micro     Bebidas de Fruta           Valle Frut
## 716                 Micro     Bebidas de Fruta           Valle Frut
## 717                 Micro  Bebidas Energeticas                 Burn
## 718                 Micro  Bebidas Energeticas                 Burn
## 719                 Micro          Colas Light       Coca-Cola Life
## 720                 Micro          Colas Light       Coca-Cola Life
## 721                 Micro          Colas Light       Coca-Cola Life
## 722                 Micro          Colas Light      Coca-Cola Light
## 723                 Micro          Colas Light      Coca-Cola Light
## 724                 Micro          Colas Light      Coca-Cola Light
## 725                 Micro          Colas Light      Coca-Cola Light
## 726                 Micro          Colas Light      Coca-Cola Light
## 727                 Micro          Colas Light      Coca-Cola Light
## 728                 Micro          Colas Light      Coca-Cola Light
## 729                 Micro          Colas Light       Coca-Cola Zero
## 730                 Micro          Colas Light       Coca-Cola Zero
## 731                 Micro          Colas Light       Coca-Cola Zero
## 732                 Micro        Colas Regular            Coca-Cola
## 733                 Micro        Colas Regular            Coca-Cola
## 734                 Micro        Colas Regular            Coca-Cola
## 735                 Micro        Colas Regular            Coca-Cola
## 736                 Micro        Colas Regular            Coca-Cola
## 737                 Micro        Colas Regular            Coca-Cola
## 738                 Micro        Colas Regular            Coca-Cola
## 739                 Micro        Colas Regular            Coca-Cola
## 740                 Micro        Colas Regular            Coca-Cola
## 741                 Micro        Colas Regular            Coca-Cola
## 742                 Micro        Colas Regular            Coca-Cola
## 743                 Micro        Colas Regular            Coca-Cola
## 744                 Micro        Colas Regular            Coca-Cola
## 745                 Micro        Colas Regular            Coca-Cola
## 746                 Micro        Colas Regular            Coca-Cola
## 747                 Micro        Colas Regular            Coca-Cola
## 748                 Micro        Colas Regular            Coca-Cola
## 749                 Micro        Colas Regular            Coca-Cola
## 750                 Micro        Colas Regular            Coca-Cola
## 751                 Micro   Isotónicos Regular             Powerade
## 752                 Micro   Isotónicos Regular             Powerade
## 753                 Micro   Isotónicos Regular             Powerade
## 754                 Micro     Jugos y Néctares            Del Valle
## 755                 Micro     Jugos y Néctares            Del Valle
## 756                 Micro     Jugos y Néctares            Del Valle
## 757                 Micro     Jugos y Néctares Del Valle Nutridefen
## 758                 Micro     Jugos y Néctares    Del Valle Reserva
## 759                 Micro Leche UHT Saborizada Santa Clara Saboriza
## 760                 Micro        Sabores Light          Sprite Zero
## 761                 Micro      Sabores Regular     Del Valle y Nada
## 762                 Micro      Sabores Regular     Del Valle y Nada
## 763                 Micro      Sabores Regular                Fanta
## 764                 Micro      Sabores Regular                Fanta
## 765                 Micro      Sabores Regular                Fanta
## 766                 Micro      Sabores Regular                Fanta
## 767                 Micro      Sabores Regular                Fanta
## 768                 Micro      Sabores Regular                Fanta
## 769                 Micro      Sabores Regular                Fanta
## 770                 Micro      Sabores Regular               Fresca
## 771                 Micro      Sabores Regular               Fresca
## 772                 Micro      Sabores Regular               Fresca
## 773                 Micro      Sabores Regular               Fresca
## 774                 Micro      Sabores Regular               Fresca
## 775                 Micro      Sabores Regular               Fresca
## 776                 Micro      Sabores Regular               Fresca
## 777                 Micro      Sabores Regular         Manzana Lift
## 778                 Micro      Sabores Regular         Manzana Lift
## 779                 Micro      Sabores Regular         Manzana Lift
## 780                 Micro      Sabores Regular         Manzana Lift
## 781                 Micro      Sabores Regular         Manzana Lift
## 782                 Micro      Sabores Regular         Manzana Lift
## 783                 Micro      Sabores Regular               Senzao
## 784                 Micro      Sabores Regular        Sidral Mundet
## 785                 Micro      Sabores Regular        Sidral Mundet
## 786                 Micro      Sabores Regular        Sidral Mundet
## 787                 Micro      Sabores Regular        Sidral Mundet
## 788                 Micro      Sabores Regular               Sprite
## 789                 Micro      Sabores Regular               Sprite
## 790                 Micro      Sabores Regular               Sprite
## 791                 Micro      Sabores Regular               Sprite
## 792                 Micro      Sabores Regular               Sprite
## 793                 Micro      Sabores Regular               Sprite
## 794                 Micro      Sabores Regular               Sprite
## 795                 Micro      Sabores Regular               Sprite
## 796                 Micro      Sabores Regular               Sprite
## 797                 Micro           Té Regular             Fuze Tea
## 798                 Micro           Té Regular             Fuze Tea
## 799                 Micro           Té Regular             Fuze Tea
## 800                 Micro           Té Regular             Fuze Tea
## 801                 Micro         Agua Mineral      Topo Chico A.M.
## 802                 Micro      Agua Purificada Ciel Agua Purificada
## 803                 Micro      Agua Purificada Ciel Agua Purificada
## 804                 Micro     Bebidas de Fruta       Delaware Punch
## 805                 Micro     Bebidas de Fruta       Delaware Punch
## 806                 Micro     Bebidas de Fruta               Frutsi
## 807                 Micro          Colas Light      Coca-Cola Light
## 808                 Micro          Colas Light      Coca-Cola Light
## 809                 Micro          Colas Light      Coca-Cola Light
## 810                 Micro          Colas Light       Coca-Cola Zero
## 811                 Micro        Colas Regular            Coca-Cola
## 812                 Micro        Colas Regular            Coca-Cola
## 813                 Micro        Colas Regular            Coca-Cola
## 814                 Micro        Colas Regular            Coca-Cola
## 815                 Micro        Colas Regular            Coca-Cola
## 816                 Micro        Colas Regular            Coca-Cola
## 817                 Micro        Colas Regular            Coca-Cola
## 818                 Micro        Colas Regular            Coca-Cola
## 819                 Micro        Colas Regular            Coca-Cola
## 820                 Micro        Colas Regular            Coca-Cola
## 821                 Micro        Colas Regular            Coca-Cola
## 822                 Micro        Colas Regular            Coca-Cola
## 823                 Micro        Colas Regular            Coca-Cola
## 824                 Micro        Colas Regular            Coca-Cola
## 825                 Micro        Colas Regular            Coca-Cola
## 826                 Micro        Colas Regular            Coca-Cola
## 827                 Micro   Isotónicos Regular             Powerade
## 828                 Micro   Isotónicos Regular             Powerade
## 829                 Micro     Jugos y Néctares            Del Valle
## 830                 Micro     Jugos y Néctares            Del Valle
## 831                 Micro     Jugos y Néctares            Del Valle
## 832                 Micro Leche UHT Especializ Santa Clara Deslacto
## 833                 Micro Leche UHT Especializ Santa Clara Deslacto
## 834                 Micro    Leche UHT Regular    Santa Clara Light
## 835                 Micro Leche UHT Saborizada Santa Clara Saboriza
## 836                 Micro      Sabores Regular     Del Valle y Nada
## 837                 Micro      Sabores Regular                Fanta
## 838                 Micro      Sabores Regular                Fanta
## 839                 Micro      Sabores Regular                Fanta
## 840                 Micro      Sabores Regular                Fanta
## 841                 Micro      Sabores Regular                Fanta
## 842                 Micro      Sabores Regular                Fanta
## 843                 Micro      Sabores Regular                Fanta
## 844                 Micro      Sabores Regular                Fanta
## 845                 Micro      Sabores Regular               Fresca
## 846                 Micro      Sabores Regular               Fresca
## 847                 Micro      Sabores Regular               Fresca
## 848                 Micro      Sabores Regular               Fresca
## 849                 Micro      Sabores Regular               Fresca
## 850                 Micro      Sabores Regular               Fresca
## 851                 Micro      Sabores Regular               Fresca
## 852                 Micro      Sabores Regular         Manzana Lift
## 853                 Micro      Sabores Regular         Manzana Lift
## 854                 Micro      Sabores Regular         Manzana Lift
## 855                 Micro      Sabores Regular         Manzana Lift
## 856                 Micro      Sabores Regular         Manzana Lift
## 857                 Micro      Sabores Regular         Manzana Lift
## 858                 Micro      Sabores Regular         Manzana Lift
## 859                 Micro      Sabores Regular        Sidral Mundet
## 860                 Micro      Sabores Regular        Sidral Mundet
## 861                 Micro      Sabores Regular        Sidral Mundet
## 862                 Micro      Sabores Regular               Sprite
## 863                 Micro      Sabores Regular               Sprite
## 864                 Micro      Sabores Regular               Sprite
## 865                 Micro      Sabores Regular               Sprite
## 866                 Micro      Sabores Regular               Sprite
## 867                 Micro      Sabores Regular               Sprite
## 868                 Micro      Sabores Regular               Sprite
## 869                 Micro      Sabores Regular               Sprite
## 870                 Micro         Agua Mineral    Ciel Mineralizada
## 871                 Micro         Agua Mineral      Topo Chico A.M.
## 872                 Micro     Bebidas de Fruta       Delaware Punch
## 873                 Micro     Bebidas de Fruta               Frutsi
## 874                 Micro        Colas Regular            Coca-Cola
## 875                 Micro        Colas Regular            Coca-Cola
## 876                 Micro        Colas Regular            Coca-Cola
## 877                 Micro        Colas Regular            Coca-Cola
## 878                 Micro     Jugos y Néctares            Del Valle
## 879                 Micro Leche UHT Saborizada Santa Clara Saboriza
## 880                 Micro      Sabores Regular                Fanta
## 881                 Micro      Sabores Regular                Fanta
## 882                 Micro      Sabores Regular                Fanta
## 883                 Micro      Sabores Regular               Fresca
## 884                 Micro      Sabores Regular         Manzana Lift
## 885                 Micro      Sabores Regular         Manzana Lift
## 886                 Micro      Sabores Regular        Sidral Mundet
## 887                 Micro      Sabores Regular               Sprite
## 888                 Micro      Sabores Regular               Sprite
## 889                 Micro      Sabores Regular               Sprite
## 890                 Micro      Agua Purificada Ciel Agua Purificada
## 891                 Micro      Agua Purificada Ciel Agua Purificada
## 892                 Micro      Agua Purificada Ciel Agua Purificada
## 893                 Micro      Agua Saborizada          Ciel Exprim
## 894                 Micro      Agua Saborizada            Ciel Mini
## 895                 Micro     Bebidas de Fruta       Delaware Punch
## 896                 Micro     Bebidas de Fruta               Frutsi
## 897                 Micro     Bebidas de Fruta                Pulpy
## 898                 Micro     Bebidas de Fruta           Valle Frut
## 899                 Micro     Bebidas de Fruta           Valle Frut
## 900                 Micro     Bebidas de Fruta           Valle Frut
## 901                 Micro     Bebidas de Fruta           Valle Frut
## 902                 Micro  Bebidas Energeticas                 Burn
## 903                 Micro  Bebidas Energeticas                 Burn
## 904                 Micro  Bebidas Energeticas              Glacéau
## 905                 Micro          Colas Light      Coca-Cola Light
## 906                 Micro          Colas Light      Coca-Cola Light
## 907                 Micro          Colas Light      Coca-Cola Light
## 908                 Micro          Colas Light      Coca-Cola Light
## 909                 Micro          Colas Light      Coca-Cola Light
## 910                 Micro          Colas Light      Coca-Cola Light
## 911                 Micro        Colas Regular            Coca-Cola
## 912                 Micro        Colas Regular            Coca-Cola
## 913                 Micro        Colas Regular            Coca-Cola
## 914                 Micro        Colas Regular            Coca-Cola
## 915                 Micro        Colas Regular            Coca-Cola
## 916                 Micro        Colas Regular            Coca-Cola
## 917                 Micro        Colas Regular            Coca-Cola
## 918                 Micro        Colas Regular            Coca-Cola
## 919                 Micro        Colas Regular            Coca-Cola
## 920                 Micro        Colas Regular            Coca-Cola
## 921                 Micro        Colas Regular            Coca-Cola
## 922                 Micro        Colas Regular            Coca-Cola
## 923                 Micro        Colas Regular            Coca-Cola
## 924                 Micro        Colas Regular            Coca-Cola
## 925                 Micro     Isotónicos Light        Powerade Zero
## 926                 Micro   Isotónicos Regular             Powerade
## 927                 Micro   Isotónicos Regular             Powerade
## 928                 Micro   Isotónicos Regular             Powerade
## 929                 Micro     Jugos y Néctares            Del Valle
## 930                 Micro     Jugos y Néctares            Del Valle
## 931                 Micro     Jugos y Néctares            Del Valle
## 932                 Micro     Jugos y Néctares            Del Valle
## 933                 Micro     Jugos y Néctares            Del Valle
## 934                 Micro     Jugos y Néctares Del Valle Nutridefen
## 935                 Micro     Jugos y Néctares    Del Valle Reserva
## 936                 Micro     Jugos y Néctares    Del Valle Reserva
## 937                 Micro Leche UHT Especializ Santa Clara Deslacto
## 938                 Micro Leche UHT Especializ Santa Clara Deslacto
## 939                 Micro Leche UHT Saborizada Santa Clara Saboriza
## 940                 Micro        Sabores Light          Sprite Zero
## 941                 Micro      Sabores Regular                Fanta
## 942                 Micro      Sabores Regular                Fanta
## 943                 Micro      Sabores Regular                Fanta
## 944                 Micro      Sabores Regular                Fanta
## 945                 Micro      Sabores Regular               Fresca
## 946                 Micro      Sabores Regular               Fresca
## 947                 Micro      Sabores Regular               Fresca
## 948                 Micro      Sabores Regular               Fresca
## 949                 Micro      Sabores Regular         Manzana Lift
## 950                 Micro      Sabores Regular         Manzana Lift
## 951                 Micro      Sabores Regular         Manzana Lift
## 952                 Micro      Sabores Regular        Sidral Mundet
## 953                 Micro      Sabores Regular        Sidral Mundet
## 954                 Micro      Sabores Regular        Sidral Mundet
## 955                 Micro      Sabores Regular               Sprite
## 956                 Micro      Sabores Regular               Sprite
## 957                 Micro      Sabores Regular               Sprite
## 958                 Micro      Sabores Regular               Sprite
## 959                 Micro      Sabores Regular               Sprite
## 960                 Micro           Té Regular             Fuze Tea
## 961                 Micro           Té Regular             Fuze Tea
## 962                 Micro         Agua Mineral    Ciel Mineralizada
## 963                 Micro          Colas Light      Coca-Cola Light
## 964                 Micro          Colas Light      Coca-Cola Light
## 965                 Micro          Colas Light      Coca-Cola Light
## 966                 Micro        Colas Regular            Coca-Cola
## 967                 Micro        Colas Regular            Coca-Cola
## 968                 Micro        Colas Regular            Coca-Cola
## 969                 Micro        Colas Regular            Coca-Cola
## 970                 Micro        Colas Regular            Coca-Cola
## 971                 Micro        Colas Regular            Coca-Cola
## 972                 Micro        Colas Regular            Coca-Cola
## 973                 Micro        Colas Regular            Coca-Cola
## 974                 Micro     Jugos y Néctares            Del Valle
## 975                 Micro     Jugos y Néctares            Del Valle
## 976                 Micro Leche UHT Saborizada Santa Clara Saboriza
## 977                 Micro        Sabores Light          Sprite Zero
## 978                 Micro      Sabores Regular                Fanta
## 979                 Micro      Sabores Regular                Fanta
## 980                 Micro      Sabores Regular               Fresca
## 981                 Micro      Sabores Regular               Fresca
## 982                 Micro      Sabores Regular         Manzana Lift
## 983                 Micro      Sabores Regular        Sidral Mundet
## 984                 Micro      Sabores Regular               Sprite
## 985                 Micro      Sabores Regular               Sprite
## 986                 Micro           Té Regular             Fuze Tea
## 987                 Micro      Agua Purificada Ciel Agua Purificada
## 988                 Micro      Agua Purificada Ciel Agua Purificada
## 989                 Micro      Agua Purificada Ciel Agua Purificada
## 990                 Micro      Agua Purificada Ciel Agua Purificada
## 991                 Micro     Bebidas de Fruta       Delaware Punch
## 992                 Micro     Bebidas de Fruta       Delaware Punch
## 993                 Micro     Bebidas de Fruta               Frutsi
## 994                 Micro     Bebidas de Fruta                Pulpy
## 995                 Micro     Bebidas de Fruta           Valle Frut
## 996                 Micro     Bebidas de Fruta           Valle Frut
## 997                 Micro     Bebidas de Fruta           Valle Frut
## 998                 Micro          Colas Light       Coca-Cola Life
## 999                 Micro          Colas Light      Coca-Cola Light
## 1000                Micro          Colas Light      Coca-Cola Light
## 1001                Micro          Colas Light      Coca-Cola Light
## 1002                Micro          Colas Light      Coca-Cola Light
## 1003                Micro        Colas Regular            Coca-Cola
## 1004                Micro        Colas Regular            Coca-Cola
## 1005                Micro        Colas Regular            Coca-Cola
## 1006                Micro        Colas Regular            Coca-Cola
## 1007                Micro        Colas Regular            Coca-Cola
## 1008                Micro        Colas Regular            Coca-Cola
## 1009                Micro        Colas Regular            Coca-Cola
## 1010                Micro        Colas Regular            Coca-Cola
## 1011                Micro        Colas Regular            Coca-Cola
## 1012                Micro        Colas Regular            Coca-Cola
## 1013                Micro        Colas Regular            Coca-Cola
## 1014                Micro        Colas Regular            Coca-Cola
## 1015                Micro        Colas Regular            Coca-Cola
## 1016                Micro     Jugos y Néctares            Del Valle
## 1017                Micro     Jugos y Néctares            Del Valle
## 1018                Micro     Jugos y Néctares            Del Valle
## 1019                Micro     Jugos y Néctares            Del Valle
## 1020                Micro    Leche UHT Regular    Santa Clara Light
## 1021                Micro        Sabores Light          Sprite Zero
## 1022                Micro      Sabores Regular     Del Valle y Nada
## 1023                Micro      Sabores Regular     Del Valle y Nada
## 1024                Micro      Sabores Regular                Fanta
## 1025                Micro      Sabores Regular                Fanta
## 1026                Micro      Sabores Regular                Fanta
## 1027                Micro      Sabores Regular                Fanta
## 1028                Micro      Sabores Regular                Fanta
## 1029                Micro      Sabores Regular                Fanta
## 1030                Micro      Sabores Regular               Fresca
## 1031                Micro      Sabores Regular               Fresca
## 1032                Micro      Sabores Regular               Fresca
## 1033                Micro      Sabores Regular               Fresca
## 1034                Micro      Sabores Regular         Manzana Lift
## 1035                Micro      Sabores Regular         Manzana Lift
## 1036                Micro      Sabores Regular         Manzana Lift
## 1037                Micro      Sabores Regular         Manzana Lift
## 1038                Micro      Sabores Regular        Sidral Mundet
## 1039                Micro      Sabores Regular        Sidral Mundet
## 1040                Micro      Sabores Regular               Sprite
## 1041                Micro      Sabores Regular               Sprite
## 1042                Micro      Sabores Regular               Sprite
## 1043                Micro      Sabores Regular               Sprite
## 1044                Micro      Sabores Regular               Sprite
## 1045                Micro      Sabores Regular               Sprite
## 1046                Micro           Té Regular             Fuze Tea
## 1047                Micro         Agua Mineral    Ciel Mineralizada
## 1048                Micro         Agua Mineral      Topo Chico A.M.
## 1049                Micro         Agua Mineral      Topo Chico A.M.
## 1050                Micro      Agua Purificada Ciel Agua Purificada
## 1051                Micro      Agua Purificada Ciel Agua Purificada
## 1052                Micro      Agua Purificada Ciel Agua Purificada
## 1053                Micro      Agua Saborizada      Ciel Saborizada
## 1054                Micro     Bebidas de Fruta       Delaware Punch
## 1055                Micro     Bebidas de Fruta               Frutsi
## 1056                Micro     Bebidas de Fruta                Pulpy
## 1057                Micro     Bebidas de Fruta           Valle Frut
## 1058                Micro     Bebidas de Fruta           Valle Frut
## 1059                Micro     Bebidas de Fruta           Valle Frut
## 1060                Micro     Bebidas de Fruta           Valle Frut
## 1061                Micro  Bebidas Energeticas                 Burn
## 1062                Micro          Colas Light      Coca-Cola Light
## 1063                Micro          Colas Light      Coca-Cola Light
## 1064                Micro        Colas Regular            Coca-Cola
## 1065                Micro        Colas Regular            Coca-Cola
## 1066                Micro        Colas Regular            Coca-Cola
## 1067                Micro        Colas Regular            Coca-Cola
## 1068                Micro        Colas Regular            Coca-Cola
## 1069                Micro        Colas Regular            Coca-Cola
## 1070                Micro        Colas Regular            Coca-Cola
## 1071                Micro        Colas Regular            Coca-Cola
## 1072                Micro        Colas Regular            Coca-Cola
## 1073                Micro        Colas Regular            Coca-Cola
## 1074                Micro        Colas Regular            Coca-Cola
## 1075                Micro        Colas Regular            Coca-Cola
## 1076                Micro        Colas Regular            Coca-Cola
## 1077                Micro        Colas Regular            Coca-Cola
## 1078                Micro   Isotónicos Regular             Powerade
## 1079                Micro   Isotónicos Regular             Powerade
## 1080                Micro   Isotónicos Regular             Powerade
## 1081                Micro     Jugos y Néctares            Del Valle
## 1082                Micro     Jugos y Néctares            Del Valle
## 1083                Micro     Jugos y Néctares            Del Valle
## 1084                Micro     Jugos y Néctares            Del Valle
## 1085                Micro    Leche UHT Regular   Santa Clara Entera
## 1086                Micro Leche UHT Saborizada Santa Clara Saboriza
## 1087                Micro        Sabores Light          Sprite Zero
## 1088                Micro      Sabores Regular     Del Valle y Nada
## 1089                Micro      Sabores Regular                Fanta
## 1090                Micro      Sabores Regular                Fanta
## 1091                Micro      Sabores Regular                Fanta
## 1092                Micro      Sabores Regular                Fanta
## 1093                Micro      Sabores Regular               Fresca
## 1094                Micro      Sabores Regular               Fresca
## 1095                Micro      Sabores Regular               Fresca
## 1096                Micro      Sabores Regular               Fresca
## 1097                Micro      Sabores Regular         Manzana Lift
## 1098                Micro      Sabores Regular         Manzana Lift
## 1099                Micro      Sabores Regular         Manzana Lift
## 1100                Micro      Sabores Regular         Manzana Lift
## 1101                Micro      Sabores Regular        Sidral Mundet
## 1102                Micro      Sabores Regular        Sidral Mundet
## 1103                Micro      Sabores Regular        Sidral Mundet
## 1104                Micro      Sabores Regular               Sprite
## 1105                Micro      Sabores Regular               Sprite
## 1106                Micro      Sabores Regular               Sprite
## 1107                Micro      Sabores Regular               Sprite
## 1108                Micro      Sabores Regular               Sprite
## 1109                Micro           Té Regular             Fuze Tea
## 1110                Micro           Té Regular             Fuze Tea
## 1111                Micro         Agua Mineral    Ciel Mineralizada
## 1112                Micro         Agua Mineral      Topo Chico A.M.
## 1113                Micro      Agua Purificada Ciel Agua Purificada
## 1114                Micro      Agua Purificada Ciel Agua Purificada
## 1115                Micro      Agua Purificada Ciel Agua Purificada
## 1116                Micro      Agua Purificada Ciel Agua Purificada
## 1117                Micro      Agua Saborizada            Ciel Mini
## 1118                Micro     Bebidas de Fruta       Delaware Punch
## 1119                Micro     Bebidas de Fruta       Delaware Punch
## 1120                Micro     Bebidas de Fruta       Delaware Punch
## 1121                Micro     Bebidas de Fruta               Frutsi
## 1122                Micro     Bebidas de Fruta                Pulpy
## 1123                Micro     Bebidas de Fruta           Valle Frut
## 1124                Micro  Bebidas Energeticas                 Burn
## 1125                Micro          Colas Light       Coca-Cola Life
## 1126                Micro          Colas Light       Coca-Cola Life
## 1127                Micro          Colas Light      Coca-Cola Light
## 1128                Micro          Colas Light      Coca-Cola Light
## 1129                Micro          Colas Light      Coca-Cola Light
## 1130                Micro        Colas Regular            Coca-Cola
## 1131                Micro        Colas Regular            Coca-Cola
## 1132                Micro        Colas Regular            Coca-Cola
## 1133                Micro        Colas Regular            Coca-Cola
## 1134                Micro        Colas Regular            Coca-Cola
## 1135                Micro        Colas Regular            Coca-Cola
## 1136                Micro        Colas Regular            Coca-Cola
## 1137                Micro        Colas Regular            Coca-Cola
## 1138                Micro        Colas Regular            Coca-Cola
## 1139                Micro        Colas Regular            Coca-Cola
## 1140                Micro        Colas Regular            Coca-Cola
## 1141                Micro        Colas Regular            Coca-Cola
## 1142                Micro        Colas Regular            Coca-Cola
## 1143                Micro        Colas Regular            Coca-Cola
## 1144                Micro        Colas Regular            Coca-Cola
## 1145                Micro        Colas Regular            Coca-Cola
## 1146                Micro        Colas Regular            Coca-Cola
## 1147                Micro        Colas Regular            Coca-Cola
## 1148                Micro   Isotónicos Regular             Powerade
## 1149                Micro     Jugos y Néctares            Del Valle
## 1150                Micro     Jugos y Néctares            Del Valle
## 1151                Micro     Jugos y Néctares            Del Valle
## 1152                Micro     Jugos y Néctares            Del Valle
## 1153                Micro     Jugos y Néctares    Del Valle Reserva
## 1154                Micro     Jugos y Néctares    Del Valle Reserva
## 1155                Micro    Leche UHT Regular   Santa Clara Entera
## 1156                Micro Leche UHT Saborizada Santa Clara Saboriza
## 1157                Micro        Sabores Light          Sprite Zero
## 1158                Micro      Sabores Regular     Del Valle y Nada
## 1159                Micro      Sabores Regular     Del Valle y Nada
## 1160                Micro      Sabores Regular                Fanta
## 1161                Micro      Sabores Regular                Fanta
## 1162                Micro      Sabores Regular                Fanta
## 1163                Micro      Sabores Regular                Fanta
## 1164                Micro      Sabores Regular                Fanta
## 1165                Micro      Sabores Regular                Fanta
## 1166                Micro      Sabores Regular                Fanta
## 1167                Micro      Sabores Regular               Fresca
## 1168                Micro      Sabores Regular               Fresca
## 1169                Micro      Sabores Regular               Fresca
## 1170                Micro      Sabores Regular         Manzana Lift
## 1171                Micro      Sabores Regular         Manzana Lift
## 1172                Micro      Sabores Regular         Manzana Lift
## 1173                Micro      Sabores Regular         Manzana Lift
## 1174                Micro      Sabores Regular         Manzana Lift
## 1175                Micro      Sabores Regular        Sidral Mundet
## 1176                Micro      Sabores Regular        Sidral Mundet
## 1177                Micro      Sabores Regular               Sprite
## 1178                Micro      Sabores Regular               Sprite
## 1179                Micro      Sabores Regular               Sprite
## 1180                Micro      Sabores Regular               Sprite
## 1181                Micro      Sabores Regular               Sprite
## 1182                Micro      Sabores Regular               Sprite
## 1183                Micro           Té Regular             Fuze Tea
## 1184                Micro           Té Regular             Fuze Tea
## 1185                Micro           Té Regular             Fuze Tea
## 1186                Micro           Té Regular             Fuze Tea
## 1187                Micro      Agua Purificada Ciel Agua Purificada
## 1188                Micro      Agua Purificada Ciel Agua Purificada
## 1189                Micro      Agua Purificada Ciel Agua Purificada
## 1190                Micro      Agua Purificada Ciel Agua Purificada
## 1191                Micro      Agua Saborizada          Ciel Exprim
## 1192                Micro     Bebidas de Fruta       Delaware Punch
## 1193                Micro     Bebidas de Fruta       Delaware Punch
## 1194                Micro     Bebidas de Fruta               Frutsi
## 1195                Micro     Bebidas de Fruta           Valle Frut
## 1196                Micro          Colas Light      Coca-Cola Light
## 1197                Micro          Colas Light       Coca-Cola Zero
## 1198                Micro          Colas Light       Coca-Cola Zero
## 1199                Micro        Colas Regular            Coca-Cola
## 1200                Micro        Colas Regular            Coca-Cola
## 1201                Micro        Colas Regular            Coca-Cola
## 1202                Micro        Colas Regular            Coca-Cola
## 1203                Micro        Colas Regular            Coca-Cola
## 1204                Micro        Colas Regular            Coca-Cola
## 1205                Micro        Colas Regular            Coca-Cola
## 1206                Micro        Colas Regular            Coca-Cola
## 1207                Micro        Colas Regular            Coca-Cola
## 1208                Micro        Colas Regular            Coca-Cola
## 1209                Micro        Colas Regular            Coca-Cola
## 1210                Micro   Isotónicos Regular             Powerade
## 1211                Micro   Isotónicos Regular             Powerade
## 1212                Micro     Jugos y Néctares            Del Valle
## 1213                Micro     Jugos y Néctares            Del Valle
## 1214                Micro     Jugos y Néctares            Del Valle
## 1215                Micro Leche UHT Especializ Santa Clara Deslacto
## 1216                Micro Leche UHT Saborizada Santa Clara Saboriza
## 1217                Micro      Sabores Regular                Fanta
## 1218                Micro      Sabores Regular                Fanta
## 1219                Micro      Sabores Regular                Fanta
## 1220                Micro      Sabores Regular                Fanta
## 1221                Micro      Sabores Regular                Fanta
## 1222                Micro      Sabores Regular                Fanta
## 1223                Micro      Sabores Regular               Fresca
## 1224                Micro      Sabores Regular               Fresca
## 1225                Micro      Sabores Regular               Fresca
## 1226                Micro      Sabores Regular               Fresca
## 1227                Micro      Sabores Regular         Manzana Lift
## 1228                Micro      Sabores Regular         Manzana Lift
## 1229                Micro      Sabores Regular         Manzana Lift
## 1230                Micro      Sabores Regular        Sidral Mundet
## 1231                Micro      Sabores Regular               Sprite
## 1232                Micro      Sabores Regular               Sprite
## 1233                Micro      Sabores Regular               Sprite
## 1234                Micro      Sabores Regular               Sprite
## 1235                Micro      Sabores Regular               Sprite
## 1236                Micro           Té Regular             Fuze Tea
## 1237                Micro         Agua Mineral      Topo Chico A.M.
## 1238                Micro      Agua Purificada Ciel Agua Purificada
## 1239                Micro      Agua Purificada Ciel Agua Purificada
## 1240                Micro      Agua Purificada Ciel Agua Purificada
## 1241                Micro      Agua Purificada Ciel Agua Purificada
## 1242                Micro      Agua Purificada Ciel Agua Purificada
## 1243                Micro      Agua Saborizada          Ciel Exprim
## 1244                Micro      Agua Saborizada            Ciel Mini
## 1245                Micro      Agua Saborizada      Ciel Saborizada
## 1246                Micro     Bebidas de Fruta       Delaware Punch
## 1247                Micro     Bebidas de Fruta       Delaware Punch
## 1248                Micro     Bebidas de Fruta               Frutsi
## 1249                Micro     Bebidas de Fruta           Valle Frut
## 1250                Micro     Bebidas de Fruta           Valle Frut
## 1251                Micro     Bebidas de Fruta           Valle Frut
## 1252                Micro     Bebidas de Fruta           Valle Frut
## 1253                Micro  Bebidas Energeticas                 Burn
## 1254                Micro  Bebidas Energeticas              Glacéau
## 1255                Micro          Colas Light       Coca-Cola Life
## 1256                Micro          Colas Light       Coca-Cola Life
## 1257                Micro          Colas Light      Coca-Cola Light
## 1258                Micro          Colas Light      Coca-Cola Light
## 1259                Micro          Colas Light       Coca-Cola Zero
## 1260                Micro          Colas Light       Coca-Cola Zero
## 1261                Micro          Colas Light       Coca-Cola Zero
## 1262                Micro        Colas Regular            Coca-Cola
## 1263                Micro        Colas Regular            Coca-Cola
## 1264                Micro        Colas Regular            Coca-Cola
## 1265                Micro        Colas Regular            Coca-Cola
## 1266                Micro        Colas Regular            Coca-Cola
## 1267                Micro        Colas Regular            Coca-Cola
## 1268                Micro        Colas Regular            Coca-Cola
## 1269                Micro        Colas Regular            Coca-Cola
## 1270                Micro        Colas Regular            Coca-Cola
## 1271                Micro        Colas Regular            Coca-Cola
## 1272                Micro        Colas Regular            Coca-Cola
## 1273                Micro        Colas Regular            Coca-Cola
## 1274                Micro        Colas Regular            Coca-Cola
## 1275                Micro        Colas Regular            Coca-Cola
## 1276                Micro        Colas Regular            Coca-Cola
## 1277                Micro        Colas Regular            Coca-Cola
## 1278                Micro     Isotónicos Light        Powerade Zero
## 1279                Micro   Isotónicos Regular             Powerade
## 1280                Micro   Isotónicos Regular             Powerade
## 1281                Micro   Isotónicos Regular             Powerade
## 1282                Micro     Jugos y Néctares            Del Valle
## 1283                Micro     Jugos y Néctares            Del Valle
## 1284                Micro     Jugos y Néctares            Del Valle
## 1285                Micro     Jugos y Néctares            Del Valle
## 1286                Micro     Jugos y Néctares            Del Valle
## 1287                Micro     Jugos y Néctares Del Valle Nutridefen
## 1288                Micro     Jugos y Néctares    Del Valle Reserva
## 1289                Micro     Jugos y Néctares    Del Valle Reserva
## 1290                Micro Leche UHT Especializ Santa Clara Deslacto
## 1291                Micro    Leche UHT Regular    Santa Clara Light
## 1292                Micro Leche UHT Saborizada Santa Clara Saboriza
## 1293                Micro        Sabores Light          Sprite Zero
## 1294                Micro      Sabores Regular     Del Valle y Nada
## 1295                Micro      Sabores Regular     Del Valle y Nada
## 1296                Micro      Sabores Regular                Fanta
## 1297                Micro      Sabores Regular                Fanta
## 1298                Micro      Sabores Regular                Fanta
## 1299                Micro      Sabores Regular                Fanta
## 1300                Micro      Sabores Regular                Fanta
## 1301                Micro      Sabores Regular                Fanta
## 1302                Micro      Sabores Regular                Fanta
## 1303                Micro      Sabores Regular                Fanta
## 1304                Micro      Sabores Regular               Fresca
## 1305                Micro      Sabores Regular               Fresca
## 1306                Micro      Sabores Regular               Fresca
## 1307                Micro      Sabores Regular               Fresca
## 1308                Micro      Sabores Regular               Fresca
## 1309                Micro      Sabores Regular               Fresca
## 1310                Micro      Sabores Regular               Fresca
## 1311                Micro      Sabores Regular         Manzana Lift
## 1312                Micro      Sabores Regular         Manzana Lift
## 1313                Micro      Sabores Regular         Manzana Lift
## 1314                Micro      Sabores Regular         Manzana Lift
## 1315                Micro      Sabores Regular               Senzao
## 1316                Micro      Sabores Regular        Sidral Mundet
## 1317                Micro      Sabores Regular        Sidral Mundet
## 1318                Micro      Sabores Regular        Sidral Mundet
## 1319                Micro      Sabores Regular        Sidral Mundet
## 1320                Micro      Sabores Regular               Sprite
## 1321                Micro      Sabores Regular               Sprite
## 1322                Micro      Sabores Regular               Sprite
## 1323                Micro      Sabores Regular               Sprite
## 1324                Micro      Sabores Regular               Sprite
## 1325                Micro      Sabores Regular               Sprite
## 1326                Micro      Sabores Regular               Sprite
## 1327                Micro      Sabores Regular               Sprite
## 1328                Micro      Sabores Regular               Sprite
## 1329                Micro           Té Regular             Fuze Tea
## 1330                Micro         Agua Mineral    Ciel Mineralizada
## 1331                Micro         Agua Mineral    Ciel Mineralizada
## 1332                Micro         Agua Mineral      Topo Chico A.M.
## 1333                Micro         Agua Mineral      Topo Chico A.M.
## 1334                Micro      Agua Purificada Ciel Agua Purificada
## 1335                Micro      Agua Purificada Ciel Agua Purificada
## 1336                Micro      Agua Purificada Ciel Agua Purificada
## 1337                Micro      Agua Purificada Ciel Agua Purificada
## 1338                Micro      Agua Saborizada          Ciel Exprim
## 1339                Micro      Agua Saborizada      Ciel Saborizada
## 1340                Micro     Bebidas de Fruta       Delaware Punch
## 1341                Micro     Bebidas de Fruta       Delaware Punch
## 1342                Micro     Bebidas de Fruta       Delaware Punch
## 1343                Micro     Bebidas de Fruta       Delaware Punch
## 1344                Micro     Bebidas de Fruta               Frutsi
## 1345                Micro     Bebidas de Fruta           Valle Frut
## 1346                Micro     Bebidas de Fruta           Valle Frut
## 1347                Micro          Colas Light      Coca-Cola Light
## 1348                Micro          Colas Light      Coca-Cola Light
## 1349                Micro          Colas Light      Coca-Cola Light
## 1350                Micro          Colas Light      Coca-Cola Light
## 1351                Micro          Colas Light       Coca-Cola Zero
## 1352                Micro          Colas Light       Coca-Cola Zero
## 1353                Micro        Colas Regular            Coca-Cola
## 1354                Micro        Colas Regular            Coca-Cola
## 1355                Micro        Colas Regular            Coca-Cola
## 1356                Micro        Colas Regular            Coca-Cola
## 1357                Micro        Colas Regular            Coca-Cola
## 1358                Micro        Colas Regular            Coca-Cola
## 1359                Micro        Colas Regular            Coca-Cola
## 1360                Micro        Colas Regular            Coca-Cola
## 1361                Micro        Colas Regular            Coca-Cola
## 1362                Micro        Colas Regular            Coca-Cola
## 1363                Micro        Colas Regular            Coca-Cola
## 1364                Micro        Colas Regular            Coca-Cola
## 1365                Micro        Colas Regular            Coca-Cola
## 1366                Micro        Colas Regular            Coca-Cola
## 1367                Micro        Colas Regular            Coca-Cola
## 1368                Micro        Colas Regular            Coca-Cola
## 1369                Micro   Isotónicos Regular             Powerade
## 1370                Micro     Jugos y Néctares            Del Valle
## 1371                Micro     Jugos y Néctares            Del Valle
## 1372                Micro     Jugos y Néctares            Del Valle
## 1373                Micro     Jugos y Néctares            Del Valle
## 1374                Micro     Jugos y Néctares            Del Valle
## 1375                Micro Leche UHT Especializ Santa Clara Deslacto
## 1376                Micro Leche UHT Saborizada Santa Clara Saboriza
## 1377                Micro        Sabores Light          Sprite Zero
## 1378                Micro      Sabores Regular     Del Valle y Nada
## 1379                Micro      Sabores Regular                Fanta
## 1380                Micro      Sabores Regular                Fanta
## 1381                Micro      Sabores Regular                Fanta
## 1382                Micro      Sabores Regular                Fanta
## 1383                Micro      Sabores Regular                Fanta
## 1384                Micro      Sabores Regular                Fanta
## 1385                Micro      Sabores Regular                Fanta
## 1386                Micro      Sabores Regular                Fanta
## 1387                Micro      Sabores Regular                Fanta
## 1388                Micro      Sabores Regular               Fresca
## 1389                Micro      Sabores Regular               Fresca
## 1390                Micro      Sabores Regular               Fresca
## 1391                Micro      Sabores Regular               Fresca
## 1392                Micro      Sabores Regular               Fresca
## 1393                Micro      Sabores Regular         Manzana Lift
## 1394                Micro      Sabores Regular         Manzana Lift
## 1395                Micro      Sabores Regular         Manzana Lift
## 1396                Micro      Sabores Regular         Manzana Lift
## 1397                Micro      Sabores Regular         Manzana Lift
## 1398                Micro      Sabores Regular         Manzana Lift
## 1399                Micro      Sabores Regular        Sidral Mundet
## 1400                Micro      Sabores Regular        Sidral Mundet
## 1401                Micro      Sabores Regular        Sidral Mundet
## 1402                Micro      Sabores Regular               Sprite
## 1403                Micro      Sabores Regular               Sprite
## 1404                Micro      Sabores Regular               Sprite
## 1405                Micro      Sabores Regular               Sprite
## 1406                Micro      Sabores Regular               Sprite
## 1407                Micro      Sabores Regular               Sprite
## 1408                Micro      Sabores Regular               Sprite
## 1409                Micro      Sabores Regular               Sprite
## 1410                Micro           Té Regular             Fuze Tea
## 1411                Micro           Té Regular             Fuze Tea
## 1412                Micro           Té Regular             Fuze Tea
## 1413                Micro           Té Regular             Fuze Tea
## 1414                Micro         Agua Mineral      Topo Chico A.M.
## 1415                Micro      Agua Purificada Ciel Agua Purificada
## 1416                Micro      Agua Purificada Ciel Agua Purificada
## 1417                Micro     Bebidas de Fruta       Delaware Punch
## 1418                Micro     Bebidas de Fruta                Pulpy
## 1419                Micro     Bebidas de Fruta           Valle Frut
## 1420                Micro     Bebidas de Fruta           Valle Frut
## 1421                Micro  Bebidas Energeticas                 Burn
## 1422                Micro        Colas Regular            Coca-Cola
## 1423                Micro        Colas Regular            Coca-Cola
## 1424                Micro        Colas Regular            Coca-Cola
## 1425                Micro        Colas Regular            Coca-Cola
## 1426                Micro        Colas Regular            Coca-Cola
## 1427                Micro        Colas Regular            Coca-Cola
## 1428                Micro        Colas Regular            Coca-Cola
## 1429                Micro        Colas Regular            Coca-Cola
## 1430                Micro   Isotónicos Regular             Powerade
## 1431                Micro     Jugos y Néctares            Del Valle
## 1432                Micro     Jugos y Néctares            Del Valle
## 1433                Micro    Leche UHT Regular    Santa Clara Light
## 1434                Micro Leche UHT Saborizada Santa Clara Saboriza
## 1435                Micro      Sabores Regular     Del Valle y Nada
## 1436                Micro      Sabores Regular                Fanta
## 1437                Micro      Sabores Regular                Fanta
## 1438                Micro      Sabores Regular                Fanta
## 1439                Micro      Sabores Regular                Fanta
## 1440                Micro      Sabores Regular                Fanta
## 1441                Micro      Sabores Regular               Fresca
## 1442                Micro      Sabores Regular               Fresca
## 1443                Micro      Sabores Regular               Fresca
## 1444                Micro      Sabores Regular         Manzana Lift
## 1445                Micro      Sabores Regular         Manzana Lift
## 1446                Micro      Sabores Regular         Manzana Lift
## 1447                Micro      Sabores Regular         Manzana Lift
## 1448                Micro      Sabores Regular         Manzana Lift
## 1449                Micro      Sabores Regular        Sidral Mundet
## 1450                Micro      Sabores Regular        Sidral Mundet
## 1451                Micro      Sabores Regular               Sprite
## 1452                Micro      Sabores Regular               Sprite
## 1453                Micro      Sabores Regular               Sprite
## 1454                Micro      Sabores Regular               Sprite
## 1455                Micro      Sabores Regular               Sprite
## 1456                Micro           Té Regular             Fuze Tea
## 1457                Micro         Agua Mineral    Ciel Mineralizada
## 1458                Micro         Agua Mineral    Ciel Mineralizada
## 1459                Micro         Agua Mineral      Topo Chico A.M.
## 1460                Micro         Agua Mineral      Topo Chico A.M.
## 1461                Micro      Agua Purificada Ciel Agua Purificada
## 1462                Micro      Agua Purificada Ciel Agua Purificada
## 1463                Micro      Agua Saborizada      Ciel Saborizada
## 1464                Micro          Colas Light      Coca-Cola Light
## 1465                Micro          Colas Light      Coca-Cola Light
## 1466                Micro          Colas Light       Coca-Cola Zero
## 1467                Micro          Colas Light       Coca-Cola Zero
## 1468                Micro        Colas Regular            Coca-Cola
## 1469                Micro        Colas Regular            Coca-Cola
## 1470                Micro        Colas Regular            Coca-Cola
## 1471                Micro        Colas Regular            Coca-Cola
## 1472                Micro        Colas Regular            Coca-Cola
## 1473                Micro        Colas Regular            Coca-Cola
## 1474                Micro        Colas Regular            Coca-Cola
## 1475                Micro        Colas Regular            Coca-Cola
## 1476                Micro   Isotónicos Regular             Powerade
## 1477                Micro     Jugos y Néctares            Del Valle
## 1478                Micro Leche UHT Especializ Santa Clara Deslacto
## 1479                Micro    Leche UHT Regular   Santa Clara Entera
## 1480                Micro Leche UHT Saborizada Santa Clara Saboriza
## 1481                Micro        Sabores Light          Sprite Zero
## 1482                Micro      Sabores Regular     Del Valle y Nada
## 1483                Micro      Sabores Regular                Fanta
## 1484                Micro      Sabores Regular                Fanta
## 1485                Micro      Sabores Regular               Fresca
## 1486                Micro      Sabores Regular               Fresca
## 1487                Micro      Sabores Regular         Manzana Lift
## 1488                Micro      Sabores Regular         Manzana Lift
## 1489                Micro      Sabores Regular               Sprite
## 1490                Micro      Sabores Regular               Sprite
## 1491                Micro      Sabores Regular               Sprite
## 1492                Micro           Té Regular             Fuze Tea
## 1493                Micro      Agua Purificada Ciel Agua Purificada
## 1494                Micro      Agua Purificada Ciel Agua Purificada
## 1495                Micro      Agua Purificada Ciel Agua Purificada
## 1496                Micro      Agua Saborizada          Ciel Exprim
## 1497                Micro      Agua Saborizada            Ciel Mini
## 1498                Micro     Bebidas de Fruta               Frutsi
## 1499                Micro     Bebidas de Fruta                Pulpy
## 1500                Micro     Bebidas de Fruta           Valle Frut
## 1501                Micro     Bebidas de Fruta           Valle Frut
## 1502                Micro          Colas Light      Coca-Cola Light
## 1503                Micro          Colas Light      Coca-Cola Light
## 1504                Micro          Colas Light      Coca-Cola Light
## 1505                Micro          Colas Light      Coca-Cola Light
## 1506                Micro        Colas Regular            Coca-Cola
## 1507                Micro        Colas Regular            Coca-Cola
## 1508                Micro        Colas Regular            Coca-Cola
## 1509                Micro        Colas Regular            Coca-Cola
## 1510                Micro        Colas Regular            Coca-Cola
## 1511                Micro        Colas Regular            Coca-Cola
## 1512                Micro        Colas Regular            Coca-Cola
## 1513                Micro        Colas Regular            Coca-Cola
## 1514                Micro        Colas Regular            Coca-Cola
## 1515                Micro        Colas Regular            Coca-Cola
## 1516                Micro        Colas Regular            Coca-Cola
## 1517                Micro        Colas Regular            Coca-Cola
## 1518                Micro        Colas Regular            Coca-Cola
## 1519                Micro        Colas Regular            Coca-Cola
## 1520                Micro        Colas Regular            Coca-Cola
## 1521                Micro   Isotónicos Regular             Powerade
## 1522                Micro     Jugos y Néctares            Del Valle
## 1523                Micro     Jugos y Néctares            Del Valle
## 1524                Micro Leche UHT Saborizada Santa Clara Saboriza
## 1525                Micro        Sabores Light          Sprite Zero
## 1526                Micro      Sabores Regular     Del Valle y Nada
## 1527                Micro      Sabores Regular                Fanta
## 1528                Micro      Sabores Regular                Fanta
## 1529                Micro      Sabores Regular                Fanta
## 1530                Micro      Sabores Regular                Fanta
## 1531                Micro      Sabores Regular                Fanta
## 1532                Micro      Sabores Regular                Fanta
## 1533                Micro      Sabores Regular               Fresca
## 1534                Micro      Sabores Regular               Fresca
## 1535                Micro      Sabores Regular               Fresca
## 1536                Micro      Sabores Regular         Manzana Lift
## 1537                Micro      Sabores Regular         Manzana Lift
## 1538                Micro      Sabores Regular         Manzana Lift
## 1539                Micro      Sabores Regular         Manzana Lift
## 1540                Micro      Sabores Regular        Sidral Mundet
## 1541                Micro      Sabores Regular               Sprite
## 1542                Micro      Sabores Regular               Sprite
## 1543                Micro      Sabores Regular               Sprite
## 1544                Micro      Sabores Regular               Sprite
## 1545                Micro      Sabores Regular               Sprite
## 1546                Micro           Té Regular             Fuze Tea
## 1547                Micro           Té Regular             Fuze Tea
## 1548                Micro         Agua Mineral      Topo Chico A.M.
## 1549                Micro     Bebidas de Fruta       Delaware Punch
## 1550                Micro     Bebidas de Fruta               Frutsi
## 1551                Micro     Bebidas de Fruta           Valle Frut
## 1552                Micro          Colas Light      Coca-Cola Light
## 1553                Micro        Colas Regular            Coca-Cola
## 1554                Micro        Colas Regular            Coca-Cola
## 1555                Micro        Colas Regular            Coca-Cola
## 1556                Micro        Colas Regular            Coca-Cola
## 1557                Micro        Colas Regular            Coca-Cola
## 1558                Micro        Colas Regular            Coca-Cola
## 1559                Micro        Colas Regular            Coca-Cola
## 1560                Micro        Colas Regular            Coca-Cola
## 1561                Micro   Isotónicos Regular             Powerade
## 1562                Micro   Isotónicos Regular             Powerade
## 1563                Micro     Jugos y Néctares            Del Valle
## 1564                Micro     Jugos y Néctares            Del Valle
## 1565                Micro     Jugos y Néctares            Del Valle
## 1566                Micro     Jugos y Néctares            Del Valle
## 1567                Micro     Jugos y Néctares    Del Valle Reserva
## 1568                Micro     Jugos y Néctares    Del Valle Reserva
## 1569                Micro Leche UHT Especializ Santa Clara Deslacto
## 1570                Micro      Sabores Regular     Del Valle y Nada
## 1571                Micro      Sabores Regular                Fanta
## 1572                Micro      Sabores Regular                Fanta
## 1573                Micro      Sabores Regular                Fanta
## 1574                Micro      Sabores Regular                Fanta
## 1575                Micro      Sabores Regular               Fresca
## 1576                Micro      Sabores Regular               Fresca
## 1577                Micro      Sabores Regular               Fresca
## 1578                Micro      Sabores Regular         Manzana Lift
## 1579                Micro      Sabores Regular         Manzana Lift
## 1580                Micro      Sabores Regular         Manzana Lift
## 1581                Micro      Sabores Regular         Manzana Lift
## 1582                Micro      Sabores Regular               Sprite
## 1583                Micro      Sabores Regular               Sprite
## 1584                Micro      Sabores Regular               Sprite
## 1585                Micro      Sabores Regular               Sprite
## 1586                Micro      Sabores Regular               Sprite
## 1587                Micro      Sabores Regular               Sprite
## 1588                Micro      Sabores Regular               Sprite
## 1589                Micro      Sabores Regular               Sprite
## 1590                Micro         Agua Mineral      Topo Chico A.M.
## 1591                Micro      Agua Purificada Ciel Agua Purificada
## 1592                Micro      Agua Purificada Ciel Agua Purificada
## 1593                Micro      Agua Purificada Ciel Agua Purificada
## 1594                Micro      Agua Saborizada          Ciel Exprim
## 1595                Micro      Agua Saborizada      Ciel Saborizada
## 1596                Micro     Bebidas de Fruta       Delaware Punch
## 1597                Micro     Bebidas de Fruta                Pulpy
## 1598                Micro     Bebidas de Fruta           Valle Frut
## 1599                Micro     Bebidas de Fruta           Valle Frut
## 1600                Micro     Bebidas de Fruta           Valle Frut
## 1601                Micro          Colas Light       Coca-Cola Life
## 1602                Micro          Colas Light      Coca-Cola Light
## 1603                Micro          Colas Light      Coca-Cola Light
## 1604                Micro          Colas Light      Coca-Cola Light
## 1605                Micro        Colas Regular            Coca-Cola
## 1606                Micro        Colas Regular            Coca-Cola
## 1607                Micro        Colas Regular            Coca-Cola
## 1608                Micro        Colas Regular            Coca-Cola
## 1609                Micro        Colas Regular            Coca-Cola
## 1610                Micro        Colas Regular            Coca-Cola
## 1611                Micro        Colas Regular            Coca-Cola
## 1612                Micro        Colas Regular            Coca-Cola
## 1613                Micro        Colas Regular            Coca-Cola
## 1614                Micro        Colas Regular            Coca-Cola
## 1615                Micro        Colas Regular            Coca-Cola
## 1616                Micro        Colas Regular            Coca-Cola
## 1617                Micro   Isotónicos Regular             Powerade
## 1618                Micro   Isotónicos Regular             Powerade
## 1619                Micro     Jugos y Néctares            Del Valle
## 1620                Micro     Jugos y Néctares            Del Valle
## 1621                Micro     Jugos y Néctares            Del Valle
## 1622                Micro Leche UHT Saborizada Santa Clara Saboriza
## 1623                Micro      Sabores Regular     Del Valle y Nada
## 1624                Micro      Sabores Regular                Fanta
## 1625                Micro      Sabores Regular                Fanta
## 1626                Micro      Sabores Regular                Fanta
## 1627                Micro      Sabores Regular                Fanta
## 1628                Micro      Sabores Regular                Fanta
## 1629                Micro      Sabores Regular               Fresca
## 1630                Micro      Sabores Regular               Fresca
## 1631                Micro      Sabores Regular               Fresca
## 1632                Micro      Sabores Regular               Fresca
## 1633                Micro      Sabores Regular               Fresca
## 1634                Micro      Sabores Regular         Manzana Lift
## 1635                Micro      Sabores Regular         Manzana Lift
## 1636                Micro      Sabores Regular         Manzana Lift
## 1637                Micro      Sabores Regular         Manzana Lift
## 1638                Micro      Sabores Regular         Manzana Lift
## 1639                Micro      Sabores Regular        Sidral Mundet
## 1640                Micro      Sabores Regular        Sidral Mundet
## 1641                Micro      Sabores Regular        Sidral Mundet
## 1642                Micro      Sabores Regular               Sprite
## 1643                Micro      Sabores Regular               Sprite
## 1644                Micro      Sabores Regular               Sprite
## 1645                Micro      Sabores Regular               Sprite
## 1646                Micro      Sabores Regular               Sprite
## 1647                Micro           Té Regular             Fuze Tea
## 1648                Micro      Agua Purificada Ciel Agua Purificada
## 1649                Micro          Colas Light      Coca-Cola Light
## 1650                Micro          Colas Light      Coca-Cola Light
## 1651                Micro        Colas Regular            Coca-Cola
## 1652                Micro        Colas Regular            Coca-Cola
## 1653                Micro        Colas Regular            Coca-Cola
## 1654                Micro        Colas Regular            Coca-Cola
## 1655                Micro        Colas Regular            Coca-Cola
## 1656                Micro     Jugos y Néctares            Del Valle
## 1657                Micro     Jugos y Néctares            Del Valle
## 1658                Micro     Jugos y Néctares            Del Valle
## 1659                Micro     Jugos y Néctares    Del Valle Reserva
## 1660                Micro Leche UHT Saborizada Santa Clara Saboriza
## 1661                Micro      Sabores Regular                Fanta
## 1662                Micro      Sabores Regular                Fanta
## 1663                Micro      Sabores Regular               Fresca
## 1664                Micro      Sabores Regular         Manzana Lift
## 1665                Micro      Sabores Regular         Manzana Lift
## 1666                Micro      Sabores Regular               Sprite
## 1667                Micro           Té Regular             Fuze Tea
## 1668                Micro         Agua Mineral      Topo Chico A.M.
## 1669                Micro      Agua Purificada Ciel Agua Purificada
## 1670                Micro      Agua Purificada Ciel Agua Purificada
## 1671                Micro      Agua Purificada Ciel Agua Purificada
## 1672                Micro      Agua Purificada Ciel Agua Purificada
## 1673                Micro      Agua Saborizada            Ciel Mini
## 1674                Micro      Agua Saborizada      Ciel Saborizada
## 1675                Micro      Agua Saborizada      Ciel Saborizada
## 1676                Micro     Bebidas de Fruta       Delaware Punch
## 1677                Micro     Bebidas de Fruta               Frutsi
## 1678                Micro     Bebidas de Fruta                Pulpy
## 1679                Micro     Bebidas de Fruta           Valle Frut
## 1680                Micro     Bebidas de Fruta           Valle Frut
## 1681                Micro     Bebidas de Fruta           Valle Frut
## 1682                Micro     Bebidas de Fruta           Valle Frut
## 1683                Micro  Bebidas Energeticas                 Burn
## 1684                Micro          Colas Light       Coca-Cola Life
## 1685                Micro          Colas Light       Coca-Cola Life
## 1686                Micro          Colas Light      Coca-Cola Light
## 1687                Micro          Colas Light      Coca-Cola Light
## 1688                Micro          Colas Light      Coca-Cola Light
## 1689                Micro        Colas Regular            Coca-Cola
## 1690                Micro        Colas Regular            Coca-Cola
## 1691                Micro        Colas Regular            Coca-Cola
## 1692                Micro        Colas Regular            Coca-Cola
## 1693                Micro        Colas Regular            Coca-Cola
## 1694                Micro        Colas Regular            Coca-Cola
## 1695                Micro        Colas Regular            Coca-Cola
## 1696                Micro        Colas Regular            Coca-Cola
## 1697                Micro        Colas Regular            Coca-Cola
## 1698                Micro        Colas Regular            Coca-Cola
## 1699                Micro        Colas Regular            Coca-Cola
## 1700                Micro        Colas Regular            Coca-Cola
## 1701                Micro        Colas Regular            Coca-Cola
## 1702                Micro        Colas Regular            Coca-Cola
## 1703                Micro   Isotónicos Regular             Powerade
## 1704                Micro   Isotónicos Regular             Powerade
## 1705                Micro   Isotónicos Regular             Powerade
## 1706                Micro     Jugos y Néctares            Del Valle
## 1707                Micro     Jugos y Néctares            Del Valle
## 1708                Micro     Jugos y Néctares            Del Valle
## 1709                Micro     Jugos y Néctares            Del Valle
## 1710                Micro     Jugos y Néctares    Del Valle Reserva
## 1711                Micro     Jugos y Néctares    Del Valle Reserva
## 1712                Micro Leche UHT Especializ Santa Clara Deslacto
## 1713                Micro    Leche UHT Regular    Santa Clara Light
## 1714                Micro Leche UHT Saborizada Santa Clara Saboriza
## 1715                Micro      Sabores Regular     Del Valle y Nada
## 1716                Micro      Sabores Regular                Fanta
## 1717                Micro      Sabores Regular                Fanta
## 1718                Micro      Sabores Regular                Fanta
## 1719                Micro      Sabores Regular                Fanta
## 1720                Micro      Sabores Regular                Fanta
## 1721                Micro      Sabores Regular               Fresca
## 1722                Micro      Sabores Regular               Fresca
## 1723                Micro      Sabores Regular               Fresca
## 1724                Micro      Sabores Regular               Fresca
## 1725                Micro      Sabores Regular               Fresca
## 1726                Micro      Sabores Regular         Manzana Lift
## 1727                Micro      Sabores Regular         Manzana Lift
## 1728                Micro      Sabores Regular        Sidral Mundet
## 1729                Micro      Sabores Regular        Sidral Mundet
## 1730                Micro      Sabores Regular        Sidral Mundet
## 1731                Micro      Sabores Regular        Sidral Mundet
## 1732                Micro      Sabores Regular        Sidral Mundet
## 1733                Micro      Sabores Regular        Sidral Mundet
## 1734                Micro      Sabores Regular               Sprite
## 1735                Micro      Sabores Regular               Sprite
## 1736                Micro      Sabores Regular               Sprite
## 1737                Micro      Sabores Regular               Sprite
## 1738                Micro      Sabores Regular               Sprite
## 1739                Micro      Sabores Regular               Sprite
## 1740                Micro           Té Regular             Fuze Tea
## 1741                Micro           Té Regular             Fuze Tea
## 1742                Micro           Té Regular             Fuze Tea
## 1743                Micro           Té Regular             Fuze Tea
## 1744                Micro         Agua Mineral      Topo Chico A.M.
## 1745                Micro      Agua Purificada Ciel Agua Purificada
## 1746                Micro      Agua Purificada Ciel Agua Purificada
## 1747                Micro     Bebidas de Fruta               Frutsi
## 1748                Micro     Bebidas de Fruta           Valle Frut
## 1749                Micro     Bebidas de Fruta           Valle Frut
## 1750                Micro          Colas Light       Coca-Cola Life
## 1751                Micro          Colas Light      Coca-Cola Light
## 1752                Micro        Colas Regular            Coca-Cola
## 1753                Micro        Colas Regular            Coca-Cola
## 1754                Micro        Colas Regular            Coca-Cola
## 1755                Micro        Colas Regular            Coca-Cola
## 1756                Micro        Colas Regular            Coca-Cola
## 1757                Micro        Colas Regular            Coca-Cola
## 1758                Micro        Colas Regular            Coca-Cola
## 1759                Micro        Colas Regular            Coca-Cola
## 1760                Micro        Colas Regular            Coca-Cola
## 1761                Micro        Colas Regular            Coca-Cola
## 1762                Micro        Colas Regular            Coca-Cola
## 1763                Micro        Colas Regular            Coca-Cola
## 1764                Micro   Isotónicos Regular             Powerade
## 1765                Micro     Jugos y Néctares            Del Valle
## 1766                Micro     Jugos y Néctares            Del Valle
## 1767                Micro    Leche UHT Regular   Santa Clara Entera
## 1768                Micro Leche UHT Saborizada Santa Clara Saboriza
## 1769                Micro      Sabores Regular     Del Valle y Nada
## 1770                Micro      Sabores Regular                Fanta
## 1771                Micro      Sabores Regular                Fanta
## 1772                Micro      Sabores Regular                Fanta
## 1773                Micro      Sabores Regular                Fanta
## 1774                Micro      Sabores Regular               Fresca
## 1775                Micro      Sabores Regular               Fresca
## 1776                Micro      Sabores Regular               Fresca
## 1777                Micro      Sabores Regular         Manzana Lift
## 1778                Micro      Sabores Regular         Manzana Lift
## 1779                Micro      Sabores Regular         Manzana Lift
## 1780                Micro      Sabores Regular         Manzana Lift
## 1781                Micro      Sabores Regular        Sidral Mundet
## 1782                Micro      Sabores Regular               Sprite
## 1783                Micro      Sabores Regular               Sprite
## 1784                Micro      Sabores Regular               Sprite
## 1785                Micro           Té Regular             Fuze Tea
## 1786                Micro           Té Regular             Fuze Tea
## 1787                Micro         Agua Mineral      Topo Chico A.M.
## 1788                Micro      Agua Purificada Ciel Agua Purificada
## 1789                Micro      Agua Purificada Ciel Agua Purificada
## 1790                Micro      Agua Purificada Ciel Agua Purificada
## 1791                Micro      Agua Purificada Ciel Agua Purificada
## 1792                Micro      Agua Saborizada      Ciel Saborizada
## 1793                Micro      Agua Saborizada      Ciel Saborizada
## 1794                Micro     Bebidas de Fruta       Delaware Punch
## 1795                Micro     Bebidas de Fruta       Delaware Punch
## 1796                Micro     Bebidas de Fruta       Delaware Punch
## 1797                Micro     Bebidas de Fruta               Frutsi
## 1798                Micro     Bebidas de Fruta           Valle Frut
## 1799                Micro     Bebidas de Fruta           Valle Frut
## 1800                Micro     Bebidas de Fruta           Valle Frut
## 1801                Micro     Bebidas de Fruta           Valle Frut
## 1802                Micro     Bebidas de Fruta           Valle Frut
## 1803                Micro  Bebidas Energeticas                 Burn
## 1804                Micro  Bebidas Energeticas              Glacéau
## 1805                Micro          Colas Light       Coca-Cola Life
## 1806                Micro          Colas Light      Coca-Cola Light
## 1807                Micro          Colas Light      Coca-Cola Light
## 1808                Micro          Colas Light      Coca-Cola Light
## 1809                Micro          Colas Light       Coca-Cola Zero
## 1810                Micro          Colas Light       Coca-Cola Zero
## 1811                Micro          Colas Light       Coca-Cola Zero
## 1812                Micro        Colas Regular            Coca-Cola
## 1813                Micro        Colas Regular            Coca-Cola
## 1814                Micro        Colas Regular            Coca-Cola
## 1815                Micro        Colas Regular            Coca-Cola
## 1816                Micro        Colas Regular            Coca-Cola
## 1817                Micro        Colas Regular            Coca-Cola
## 1818                Micro        Colas Regular            Coca-Cola
## 1819                Micro        Colas Regular            Coca-Cola
## 1820                Micro        Colas Regular            Coca-Cola
## 1821                Micro        Colas Regular            Coca-Cola
## 1822                Micro        Colas Regular            Coca-Cola
## 1823                Micro        Colas Regular            Coca-Cola
## 1824                Micro        Colas Regular            Coca-Cola
## 1825                Micro        Colas Regular            Coca-Cola
## 1826                Micro        Colas Regular            Coca-Cola
## 1827                Micro   Isotónicos Regular             Powerade
## 1828                Micro   Isotónicos Regular             Powerade
## 1829                Micro     Jugos y Néctares            Del Valle
## 1830                Micro     Jugos y Néctares            Del Valle
## 1831                Micro     Jugos y Néctares            Del Valle
## 1832                Micro     Jugos y Néctares            Del Valle
## 1833                Micro     Jugos y Néctares Del Valle Nutridefen
## 1834                Micro     Jugos y Néctares    Del Valle Reserva
## 1835                Micro     Jugos y Néctares    Del Valle Reserva
## 1836                Micro Leche UHT Especializ Santa Clara Deslacto
## 1837                Micro Leche UHT Saborizada Santa Clara Saboriza
## 1838                Micro      Sabores Regular                Fanta
## 1839                Micro      Sabores Regular                Fanta
## 1840                Micro      Sabores Regular                Fanta
## 1841                Micro      Sabores Regular                Fanta
## 1842                Micro      Sabores Regular                Fanta
## 1843                Micro      Sabores Regular                Fanta
## 1844                Micro      Sabores Regular                Fanta
## 1845                Micro      Sabores Regular               Fresca
## 1846                Micro      Sabores Regular               Fresca
## 1847                Micro      Sabores Regular               Fresca
## 1848                Micro      Sabores Regular         Manzana Lift
## 1849                Micro      Sabores Regular         Manzana Lift
## 1850                Micro      Sabores Regular         Manzana Lift
## 1851                Micro      Sabores Regular         Manzana Lift
## 1852                Micro      Sabores Regular         Manzana Lift
## 1853                Micro      Sabores Regular         Manzana Lift
## 1854                Micro      Sabores Regular         Manzana Lift
## 1855                Micro      Sabores Regular               Senzao
## 1856                Micro      Sabores Regular        Sidral Mundet
## 1857                Micro      Sabores Regular        Sidral Mundet
## 1858                Micro      Sabores Regular        Sidral Mundet
## 1859                Micro      Sabores Regular               Sprite
## 1860                Micro      Sabores Regular               Sprite
## 1861                Micro      Sabores Regular               Sprite
## 1862                Micro      Sabores Regular               Sprite
## 1863                Micro      Sabores Regular               Sprite
## 1864                Micro      Sabores Regular               Sprite
## 1865                Micro      Sabores Regular               Sprite
## 1866                Micro      Sabores Regular               Sprite
## 1867                Micro           Té Regular             Fuze Tea
## 1868                Micro           Té Regular             Fuze Tea
## 1869                Micro      Agua Purificada Ciel Agua Purificada
## 1870                Micro      Agua Purificada Ciel Agua Purificada
## 1871                Micro      Agua Purificada Ciel Agua Purificada
## 1872                Micro     Bebidas de Fruta       Delaware Punch
## 1873                Micro     Bebidas de Fruta               Frutsi
## 1874                Micro          Colas Light      Coca-Cola Light
## 1875                Micro          Colas Light      Coca-Cola Light
## 1876                Micro        Colas Regular            Coca-Cola
## 1877                Micro        Colas Regular            Coca-Cola
## 1878                Micro        Colas Regular            Coca-Cola
## 1879                Micro        Colas Regular            Coca-Cola
## 1880                Micro        Colas Regular            Coca-Cola
## 1881                Micro        Colas Regular            Coca-Cola
## 1882                Micro        Colas Regular            Coca-Cola
## 1883                Micro        Colas Regular            Coca-Cola
## 1884                Micro     Jugos y Néctares            Del Valle
## 1885                Micro     Jugos y Néctares            Del Valle
## 1886                Micro Leche UHT Especializ Santa Clara Deslacto
## 1887                Micro      Sabores Regular     Del Valle y Nada
## 1888                Micro      Sabores Regular     Del Valle y Nada
## 1889                Micro      Sabores Regular                Fanta
## 1890                Micro      Sabores Regular                Fanta
## 1891                Micro      Sabores Regular                Fanta
## 1892                Micro      Sabores Regular               Fresca
## 1893                Micro      Sabores Regular               Fresca
## 1894                Micro      Sabores Regular               Fresca
## 1895                Micro      Sabores Regular         Manzana Lift
## 1896                Micro      Sabores Regular         Manzana Lift
## 1897                Micro      Sabores Regular        Sidral Mundet
## 1898                Micro      Sabores Regular               Sprite
## 1899                Micro      Sabores Regular               Sprite
## 1900                Micro      Sabores Regular               Sprite
## 1901                Micro      Sabores Regular               Sprite
## 1902                Micro           Té Regular             Fuze Tea
## 1903                Micro         Agua Mineral      Topo Chico A.M.
## 1904                Micro         Agua Mineral      Topo Chico A.M.
## 1905                Micro      Agua Purificada Ciel Agua Purificada
## 1906                Micro      Agua Purificada Ciel Agua Purificada
## 1907                Micro      Agua Purificada Ciel Agua Purificada
## 1908                Micro      Agua Purificada Ciel Agua Purificada
## 1909                Micro     Bebidas de Fruta       Delaware Punch
## 1910                Micro     Bebidas de Fruta               Frutsi
## 1911                Micro     Bebidas de Fruta           Valle Frut
## 1912                Micro     Bebidas de Fruta           Valle Frut
## 1913                Micro     Bebidas de Fruta           Valle Frut
## 1914                Micro     Bebidas de Fruta           Valle Frut
## 1915                Micro  Bebidas Energeticas                 Burn
## 1916                Micro        Colas Regular            Coca-Cola
## 1917                Micro        Colas Regular            Coca-Cola
## 1918                Micro        Colas Regular            Coca-Cola
## 1919                Micro        Colas Regular            Coca-Cola
## 1920                Micro        Colas Regular            Coca-Cola
## 1921                Micro        Colas Regular            Coca-Cola
## 1922                Micro        Colas Regular            Coca-Cola
## 1923                Micro        Colas Regular            Coca-Cola
## 1924                Micro        Colas Regular            Coca-Cola
## 1925                Micro        Colas Regular            Coca-Cola
## 1926                Micro     Isotónicos Light        Powerade Zero
## 1927                Micro   Isotónicos Regular             Powerade
## 1928                Micro     Jugos y Néctares            Del Valle
## 1929                Micro     Jugos y Néctares            Del Valle
## 1930                Micro Leche UHT Saborizada Santa Clara Saboriza
## 1931                Micro      Sabores Regular                Fanta
## 1932                Micro      Sabores Regular                Fanta
## 1933                Micro      Sabores Regular                Fanta
## 1934                Micro      Sabores Regular                Fanta
## 1935                Micro      Sabores Regular               Fresca
## 1936                Micro      Sabores Regular               Fresca
## 1937                Micro      Sabores Regular               Fresca
## 1938                Micro      Sabores Regular         Manzana Lift
## 1939                Micro      Sabores Regular         Manzana Lift
## 1940                Micro      Sabores Regular         Manzana Lift
## 1941                Micro      Sabores Regular               Senzao
## 1942                Micro      Sabores Regular        Sidral Mundet
## 1943                Micro      Sabores Regular        Sidral Mundet
## 1944                Micro      Sabores Regular               Sprite
## 1945                Micro      Sabores Regular               Sprite
## 1946                Micro      Sabores Regular               Sprite
## 1947                Micro      Sabores Regular               Sprite
## 1948                Micro      Agua Saborizada      Ciel Saborizada
## 1949                Micro     Bebidas de Fruta       Delaware Punch
## 1950                Micro     Bebidas de Fruta               Frutsi
## 1951                Micro     Bebidas de Fruta                Pulpy
## 1952                Micro          Colas Light      Coca-Cola Light
## 1953                Micro          Colas Light      Coca-Cola Light
## 1954                Micro          Colas Light       Coca-Cola Zero
## 1955                Micro        Colas Regular            Coca-Cola
## 1956                Micro        Colas Regular            Coca-Cola
## 1957                Micro        Colas Regular            Coca-Cola
## 1958                Micro        Colas Regular            Coca-Cola
## 1959                Micro        Colas Regular            Coca-Cola
## 1960                Micro        Colas Regular            Coca-Cola
## 1961                Micro        Colas Regular            Coca-Cola
## 1962                Micro        Colas Regular            Coca-Cola
## 1963                Micro        Colas Regular            Coca-Cola
## 1964                Micro        Colas Regular            Coca-Cola
## 1965                Micro        Colas Regular            Coca-Cola
## 1966                Micro        Colas Regular            Coca-Cola
## 1967                Micro     Isotónicos Light        Powerade Zero
## 1968                Micro   Isotónicos Regular             Powerade
## 1969                Micro     Jugos y Néctares            Del Valle
## 1970                Micro     Jugos y Néctares            Del Valle
## 1971                Micro     Jugos y Néctares            Del Valle
## 1972                Micro     Jugos y Néctares    Del Valle Reserva
## 1973                Micro      Sabores Regular     Del Valle y Nada
## 1974                Micro      Sabores Regular                Fanta
## 1975                Micro      Sabores Regular                Fanta
## 1976                Micro      Sabores Regular                Fanta
## 1977                Micro      Sabores Regular                Fanta
## 1978                Micro      Sabores Regular                Fanta
## 1979                Micro      Sabores Regular                Fanta
## 1980                Micro      Sabores Regular               Fresca
## 1981                Micro      Sabores Regular               Fresca
## 1982                Micro      Sabores Regular               Fresca
## 1983                Micro      Sabores Regular               Fresca
## 1984                Micro      Sabores Regular               Fresca
## 1985                Micro      Sabores Regular         Manzana Lift
## 1986                Micro      Sabores Regular         Manzana Lift
## 1987                Micro      Sabores Regular         Manzana Lift
## 1988                Micro      Sabores Regular         Manzana Lift
## 1989                Micro      Sabores Regular        Sidral Mundet
## 1990                Micro      Sabores Regular               Sprite
## 1991                Micro      Sabores Regular               Sprite
## 1992                Micro      Sabores Regular               Sprite
## 1993                Micro      Sabores Regular               Sprite
## 1994                Micro      Sabores Regular               Sprite
## 1995                Micro      Sabores Regular               Sprite
## 1996                Micro           Té Regular             Fuze Tea
## 1997                Micro         Agua Mineral      Topo Chico A.M.
## 1998                Micro      Agua Purificada Ciel Agua Purificada
## 1999                Micro     Bebidas de Fruta       Delaware Punch
## 2000                Micro     Bebidas de Fruta       Delaware Punch
## 2001                Micro     Bebidas de Fruta               Frutsi
## 2002                Micro     Bebidas de Fruta                Pulpy
## 2003                Micro     Bebidas de Fruta           Valle Frut
## 2004                Micro          Colas Light      Coca-Cola Light
## 2005                Micro          Colas Light      Coca-Cola Light
## 2006                Micro        Colas Regular            Coca-Cola
## 2007                Micro        Colas Regular            Coca-Cola
## 2008                Micro        Colas Regular            Coca-Cola
## 2009                Micro        Colas Regular            Coca-Cola
## 2010                Micro        Colas Regular            Coca-Cola
## 2011                Micro        Colas Regular            Coca-Cola
## 2012                Micro        Colas Regular            Coca-Cola
## 2013                Micro        Colas Regular            Coca-Cola
## 2014                Micro        Colas Regular            Coca-Cola
## 2015                Micro        Colas Regular            Coca-Cola
## 2016                Micro        Colas Regular            Coca-Cola
## 2017                Micro   Isotónicos Regular             Powerade
## 2018                Micro     Jugos y Néctares            Del Valle
## 2019                Micro      Sabores Regular                Fanta
## 2020                Micro      Sabores Regular                Fanta
## 2021                Micro      Sabores Regular                Fanta
## 2022                Micro      Sabores Regular                Fanta
## 2023                Micro      Sabores Regular                Fanta
## 2024                Micro      Sabores Regular               Fresca
## 2025                Micro      Sabores Regular               Fresca
## 2026                Micro      Sabores Regular               Fresca
## 2027                Micro      Sabores Regular               Fresca
## 2028                Micro      Sabores Regular         Manzana Lift
## 2029                Micro      Sabores Regular         Manzana Lift
## 2030                Micro      Sabores Regular         Manzana Lift
## 2031                Micro      Sabores Regular         Manzana Lift
## 2032                Micro      Sabores Regular        Sidral Mundet
## 2033                Micro      Sabores Regular               Sprite
## 2034                Micro      Sabores Regular               Sprite
## 2035                Micro      Sabores Regular               Sprite
## 2036                Micro      Sabores Regular               Sprite
## 2037                Micro      Sabores Regular               Sprite
## 2038                Micro      Sabores Regular               Sprite
## 2039                Micro           Té Regular             Fuze Tea
## 2040                Micro         Agua Mineral      Topo Chico A.M.
## 2041                Micro      Agua Purificada Ciel Agua Purificada
## 2042                Micro      Agua Purificada Ciel Agua Purificada
## 2043                Micro      Agua Purificada Ciel Agua Purificada
## 2044                Micro      Agua Saborizada          Ciel Exprim
## 2045                Micro     Bebidas de Fruta       Delaware Punch
## 2046                Micro     Bebidas de Fruta               Frutsi
## 2047                Micro     Bebidas de Fruta           Valle Frut
## 2048                Micro     Bebidas de Fruta           Valle Frut
## 2049                Micro          Colas Light       Coca-Cola Life
## 2050                Micro          Colas Light      Coca-Cola Light
## 2051                Micro          Colas Light      Coca-Cola Light
## 2052                Micro          Colas Light      Coca-Cola Light
## 2053                Micro          Colas Light      Coca-Cola Light
## 2054                Micro        Colas Regular            Coca-Cola
## 2055                Micro        Colas Regular            Coca-Cola
## 2056                Micro        Colas Regular            Coca-Cola
## 2057                Micro        Colas Regular            Coca-Cola
## 2058                Micro        Colas Regular            Coca-Cola
## 2059                Micro        Colas Regular            Coca-Cola
## 2060                Micro        Colas Regular            Coca-Cola
## 2061                Micro        Colas Regular            Coca-Cola
## 2062                Micro        Colas Regular            Coca-Cola
## 2063                Micro        Colas Regular            Coca-Cola
## 2064                Micro        Colas Regular            Coca-Cola
## 2065                Micro        Colas Regular            Coca-Cola
## 2066                Micro   Isotónicos Regular             Powerade
## 2067                Micro   Isotónicos Regular             Powerade
## 2068                Micro     Jugos y Néctares            Del Valle
## 2069                Micro     Jugos y Néctares            Del Valle
## 2070                Micro     Jugos y Néctares Del Valle Nutridefen
## 2071                Micro Leche UHT Especializ Santa Clara Deslacto
## 2072                Micro    Leche UHT Regular   Santa Clara Entera
## 2073                Micro Leche UHT Saborizada Santa Clara Saboriza
## 2074                Micro        Sabores Light          Sprite Zero
## 2075                Micro      Sabores Regular                Fanta
## 2076                Micro      Sabores Regular                Fanta
## 2077                Micro      Sabores Regular                Fanta
## 2078                Micro      Sabores Regular                Fanta
## 2079                Micro      Sabores Regular                Fanta
## 2080                Micro      Sabores Regular                Fanta
## 2081                Micro      Sabores Regular               Fresca
## 2082                Micro      Sabores Regular               Fresca
## 2083                Micro      Sabores Regular               Fresca
## 2084                Micro      Sabores Regular         Manzana Lift
## 2085                Micro      Sabores Regular         Manzana Lift
## 2086                Micro      Sabores Regular         Manzana Lift
## 2087                Micro      Sabores Regular         Manzana Lift
## 2088                Micro      Sabores Regular         Manzana Lift
## 2089                Micro      Sabores Regular         Manzana Lift
## 2090                Micro      Sabores Regular        Sidral Mundet
## 2091                Micro      Sabores Regular        Sidral Mundet
## 2092                Micro      Sabores Regular               Sprite
## 2093                Micro      Sabores Regular               Sprite
## 2094                Micro      Sabores Regular               Sprite
## 2095                Micro      Sabores Regular               Sprite
## 2096                Micro      Sabores Regular               Sprite
## 2097                Micro      Sabores Regular               Sprite
## 2098                Micro      Sabores Regular               Sprite
## 2099                Micro           Té Regular             Fuze Tea
## 2100                Micro           Té Regular             Fuze Tea
## 2101                Micro         Agua Mineral    Ciel Mineralizada
## 2102                Micro         Agua Mineral      Topo Chico A.M.
## 2103                Micro      Agua Purificada Ciel Agua Purificada
## 2104                Micro      Agua Purificada Ciel Agua Purificada
## 2105                Micro      Agua Purificada Ciel Agua Purificada
## 2106                Micro     Bebidas de Fruta       Delaware Punch
## 2107                Micro     Bebidas de Fruta           Valle Frut
## 2108                Micro     Bebidas de Fruta           Valle Frut
## 2109                Micro     Bebidas de Fruta           Valle Frut
## 2110                Micro        Colas Regular            Coca-Cola
## 2111                Micro        Colas Regular            Coca-Cola
## 2112                Micro        Colas Regular            Coca-Cola
## 2113                Micro        Colas Regular            Coca-Cola
## 2114                Micro        Colas Regular            Coca-Cola
## 2115                Micro        Colas Regular            Coca-Cola
## 2116                Micro        Colas Regular            Coca-Cola
## 2117                Micro        Colas Regular            Coca-Cola
## 2118                Micro        Colas Regular            Coca-Cola
## 2119                Micro        Colas Regular            Coca-Cola
## 2120                Micro        Colas Regular            Coca-Cola
## 2121                Micro        Colas Regular            Coca-Cola
## 2122                Micro        Colas Regular            Coca-Cola
## 2123                Micro        Colas Regular            Coca-Cola
## 2124                Micro   Isotónicos Regular             Powerade
## 2125                Micro   Isotónicos Regular             Powerade
## 2126                Micro     Jugos y Néctares            Del Valle
## 2127                Micro     Jugos y Néctares            Del Valle
## 2128                Micro     Jugos y Néctares            Del Valle
## 2129                Micro     Jugos y Néctares Del Valle Nutridefen
## 2130                Micro     Jugos y Néctares    Del Valle Reserva
## 2131                Micro Leche UHT Especializ Santa Clara Deslacto
## 2132                Micro Leche UHT Saborizada Santa Clara Saboriza
## 2133                Micro        Sabores Light          Sprite Zero
## 2134                Micro      Sabores Regular     Del Valle y Nada
## 2135                Micro      Sabores Regular                Fanta
## 2136                Micro      Sabores Regular                Fanta
## 2137                Micro      Sabores Regular                Fanta
## 2138                Micro      Sabores Regular                Fanta
## 2139                Micro      Sabores Regular                Fanta
## 2140                Micro      Sabores Regular               Fresca
## 2141                Micro      Sabores Regular               Fresca
## 2142                Micro      Sabores Regular               Fresca
## 2143                Micro      Sabores Regular               Fresca
## 2144                Micro      Sabores Regular         Manzana Lift
## 2145                Micro      Sabores Regular         Manzana Lift
## 2146                Micro      Sabores Regular         Manzana Lift
## 2147                Micro      Sabores Regular         Manzana Lift
## 2148                Micro      Sabores Regular        Sidral Mundet
## 2149                Micro      Sabores Regular        Sidral Mundet
## 2150                Micro      Sabores Regular        Sidral Mundet
## 2151                Micro      Sabores Regular        Sidral Mundet
## 2152                Micro      Sabores Regular               Sprite
## 2153                Micro      Sabores Regular               Sprite
## 2154                Micro      Sabores Regular               Sprite
## 2155                Micro      Sabores Regular               Sprite
## 2156                Micro      Sabores Regular               Sprite
## 2157                Micro           Té Regular             Fuze Tea
## 2158                Micro           Té Regular             Fuze Tea
## 2159                Micro           Té Regular             Fuze Tea
## 2160                Micro         Agua Mineral    Ciel Mineralizada
## 2161                Micro         Agua Mineral      Topo Chico A.M.
## 2162                Micro         Agua Mineral      Topo Chico A.M.
## 2163                Micro      Agua Purificada Ciel Agua Purificada
## 2164                Micro      Agua Purificada Ciel Agua Purificada
## 2165                Micro      Agua Purificada Ciel Agua Purificada
## 2166                Micro      Agua Purificada Ciel Agua Purificada
## 2167                Micro      Agua Purificada Ciel Agua Purificada
## 2168                Micro      Agua Saborizada          Ciel Exprim
## 2169                Micro      Agua Saborizada            Ciel Mini
## 2170                Micro     Bebidas de Fruta       Delaware Punch
## 2171                Micro     Bebidas de Fruta       Delaware Punch
## 2172                Micro     Bebidas de Fruta               Frutsi
## 2173                Micro     Bebidas de Fruta                Pulpy
## 2174                Micro     Bebidas de Fruta           Valle Frut
## 2175                Micro     Bebidas de Fruta           Valle Frut
## 2176                Micro     Bebidas de Fruta           Valle Frut
## 2177                Micro  Bebidas Energeticas                 Burn
## 2178                Micro  Bebidas Energeticas              Glacéau
## 2179                Micro          Colas Light       Coca-Cola Life
## 2180                Micro          Colas Light       Coca-Cola Life
## 2181                Micro          Colas Light      Coca-Cola Light
## 2182                Micro          Colas Light      Coca-Cola Light
## 2183                Micro          Colas Light      Coca-Cola Light
## 2184                Micro          Colas Light      Coca-Cola Light
## 2185                Micro          Colas Light      Coca-Cola Light
## 2186                Micro          Colas Light      Coca-Cola Light
## 2187                Micro          Colas Light      Coca-Cola Light
## 2188                Micro          Colas Light       Coca-Cola Zero
## 2189                Micro          Colas Light       Coca-Cola Zero
## 2190                Micro          Colas Light       Coca-Cola Zero
## 2191                Micro        Colas Regular            Coca-Cola
## 2192                Micro        Colas Regular            Coca-Cola
## 2193                Micro        Colas Regular            Coca-Cola
## 2194                Micro        Colas Regular            Coca-Cola
## 2195                Micro        Colas Regular            Coca-Cola
## 2196                Micro        Colas Regular            Coca-Cola
## 2197                Micro        Colas Regular            Coca-Cola
## 2198                Micro        Colas Regular            Coca-Cola
## 2199                Micro        Colas Regular            Coca-Cola
## 2200                Micro        Colas Regular            Coca-Cola
## 2201                Micro        Colas Regular            Coca-Cola
## 2202                Micro        Colas Regular            Coca-Cola
## 2203                Micro        Colas Regular            Coca-Cola
## 2204                Micro        Colas Regular            Coca-Cola
## 2205                Micro        Colas Regular            Coca-Cola
## 2206                Micro   Isotónicos Regular             Powerade
## 2207                Micro   Isotónicos Regular             Powerade
## 2208                Micro   Isotónicos Regular             Powerade
## 2209                Micro     Jugos y Néctares            Del Valle
## 2210                Micro     Jugos y Néctares            Del Valle
## 2211                Micro     Jugos y Néctares            Del Valle
## 2212                Micro     Jugos y Néctares    Del Valle Reserva
## 2213                Micro     Jugos y Néctares    Del Valle Reserva
## 2214                Micro Leche UHT Saborizada Santa Clara Saboriza
## 2215                Micro        Sabores Light          Sprite Zero
## 2216                Micro      Sabores Regular     Del Valle y Nada
## 2217                Micro      Sabores Regular     Del Valle y Nada
## 2218                Micro      Sabores Regular                Fanta
## 2219                Micro      Sabores Regular                Fanta
## 2220                Micro      Sabores Regular                Fanta
## 2221                Micro      Sabores Regular                Fanta
## 2222                Micro      Sabores Regular                Fanta
## 2223                Micro      Sabores Regular                Fanta
## 2224                Micro      Sabores Regular                Fanta
## 2225                Micro      Sabores Regular                Fanta
## 2226                Micro      Sabores Regular               Fresca
## 2227                Micro      Sabores Regular               Fresca
## 2228                Micro      Sabores Regular               Fresca
## 2229                Micro      Sabores Regular               Fresca
## 2230                Micro      Sabores Regular               Fresca
## 2231                Micro      Sabores Regular               Fresca
## 2232                Micro      Sabores Regular               Fresca
## 2233                Micro      Sabores Regular         Manzana Lift
## 2234                Micro      Sabores Regular         Manzana Lift
## 2235                Micro      Sabores Regular         Manzana Lift
## 2236                Micro      Sabores Regular         Manzana Lift
## 2237                Micro      Sabores Regular         Manzana Lift
## 2238                Micro      Sabores Regular         Manzana Lift
## 2239                Micro      Sabores Regular         Manzana Lift
## 2240                Micro      Sabores Regular               Senzao
## 2241                Micro      Sabores Regular        Sidral Mundet
## 2242                Micro      Sabores Regular        Sidral Mundet
## 2243                Micro      Sabores Regular        Sidral Mundet
## 2244                Micro      Sabores Regular        Sidral Mundet
## 2245                Micro      Sabores Regular        Sidral Mundet
## 2246                Micro      Sabores Regular               Sprite
## 2247                Micro      Sabores Regular               Sprite
## 2248                Micro      Sabores Regular               Sprite
## 2249                Micro      Sabores Regular               Sprite
## 2250                Micro      Sabores Regular               Sprite
## 2251                Micro      Sabores Regular               Sprite
## 2252                Micro      Sabores Regular               Sprite
## 2253                Micro      Sabores Regular               Sprite
## 2254                Micro      Sabores Regular               Sprite
## 2255                Micro           Té Regular             Fuze Tea
## 2256                Micro           Té Regular             Fuze Tea
## 2257                Micro           Té Regular             Fuze Tea
## 2258                Micro         Agua Mineral    Ciel Mineralizada
## 2259                Micro         Agua Mineral    Ciel Mineralizada
## 2260                Micro         Agua Mineral      Topo Chico A.M.
## 2261                Micro      Agua Purificada Ciel Agua Purificada
## 2262                Micro      Agua Purificada Ciel Agua Purificada
## 2263                Micro      Agua Purificada Ciel Agua Purificada
## 2264                Micro      Agua Saborizada          Ciel Exprim
## 2265                Micro      Agua Saborizada      Ciel Saborizada
## 2266                Micro     Bebidas de Fruta               Frutsi
## 2267                Micro     Bebidas de Fruta                Pulpy
## 2268                Micro     Bebidas de Fruta           Valle Frut
## 2269                Micro  Bebidas Energeticas                 Burn
## 2270                Micro          Colas Light      Coca-Cola Light
## 2271                Micro          Colas Light      Coca-Cola Light
## 2272                Micro        Colas Regular            Coca-Cola
## 2273                Micro        Colas Regular            Coca-Cola
## 2274                Micro        Colas Regular            Coca-Cola
## 2275                Micro        Colas Regular            Coca-Cola
## 2276                Micro        Colas Regular            Coca-Cola
## 2277                Micro        Colas Regular            Coca-Cola
## 2278                Micro        Colas Regular            Coca-Cola
## 2279                Micro        Colas Regular            Coca-Cola
## 2280                Micro        Colas Regular            Coca-Cola
## 2281                Micro        Colas Regular            Coca-Cola
## 2282                Micro        Colas Regular            Coca-Cola
## 2283                Micro   Isotónicos Regular             Powerade
## 2284                Micro     Jugos y Néctares            Del Valle
## 2285                Micro     Jugos y Néctares            Del Valle
## 2286                Micro    Leche UHT Regular   Santa Clara Entera
## 2287                Micro Leche UHT Saborizada Santa Clara Saboriza
## 2288                Micro      Sabores Regular                Fanta
## 2289                Micro      Sabores Regular                Fanta
## 2290                Micro      Sabores Regular                Fanta
## 2291                Micro      Sabores Regular               Fresca
## 2292                Micro      Sabores Regular               Fresca
## 2293                Micro      Sabores Regular               Fresca
## 2294                Micro      Sabores Regular         Manzana Lift
## 2295                Micro      Sabores Regular         Manzana Lift
## 2296                Micro      Sabores Regular         Manzana Lift
## 2297                Micro      Sabores Regular               Sprite
## 2298                Micro      Sabores Regular               Sprite
## 2299                Micro      Sabores Regular               Sprite
## 2300                Micro         Agua Mineral    Ciel Mineralizada
## 2301                Micro         Agua Mineral      Topo Chico A.M.
## 2302                Micro      Agua Purificada Ciel Agua Purificada
## 2303                Micro      Agua Purificada Ciel Agua Purificada
## 2304                Micro      Agua Purificada Ciel Agua Purificada
## 2305                Micro      Agua Saborizada            Ciel Mini
## 2306                Micro     Bebidas de Fruta       Delaware Punch
## 2307                Micro     Bebidas de Fruta       Delaware Punch
## 2308                Micro     Bebidas de Fruta               Frutsi
## 2309                Micro     Bebidas de Fruta                Pulpy
## 2310                Micro     Bebidas de Fruta           Valle Frut
## 2311                Micro     Bebidas de Fruta           Valle Frut
## 2312                Micro     Bebidas de Fruta           Valle Frut
## 2313                Micro     Bebidas de Fruta           Valle Frut
## 2314                Micro  Bebidas Energeticas                 Burn
## 2315                Micro  Bebidas Energeticas              Glacéau
## 2316                Micro          Colas Light       Coca-Cola Life
## 2317                Micro          Colas Light       Coca-Cola Life
## 2318                Micro          Colas Light      Coca-Cola Light
## 2319                Micro          Colas Light      Coca-Cola Light
## 2320                Micro          Colas Light      Coca-Cola Light
## 2321                Micro          Colas Light      Coca-Cola Light
## 2322                Micro          Colas Light      Coca-Cola Light
## 2323                Micro          Colas Light      Coca-Cola Light
## 2324                Micro          Colas Light       Coca-Cola Zero
## 2325                Micro        Colas Regular            Coca-Cola
## 2326                Micro        Colas Regular            Coca-Cola
## 2327                Micro        Colas Regular            Coca-Cola
## 2328                Micro        Colas Regular            Coca-Cola
## 2329                Micro        Colas Regular            Coca-Cola
## 2330                Micro        Colas Regular            Coca-Cola
## 2331                Micro        Colas Regular            Coca-Cola
## 2332                Micro        Colas Regular            Coca-Cola
## 2333                Micro        Colas Regular            Coca-Cola
## 2334                Micro        Colas Regular            Coca-Cola
## 2335                Micro        Colas Regular            Coca-Cola
## 2336                Micro        Colas Regular            Coca-Cola
## 2337                Micro        Colas Regular            Coca-Cola
## 2338                Micro        Colas Regular            Coca-Cola
## 2339                Micro        Colas Regular            Coca-Cola
## 2340                Micro        Colas Regular            Coca-Cola
## 2341                Micro        Colas Regular            Coca-Cola
## 2342                Micro        Colas Regular            Coca-Cola
## 2343                Micro   Isotónicos Regular             Powerade
## 2344                Micro   Isotónicos Regular             Powerade
## 2345                Micro   Isotónicos Regular             Powerade
## 2346                Micro     Jugos y Néctares            Del Valle
## 2347                Micro     Jugos y Néctares            Del Valle
## 2348                Micro     Jugos y Néctares            Del Valle
## 2349                Micro     Jugos y Néctares Del Valle Nutridefen
## 2350                Micro     Jugos y Néctares    Del Valle Reserva
## 2351                Micro    Leche UHT Regular   Santa Clara Entera
## 2352                Micro Leche UHT Saborizada Santa Clara Saboriza
## 2353                Micro        Sabores Light          Sprite Zero
## 2354                Micro      Sabores Regular     Del Valle y Nada
## 2355                Micro      Sabores Regular     Del Valle y Nada
## 2356                Micro      Sabores Regular                Fanta
## 2357                Micro      Sabores Regular                Fanta
## 2358                Micro      Sabores Regular                Fanta
## 2359                Micro      Sabores Regular                Fanta
## 2360                Micro      Sabores Regular                Fanta
## 2361                Micro      Sabores Regular                Fanta
## 2362                Micro      Sabores Regular                Fanta
## 2363                Micro      Sabores Regular                Fanta
## 2364                Micro      Sabores Regular               Fresca
## 2365                Micro      Sabores Regular               Fresca
## 2366                Micro      Sabores Regular               Fresca
## 2367                Micro      Sabores Regular               Fresca
## 2368                Micro      Sabores Regular               Fresca
## 2369                Micro      Sabores Regular               Fresca
## 2370                Micro      Sabores Regular         Manzana Lift
## 2371                Micro      Sabores Regular         Manzana Lift
## 2372                Micro      Sabores Regular         Manzana Lift
## 2373                Micro      Sabores Regular         Manzana Lift
## 2374                Micro      Sabores Regular         Manzana Lift
## 2375                Micro      Sabores Regular         Manzana Lift
## 2376                Micro      Sabores Regular               Senzao
## 2377                Micro      Sabores Regular        Sidral Mundet
## 2378                Micro      Sabores Regular        Sidral Mundet
## 2379                Micro      Sabores Regular        Sidral Mundet
## 2380                Micro      Sabores Regular               Sprite
## 2381                Micro      Sabores Regular               Sprite
## 2382                Micro      Sabores Regular               Sprite
## 2383                Micro      Sabores Regular               Sprite
## 2384                Micro      Sabores Regular               Sprite
## 2385                Micro      Sabores Regular               Sprite
## 2386                Micro      Sabores Regular               Sprite
## 2387                Micro      Sabores Regular               Sprite
## 2388                Micro           Té Regular             Fuze Tea
## 2389                Micro           Té Regular             Fuze Tea
## 2390                Micro           Té Regular             Fuze Tea
## 2391                Micro         Agua Mineral    Ciel Mineralizada
## 2392                Micro         Agua Mineral      Topo Chico A.M.
## 2393                Micro      Agua Purificada Ciel Agua Purificada
## 2394                Micro      Agua Purificada Ciel Agua Purificada
## 2395                Micro      Agua Purificada Ciel Agua Purificada
## 2396                Micro      Agua Saborizada            Ciel Mini
## 2397                Micro     Bebidas de Fruta               Frutsi
## 2398                Micro     Bebidas de Fruta           Valle Frut
## 2399                Micro     Bebidas de Fruta           Valle Frut
## 2400                Micro     Bebidas de Fruta           Valle Frut
## 2401                Micro     Bebidas de Fruta           Valle Frut
## 2402                Micro          Colas Light       Coca-Cola Life
## 2403                Micro          Colas Light      Coca-Cola Light
## 2404                Micro          Colas Light      Coca-Cola Light
## 2405                Micro          Colas Light      Coca-Cola Light
## 2406                Micro          Colas Light      Coca-Cola Light
## 2407                Micro          Colas Light      Coca-Cola Light
## 2408                Micro          Colas Light       Coca-Cola Zero
## 2409                Micro          Colas Light       Coca-Cola Zero
## 2410                Micro          Colas Light       Coca-Cola Zero
## 2411                Micro        Colas Regular            Coca-Cola
## 2412                Micro        Colas Regular            Coca-Cola
## 2413                Micro        Colas Regular            Coca-Cola
## 2414                Micro        Colas Regular            Coca-Cola
## 2415                Micro        Colas Regular            Coca-Cola
## 2416                Micro        Colas Regular            Coca-Cola
## 2417                Micro        Colas Regular            Coca-Cola
## 2418                Micro        Colas Regular            Coca-Cola
## 2419                Micro        Colas Regular            Coca-Cola
## 2420                Micro        Colas Regular            Coca-Cola
## 2421                Micro        Colas Regular            Coca-Cola
## 2422                Micro        Colas Regular            Coca-Cola
## 2423                Micro        Colas Regular            Coca-Cola
## 2424                Micro        Colas Regular            Coca-Cola
## 2425                Micro     Isotónicos Light        Powerade Zero
## 2426                Micro   Isotónicos Regular             Powerade
## 2427                Micro   Isotónicos Regular             Powerade
## 2428                Micro   Isotónicos Regular             Powerade
## 2429                Micro     Jugos y Néctares            Del Valle
## 2430                Micro     Jugos y Néctares            Del Valle
## 2431                Micro     Jugos y Néctares            Del Valle
## 2432                Micro     Jugos y Néctares            Del Valle
## 2433                Micro     Jugos y Néctares            Del Valle
## 2434                Micro     Jugos y Néctares    Del Valle Reserva
## 2435                Micro     Jugos y Néctares    Del Valle Reserva
## 2436                Micro Leche UHT Saborizada Santa Clara Saboriza
## 2437                Micro        Sabores Light          Sprite Zero
## 2438                Micro      Sabores Regular                Fanta
## 2439                Micro      Sabores Regular                Fanta
## 2440                Micro      Sabores Regular                Fanta
## 2441                Micro      Sabores Regular                Fanta
## 2442                Micro      Sabores Regular                Fanta
## 2443                Micro      Sabores Regular               Fresca
## 2444                Micro      Sabores Regular               Fresca
## 2445                Micro      Sabores Regular               Fresca
## 2446                Micro      Sabores Regular               Fresca
## 2447                Micro      Sabores Regular         Manzana Lift
## 2448                Micro      Sabores Regular         Manzana Lift
## 2449                Micro      Sabores Regular               Senzao
## 2450                Micro      Sabores Regular        Sidral Mundet
## 2451                Micro      Sabores Regular        Sidral Mundet
## 2452                Micro      Sabores Regular               Sprite
## 2453                Micro      Sabores Regular               Sprite
## 2454                Micro      Sabores Regular               Sprite
## 2455                Micro      Sabores Regular               Sprite
## 2456                Micro      Sabores Regular               Sprite
## 2457                Micro      Sabores Regular               Sprite
## 2458                Micro           Té Regular             Fuze Tea
## 2459                Micro           Té Regular             Fuze Tea
## 2460                Micro         Agua Mineral      Topo Chico A.M.
## 2461                Micro      Agua Purificada Ciel Agua Purificada
## 2462                Micro      Agua Purificada Ciel Agua Purificada
## 2463                Micro     Bebidas de Fruta               Frutsi
## 2464                Micro  Bebidas Energeticas                 Burn
## 2465                Micro          Colas Light      Coca-Cola Light
## 2466                Micro          Colas Light      Coca-Cola Light
## 2467                Micro          Colas Light      Coca-Cola Light
## 2468                Micro          Colas Light      Coca-Cola Light
## 2469                Micro          Colas Light      Coca-Cola Light
## 2470                Micro          Colas Light      Coca-Cola Light
## 2471                Micro        Colas Regular            Coca-Cola
## 2472                Micro        Colas Regular            Coca-Cola
## 2473                Micro        Colas Regular            Coca-Cola
## 2474                Micro        Colas Regular            Coca-Cola
## 2475                Micro        Colas Regular            Coca-Cola
## 2476                Micro        Colas Regular            Coca-Cola
## 2477                Micro        Colas Regular            Coca-Cola
## 2478                Micro        Colas Regular            Coca-Cola
## 2479                Micro        Colas Regular            Coca-Cola
## 2480                Micro        Colas Regular            Coca-Cola
## 2481                Micro        Colas Regular            Coca-Cola
## 2482                Micro     Jugos y Néctares            Del Valle
## 2483                Micro     Jugos y Néctares            Del Valle
## 2484                Micro     Jugos y Néctares            Del Valle
## 2485                Micro        Sabores Light          Sprite Zero
## 2486                Micro      Sabores Regular                Fanta
## 2487                Micro      Sabores Regular                Fanta
## 2488                Micro      Sabores Regular               Fresca
## 2489                Micro      Sabores Regular         Manzana Lift
## 2490                Micro      Sabores Regular        Sidral Mundet
## 2491                Micro      Sabores Regular               Sprite
## 2492                Micro      Sabores Regular               Sprite
## 2493                Micro      Sabores Regular               Sprite
## 2494                Micro           Té Regular             Fuze Tea
## 2495                Micro         Agua Mineral      Topo Chico A.M.
## 2496                Micro      Agua Purificada Ciel Agua Purificada
## 2497                Micro      Agua Purificada Ciel Agua Purificada
## 2498                Micro     Bebidas de Fruta       Delaware Punch
## 2499                Micro     Bebidas de Fruta               Frutsi
## 2500                Micro     Bebidas de Fruta           Valle Frut
## 2501                Micro     Bebidas de Fruta           Valle Frut
## 2502                Micro     Bebidas de Fruta           Valle Frut
## 2503                Micro  Bebidas Energeticas              Glacéau
## 2504                Micro          Colas Light      Coca-Cola Light
## 2505                Micro          Colas Light      Coca-Cola Light
## 2506                Micro          Colas Light      Coca-Cola Light
## 2507                Micro        Colas Regular            Coca-Cola
## 2508                Micro        Colas Regular            Coca-Cola
## 2509                Micro        Colas Regular            Coca-Cola
## 2510                Micro        Colas Regular            Coca-Cola
## 2511                Micro        Colas Regular            Coca-Cola
## 2512                Micro        Colas Regular            Coca-Cola
## 2513                Micro        Colas Regular            Coca-Cola
## 2514                Micro        Colas Regular            Coca-Cola
## 2515                Micro        Colas Regular            Coca-Cola
## 2516                Micro        Colas Regular            Coca-Cola
## 2517                Micro        Colas Regular            Coca-Cola
## 2518                Micro   Isotónicos Regular             Powerade
## 2519                Micro   Isotónicos Regular             Powerade
## 2520                Micro     Jugos y Néctares            Del Valle
## 2521                Micro     Jugos y Néctares            Del Valle
## 2522                Micro     Jugos y Néctares            Del Valle
## 2523                Micro     Jugos y Néctares Del Valle Nutridefen
## 2524                Micro Leche UHT Saborizada Santa Clara Saboriza
## 2525                Micro        Sabores Light          Sprite Zero
## 2526                Micro      Sabores Regular     Del Valle y Nada
## 2527                Micro      Sabores Regular     Del Valle y Nada
## 2528                Micro      Sabores Regular                Fanta
## 2529                Micro      Sabores Regular                Fanta
## 2530                Micro      Sabores Regular                Fanta
## 2531                Micro      Sabores Regular               Fresca
## 2532                Micro      Sabores Regular               Fresca
## 2533                Micro      Sabores Regular         Manzana Lift
## 2534                Micro      Sabores Regular         Manzana Lift
## 2535                Micro      Sabores Regular        Sidral Mundet
## 2536                Micro      Sabores Regular               Sprite
## 2537                Micro      Sabores Regular               Sprite
## 2538                Micro      Sabores Regular               Sprite
## 2539                Micro           Té Regular             Fuze Tea
## 2540                Micro           Té Regular             Fuze Tea
## 2541                Micro         Agua Mineral      Topo Chico A.M.
## 2542                Micro      Agua Purificada Ciel Agua Purificada
## 2543                Micro      Agua Purificada Ciel Agua Purificada
## 2544                Micro      Agua Purificada Ciel Agua Purificada
## 2545                Micro      Agua Saborizada          Ciel Exprim
## 2546                Micro      Agua Saborizada            Ciel Mini
## 2547                Micro     Bebidas de Fruta               Frutsi
## 2548                Micro          Colas Light       Coca-Cola Life
## 2549                Micro          Colas Light      Coca-Cola Light
## 2550                Micro          Colas Light      Coca-Cola Light
## 2551                Micro          Colas Light      Coca-Cola Light
## 2552                Micro          Colas Light      Coca-Cola Light
## 2553                Micro          Colas Light      Coca-Cola Light
## 2554                Micro          Colas Light       Coca-Cola Zero
## 2555                Micro        Colas Regular            Coca-Cola
## 2556                Micro        Colas Regular            Coca-Cola
## 2557                Micro        Colas Regular            Coca-Cola
## 2558                Micro        Colas Regular            Coca-Cola
## 2559                Micro        Colas Regular            Coca-Cola
## 2560                Micro        Colas Regular            Coca-Cola
## 2561                Micro        Colas Regular            Coca-Cola
## 2562                Micro        Colas Regular            Coca-Cola
## 2563                Micro        Colas Regular            Coca-Cola
## 2564                Micro        Colas Regular            Coca-Cola
## 2565                Micro        Colas Regular            Coca-Cola
## 2566                Micro   Isotónicos Regular             Powerade
## 2567                Micro     Jugos y Néctares            Del Valle
## 2568                Micro     Jugos y Néctares            Del Valle
## 2569                Micro     Jugos y Néctares            Del Valle
## 2570                Micro     Jugos y Néctares Del Valle Nutridefen
## 2571                Micro     Jugos y Néctares    Del Valle Reserva
## 2572                Micro    Leche UHT Regular   Santa Clara Entera
## 2573                Micro Leche UHT Saborizada Santa Clara Saboriza
## 2574                Micro        Sabores Light          Sprite Zero
## 2575                Micro      Sabores Regular                Fanta
## 2576                Micro      Sabores Regular                Fanta
## 2577                Micro      Sabores Regular         Manzana Lift
## 2578                Micro      Sabores Regular               Sprite
## 2579                Micro      Sabores Regular               Sprite
## 2580                Micro      Sabores Regular               Sprite
## 2581                Micro           Té Regular             Fuze Tea
## 2582                Micro         Agua Mineral    Ciel Mineralizada
## 2583                Micro         Agua Mineral      Topo Chico A.M.
## 2584                Micro         Agua Mineral      Topo Chico A.M.
## 2585                Micro      Agua Purificada Ciel Agua Purificada
## 2586                Micro      Agua Purificada Ciel Agua Purificada
## 2587                Micro      Agua Purificada Ciel Agua Purificada
## 2588                Micro      Agua Saborizada            Ciel Mini
## 2589                Micro     Bebidas de Fruta               Frutsi
## 2590                Micro     Bebidas de Fruta           Valle Frut
## 2591                Micro     Bebidas de Fruta           Valle Frut
## 2592                Micro     Bebidas de Fruta           Valle Frut
## 2593                Micro     Bebidas de Fruta           Valle Frut
## 2594                Micro  Bebidas Energeticas                 Burn
## 2595                Micro  Bebidas Energeticas              Glacéau
## 2596                Micro          Colas Light       Coca-Cola Life
## 2597                Micro          Colas Light      Coca-Cola Light
## 2598                Micro          Colas Light      Coca-Cola Light
## 2599                Micro          Colas Light      Coca-Cola Light
## 2600                Micro          Colas Light      Coca-Cola Light
## 2601                Micro          Colas Light      Coca-Cola Light
## 2602                Micro          Colas Light       Coca-Cola Zero
## 2603                Micro          Colas Light       Coca-Cola Zero
## 2604                Micro          Colas Light       Coca-Cola Zero
## 2605                Micro        Colas Regular            Coca-Cola
## 2606                Micro        Colas Regular            Coca-Cola
## 2607                Micro        Colas Regular            Coca-Cola
## 2608                Micro        Colas Regular            Coca-Cola
## 2609                Micro        Colas Regular            Coca-Cola
## 2610                Micro        Colas Regular            Coca-Cola
## 2611                Micro        Colas Regular            Coca-Cola
## 2612                Micro        Colas Regular            Coca-Cola
## 2613                Micro        Colas Regular            Coca-Cola
## 2614                Micro        Colas Regular            Coca-Cola
## 2615                Micro        Colas Regular            Coca-Cola
## 2616                Micro        Colas Regular            Coca-Cola
## 2617                Micro        Colas Regular            Coca-Cola
## 2618                Micro   Isotónicos Regular             Powerade
## 2619                Micro   Isotónicos Regular             Powerade
## 2620                Micro     Jugos y Néctares            Del Valle
## 2621                Micro     Jugos y Néctares            Del Valle
## 2622                Micro     Jugos y Néctares            Del Valle
## 2623                Micro     Jugos y Néctares            Del Valle
## 2624                Micro     Jugos y Néctares    Del Valle Reserva
## 2625                Micro Leche UHT Saborizada Santa Clara Saboriza
## 2626                Micro        Sabores Light          Sprite Zero
## 2627                Micro      Sabores Regular     Del Valle y Nada
## 2628                Micro      Sabores Regular     Del Valle y Nada
## 2629                Micro      Sabores Regular                Fanta
## 2630                Micro      Sabores Regular                Fanta
## 2631                Micro      Sabores Regular                Fanta
## 2632                Micro      Sabores Regular                Fanta
## 2633                Micro      Sabores Regular                Fanta
## 2634                Micro      Sabores Regular                Fanta
## 2635                Micro      Sabores Regular                Fanta
## 2636                Micro      Sabores Regular               Fresca
## 2637                Micro      Sabores Regular               Fresca
## 2638                Micro      Sabores Regular               Fresca
## 2639                Micro      Sabores Regular               Fresca
## 2640                Micro      Sabores Regular               Fresca
## 2641                Micro      Sabores Regular               Fresca
## 2642                Micro      Sabores Regular         Manzana Lift
## 2643                Micro      Sabores Regular         Manzana Lift
## 2644                Micro      Sabores Regular         Manzana Lift
## 2645                Micro      Sabores Regular         Manzana Lift
## 2646                Micro      Sabores Regular         Manzana Lift
## 2647                Micro      Sabores Regular               Senzao
## 2648                Micro      Sabores Regular        Sidral Mundet
## 2649                Micro      Sabores Regular        Sidral Mundet
## 2650                Micro      Sabores Regular        Sidral Mundet
## 2651                Micro      Sabores Regular        Sidral Mundet
## 2652                Micro      Sabores Regular               Sprite
## 2653                Micro      Sabores Regular               Sprite
## 2654                Micro      Sabores Regular               Sprite
## 2655                Micro      Sabores Regular               Sprite
## 2656                Micro      Sabores Regular               Sprite
## 2657                Micro      Sabores Regular               Sprite
## 2658                Micro      Sabores Regular               Sprite
## 2659                Micro           Té Regular             Fuze Tea
## 2660                Micro           Té Regular             Fuze Tea
## 2661                Micro         Agua Mineral    Ciel Mineralizada
## 2662                Micro         Agua Mineral      Topo Chico A.M.
## 2663                Micro      Agua Purificada Ciel Agua Purificada
## 2664                Micro      Agua Purificada Ciel Agua Purificada
## 2665                Micro      Agua Saborizada      Ciel Saborizada
## 2666                Micro     Bebidas de Fruta               Bebere
## 2667                Micro  Bebidas Energeticas              Glacéau
## 2668                Micro          Colas Light      Coca-Cola Light
## 2669                Micro          Colas Light      Coca-Cola Light
## 2670                Micro          Colas Light      Coca-Cola Light
## 2671                Micro        Colas Regular            Coca-Cola
## 2672                Micro        Colas Regular            Coca-Cola
## 2673                Micro        Colas Regular            Coca-Cola
## 2674                Micro        Colas Regular            Coca-Cola
## 2675                Micro        Colas Regular            Coca-Cola
## 2676                Micro        Colas Regular            Coca-Cola
## 2677                Micro        Colas Regular            Coca-Cola
## 2678                Micro        Colas Regular            Coca-Cola
## 2679                Micro        Colas Regular            Coca-Cola
## 2680                Micro        Colas Regular            Coca-Cola
## 2681                Micro        Colas Regular            Coca-Cola
## 2682                Micro   Isotónicos Regular             Powerade
## 2683                Micro     Jugos y Néctares            Del Valle
## 2684                Micro     Jugos y Néctares            Del Valle
## 2685                Micro Leche UHT Saborizada Santa Clara Saboriza
## 2686                Micro        Sabores Light          Sprite Zero
## 2687                Micro      Sabores Regular     Del Valle y Nada
## 2688                Micro      Sabores Regular                Fanta
## 2689                Micro      Sabores Regular                Fanta
## 2690                Micro      Sabores Regular               Fresca
## 2691                Micro      Sabores Regular         Manzana Lift
## 2692                Micro      Sabores Regular        Sidral Mundet
## 2693                Micro      Sabores Regular               Sprite
## 2694                Micro      Sabores Regular               Sprite
## 2695                Micro      Sabores Regular               Sprite
## 2696                Micro           Té Regular             Fuze Tea
## 2697                Micro         Agua Mineral      Topo Chico A.M.
## 2698                Micro      Agua Purificada Ciel Agua Purificada
## 2699                Micro      Agua Purificada Ciel Agua Purificada
## 2700                Micro     Bebidas de Fruta               Frutsi
## 2701                Micro     Bebidas de Fruta           Valle Frut
## 2702                Micro        Colas Regular            Coca-Cola
## 2703                Micro        Colas Regular            Coca-Cola
## 2704                Micro        Colas Regular            Coca-Cola
## 2705                Micro        Colas Regular            Coca-Cola
## 2706                Micro        Colas Regular            Coca-Cola
## 2707                Micro        Colas Regular            Coca-Cola
## 2708                Micro        Colas Regular            Coca-Cola
## 2709                Micro        Colas Regular            Coca-Cola
## 2710                Micro        Colas Regular            Coca-Cola
## 2711                Micro        Colas Regular            Coca-Cola
## 2712                Micro     Isotónicos Light        Powerade Zero
## 2713                Micro   Isotónicos Regular             Powerade
## 2714                Micro   Isotónicos Regular             Powerade
## 2715                Micro   Isotónicos Regular             Powerade
## 2716                Micro     Jugos y Néctares            Del Valle
## 2717                Micro     Jugos y Néctares            Del Valle
## 2718                Micro     Jugos y Néctares            Del Valle
## 2719                Micro      Sabores Regular     Del Valle y Nada
## 2720                Micro      Sabores Regular                Fanta
## 2721                Micro      Sabores Regular               Fresca
## 2722                Micro      Sabores Regular         Manzana Lift
## 2723                Micro      Sabores Regular               Sprite
## 2724                Micro         Agua Mineral      Topo Chico A.M.
## 2725                Micro      Agua Purificada Ciel Agua Purificada
## 2726                Micro      Agua Purificada Ciel Agua Purificada
## 2727                Micro      Agua Saborizada          Ciel Exprim
## 2728                Micro     Bebidas de Fruta               Frutsi
## 2729                Micro     Bebidas de Fruta                Pulpy
## 2730                Micro     Bebidas de Fruta           Valle Frut
## 2731                Micro     Bebidas de Fruta           Valle Frut
## 2732                Micro          Colas Light       Coca-Cola Life
## 2733                Micro          Colas Light       Coca-Cola Life
## 2734                Micro          Colas Light      Coca-Cola Light
## 2735                Micro        Colas Regular            Coca-Cola
## 2736                Micro        Colas Regular            Coca-Cola
## 2737                Micro        Colas Regular            Coca-Cola
## 2738                Micro        Colas Regular            Coca-Cola
## 2739                Micro        Colas Regular            Coca-Cola
## 2740                Micro        Colas Regular            Coca-Cola
## 2741                Micro        Colas Regular            Coca-Cola
## 2742                Micro        Colas Regular            Coca-Cola
## 2743                Micro        Colas Regular            Coca-Cola
## 2744                Micro        Colas Regular            Coca-Cola
## 2745                Micro   Isotónicos Regular             Powerade
## 2746                Micro     Jugos y Néctares            Del Valle
## 2747                Micro     Jugos y Néctares            Del Valle
## 2748                Micro     Jugos y Néctares    Del Valle Reserva
## 2749                Micro    Leche UHT Regular   Santa Clara Entera
## 2750                Micro Leche UHT Saborizada Santa Clara Saboriza
## 2751                Micro      Sabores Regular     Del Valle y Nada
## 2752                Micro      Sabores Regular                Fanta
## 2753                Micro      Sabores Regular                Fanta
## 2754                Micro      Sabores Regular                Fanta
## 2755                Micro      Sabores Regular                Fanta
## 2756                Micro      Sabores Regular               Fresca
## 2757                Micro      Sabores Regular               Fresca
## 2758                Micro      Sabores Regular               Fresca
## 2759                Micro      Sabores Regular         Manzana Lift
## 2760                Micro      Sabores Regular         Manzana Lift
## 2761                Micro      Sabores Regular        Sidral Mundet
## 2762                Micro      Sabores Regular        Sidral Mundet
## 2763                Micro      Sabores Regular               Sprite
## 2764                Micro      Sabores Regular               Sprite
## 2765                Micro      Sabores Regular               Sprite
## 2766                Micro      Sabores Regular               Sprite
## 2767                Micro      Sabores Regular               Sprite
## 2768                Micro           Té Regular             Fuze Tea
## 2769                Micro         Agua Mineral      Topo Chico A.M.
## 2770                Micro      Agua Purificada Ciel Agua Purificada
## 2771                Micro      Agua Saborizada          Ciel Exprim
## 2772                Micro     Bebidas de Fruta               Frutsi
## 2773                Micro     Bebidas de Fruta           Valle Frut
## 2774                Micro          Colas Light       Coca-Cola Life
## 2775                Micro          Colas Light      Coca-Cola Light
## 2776                Micro        Colas Regular            Coca-Cola
## 2777                Micro        Colas Regular            Coca-Cola
## 2778                Micro        Colas Regular            Coca-Cola
## 2779                Micro        Colas Regular            Coca-Cola
## 2780                Micro        Colas Regular            Coca-Cola
## 2781                Micro        Colas Regular            Coca-Cola
## 2782                Micro        Colas Regular            Coca-Cola
## 2783                Micro        Colas Regular            Coca-Cola
## 2784                Micro        Colas Regular            Coca-Cola
## 2785                Micro        Colas Regular            Coca-Cola
## 2786                Micro        Colas Regular            Coca-Cola
## 2787                Micro   Isotónicos Regular             Powerade
## 2788                Micro     Jugos y Néctares            Del Valle
## 2789                Micro     Jugos y Néctares            Del Valle
## 2790                Micro Leche UHT Saborizada Santa Clara Saboriza
## 2791                Micro      Sabores Regular     Del Valle y Nada
## 2792                Micro      Sabores Regular                Fanta
## 2793                Micro      Sabores Regular                Fanta
## 2794                Micro      Sabores Regular                Fanta
## 2795                Micro      Sabores Regular               Fresca
## 2796                Micro      Sabores Regular        Sidral Mundet
## 2797                Micro      Sabores Regular               Sprite
## 2798                Micro      Sabores Regular               Sprite
## 2799                Micro      Sabores Regular               Sprite
## 2800                Micro           Té Regular             Fuze Tea
## 2801                Micro           Té Regular             Fuze Tea
## 2802                Micro         Agua Mineral      Topo Chico A.M.
## 2803                Micro     Bebidas de Fruta               Frutsi
## 2804                Micro        Colas Regular            Coca-Cola
## 2805                Micro        Colas Regular            Coca-Cola
## 2806                Micro        Colas Regular            Coca-Cola
## 2807                Micro        Colas Regular            Coca-Cola
## 2808                Micro        Colas Regular            Coca-Cola
## 2809                Micro        Colas Regular            Coca-Cola
## 2810                Micro     Jugos y Néctares            Del Valle
## 2811                Micro      Sabores Regular     Del Valle y Nada
## 2812                Micro      Sabores Regular     Del Valle y Nada
## 2813                Micro      Sabores Regular                Fanta
## 2814                Micro      Sabores Regular                Fanta
## 2815                Micro      Sabores Regular               Fresca
## 2816                Micro      Sabores Regular               Fresca
## 2817                Micro      Sabores Regular         Manzana Lift
## 2818                Micro      Sabores Regular        Sidral Mundet
## 2819                Micro      Sabores Regular        Sidral Mundet
## 2820                Micro      Sabores Regular               Sprite
## 2821                Micro      Sabores Regular               Sprite
## 2822                Micro           Té Regular             Fuze Tea
## 2823                Micro           Té Regular             Fuze Tea
## 2824                Micro           Té Regular             Fuze Tea
## 2825                Micro         Agua Mineral    Ciel Mineralizada
## 2826                Micro         Agua Mineral      Topo Chico A.M.
## 2827                Micro      Agua Purificada Ciel Agua Purificada
## 2828                Micro      Agua Purificada Ciel Agua Purificada
## 2829                Micro      Agua Saborizada            Ciel Mini
## 2830                Micro     Bebidas de Fruta       Delaware Punch
## 2831                Micro     Bebidas de Fruta                Pulpy
## 2832                Micro     Bebidas de Fruta           Valle Frut
## 2833                Micro     Bebidas de Fruta           Valle Frut
## 2834                Micro          Colas Light      Coca-Cola Light
## 2835                Micro          Colas Light      Coca-Cola Light
## 2836                Micro          Colas Light      Coca-Cola Light
## 2837                Micro          Colas Light      Coca-Cola Light
## 2838                Micro        Colas Regular            Coca-Cola
## 2839                Micro        Colas Regular            Coca-Cola
## 2840                Micro        Colas Regular            Coca-Cola
## 2841                Micro        Colas Regular            Coca-Cola
## 2842                Micro        Colas Regular            Coca-Cola
## 2843                Micro        Colas Regular            Coca-Cola
## 2844                Micro        Colas Regular            Coca-Cola
## 2845                Micro        Colas Regular            Coca-Cola
## 2846                Micro        Colas Regular            Coca-Cola
## 2847                Micro        Colas Regular            Coca-Cola
## 2848                Micro        Colas Regular            Coca-Cola
## 2849                Micro   Isotónicos Regular             Powerade
## 2850                Micro   Isotónicos Regular             Powerade
## 2851                Micro   Isotónicos Regular             Powerade
## 2852                Micro     Jugos y Néctares            Del Valle
## 2853                Micro     Jugos y Néctares            Del Valle
## 2854                Micro     Jugos y Néctares            Del Valle
## 2855                Micro Leche UHT Especializ Santa Clara Deslacto
## 2856                Micro    Leche UHT Regular   Santa Clara Entera
## 2857                Micro Leche UHT Saborizada Santa Clara Saboriza
## 2858                Micro        Sabores Light          Sprite Zero
## 2859                Micro      Sabores Regular     Del Valle y Nada
## 2860                Micro      Sabores Regular     Del Valle y Nada
## 2861                Micro      Sabores Regular                Fanta
## 2862                Micro      Sabores Regular                Fanta
## 2863                Micro      Sabores Regular               Fresca
## 2864                Micro      Sabores Regular         Manzana Lift
## 2865                Micro      Sabores Regular         Manzana Lift
## 2866                Micro      Sabores Regular               Sprite
## 2867                Micro      Sabores Regular               Sprite
## 2868                Micro      Sabores Regular               Sprite
## 2869                Micro           Té Regular             Fuze Tea
## 2870                Micro         Agua Mineral      Topo Chico A.M.
## 2871                Micro      Agua Purificada Ciel Agua Purificada
## 2872                Micro      Agua Purificada Ciel Agua Purificada
## 2873                Micro      Agua Purificada Ciel Agua Purificada
## 2874                Micro     Bebidas de Fruta               Frutsi
## 2875                Micro     Bebidas de Fruta           Valle Frut
## 2876                Micro     Bebidas de Fruta           Valle Frut
## 2877                Micro  Bebidas Energeticas                 Burn
## 2878                Micro        Colas Regular            Coca-Cola
## 2879                Micro        Colas Regular            Coca-Cola
## 2880                Micro        Colas Regular            Coca-Cola
## 2881                Micro        Colas Regular            Coca-Cola
## 2882                Micro        Colas Regular            Coca-Cola
## 2883                Micro        Colas Regular            Coca-Cola
## 2884                Micro        Colas Regular            Coca-Cola
## 2885                Micro        Colas Regular            Coca-Cola
## 2886                Micro        Colas Regular            Coca-Cola
## 2887                Micro        Colas Regular            Coca-Cola
## 2888                Micro        Colas Regular            Coca-Cola
## 2889                Micro        Colas Regular            Coca-Cola
## 2890                Micro        Colas Regular            Coca-Cola
## 2891                Micro        Colas Regular            Coca-Cola
## 2892                Micro   Isotónicos Regular             Powerade
## 2893                Micro   Isotónicos Regular             Powerade
## 2894                Micro     Jugos y Néctares            Del Valle
## 2895                Micro     Jugos y Néctares            Del Valle
## 2896                Micro    Leche UHT Regular    Santa Clara Light
## 2897                Micro Leche UHT Saborizada Santa Clara Saboriza
## 2898                Micro      Sabores Regular                Fanta
## 2899                Micro      Sabores Regular                Fanta
## 2900                Micro      Sabores Regular                Fanta
## 2901                Micro      Sabores Regular                Fanta
## 2902                Micro      Sabores Regular               Fresca
## 2903                Micro      Sabores Regular               Fresca
## 2904                Micro      Sabores Regular               Fresca
## 2905                Micro      Sabores Regular               Fresca
## 2906                Micro      Sabores Regular         Manzana Lift
## 2907                Micro      Sabores Regular         Manzana Lift
## 2908                Micro      Sabores Regular         Manzana Lift
## 2909                Micro      Sabores Regular        Sidral Mundet
## 2910                Micro      Sabores Regular        Sidral Mundet
## 2911                Micro      Sabores Regular        Sidral Mundet
## 2912                Micro      Sabores Regular               Sprite
## 2913                Micro      Sabores Regular               Sprite
## 2914                Micro      Sabores Regular               Sprite
## 2915                Micro      Sabores Regular               Sprite
## 2916                Micro           Té Regular             Fuze Tea
## 2917                Micro      Agua Purificada Ciel Agua Purificada
## 2918                Micro      Agua Purificada Ciel Agua Purificada
## 2919                Micro     Bebidas de Fruta       Delaware Punch
## 2920                Micro     Bebidas de Fruta               Frutsi
## 2921                Micro          Colas Light      Coca-Cola Light
## 2922                Micro          Colas Light      Coca-Cola Light
## 2923                Micro          Colas Light       Coca-Cola Zero
## 2924                Micro        Colas Regular            Coca-Cola
## 2925                Micro        Colas Regular            Coca-Cola
## 2926                Micro        Colas Regular            Coca-Cola
## 2927                Micro        Colas Regular            Coca-Cola
## 2928                Micro        Colas Regular            Coca-Cola
## 2929                Micro        Colas Regular            Coca-Cola
## 2930                Micro        Colas Regular            Coca-Cola
## 2931                Micro        Colas Regular            Coca-Cola
## 2932                Micro        Colas Regular            Coca-Cola
## 2933                Micro        Colas Regular            Coca-Cola
## 2934                Micro        Colas Regular            Coca-Cola
## 2935                Micro        Colas Regular            Coca-Cola
## 2936                Micro        Colas Regular            Coca-Cola
## 2937                Micro        Colas Regular            Coca-Cola
## 2938                Micro   Isotónicos Regular             Powerade
## 2939                Micro     Jugos y Néctares            Del Valle
## 2940                Micro     Jugos y Néctares            Del Valle
## 2941                Micro    Leche UHT Regular   Santa Clara Entera
## 2942                Micro      Sabores Regular                Fanta
## 2943                Micro      Sabores Regular                Fanta
## 2944                Micro      Sabores Regular                Fanta
## 2945                Micro      Sabores Regular                Fanta
## 2946                Micro      Sabores Regular                Fanta
## 2947                Micro      Sabores Regular                Fanta
## 2948                Micro      Sabores Regular               Fresca
## 2949                Micro      Sabores Regular         Manzana Lift
## 2950                Micro      Sabores Regular         Manzana Lift
## 2951                Micro      Sabores Regular         Manzana Lift
## 2952                Micro      Sabores Regular         Manzana Lift
## 2953                Micro      Sabores Regular               Sprite
## 2954                Micro      Sabores Regular               Sprite
## 2955                Micro      Sabores Regular               Sprite
## 2956                Micro      Sabores Regular               Sprite
## 2957                Micro      Sabores Regular               Sprite
## 2958                Micro         Agua Mineral    Ciel Mineralizada
## 2959                Micro      Agua Purificada Ciel Agua Purificada
## 2960                Micro      Agua Saborizada          Ciel Exprim
## 2961                Micro      Agua Saborizada      Ciel Saborizada
## 2962                Micro     Bebidas de Fruta                Pulpy
## 2963                Micro          Colas Light      Coca-Cola Light
## 2964                Micro        Colas Regular            Coca-Cola
## 2965                Micro        Colas Regular            Coca-Cola
## 2966                Micro        Colas Regular            Coca-Cola
## 2967                Micro        Colas Regular            Coca-Cola
## 2968                Micro        Colas Regular            Coca-Cola
## 2969                Micro        Colas Regular            Coca-Cola
## 2970                Micro        Colas Regular            Coca-Cola
## 2971                Micro        Colas Regular            Coca-Cola
## 2972                Micro        Colas Regular            Coca-Cola
## 2973                Micro   Isotónicos Regular             Powerade
## 2974                Micro Leche UHT Especializ Santa Clara Deslacto
## 2975                Micro Leche UHT Especializ Santa Clara Deslacto
## 2976                Micro Leche UHT Saborizada Santa Clara Saboriza
## 2977                Micro      Sabores Regular     Del Valle y Nada
## 2978                Micro      Sabores Regular     Del Valle y Nada
## 2979                Micro      Sabores Regular                Fanta
## 2980                Micro      Sabores Regular                Fanta
## 2981                Micro      Sabores Regular               Fresca
## 2982                Micro      Sabores Regular               Fresca
## 2983                Micro      Sabores Regular         Manzana Lift
## 2984                Micro      Sabores Regular         Manzana Lift
## 2985                Micro      Sabores Regular               Sprite
## 2986                Micro      Sabores Regular               Sprite
## 2987                Micro           Té Regular             Fuze Tea
## 2988                Micro           Té Regular             Fuze Tea
## 2989                Micro           Té Regular             Fuze Tea
## 2990                Micro           Té Regular             Fuze Tea
## 2991                Micro         Agua Mineral    Ciel Mineralizada
## 2992                Micro      Agua Purificada Ciel Agua Purificada
## 2993                Micro      Agua Saborizada          Ciel Exprim
## 2994                Micro     Bebidas de Fruta               Frutsi
## 2995                Micro     Bebidas de Fruta           Valle Frut
## 2996                Micro          Colas Light      Coca-Cola Light
## 2997                Micro          Colas Light       Coca-Cola Zero
## 2998                Micro        Colas Regular            Coca-Cola
## 2999                Micro        Colas Regular            Coca-Cola
## 3000                Micro        Colas Regular            Coca-Cola
## 3001                Micro        Colas Regular            Coca-Cola
## 3002                Micro        Colas Regular            Coca-Cola
## 3003                Micro        Colas Regular            Coca-Cola
## 3004                Micro        Colas Regular            Coca-Cola
## 3005                Micro        Colas Regular            Coca-Cola
## 3006                Micro        Colas Regular            Coca-Cola
## 3007                Micro        Colas Regular            Coca-Cola
## 3008                Micro        Colas Regular            Coca-Cola
## 3009                Micro        Colas Regular            Coca-Cola
## 3010                Micro        Colas Regular            Coca-Cola
## 3011                Micro        Colas Regular            Coca-Cola
## 3012                Micro        Colas Regular            Coca-Cola
## 3013                Micro   Isotónicos Regular             Powerade
## 3014                Micro   Isotónicos Regular             Powerade
## 3015                Micro     Jugos y Néctares            Del Valle
## 3016                Micro     Jugos y Néctares            Del Valle
## 3017                Micro     Jugos y Néctares            Del Valle
## 3018                Micro      Sabores Regular     Del Valle y Nada
## 3019                Micro      Sabores Regular     Del Valle y Nada
## 3020                Micro      Sabores Regular                Fanta
## 3021                Micro      Sabores Regular                Fanta
## 3022                Micro      Sabores Regular                Fanta
## 3023                Micro      Sabores Regular                Fanta
## 3024                Micro      Sabores Regular               Fresca
## 3025                Micro      Sabores Regular         Manzana Lift
## 3026                Micro      Sabores Regular         Manzana Lift
## 3027                Micro      Sabores Regular        Sidral Mundet
## 3028                Micro      Sabores Regular               Sprite
## 3029                Micro      Sabores Regular               Sprite
## 3030                Micro      Sabores Regular               Sprite
## 3031                Micro           Té Regular             Fuze Tea
## 3032                Micro         Agua Mineral      Topo Chico A.M.
## 3033                Micro      Agua Purificada Ciel Agua Purificada
## 3034                Micro      Agua Purificada Ciel Agua Purificada
## 3035                Micro     Bebidas de Fruta               Frutsi
## 3036                Micro     Bebidas de Fruta           Valle Frut
## 3037                Micro     Bebidas de Fruta           Valle Frut
## 3038                Micro          Colas Light       Coca-Cola Life
## 3039                Micro          Colas Light      Coca-Cola Light
## 3040                Micro        Colas Regular            Coca-Cola
## 3041                Micro        Colas Regular            Coca-Cola
## 3042                Micro        Colas Regular            Coca-Cola
## 3043                Micro        Colas Regular            Coca-Cola
## 3044                Micro        Colas Regular            Coca-Cola
## 3045                Micro        Colas Regular            Coca-Cola
## 3046                Micro        Colas Regular            Coca-Cola
## 3047                Micro        Colas Regular            Coca-Cola
## 3048                Micro        Colas Regular            Coca-Cola
## 3049                Micro        Colas Regular            Coca-Cola
## 3050                Micro        Colas Regular            Coca-Cola
## 3051                Micro   Isotónicos Regular             Powerade
## 3052                Micro   Isotónicos Regular             Powerade
## 3053                Micro     Jugos y Néctares            Del Valle
## 3054                Micro     Jugos y Néctares            Del Valle
## 3055                Micro     Jugos y Néctares            Del Valle
## 3056                Micro Leche UHT Especializ Santa Clara Deslacto
## 3057                Micro    Leche UHT Regular   Santa Clara Entera
## 3058                Micro Leche UHT Saborizada Santa Clara Saboriza
## 3059                Micro      Sabores Regular     Del Valle y Nada
## 3060                Micro      Sabores Regular                Fanta
## 3061                Micro      Sabores Regular                Fanta
## 3062                Micro      Sabores Regular                Fanta
## 3063                Micro      Sabores Regular                Fanta
## 3064                Micro      Sabores Regular                Fanta
## 3065                Micro      Sabores Regular               Fresca
## 3066                Micro      Sabores Regular               Fresca
## 3067                Micro      Sabores Regular         Manzana Lift
## 3068                Micro      Sabores Regular        Sidral Mundet
## 3069                Micro      Sabores Regular               Sprite
## 3070                Micro      Sabores Regular               Sprite
## 3071                Micro      Sabores Regular               Sprite
## 3072                Micro      Sabores Regular               Sprite
## 3073                Micro      Sabores Regular               Sprite
## 3074                Micro           Té Regular             Fuze Tea
## 3075                Micro           Té Regular             Fuze Tea
## 3076                Micro     Bebidas de Fruta       Delaware Punch
## 3077                Micro     Bebidas de Fruta               Frutsi
## 3078                Micro     Bebidas de Fruta                Pulpy
## 3079                Micro     Bebidas de Fruta           Valle Frut
## 3080                Micro     Bebidas de Fruta           Valle Frut
## 3081                Micro          Colas Light      Coca-Cola Light
## 3082                Micro          Colas Light      Coca-Cola Light
## 3083                Micro        Colas Regular            Coca-Cola
## 3084                Micro        Colas Regular            Coca-Cola
## 3085                Micro        Colas Regular            Coca-Cola
## 3086                Micro        Colas Regular            Coca-Cola
## 3087                Micro        Colas Regular            Coca-Cola
## 3088                Micro        Colas Regular            Coca-Cola
## 3089                Micro        Colas Regular            Coca-Cola
## 3090                Micro     Jugos y Néctares            Del Valle
## 3091                Micro      Sabores Regular                Fanta
## 3092                Micro      Sabores Regular                Fanta
## 3093                Micro      Sabores Regular                Fanta
## 3094                Micro      Sabores Regular                Fanta
## 3095                Micro      Sabores Regular                Fanta
## 3096                Micro      Sabores Regular               Fresca
## 3097                Micro      Sabores Regular               Fresca
## 3098                Micro      Sabores Regular               Fresca
## 3099                Micro      Sabores Regular               Fresca
## 3100                Micro      Sabores Regular         Manzana Lift
## 3101                Micro      Sabores Regular         Manzana Lift
## 3102                Micro      Sabores Regular         Manzana Lift
## 3103                Micro      Sabores Regular         Manzana Lift
## 3104                Micro      Sabores Regular        Sidral Mundet
## 3105                Micro      Sabores Regular               Sprite
## 3106                Micro      Sabores Regular               Sprite
## 3107                Micro      Sabores Regular               Sprite
## 3108                Micro      Sabores Regular               Sprite
## 3109                Micro      Sabores Regular               Sprite
## 3110                Micro      Sabores Regular   Topo Chico Sangría
## 3111                Micro           Té Regular             Fuze Tea
## 3112                Micro     Bebidas de Fruta           Valle Frut
## 3113                Micro          Colas Light       Coca-Cola Zero
## 3114                Micro        Colas Regular            Coca-Cola
## 3115                Micro        Colas Regular            Coca-Cola
## 3116                Micro        Colas Regular            Coca-Cola
## 3117                Micro        Colas Regular            Coca-Cola
## 3118                Micro        Colas Regular            Coca-Cola
## 3119                Micro        Colas Regular            Coca-Cola
## 3120                Micro        Colas Regular            Coca-Cola
## 3121                Micro        Colas Regular            Coca-Cola
## 3122                Micro        Colas Regular            Coca-Cola
## 3123                Micro        Colas Regular            Coca-Cola
## 3124                Micro   Isotónicos Regular             Powerade
## 3125                Micro     Jugos y Néctares            Del Valle
## 3126                Micro     Jugos y Néctares            Del Valle
## 3127                Micro      Sabores Regular                Fanta
## 3128                Micro      Sabores Regular                Fanta
## 3129                Micro      Sabores Regular               Sprite
## 3130                Micro      Sabores Regular               Sprite
## 3131                Micro         Agua Mineral      Topo Chico A.M.
## 3132                Micro      Agua Purificada Ciel Agua Purificada
## 3133                Micro     Bebidas de Fruta               Frutsi
## 3134                Micro     Bebidas de Fruta           Valle Frut
## 3135                Micro     Bebidas de Fruta           Valle Frut
## 3136                Micro     Bebidas de Fruta           Valle Frut
## 3137                Micro          Colas Light      Coca-Cola Light
## 3138                Micro          Colas Light       Coca-Cola Zero
## 3139                Micro        Colas Regular            Coca-Cola
## 3140                Micro        Colas Regular            Coca-Cola
## 3141                Micro        Colas Regular            Coca-Cola
## 3142                Micro        Colas Regular            Coca-Cola
## 3143                Micro        Colas Regular            Coca-Cola
## 3144                Micro        Colas Regular            Coca-Cola
## 3145                Micro        Colas Regular            Coca-Cola
## 3146                Micro        Colas Regular            Coca-Cola
## 3147                Micro        Colas Regular            Coca-Cola
## 3148                Micro   Isotónicos Regular             Powerade
## 3149                Micro   Isotónicos Regular             Powerade
## 3150                Micro   Isotónicos Regular             Powerade
## 3151                Micro     Jugos y Néctares            Del Valle
## 3152                Micro     Jugos y Néctares            Del Valle
## 3153                Micro     Jugos y Néctares            Del Valle
## 3154                Micro      Sabores Regular     Del Valle y Nada
## 3155                Micro      Sabores Regular                Fanta
## 3156                Micro      Sabores Regular                Fanta
## 3157                Micro      Sabores Regular                Fanta
## 3158                Micro      Sabores Regular                Fanta
## 3159                Micro      Sabores Regular                Fanta
## 3160                Micro      Sabores Regular               Fresca
## 3161                Micro      Sabores Regular         Manzana Lift
## 3162                Micro      Sabores Regular         Manzana Lift
## 3163                Micro      Sabores Regular         Manzana Lift
## 3164                Micro      Sabores Regular        Sidral Mundet
## 3165                Micro      Sabores Regular        Sidral Mundet
## 3166                Micro      Sabores Regular        Sidral Mundet
## 3167                Micro      Sabores Regular               Sprite
## 3168                Micro      Sabores Regular               Sprite
## 3169                Micro      Sabores Regular               Sprite
## 3170                Micro      Sabores Regular   Topo Chico Sangría
## 3171                Micro         Agua Mineral      Topo Chico A.M.
## 3172                Micro     Bebidas de Fruta               Frutsi
## 3173                Micro          Colas Light      Coca-Cola Light
## 3174                Micro        Colas Regular            Coca-Cola
## 3175                Micro        Colas Regular            Coca-Cola
## 3176                Micro        Colas Regular            Coca-Cola
## 3177                Micro        Colas Regular            Coca-Cola
## 3178                Micro        Colas Regular            Coca-Cola
## 3179                Micro        Colas Regular            Coca-Cola
## 3180                Micro        Colas Regular            Coca-Cola
## 3181                Micro      Sabores Regular         Manzana Lift
## 3182                Micro      Sabores Regular               Sprite
## 3183                Micro      Agua Purificada Ciel Agua Purificada
## 3184                Micro      Agua Purificada Ciel Agua Purificada
## 3185                Micro      Agua Saborizada      Ciel Saborizada
## 3186                Micro     Bebidas de Fruta               Frutsi
## 3187                Micro     Bebidas de Fruta           Valle Frut
## 3188                Micro          Colas Light       Coca-Cola Life
## 3189                Micro          Colas Light      Coca-Cola Light
## 3190                Micro          Colas Light      Coca-Cola Light
## 3191                Micro        Colas Regular            Coca-Cola
## 3192                Micro        Colas Regular            Coca-Cola
## 3193                Micro        Colas Regular            Coca-Cola
## 3194                Micro        Colas Regular            Coca-Cola
## 3195                Micro        Colas Regular            Coca-Cola
## 3196                Micro        Colas Regular            Coca-Cola
## 3197                Micro        Colas Regular            Coca-Cola
## 3198                Micro        Colas Regular            Coca-Cola
## 3199                Micro        Colas Regular            Coca-Cola
## 3200                Micro        Colas Regular            Coca-Cola
## 3201                Micro        Colas Regular            Coca-Cola
## 3202                Micro        Colas Regular            Coca-Cola
## 3203                Micro     Jugos y Néctares            Del Valle
## 3204                Micro Leche UHT Saborizada Santa Clara Saboriza
## 3205                Micro      Sabores Regular                Fanta
## 3206                Micro      Sabores Regular                Fanta
## 3207                Micro      Sabores Regular                Fanta
## 3208                Micro      Sabores Regular               Fresca
## 3209                Micro      Sabores Regular               Fresca
## 3210                Micro      Sabores Regular         Manzana Lift
## 3211                Micro      Sabores Regular         Manzana Lift
## 3212                Micro      Sabores Regular         Manzana Lift
## 3213                Micro      Sabores Regular               Sprite
## 3214                Micro      Sabores Regular               Sprite
## 3215                Micro      Sabores Regular               Sprite
## 3216                Micro           Té Regular             Fuze Tea
## 3217                Micro         Agua Mineral      Topo Chico A.M.
## 3218                Micro      Agua Purificada Ciel Agua Purificada
## 3219                Micro      Agua Purificada Ciel Agua Purificada
## 3220                Micro     Bebidas de Fruta               Frutsi
## 3221                Micro     Bebidas de Fruta                Pulpy
## 3222                Micro     Bebidas de Fruta           Valle Frut
## 3223                Micro     Bebidas de Fruta           Valle Frut
## 3224                Micro     Bebidas de Fruta           Valle Frut
## 3225                Micro     Bebidas de Fruta           Valle Frut
## 3226                Micro  Bebidas Energeticas                 Burn
## 3227                Micro          Colas Light      Coca-Cola Light
## 3228                Micro          Colas Light      Coca-Cola Light
## 3229                Micro          Colas Light      Coca-Cola Light
## 3230                Micro        Colas Regular            Coca-Cola
## 3231                Micro        Colas Regular            Coca-Cola
## 3232                Micro        Colas Regular            Coca-Cola
## 3233                Micro        Colas Regular            Coca-Cola
## 3234                Micro        Colas Regular            Coca-Cola
## 3235                Micro        Colas Regular            Coca-Cola
## 3236                Micro        Colas Regular            Coca-Cola
## 3237                Micro        Colas Regular            Coca-Cola
## 3238                Micro        Colas Regular            Coca-Cola
## 3239                Micro        Colas Regular            Coca-Cola
## 3240                Micro        Colas Regular            Coca-Cola
## 3241                Micro        Colas Regular            Coca-Cola
## 3242                Micro   Isotónicos Regular             Powerade
## 3243                Micro     Jugos y Néctares            Del Valle
## 3244                Micro     Jugos y Néctares            Del Valle
## 3245                Micro     Jugos y Néctares    Del Valle Reserva
## 3246                Micro     Jugos y Néctares    Del Valle Reserva
## 3247                Micro    Leche UHT Regular   Santa Clara Entera
## 3248                Micro      Sabores Regular                Fanta
## 3249                Micro      Sabores Regular                Fanta
## 3250                Micro      Sabores Regular               Fresca
## 3251                Micro      Sabores Regular         Manzana Lift
## 3252                Micro      Sabores Regular         Manzana Lift
## 3253                Micro      Sabores Regular               Sprite
## 3254                Micro      Sabores Regular               Sprite
## 3255                Micro      Sabores Regular               Sprite
## 3256                Micro         Agua Mineral      Topo Chico A.M.
## 3257                Micro      Agua Purificada Ciel Agua Purificada
## 3258                Micro      Agua Purificada Ciel Agua Purificada
## 3259                Micro      Agua Saborizada      Ciel Saborizada
## 3260                Micro     Bebidas de Fruta               Frutsi
## 3261                Micro     Bebidas de Fruta                Pulpy
## 3262                Micro     Bebidas de Fruta           Valle Frut
## 3263                Micro     Bebidas de Fruta           Valle Frut
## 3264                Micro     Bebidas de Fruta           Valle Frut
## 3265                Micro  Bebidas Energeticas              Glacéau
## 3266                Micro          Colas Light       Coca-Cola Life
## 3267                Micro          Colas Light      Coca-Cola Light
## 3268                Micro          Colas Light      Coca-Cola Light
## 3269                Micro          Colas Light       Coca-Cola Zero
## 3270                Micro        Colas Regular            Coca-Cola
## 3271                Micro        Colas Regular            Coca-Cola
## 3272                Micro        Colas Regular            Coca-Cola
## 3273                Micro        Colas Regular            Coca-Cola
## 3274                Micro        Colas Regular            Coca-Cola
## 3275                Micro        Colas Regular            Coca-Cola
## 3276                Micro        Colas Regular            Coca-Cola
## 3277                Micro        Colas Regular            Coca-Cola
## 3278                Micro        Colas Regular            Coca-Cola
## 3279                Micro        Colas Regular            Coca-Cola
## 3280                Micro        Colas Regular            Coca-Cola
## 3281                Micro        Colas Regular            Coca-Cola
## 3282                Micro   Isotónicos Regular             Powerade
## 3283                Micro   Isotónicos Regular             Powerade
## 3284                Micro     Jugos y Néctares            Del Valle
## 3285                Micro     Jugos y Néctares            Del Valle
## 3286                Micro     Jugos y Néctares            Del Valle
## 3287                Micro Leche UHT Especializ Santa Clara Deslacto
## 3288                Micro Leche UHT Especializ Santa Clara Deslacto
## 3289                Micro Leche UHT Saborizada Santa Clara Saboriza
## 3290                Micro      Sabores Regular                Fanta
## 3291                Micro      Sabores Regular                Fanta
## 3292                Micro      Sabores Regular                Fanta
## 3293                Micro      Sabores Regular               Fresca
## 3294                Micro      Sabores Regular         Manzana Lift
## 3295                Micro      Sabores Regular         Manzana Lift
## 3296                Micro      Sabores Regular        Sidral Mundet
## 3297                Micro      Sabores Regular               Sprite
## 3298                Micro      Sabores Regular               Sprite
## 3299                Micro      Sabores Regular               Sprite
## 3300                Micro           Té Regular             Fuze Tea
## 3301                Micro           Té Regular             Fuze Tea
## 3302                Micro      Agua Purificada Ciel Agua Purificada
## 3303                Micro      Agua Purificada Ciel Agua Purificada
## 3304                Micro      Agua Purificada Ciel Agua Purificada
## 3305                Micro      Agua Purificada Ciel Agua Purificada
## 3306                Micro      Agua Saborizada      Ciel Saborizada
## 3307                Micro     Bebidas de Fruta               Frutsi
## 3308                Micro     Bebidas de Fruta           Valle Frut
## 3309                Micro     Bebidas de Fruta           Valle Frut
## 3310                Micro     Bebidas de Fruta           Valle Frut
## 3311                Micro     Bebidas de Fruta           Valle Frut
## 3312                Micro  Bebidas Energeticas              Glacéau
## 3313                Micro          Colas Light       Coca-Cola Life
## 3314                Micro          Colas Light       Coca-Cola Life
## 3315                Micro          Colas Light      Coca-Cola Light
## 3316                Micro          Colas Light      Coca-Cola Light
## 3317                Micro          Colas Light      Coca-Cola Light
## 3318                Micro          Colas Light      Coca-Cola Light
## 3319                Micro          Colas Light       Coca-Cola Zero
## 3320                Micro          Colas Light       Coca-Cola Zero
## 3321                Micro        Colas Regular            Coca-Cola
## 3322                Micro        Colas Regular            Coca-Cola
## 3323                Micro        Colas Regular            Coca-Cola
## 3324                Micro        Colas Regular            Coca-Cola
## 3325                Micro        Colas Regular            Coca-Cola
## 3326                Micro        Colas Regular            Coca-Cola
## 3327                Micro        Colas Regular            Coca-Cola
## 3328                Micro        Colas Regular            Coca-Cola
## 3329                Micro        Colas Regular            Coca-Cola
## 3330                Micro        Colas Regular            Coca-Cola
## 3331                Micro        Colas Regular            Coca-Cola
## 3332                Micro        Colas Regular            Coca-Cola
## 3333                Micro        Colas Regular            Coca-Cola
## 3334                Micro        Colas Regular            Coca-Cola
## 3335                Micro        Colas Regular            Coca-Cola
## 3336                Micro        Colas Regular            Coca-Cola
## 3337                Micro   Isotónicos Regular             Powerade
## 3338                Micro   Isotónicos Regular             Powerade
## 3339                Micro   Isotónicos Regular             Powerade
## 3340                Micro     Jugos y Néctares            Del Valle
## 3341                Micro     Jugos y Néctares            Del Valle
## 3342                Micro     Jugos y Néctares            Del Valle
## 3343                Micro     Jugos y Néctares            Del Valle
## 3344                Micro     Jugos y Néctares            Del Valle
## 3345                Micro     Jugos y Néctares    Del Valle Reserva
## 3346                Micro     Jugos y Néctares    Del Valle Reserva
## 3347                Micro Leche UHT Saborizada Santa Clara Saboriza
## 3348                Micro      Sabores Regular     Del Valle y Nada
## 3349                Micro      Sabores Regular                Fanta
## 3350                Micro      Sabores Regular                Fanta
## 3351                Micro      Sabores Regular                Fanta
## 3352                Micro      Sabores Regular                Fanta
## 3353                Micro      Sabores Regular                Fanta
## 3354                Micro      Sabores Regular                Fanta
## 3355                Micro      Sabores Regular                Fanta
## 3356                Micro      Sabores Regular               Fresca
## 3357                Micro      Sabores Regular               Fresca
## 3358                Micro      Sabores Regular               Fresca
## 3359                Micro      Sabores Regular               Fresca
## 3360                Micro      Sabores Regular               Fresca
## 3361                Micro      Sabores Regular         Manzana Lift
## 3362                Micro      Sabores Regular         Manzana Lift
## 3363                Micro      Sabores Regular         Manzana Lift
## 3364                Micro      Sabores Regular        Sidral Mundet
## 3365                Micro      Sabores Regular        Sidral Mundet
## 3366                Micro      Sabores Regular               Sprite
## 3367                Micro      Sabores Regular               Sprite
## 3368                Micro      Sabores Regular               Sprite
## 3369                Micro      Sabores Regular               Sprite
## 3370                Micro      Sabores Regular               Sprite
## 3371                Micro      Sabores Regular               Sprite
## 3372                Micro      Sabores Regular               Sprite
## 3373                Micro           Té Regular             Fuze Tea
## 3374                Micro           Té Regular             Fuze Tea
## 3375                Micro         Agua Mineral    Ciel Mineralizada
## 3376                Micro         Agua Mineral      Topo Chico A.M.
## 3377                Micro         Agua Mineral      Topo Chico A.M.
## 3378                Micro      Agua Purificada Ciel Agua Purificada
## 3379                Micro      Agua Purificada Ciel Agua Purificada
## 3380                Micro      Agua Purificada Ciel Agua Purificada
## 3381                Micro      Agua Saborizada          Ciel Exprim
## 3382                Micro      Agua Saborizada      Ciel Saborizada
## 3383                Micro     Bebidas de Fruta       Delaware Punch
## 3384                Micro     Bebidas de Fruta               Frutsi
## 3385                Micro     Bebidas de Fruta                Pulpy
## 3386                Micro     Bebidas de Fruta           Valle Frut
## 3387                Micro  Bebidas Energeticas              Glacéau
## 3388                Micro          Colas Light      Coca-Cola Light
## 3389                Micro        Colas Regular            Coca-Cola
## 3390                Micro        Colas Regular            Coca-Cola
## 3391                Micro        Colas Regular            Coca-Cola
## 3392                Micro        Colas Regular            Coca-Cola
## 3393                Micro        Colas Regular            Coca-Cola
## 3394                Micro        Colas Regular            Coca-Cola
## 3395                Micro        Colas Regular            Coca-Cola
## 3396                Micro        Colas Regular            Coca-Cola
## 3397                Micro        Colas Regular            Coca-Cola
## 3398                Micro        Colas Regular            Coca-Cola
## 3399                Micro        Colas Regular            Coca-Cola
## 3400                Micro        Colas Regular            Coca-Cola
## 3401                Micro        Colas Regular            Coca-Cola
## 3402                Micro        Colas Regular            Coca-Cola
## 3403                Micro   Isotónicos Regular             Powerade
## 3404                Micro   Isotónicos Regular             Powerade
## 3405                Micro     Jugos y Néctares            Del Valle
## 3406                Micro     Jugos y Néctares            Del Valle
## 3407                Micro     Jugos y Néctares            Del Valle
## 3408                Micro     Jugos y Néctares Del Valle Nutridefen
## 3409                Micro Leche UHT Especializ Santa Clara Deslacto
## 3410                Micro Leche UHT Saborizada Santa Clara Saboriza
## 3411                Micro      Sabores Regular     Del Valle y Nada
## 3412                Micro      Sabores Regular                Fanta
## 3413                Micro      Sabores Regular                Fanta
## 3414                Micro      Sabores Regular                Fanta
## 3415                Micro      Sabores Regular                Fanta
## 3416                Micro      Sabores Regular                Fanta
## 3417                Micro      Sabores Regular                Fanta
## 3418                Micro      Sabores Regular               Fresca
## 3419                Micro      Sabores Regular               Fresca
## 3420                Micro      Sabores Regular               Fresca
## 3421                Micro      Sabores Regular               Fresca
## 3422                Micro      Sabores Regular         Manzana Lift
## 3423                Micro      Sabores Regular         Manzana Lift
## 3424                Micro      Sabores Regular         Manzana Lift
## 3425                Micro      Sabores Regular         Manzana Lift
## 3426                Micro      Sabores Regular         Manzana Lift
## 3427                Micro      Sabores Regular        Sidral Mundet
## 3428                Micro      Sabores Regular        Sidral Mundet
## 3429                Micro      Sabores Regular               Sprite
## 3430                Micro      Sabores Regular               Sprite
## 3431                Micro      Sabores Regular               Sprite
## 3432                Micro      Sabores Regular               Sprite
## 3433                Micro      Sabores Regular               Sprite
## 3434                Micro      Sabores Regular               Sprite
## 3435                Micro           Té Regular             Fuze Tea
## 3436                Micro           Té Regular             Fuze Tea
## 3437                Micro         Agua Mineral      Topo Chico A.M.
## 3438                Micro      Agua Purificada Ciel Agua Purificada
## 3439                Micro      Agua Purificada Ciel Agua Purificada
## 3440                Micro      Agua Saborizada            Ciel Mini
## 3441                Micro      Agua Saborizada      Ciel Saborizada
## 3442                Micro     Bebidas de Fruta               Frutsi
## 3443                Micro     Bebidas de Fruta           Valle Frut
## 3444                Micro     Bebidas de Fruta           Valle Frut
## 3445                Micro     Bebidas de Fruta           Valle Frut
## 3446                Micro     Bebidas de Fruta           Valle Frut
## 3447                Micro          Colas Light      Coca-Cola Light
## 3448                Micro        Colas Regular            Coca-Cola
## 3449                Micro        Colas Regular            Coca-Cola
## 3450                Micro        Colas Regular            Coca-Cola
## 3451                Micro        Colas Regular            Coca-Cola
## 3452                Micro        Colas Regular            Coca-Cola
## 3453                Micro        Colas Regular            Coca-Cola
## 3454                Micro        Colas Regular            Coca-Cola
## 3455                Micro        Colas Regular            Coca-Cola
## 3456                Micro        Colas Regular            Coca-Cola
## 3457                Micro        Colas Regular            Coca-Cola
## 3458                Micro        Colas Regular            Coca-Cola
## 3459                Micro        Colas Regular            Coca-Cola
## 3460                Micro   Isotónicos Regular             Powerade
## 3461                Micro   Isotónicos Regular             Powerade
## 3462                Micro   Isotónicos Regular             Powerade
## 3463                Micro     Jugos y Néctares            Del Valle
## 3464                Micro     Jugos y Néctares            Del Valle
## 3465                Micro Leche UHT Especializ Santa Clara Deslacto
## 3466                Micro Leche UHT Especializ Santa Clara Deslacto
## 3467                Micro Leche UHT Saborizada Santa Clara Saboriza
## 3468                Micro      Sabores Regular                Fanta
## 3469                Micro      Sabores Regular                Fanta
## 3470                Micro      Sabores Regular                Fanta
## 3471                Micro      Sabores Regular               Fresca
## 3472                Micro      Sabores Regular               Fresca
## 3473                Micro      Sabores Regular               Fresca
## 3474                Micro      Sabores Regular         Manzana Lift
## 3475                Micro      Sabores Regular         Manzana Lift
## 3476                Micro      Sabores Regular         Manzana Lift
## 3477                Micro      Sabores Regular        Sidral Mundet
## 3478                Micro      Sabores Regular               Sprite
## 3479                Micro      Sabores Regular               Sprite
## 3480                Micro      Sabores Regular               Sprite
## 3481                Micro           Té Regular             Fuze Tea
## 3482                Micro      Agua Purificada Ciel Agua Purificada
## 3483                Micro      Agua Purificada Ciel Agua Purificada
## 3484                Micro      Agua Purificada Ciel Agua Purificada
## 3485                Micro      Agua Saborizada      Ciel Saborizada
## 3486                Micro     Bebidas de Fruta               Frutsi
## 3487                Micro        Colas Regular            Coca-Cola
## 3488                Micro        Colas Regular            Coca-Cola
## 3489                Micro        Colas Regular            Coca-Cola
## 3490                Micro        Colas Regular            Coca-Cola
## 3491                Micro        Colas Regular            Coca-Cola
## 3492                Micro        Colas Regular            Coca-Cola
## 3493                Micro        Colas Regular            Coca-Cola
## 3494                Micro        Colas Regular            Coca-Cola
## 3495                Micro        Colas Regular            Coca-Cola
## 3496                Micro     Jugos y Néctares            Del Valle
## 3497                Micro     Jugos y Néctares            Del Valle
## 3498                Micro     Jugos y Néctares    Del Valle Reserva
## 3499                Micro Leche UHT Saborizada Santa Clara Saboriza
## 3500                Micro      Sabores Regular                Fanta
## 3501                Micro      Sabores Regular                Fanta
## 3502                Micro      Sabores Regular                Fanta
## 3503                Micro      Sabores Regular               Fresca
## 3504                Micro      Sabores Regular               Fresca
## 3505                Micro      Sabores Regular         Manzana Lift
## 3506                Micro      Sabores Regular         Manzana Lift
## 3507                Micro      Sabores Regular        Sidral Mundet
## 3508                Micro      Sabores Regular               Sprite
## 3509                Micro      Sabores Regular               Sprite
## 3510                Micro      Agua Purificada Ciel Agua Purificada
## 3511                Micro     Bebidas de Fruta       Delaware Punch
## 3512                Micro     Bebidas de Fruta               Frutsi
## 3513                Micro        Colas Regular            Coca-Cola
## 3514                Micro        Colas Regular            Coca-Cola
## 3515                Micro        Colas Regular            Coca-Cola
## 3516                Micro        Colas Regular            Coca-Cola
## 3517                Micro        Colas Regular            Coca-Cola
## 3518                Micro        Colas Regular            Coca-Cola
## 3519                Micro        Colas Regular            Coca-Cola
## 3520                Micro        Colas Regular            Coca-Cola
## 3521                Micro        Colas Regular            Coca-Cola
## 3522                Micro     Jugos y Néctares            Del Valle
## 3523                Micro      Sabores Regular                Fanta
## 3524                Micro      Sabores Regular                Fanta
## 3525                Micro      Sabores Regular                Fanta
## 3526                Micro      Sabores Regular                Fanta
## 3527                Micro      Sabores Regular               Fresca
## 3528                Micro      Sabores Regular               Fresca
## 3529                Micro      Sabores Regular         Manzana Lift
## 3530                Micro      Sabores Regular         Manzana Lift
## 3531                Micro      Sabores Regular        Sidral Mundet
## 3532                Micro      Sabores Regular               Sprite
## 3533                Micro      Sabores Regular               Sprite
## 3534                Micro      Sabores Regular               Sprite
## 3535                Micro      Sabores Regular               Sprite
## 3536                Micro      Sabores Regular               Sprite
## 3537                Micro     Bebidas de Fruta       Delaware Punch
## 3538                Micro        Colas Regular            Coca-Cola
## 3539                Micro        Colas Regular            Coca-Cola
## 3540                Micro        Colas Regular            Coca-Cola
## 3541                Micro        Colas Regular            Coca-Cola
## 3542                Micro        Colas Regular            Coca-Cola
## 3543                Micro        Colas Regular            Coca-Cola
## 3544                Micro        Colas Regular            Coca-Cola
## 3545                Micro        Colas Regular            Coca-Cola
## 3546                Micro     Jugos y Néctares            Del Valle
## 3547                Micro      Sabores Regular                Fanta
## 3548                Micro      Sabores Regular                Fanta
## 3549                Micro      Sabores Regular               Fresca
## 3550                Micro      Sabores Regular         Manzana Lift
## 3551                Micro      Sabores Regular         Manzana Lift
## 3552                Micro      Sabores Regular               Sprite
## 3553                Micro      Sabores Regular               Sprite
## 3554                Micro      Sabores Regular               Sprite
## 3555                Micro         Agua Mineral    Ciel Mineralizada
## 3556                Micro         Agua Mineral      Topo Chico A.M.
## 3557                Micro      Agua Purificada Ciel Agua Purificada
## 3558                Micro      Agua Purificada Ciel Agua Purificada
## 3559                Micro      Agua Purificada Ciel Agua Purificada
## 3560                Micro      Agua Purificada Ciel Agua Purificada
## 3561                Micro      Agua Saborizada          Ciel Exprim
## 3562                Micro      Agua Saborizada      Ciel Saborizada
## 3563                Micro     Bebidas de Fruta       Delaware Punch
## 3564                Micro     Bebidas de Fruta       Delaware Punch
## 3565                Micro     Bebidas de Fruta               Frutsi
## 3566                Micro     Bebidas de Fruta           Valle Frut
## 3567                Micro     Bebidas de Fruta           Valle Frut
## 3568                Micro     Bebidas de Fruta           Valle Frut
## 3569                Micro  Bebidas Energeticas                 Burn
## 3570                Micro          Colas Light      Coca-Cola Light
## 3571                Micro          Colas Light      Coca-Cola Light
## 3572                Micro          Colas Light      Coca-Cola Light
## 3573                Micro          Colas Light       Coca-Cola Zero
## 3574                Micro          Colas Light       Coca-Cola Zero
## 3575                Micro          Colas Light       Coca-Cola Zero
## 3576                Micro          Colas Light       Coca-Cola Zero
## 3577                Micro        Colas Regular            Coca-Cola
## 3578                Micro        Colas Regular            Coca-Cola
## 3579                Micro        Colas Regular            Coca-Cola
## 3580                Micro        Colas Regular            Coca-Cola
## 3581                Micro        Colas Regular            Coca-Cola
## 3582                Micro        Colas Regular            Coca-Cola
## 3583                Micro        Colas Regular            Coca-Cola
## 3584                Micro        Colas Regular            Coca-Cola
## 3585                Micro        Colas Regular            Coca-Cola
## 3586                Micro        Colas Regular            Coca-Cola
## 3587                Micro        Colas Regular            Coca-Cola
## 3588                Micro        Colas Regular            Coca-Cola
## 3589                Micro        Colas Regular            Coca-Cola
## 3590                Micro        Colas Regular            Coca-Cola
## 3591                Micro        Colas Regular            Coca-Cola
## 3592                Micro   Isotónicos Regular             Powerade
## 3593                Micro   Isotónicos Regular             Powerade
## 3594                Micro   Isotónicos Regular             Powerade
## 3595                Micro     Jugos y Néctares            Del Valle
## 3596                Micro     Jugos y Néctares            Del Valle
## 3597                Micro     Jugos y Néctares            Del Valle
## 3598                Micro     Jugos y Néctares    Del Valle Reserva
## 3599                Micro     Jugos y Néctares    Del Valle Reserva
## 3600                Micro Leche UHT Saborizada Santa Clara Saboriza
## 3601                Micro        Sabores Light          Sprite Zero
## 3602                Micro      Sabores Regular     Del Valle y Nada
## 3603                Micro      Sabores Regular     Del Valle y Nada
## 3604                Micro      Sabores Regular                Fanta
## 3605                Micro      Sabores Regular                Fanta
## 3606                Micro      Sabores Regular                Fanta
## 3607                Micro      Sabores Regular                Fanta
## 3608                Micro      Sabores Regular                Fanta
## 3609                Micro      Sabores Regular                Fanta
## 3610                Micro      Sabores Regular                Fanta
## 3611                Micro      Sabores Regular                Fanta
## 3612                Micro      Sabores Regular                Fanta
## 3613                Micro      Sabores Regular               Fresca
## 3614                Micro      Sabores Regular               Fresca
## 3615                Micro      Sabores Regular               Fresca
## 3616                Micro      Sabores Regular               Fresca
## 3617                Micro      Sabores Regular         Manzana Lift
## 3618                Micro      Sabores Regular         Manzana Lift
## 3619                Micro      Sabores Regular         Manzana Lift
## 3620                Micro      Sabores Regular               Senzao
## 3621                Micro      Sabores Regular        Sidral Mundet
## 3622                Micro      Sabores Regular        Sidral Mundet
## 3623                Micro      Sabores Regular        Sidral Mundet
## 3624                Micro      Sabores Regular        Sidral Mundet
## 3625                Micro      Sabores Regular        Sidral Mundet
## 3626                Micro      Sabores Regular               Sprite
## 3627                Micro      Sabores Regular               Sprite
## 3628                Micro      Sabores Regular               Sprite
## 3629                Micro      Sabores Regular               Sprite
## 3630                Micro      Sabores Regular               Sprite
## 3631                Micro      Sabores Regular               Sprite
## 3632                Micro      Sabores Regular               Sprite
## 3633                Micro      Sabores Regular               Sprite
## 3634                Micro      Sabores Regular               Sprite
## 3635                Micro           Té Regular             Fuze Tea
## 3636                Micro           Té Regular             Fuze Tea
## 3637                Micro      Agua Purificada Ciel Agua Purificada
## 3638                Micro      Agua Purificada Ciel Agua Purificada
## 3639                Micro     Bebidas de Fruta       Delaware Punch
## 3640                Micro     Bebidas de Fruta               Frutsi
## 3641                Micro          Colas Light      Coca-Cola Light
## 3642                Micro          Colas Light      Coca-Cola Light
## 3643                Micro          Colas Light      Coca-Cola Light
## 3644                Micro        Colas Regular            Coca-Cola
## 3645                Micro        Colas Regular            Coca-Cola
## 3646                Micro        Colas Regular            Coca-Cola
## 3647                Micro        Colas Regular            Coca-Cola
## 3648                Micro        Colas Regular            Coca-Cola
## 3649                Micro        Colas Regular            Coca-Cola
## 3650                Micro        Colas Regular            Coca-Cola
## 3651                Micro        Colas Regular            Coca-Cola
## 3652                Micro        Colas Regular            Coca-Cola
## 3653                Micro     Isotónicos Light        Powerade Zero
## 3654                Micro     Jugos y Néctares            Del Valle
## 3655                Micro     Jugos y Néctares            Del Valle
## 3656                Micro     Jugos y Néctares            Del Valle
## 3657                Micro     Bebidas de Fruta                Pulpy
## 3658                Micro     Bebidas de Fruta           Valle Frut
## 3659                Micro  Bebidas Energeticas                 Burn
## 3660                Micro  Bebidas Energeticas                 Burn
## 3661                Micro          Colas Light      Coca-Cola Light
## 3662                Micro          Colas Light      Coca-Cola Light
## 3663                Micro        Colas Regular            Coca-Cola
## 3664                Micro        Colas Regular            Coca-Cola
## 3665                Micro        Colas Regular            Coca-Cola
## 3666                Micro        Colas Regular            Coca-Cola
## 3667                Micro        Colas Regular            Coca-Cola
## 3668                Micro        Colas Regular            Coca-Cola
## 3669                Micro        Colas Regular            Coca-Cola
## 3670                Micro        Colas Regular            Coca-Cola
## 3671                Micro        Colas Regular            Coca-Cola
## 3672                Micro        Colas Regular            Coca-Cola
## 3673                Micro     Isotónicos Light        Powerade Zero
## 3674                Micro   Isotónicos Regular             Powerade
## 3675                Micro   Isotónicos Regular             Powerade
## 3676                Micro   Isotónicos Regular             Powerade
## 3677                Micro     Jugos y Néctares            Del Valle
## 3678                Micro     Jugos y Néctares            Del Valle
## 3679                Micro     Jugos y Néctares            Del Valle
## 3680                Micro     Jugos y Néctares Del Valle Nutridefen
## 3681                Micro Leche UHT Saborizada Santa Clara Saboriza
## 3682                Micro      Sabores Regular                Fanta
## 3683                Micro      Sabores Regular                Fanta
## 3684                Micro      Sabores Regular               Fresca
## 3685                Micro      Sabores Regular               Fresca
## 3686                Micro      Sabores Regular         Manzana Lift
## 3687                Micro      Sabores Regular         Manzana Lift
## 3688                Micro      Sabores Regular               Sprite
## 3689                Micro      Sabores Regular               Sprite
## 3690                Micro           Té Regular             Fuze Tea
## 3691                Micro           Té Regular             Fuze Tea
## 3692                Micro           Té Regular             Fuze Tea
## 3693                Micro     Bebidas de Fruta               Frutsi
## 3694                Micro          Colas Light      Coca-Cola Light
## 3695                Micro        Colas Regular            Coca-Cola
## 3696                Micro        Colas Regular            Coca-Cola
## 3697                Micro        Colas Regular            Coca-Cola
## 3698                Micro        Colas Regular            Coca-Cola
## 3699                Micro     Jugos y Néctares            Del Valle
## 3700                Micro      Sabores Regular                Fanta
## 3701                Micro      Sabores Regular         Manzana Lift
## 3702                Micro      Sabores Regular               Sprite
## 3703                Micro         Agua Mineral      Topo Chico A.M.
## 3704                Micro      Agua Purificada Ciel Agua Purificada
## 3705                Micro      Agua Saborizada      Ciel Saborizada
## 3706                Micro     Bebidas de Fruta               Frutsi
## 3707                Micro          Colas Light      Coca-Cola Light
## 3708                Micro        Colas Regular            Coca-Cola
## 3709                Micro        Colas Regular            Coca-Cola
## 3710                Micro        Colas Regular            Coca-Cola
## 3711                Micro        Colas Regular            Coca-Cola
## 3712                Micro        Colas Regular            Coca-Cola
## 3713                Micro        Colas Regular            Coca-Cola
## 3714                Micro        Colas Regular            Coca-Cola
## 3715                Micro        Colas Regular            Coca-Cola
## 3716                Micro        Colas Regular            Coca-Cola
## 3717                Micro     Jugos y Néctares            Del Valle
## 3718                Micro     Jugos y Néctares    Del Valle Reserva
## 3719                Micro Leche UHT Especializ Santa Clara Deslacto
## 3720                Micro Leche UHT Saborizada Santa Clara Saboriza
## 3721                Micro      Sabores Regular                Fanta
## 3722                Micro      Sabores Regular                Fanta
## 3723                Micro      Sabores Regular                Fanta
## 3724                Micro      Sabores Regular               Fresca
## 3725                Micro      Sabores Regular               Fresca
## 3726                Micro      Sabores Regular         Manzana Lift
## 3727                Micro      Sabores Regular         Manzana Lift
## 3728                Micro      Sabores Regular         Manzana Lift
## 3729                Micro      Sabores Regular               Sprite
## 3730                Micro      Sabores Regular               Sprite
## 3731                Micro      Sabores Regular               Sprite
## 3732                Micro      Sabores Regular               Sprite
## 3733                Micro      Sabores Regular               Sprite
## 3734                Micro      Agua Purificada Ciel Agua Purificada
## 3735                Micro     Bebidas de Fruta               Frutsi
## 3736                Micro     Bebidas de Fruta           Valle Frut
## 3737                Micro        Colas Regular            Coca-Cola
## 3738                Micro        Colas Regular            Coca-Cola
## 3739                Micro        Colas Regular            Coca-Cola
## 3740                Micro        Colas Regular            Coca-Cola
## 3741                Micro        Colas Regular            Coca-Cola
## 3742                Micro        Colas Regular            Coca-Cola
## 3743                Micro        Colas Regular            Coca-Cola
## 3744                Micro        Colas Regular            Coca-Cola
## 3745                Micro        Colas Regular            Coca-Cola
## 3746                Micro Leche UHT Especializ Santa Clara Deslacto
## 3747                Micro    Leche UHT Regular   Santa Clara Entera
## 3748                Micro Leche UHT Saborizada Santa Clara Saboriza
## 3749                Micro      Sabores Regular                Fanta
## 3750                Micro      Sabores Regular                Fanta
## 3751                Micro      Sabores Regular                Fanta
## 3752                Micro      Sabores Regular               Fresca
## 3753                Micro      Sabores Regular               Fresca
## 3754                Micro      Sabores Regular               Fresca
## 3755                Micro      Sabores Regular         Manzana Lift
## 3756                Micro      Sabores Regular         Manzana Lift
## 3757                Micro      Sabores Regular         Manzana Lift
## 3758                Micro      Sabores Regular               Sprite
## 3759                Micro      Sabores Regular               Sprite
## 3760                Micro      Sabores Regular               Sprite
## 3761                Micro      Sabores Regular               Sprite
## 3762                Micro           Té Regular             Fuze Tea
## 3763                Micro         Agua Mineral    Ciel Mineralizada
## 3764                Micro         Agua Mineral      Topo Chico A.M.
## 3765                Micro      Agua Purificada Ciel Agua Purificada
## 3766                Micro      Agua Purificada Ciel Agua Purificada
## 3767                Micro     Bebidas de Fruta       Delaware Punch
## 3768                Micro     Bebidas de Fruta               Frutsi
## 3769                Micro     Bebidas de Fruta           Valle Frut
## 3770                Micro     Bebidas de Fruta           Valle Frut
## 3771                Micro        Colas Regular            Coca-Cola
## 3772                Micro        Colas Regular            Coca-Cola
## 3773                Micro        Colas Regular            Coca-Cola
## 3774                Micro        Colas Regular            Coca-Cola
## 3775                Micro        Colas Regular            Coca-Cola
## 3776                Micro        Colas Regular            Coca-Cola
## 3777                Micro        Colas Regular            Coca-Cola
## 3778                Micro        Colas Regular            Coca-Cola
## 3779                Micro        Colas Regular            Coca-Cola
## 3780                Micro   Isotónicos Regular             Powerade
## 3781                Micro     Jugos y Néctares            Del Valle
## 3782                Micro     Jugos y Néctares            Del Valle
## 3783                Micro     Jugos y Néctares            Del Valle
## 3784                Micro      Sabores Regular                Fanta
## 3785                Micro      Sabores Regular                Fanta
## 3786                Micro      Sabores Regular                Fanta
## 3787                Micro      Sabores Regular                Fanta
## 3788                Micro      Sabores Regular                Fanta
## 3789                Micro      Sabores Regular               Fresca
## 3790                Micro      Sabores Regular         Manzana Lift
## 3791                Micro      Sabores Regular         Manzana Lift
## 3792                Micro      Sabores Regular         Manzana Lift
## 3793                Micro      Sabores Regular         Manzana Lift
## 3794                Micro      Sabores Regular        Sidral Mundet
## 3795                Micro      Sabores Regular               Sprite
## 3796                Micro      Sabores Regular               Sprite
## 3797                Micro      Sabores Regular               Sprite
## 3798                Micro      Sabores Regular               Sprite
## 3799                Micro      Sabores Regular               Sprite
## 3800                Micro           Té Regular             Fuze Tea
## 3801                Micro           Té Regular             Fuze Tea
## 3802                Micro           Té Regular             Fuze Tea
## 3803                Micro         Agua Mineral      Topo Chico A.M.
## 3804                Micro      Agua Purificada Ciel Agua Purificada
## 3805                Micro      Agua Purificada Ciel Agua Purificada
## 3806                Micro      Agua Saborizada          Ciel Exprim
## 3807                Micro     Bebidas de Fruta               Frutsi
## 3808                Micro          Colas Light       Coca-Cola Life
## 3809                Micro          Colas Light      Coca-Cola Light
## 3810                Micro          Colas Light      Coca-Cola Light
## 3811                Micro        Colas Regular            Coca-Cola
## 3812                Micro        Colas Regular            Coca-Cola
## 3813                Micro        Colas Regular            Coca-Cola
## 3814                Micro        Colas Regular            Coca-Cola
## 3815                Micro        Colas Regular            Coca-Cola
## 3816                Micro        Colas Regular            Coca-Cola
## 3817                Micro        Colas Regular            Coca-Cola
## 3818                Micro        Colas Regular            Coca-Cola
## 3819                Micro        Colas Regular            Coca-Cola
## 3820                Micro   Isotónicos Regular             Powerade
## 3821                Micro     Jugos y Néctares            Del Valle
## 3822                Micro      Sabores Regular     Del Valle y Nada
## 3823                Micro      Sabores Regular                Fanta
## 3824                Micro      Sabores Regular                Fanta
## 3825                Micro      Sabores Regular               Fresca
## 3826                Micro      Sabores Regular               Fresca
## 3827                Micro      Sabores Regular         Manzana Lift
## 3828                Micro      Sabores Regular        Sidral Mundet
## 3829                Micro      Sabores Regular               Sprite
## 3830                Micro      Sabores Regular               Sprite
## 3831                Micro      Sabores Regular               Sprite
## 3832                Micro      Sabores Regular               Sprite
## 3833                Micro      Sabores Regular               Sprite
## 3834                Micro         Agua Mineral      Topo Chico A.M.
## 3835                Micro      Agua Purificada Ciel Agua Purificada
## 3836                Micro      Agua Saborizada      Ciel Saborizada
## 3837                Micro     Bebidas de Fruta       Delaware Punch
## 3838                Micro     Bebidas de Fruta       Delaware Punch
## 3839                Micro     Bebidas de Fruta               Frutsi
## 3840                Micro     Bebidas de Fruta           Valle Frut
## 3841                Micro     Bebidas de Fruta           Valle Frut
## 3842                Micro          Colas Light      Coca-Cola Light
## 3843                Micro        Colas Regular            Coca-Cola
## 3844                Micro        Colas Regular            Coca-Cola
## 3845                Micro        Colas Regular            Coca-Cola
## 3846                Micro        Colas Regular            Coca-Cola
## 3847                Micro        Colas Regular            Coca-Cola
## 3848                Micro        Colas Regular            Coca-Cola
## 3849                Micro        Colas Regular            Coca-Cola
## 3850                Micro        Colas Regular            Coca-Cola
## 3851                Micro        Colas Regular            Coca-Cola
## 3852                Micro        Colas Regular            Coca-Cola
## 3853                Micro     Jugos y Néctares            Del Valle
## 3854                Micro     Jugos y Néctares            Del Valle
## 3855                Micro     Jugos y Néctares            Del Valle
## 3856                Micro      Sabores Regular                Fanta
## 3857                Micro      Sabores Regular                Fanta
## 3858                Micro      Sabores Regular                Fanta
## 3859                Micro      Sabores Regular                Fanta
## 3860                Micro      Sabores Regular                Fanta
## 3861                Micro      Sabores Regular               Fresca
## 3862                Micro      Sabores Regular               Fresca
## 3863                Micro      Sabores Regular               Fresca
## 3864                Micro      Sabores Regular               Fresca
## 3865                Micro      Sabores Regular         Manzana Lift
## 3866                Micro      Sabores Regular         Manzana Lift
## 3867                Micro      Sabores Regular         Manzana Lift
## 3868                Micro      Sabores Regular         Manzana Lift
## 3869                Micro      Sabores Regular         Manzana Lift
## 3870                Micro      Sabores Regular        Sidral Mundet
## 3871                Micro      Sabores Regular        Sidral Mundet
## 3872                Micro      Sabores Regular        Sidral Mundet
## 3873                Micro      Sabores Regular               Sprite
## 3874                Micro      Sabores Regular               Sprite
## 3875                Micro      Sabores Regular               Sprite
## 3876                Micro      Sabores Regular               Sprite
## 3877                Micro      Sabores Regular               Sprite
## 3878                Micro           Té Regular             Fuze Tea
## 3879                Micro         Agua Mineral    Ciel Mineralizada
## 3880                Micro         Agua Mineral      Topo Chico A.M.
## 3881                Micro      Agua Purificada Ciel Agua Purificada
## 3882                Micro      Agua Purificada Ciel Agua Purificada
## 3883                Micro      Agua Purificada Ciel Agua Purificada
## 3884                Micro      Agua Saborizada            Ciel Mini
## 3885                Micro     Bebidas de Fruta       Delaware Punch
## 3886                Micro     Bebidas de Fruta       Delaware Punch
## 3887                Micro     Bebidas de Fruta               Frutsi
## 3888                Micro     Bebidas de Fruta                Pulpy
## 3889                Micro     Bebidas de Fruta           Valle Frut
## 3890                Micro     Bebidas de Fruta           Valle Frut
## 3891                Micro     Bebidas de Fruta           Valle Frut
## 3892                Micro     Bebidas de Fruta           Valle Frut
## 3893                Micro          Colas Light       Coca-Cola Life
## 3894                Micro          Colas Light      Coca-Cola Light
## 3895                Micro          Colas Light      Coca-Cola Light
## 3896                Micro        Colas Regular            Coca-Cola
## 3897                Micro        Colas Regular            Coca-Cola
## 3898                Micro        Colas Regular            Coca-Cola
## 3899                Micro        Colas Regular            Coca-Cola
## 3900                Micro        Colas Regular            Coca-Cola
## 3901                Micro        Colas Regular            Coca-Cola
## 3902                Micro        Colas Regular            Coca-Cola
## 3903                Micro        Colas Regular            Coca-Cola
## 3904                Micro        Colas Regular            Coca-Cola
## 3905                Micro        Colas Regular            Coca-Cola
## 3906                Micro        Colas Regular            Coca-Cola
## 3907                Micro        Colas Regular            Coca-Cola
## 3908                Micro        Colas Regular            Coca-Cola
## 3909                Micro        Colas Regular            Coca-Cola
## 3910                Micro        Colas Regular            Coca-Cola
## 3911                Micro   Isotónicos Regular             Powerade
## 3912                Micro   Isotónicos Regular             Powerade
## 3913                Micro   Isotónicos Regular             Powerade
## 3914                Micro     Jugos y Néctares            Del Valle
## 3915                Micro     Jugos y Néctares            Del Valle
## 3916                Micro     Jugos y Néctares Del Valle Nutridefen
## 3917                Micro Leche UHT Especializ Santa Clara Deslacto
## 3918                Micro Leche UHT Saborizada Santa Clara Saboriza
## 3919                Micro        Sabores Light          Sprite Zero
## 3920                Micro      Sabores Regular                Fanta
## 3921                Micro      Sabores Regular                Fanta
## 3922                Micro      Sabores Regular                Fanta
## 3923                Micro      Sabores Regular                Fanta
## 3924                Micro      Sabores Regular                Fanta
## 3925                Micro      Sabores Regular                Fanta
## 3926                Micro      Sabores Regular               Fresca
## 3927                Micro      Sabores Regular               Fresca
## 3928                Micro      Sabores Regular               Fresca
## 3929                Micro      Sabores Regular               Fresca
## 3930                Micro      Sabores Regular         Manzana Lift
## 3931                Micro      Sabores Regular         Manzana Lift
## 3932                Micro      Sabores Regular         Manzana Lift
## 3933                Micro      Sabores Regular         Manzana Lift
## 3934                Micro      Sabores Regular         Manzana Lift
## 3935                Micro      Sabores Regular        Sidral Mundet
## 3936                Micro      Sabores Regular        Sidral Mundet
## 3937                Micro      Sabores Regular               Sprite
## 3938                Micro      Sabores Regular               Sprite
## 3939                Micro      Sabores Regular               Sprite
## 3940                Micro      Sabores Regular               Sprite
## 3941                Micro      Sabores Regular               Sprite
## 3942                Micro      Sabores Regular               Sprite
## 3943                Micro           Té Regular             Fuze Tea
## 3944                Micro           Té Regular             Fuze Tea
## 3945                Micro         Agua Mineral      Topo Chico A.M.
## 3946                Micro      Agua Purificada Ciel Agua Purificada
## 3947                Micro      Agua Saborizada          Ciel Exprim
## 3948                Micro     Bebidas de Fruta       Delaware Punch
## 3949                Micro     Bebidas de Fruta               Frutsi
## 3950                Micro     Bebidas de Fruta                Pulpy
## 3951                Micro          Colas Light       Coca-Cola Life
## 3952                Micro          Colas Light      Coca-Cola Light
## 3953                Micro          Colas Light      Coca-Cola Light
## 3954                Micro          Colas Light      Coca-Cola Light
## 3955                Micro          Colas Light       Coca-Cola Zero
## 3956                Micro        Colas Regular            Coca-Cola
## 3957                Micro        Colas Regular            Coca-Cola
## 3958                Micro        Colas Regular            Coca-Cola
## 3959                Micro        Colas Regular            Coca-Cola
## 3960                Micro        Colas Regular            Coca-Cola
## 3961                Micro        Colas Regular            Coca-Cola
## 3962                Micro        Colas Regular            Coca-Cola
## 3963                Micro        Colas Regular            Coca-Cola
## 3964                Micro        Colas Regular            Coca-Cola
## 3965                Micro        Colas Regular            Coca-Cola
## 3966                Micro   Isotónicos Regular             Powerade
## 3967                Micro     Jugos y Néctares            Del Valle
## 3968                Micro     Jugos y Néctares            Del Valle
## 3969                Micro    Leche UHT Regular   Santa Clara Entera
## 3970                Micro    Leche UHT Regular    Santa Clara Light
## 3971                Micro      Sabores Regular                Fanta
## 3972                Micro      Sabores Regular                Fanta
## 3973                Micro      Sabores Regular                Fanta
## 3974                Micro      Sabores Regular                Fanta
## 3975                Micro      Sabores Regular                Fanta
## 3976                Micro      Sabores Regular                Fanta
## 3977                Micro      Sabores Regular               Fresca
## 3978                Micro      Sabores Regular               Fresca
## 3979                Micro      Sabores Regular               Fresca
## 3980                Micro      Sabores Regular               Fresca
## 3981                Micro      Sabores Regular         Manzana Lift
## 3982                Micro      Sabores Regular         Manzana Lift
## 3983                Micro      Sabores Regular         Manzana Lift
## 3984                Micro      Sabores Regular               Sprite
## 3985                Micro      Sabores Regular               Sprite
## 3986                Micro      Sabores Regular               Sprite
## 3987                Micro      Sabores Regular               Sprite
## 3988                Micro      Sabores Regular               Sprite
## 3989                Micro           Té Regular             Fuze Tea
## 3990                Micro         Agua Mineral      Topo Chico A.M.
## 3991                Micro      Agua Purificada Ciel Agua Purificada
## 3992                Micro      Agua Purificada Ciel Agua Purificada
## 3993                Micro      Agua Purificada Ciel Agua Purificada
## 3994                Micro      Agua Saborizada      Ciel Saborizada
## 3995                Micro     Bebidas de Fruta               Frutsi
## 3996                Micro     Bebidas de Fruta                Pulpy
## 3997                Micro     Bebidas de Fruta           Valle Frut
## 3998                Micro     Bebidas de Fruta           Valle Frut
## 3999                Micro     Bebidas de Fruta           Valle Frut
##          Presentacion     Tamaño Retornable_NR Enero Febrero Marzo Abril Mayo
## 1           600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2      250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3         2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 4    500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 5          500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 6           600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 7      300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 8      250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 9       12 Oz. NR Pet Individual No Retornable    NA      NA    NA     2   NA
## 10         12 Oz. Ret Individual    Retornable    NA      NA     2    NA   NA
## 11   500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 12       1.5 Lts. Ret   Familiar    Retornable    NA      NA     3    NA    3
## 13      12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 14         12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 15        2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 16   2.5 Lts. Ret Pet   Familiar    Retornable    18       4    14    25    4
## 17      500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 18   500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 19         500 ml Ret Individual    Retornable     4      11     6     8    2
## 20        Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 21          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 22       250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 23     250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 24         12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 25          400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 26          400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 27          400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 28         12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 29          400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 30          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 31       1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 32        1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 33     300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 34          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 35          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 36     300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 37     250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 38      500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 39   500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 40           8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 41       1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 42       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 43      12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 44        2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 45   2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA    NA    NA   NA
## 46      500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 47   500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 48         500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 49           8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 50               Lata Individual No Retornable    NA      NA    NA    NA   NA
## 51        Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 52       250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 53      413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 54       1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 55     300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 56      1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 57      1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 58       200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 59        1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 60          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 61        Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 62          2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 63         500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 64          2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 65         500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 66          2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 67         500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 68          2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 69         500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 70          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 71          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 72       1 Ltro. N.R. Individual No Retornable     2       2    NA    NA    4
## 73          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 74     300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 75     250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 76        1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 77       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 78         12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 79   2.5 Lts. Ret Pet   Familiar    Retornable     4      NA    NA    NA   NA
## 80   500 ml NR Vidrio Individual No Retornable     2       2     2     2    4
## 81         500 ml Ret Individual    Retornable    13       8    13    15   15
## 82           8 Oz. NR Individual No Retornable     1       1     1     1    1
## 83       250 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 84       200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 85          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 86         500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 87         500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 88         12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 89         500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 90         500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 91          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 92       1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 93        Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 94      12 Oz. NR Pet Individual No Retornable    NA       2    NA    NA   NA
## 95         12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 96         2 Lts. Ret   Familiar    Retornable    NA      NA     3     3   NA
## 97   2.5 Lts. Ret Pet   Familiar    Retornable    11      11    14    18    7
## 98   500 ml NR Vidrio Individual No Retornable     2       2    NA    NA   NA
## 99         500 ml Ret Individual    Retornable     8      13    23    32   13
## 100          8 Oz. NR Individual No Retornable    NA       1     1    NA   NA
## 101       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 102      250 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 103    250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 104     413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 105         400 ml NR Individual No Retornable     0       0     2     1    3
## 106        500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 107        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 108         400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 109        500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 110         400 ml NR Individual No Retornable     0       0    NA     1    2
## 111        500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 112        12 Oz. Ret Individual    Retornable    NA      NA     2    NA   NA
## 113         400 ml NR Individual No Retornable     1       0     1     1    3
## 114        500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 115         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 116         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 117      1 Ltro. N.R. Individual No Retornable     4       8     8    15    8
## 118       1.5 Lts. NR Individual No Retornable     6      10    13    22   22
## 119    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 120     355 Ml NR Pet Individual No Retornable    NA       2    NA     2    2
## 121         600 ml NR Individual No Retornable    NA      NA     3     5   NA
## 122    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 123    250 ml. NR PET Individual No Retornable     0       0     0     0   NA
## 124    250 ml. NR PET Individual No Retornable     3      NA     1     2    3
## 125         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 126      1 Ltro. N.R.   Familiar No Retornable    NA      NA     1     1    1
## 127     12 Oz. NR Pet Individual No Retornable    NA      NA     1     1    1
## 128         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 129       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 130      1 Ltro. N.R.   Familiar No Retornable     0      NA    NA    NA   NA
## 131       Lata 235 ml Individual No Retornable     1       1    NA     1   NA
## 132      1 Ltro. N.R.   Familiar No Retornable     4       4     4     4    6
## 133        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 134  500 ml NR Vidrio Individual No Retornable     2       4     4     4    4
## 135          8 Oz. NR Individual No Retornable     1      NA     1     1    1
## 136      1 Ltro. N.R.   Familiar No Retornable    NA       2    NA    NA   NA
## 137  500 ml NR Vidrio Individual No Retornable     4      NA     2     2    2
## 138      1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA   NA
## 139      1.250 Lts NR   Familiar No Retornable    16      18    16    24   18
## 140       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 141      1.5 Lts. Ret   Familiar    Retornable    13      13    19    25    3
## 142     12 Oz. NR Pet Individual No Retornable     9      11     8    21    8
## 143         2 Lts. NR   Familiar No Retornable     6      NA    NA     6   NA
## 144       2.5 Lts. NR   Familiar No Retornable    18      21    25    32   18
## 145  2.5 Lts. Ret Pet   Familiar    Retornable    42      32    39    49   42
## 146  500 ml NR Vidrio Individual No Retornable    13      13    17    19   19
## 147        500 ml Ret Individual    Retornable    42      44    66    76   66
## 148          8 Oz. NR Individual No Retornable     3       2     4     3    3
## 149              Lata Individual No Retornable    NA       2     2     3    3
## 150       Lata 16 Oz. Individual No Retornable     2      NA    NA    NA   NA
## 151       Lata 235 ml Individual No Retornable     3       3     2     3    2
## 152      1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 153     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 154         600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 155      250 ml Tetra Individual No Retornable     1      NA     1     1    1
## 156    250 ML. NR VID Individual No Retornable    NA      NA    NA    NA    0
## 157     413 ml NR VId Individual No Retornable     3      NA     1     1    3
## 158    300 ML. NR PET Individual No Retornable     0      NA     1    NA    0
## 159      200 ml Tetra Individual No Retornable    NA      NA     1     1    1
## 160       1.5 Lts. NR   Familiar No Retornable    NA       1    NA     2    1
## 161         2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 162    250 ml. NR PET Individual No Retornable     0       0     0     0   NA
## 163         400 ml NR Individual No Retornable     0       1     0     1    1
## 164        500 ml Ret Individual    Retornable     2      NA     2     2    1
## 165       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 166       1.5 Lts. NR   Familiar No Retornable    NA       1    NA     2    1
## 167         2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 168         400 ml NR Individual No Retornable     0       0     0     1    1
## 169        500 ml Ret Individual    Retornable    NA      NA     2     2    1
## 170       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 171       1.5 Lts. NR   Familiar No Retornable    NA       1    NA     2    1
## 172    250 ml. NR PET Individual No Retornable     0       0     0     0   NA
## 173         400 ml NR Individual No Retornable     0       1     0     1    1
## 174        500 ml Ret Individual    Retornable    NA      NA     2     2    1
## 175         2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 176         400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 177       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 178       1.5 Lts. NR   Familiar No Retornable    NA       1     2     2    1
## 179         2 Lts. NR   Familiar No Retornable     1       3     4     4    3
## 180    250 ml. NR PET Individual No Retornable     0       0     0     0   NA
## 181         400 ml NR Individual No Retornable     0       3     2     2    3
## 182        500 ml Ret Individual    Retornable     2      NA     2     4    1
## 183       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 184     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 185         600 ml NR Individual No Retornable     1      NA     1     1    3
## 186         600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 187         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 188      1 Ltro. N.R. Individual No Retornable     0       8    NA    NA   NA
## 189      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 190    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 191         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 192      1 Ltro. N.R.   Familiar No Retornable     0      NA    NA    NA   NA
## 193      1 Ltro. N.R.   Familiar No Retornable     6       6     8     6    4
## 194  500 ml NR Vidrio Individual No Retornable     4       2    NA     2    2
## 195              Lata Individual No Retornable    NA      NA    NA     2   NA
## 196      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 197      1.250 Lts NR   Familiar No Retornable    13      11    11     8   16
## 198       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 199      1.5 Lts. Ret   Familiar    Retornable     0      NA    NA     3   NA
## 200     12 Oz. NR Pet Individual No Retornable     5       2     5     6    6
## 201       2.5 Lts. NR   Familiar No Retornable     0      NA     4    14    4
## 202  2.5 Lts. Ret Pet   Familiar    Retornable     0       4    NA     4    4
## 203  500 ml NR Vidrio Individual No Retornable    11       2     4     6   11
## 204        500 ml Ret Individual    Retornable     4       2     4     6    6
## 205          8 Oz. NR Individual No Retornable    NA      NA    NA     1    1
## 206              Lata Individual No Retornable     2      NA    NA     2   NA
## 207       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 208       Lata 235 ml Individual No Retornable    NA      NA     1    NA    1
## 209         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 210      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 211     500 ml NR PET Individual No Retornable     3      NA    NA    NA   NA
## 212         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 213     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 214      250 ml Tetra Individual No Retornable     1       1     0     1   NA
## 215     413 ml NR VId Individual No Retornable     2      NA    NA    NA   NA
## 216      1 Ltro. N.R.   Familiar No Retornable    NA       2    NA    NA   NA
## 217      200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 218         400 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 219         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 220       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 221         400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 222       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 223       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 224         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 225       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 226         2 Lts. NR   Familiar No Retornable     0      NA    NA    NA   NA
## 227         400 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 228         600 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 229       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 230     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 231         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 232       Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 233         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 234      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 235       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 236    250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 237    250 ml. NR PET Individual No Retornable     2       1     1     2    3
## 238      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 239     12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 240       Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 241       Lata 450 ml Individual No Retornable    NA      NA     1    NA   NA
## 242  500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 243       Lata 235 ml Individual No Retornable     0      NA     1    NA   NA
## 244      1 Ltro. N.R.   Familiar No Retornable     4       4     6     4    6
## 245  500 ml NR Vidrio Individual No Retornable     2       4     4     6    4
## 246          8 Oz. NR Individual No Retornable     1      NA    NA     2    1
## 247      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 248     12 Oz. NR Pet Individual No Retornable     0       1     1     1    1
## 249      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     2   NA
## 250      1.250 Lts NR   Familiar No Retornable    13      13    13     8   13
## 251       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 252      1.5 Lts. Ret   Familiar    Retornable     6       3    NA     3    3
## 253     12 Oz. NR Pet Individual No Retornable     3       2     3     3    3
## 254       2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 255  2.5 Lts. Ret Pet   Familiar    Retornable    35      35    53    46   56
## 256  500 ml NR Vidrio Individual No Retornable     4       4     4     6    8
## 257        500 ml Ret Individual    Retornable    13       6    11    11   19
## 258          8 Oz. NR Individual No Retornable     1       1     1     2    2
## 259              Lata Individual No Retornable    NA      NA    NA    NA   NA
## 260       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 261      1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1    1
## 262     500 ml NR PET Individual No Retornable     2       1     2     3    3
## 263         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 264     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 265      250 ml Tetra Individual No Retornable     1       1     1    NA    1
## 266    250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 267     413 ml NR VId Individual No Retornable     2       2     3     1    2
## 268    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 269      200 ml Tetra Individual No Retornable     1       1     0     0    1
## 270         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 271         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 272    250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 273        500 ml Ret Individual    Retornable     1      NA    NA     1   NA
## 274              Lata Individual No Retornable    NA      NA    NA    NA   NA
## 275       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 276         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 277        500 ml Ret Individual    Retornable     1      NA    NA     1   NA
## 278       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 279         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 280    250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 281         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 282        500 ml Ret Individual    Retornable     1      NA    NA     1   NA
## 283              Lata Individual No Retornable    NA      NA    NA    NA   NA
## 284         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 285       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 286         2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 287    250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 288         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 289        500 ml Ret Individual    Retornable     1      NA    NA     1   NA
## 290              Lata Individual No Retornable    NA      NA    NA    NA   NA
## 291       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 292         600 ml NR Individual No Retornable     4       4     4     3    3
## 293       Lata 453 ml Individual No Retornable    NA      NA     1    NA   NA
## 294         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 295         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 296      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 297       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 298         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 299         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 300    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 301    250 ml. NR PET Individual No Retornable     2       2     2     3    4
## 302      1 Ltro. N.R.   Familiar No Retornable     1       1     2     1    2
## 303     12 Oz. NR Pet Individual No Retornable    NA      NA    NA     1    2
## 304         400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 305  500 ml NR Vidrio Individual No Retornable     2       2    NA     2   NA
## 306         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 307      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 308      1.250 Lts NR   Familiar No Retornable    NA       3    NA    NA   NA
## 309       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 310      1.5 Lts. Ret   Familiar    Retornable    NA      NA     3    NA   NA
## 311     12 Oz. NR Pet Individual No Retornable     5       6     5     6    6
## 312       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 313  2.5 Lts. Ret Pet   Familiar    Retornable    18      11    18    11   21
## 314     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   19
## 315  500 ml NR Vidrio Individual No Retornable     8       2     6     4    8
## 316        500 ml Ret Individual    Retornable     6       8    11    13   13
## 317         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 318          8 Oz. NR Individual No Retornable     3       3     2     2    3
## 319              Lata Individual No Retornable    NA      NA     2    NA   NA
## 320       Lata 235 ml Individual No Retornable     4       2     4     3    1
## 321      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA    1
## 322     500 ml NR PET Individual No Retornable    NA      NA     1     1    1
## 323      250 ml Tetra Individual No Retornable     0       1     0    NA    0
## 324    250 ML. NR VID Individual No Retornable     1       1     1     1    1
## 325     413 ml NR VId Individual No Retornable     2       2     3     2    3
## 326      200 ml Tetra Individual No Retornable    NA       0    NA    NA    0
## 327         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 328         400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 329        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 330         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 331       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 332         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 333        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 334       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 335        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 336         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 337         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 338         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 339       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 340         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 341         400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 342     500 ml NR PET Individual No Retornable    NA      NA    NA    NA    6
## 343        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 344         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 345       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 346         600 ml NR Individual No Retornable     3       2     3     3    5
## 347         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 348         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 349      1 Ltro. N.R. Individual No Retornable     8      NA    NA    NA   NA
## 350       1.5 Lts. NR Individual No Retornable    NA      NA    NA     3   NA
## 351    300 ML. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 352         600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 353         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 354    300 ML. NR PET Individual No Retornable     1      NA    NA     1   NA
## 355      1 Ltro. N.R. Individual No Retornable    NA       1    NA    NA   NA
## 356         600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 357         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 358         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 359     12 Oz. NR Pet Individual No Retornable    NA      NA     1    NA   NA
## 360      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 361       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 362      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 363     12 Oz. NR Pet Individual No Retornable    NA      NA    NA     6   NA
## 364        12 Oz. Ret Individual    Retornable    NA      NA    NA     5   NA
## 365         2 Lts. NR   Familiar No Retornable    NA      NA     6    NA   NA
## 366       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    11   NA
## 367  2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA     4    NA   NA
## 368  500 ml NR Vidrio Individual No Retornable     4       2    NA    NA   NA
## 369        500 ml Ret Individual    Retornable     2      NA     2    66   NA
## 370          8 Oz. NR Individual No Retornable     1      NA     1    NA   NA
## 371       Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 372         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 373      250 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 374     413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 375      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     2    4
## 376    300 ML. NR PET Individual No Retornable     0      NA    NA    NA    0
## 377      200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 378         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 379       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 380     500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 381        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 382       Lata 235 ml Individual No Retornable    NA      NA     0    NA    0
## 383         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 384       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 385         400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 386        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 387       Lata 235 ml Individual No Retornable    NA      NA     0    NA    0
## 388         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 389       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 390        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 391         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 392         400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 393       Lata 235 ml Individual No Retornable    NA      NA     0    NA    0
## 394         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 395       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2   NA
## 396         400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 397     500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 398        500 ml Ret Individual    Retornable    NA      NA     2    NA   NA
## 399       Lata 235 ml Individual No Retornable    NA      NA     0    NA    0
## 400         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 401         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 402    250 ml. NR PET Individual No Retornable    NA       1     1    NA   NA
## 403       Lata 235 ml Individual No Retornable     0      NA    NA    NA   NA
## 404      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 405  500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 406       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 407      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 408     12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 409       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 410  2.5 Lts. Ret Pet   Familiar    Retornable    28       7    14    14    7
## 411  500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 412        500 ml Ret Individual    Retornable     2       4     4     8   NA
## 413          8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 414       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 415       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 416         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 417     413 ml NR VId Individual No Retornable    NA       0     0     1   NA
## 418       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 419         2 Lts. NR   Familiar No Retornable     3      NA     3    NA    3
## 420         400 ml NR Individual No Retornable    NA      NA    NA     0    0
## 421       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 422       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 423         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 424       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 425         400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 426         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 427       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 428         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 429       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 430         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 431      1 Ltro. N.R. Individual No Retornable    NA       4     4     2    4
## 432       1.5 Lts. NR Individual No Retornable    NA      10     6     3   10
## 433    300 ML. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 434         600 ml NR Individual No Retornable    NA       8     3     3    5
## 435      1 Ltro. N.R. Individual No Retornable    NA      NA     1    NA   NA
## 436       1.5 Lts. NR Individual No Retornable    NA      NA     5    NA   NA
## 437    250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 438     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 439         600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 440    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 441         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 442      1 Ltro. N.R.   Familiar No Retornable     1      NA    NA    NA   NA
## 443     12 Oz. NR Pet Individual No Retornable    NA      NA     1    NA   NA
## 444         2 Lts. NR   Familiar No Retornable    NA       3    NA     3    3
## 445     500 ml NR PET Individual No Retornable    NA      NA     1    NA   NA
## 446       Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 447  500 ml NR Vidrio Individual No Retornable    NA      NA     2     2    4
## 448      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     2   NA
## 449      1.250 Lts NR   Familiar No Retornable    NA      NA    NA     3    3
## 450       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 451      1.5 Lts. Ret   Familiar    Retornable    60      60    60    51   67
## 452     12 Oz. NR Pet Individual No Retornable     3       2    NA     3    2
## 453        12 Oz. Ret Individual    Retornable     5       2    NA     3    2
## 454        2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 455       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 456  2.5 Lts. Ret Pet   Familiar    Retornable    49      53    42    32   70
## 457     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 458  500 ml NR Vidrio Individual No Retornable     2       4     4     6    6
## 459        500 ml Ret Individual    Retornable    42      36    34    44   53
## 460          8 Oz. NR Individual No Retornable    NA       1     1    NA   NA
## 461              Lata Individual No Retornable    NA       2    NA    NA    2
## 462       Lata 16 Oz. Individual No Retornable    NA       2    NA     2    2
## 463       Lata 235 ml Individual No Retornable     2       4     3     1    2
## 464      1 Ltro. N.R. Individual No Retornable     1      NA    NA    NA   NA
## 465     500 ml NR PET Individual No Retornable     1      NA    NA    NA    1
## 466         600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 467     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 468   125 ml NR Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 469      250 ml Tetra Individual No Retornable     1       0    NA    NA   NA
## 470     413 ml NR VId Individual No Retornable     2       2     0     0    3
## 471    300 ML. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 472      200 ml Tetra Individual No Retornable    NA       0     0    NA   NA
## 473       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 474       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 475      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 476         2 Lts. NR   Familiar No Retornable     1       1     1     1    2
## 477        2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 478       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 479    250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 480         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 481     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 482        500 ml Ret Individual    Retornable     2       1     1     1    2
## 483       Lata 235 ml Individual No Retornable    NA      NA     0    NA    0
## 484       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 485      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 486         2 Lts. NR   Familiar No Retornable     1       1     1     1    2
## 487        2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 488       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 489         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 490        500 ml Ret Individual    Retornable     2       1     3     1    2
## 491       Lata 235 ml Individual No Retornable    NA      NA     0    NA    0
## 492       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 493         2 Lts. NR   Familiar No Retornable     1       1     1     1   NA
## 494        2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 495       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 496    250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 497         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 498        500 ml Ret Individual    Retornable     2       1     1     1    2
## 499         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 500      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 501         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 502        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 503       Lata 235 ml Individual No Retornable    NA      NA     0    NA    0
## 504       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     6    3
## 505      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 506         2 Lts. NR   Familiar No Retornable     1       1     1     4    5
## 507        2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 508       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 509    250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 510         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 511        500 ml Ret Individual    Retornable     2       3     1     3    2
## 512       Lata 235 ml Individual No Retornable    NA      NA     0    NA    0
## 513       Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 514         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 515       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 516       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 517  500 ml NR Vidrio Individual No Retornable     0      NA    NA    NA   NA
## 518  500 ml NR Vidrio Individual No Retornable    NA      NA    NA     2   NA
## 519       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 520      1.5 Lts. Ret   Familiar    Retornable    NA       3    NA    NA   NA
## 521     12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 522  2.5 Lts. Ret Pet   Familiar    Retornable    18      11     7     4   11
## 523        500 ml Ret Individual    Retornable    19      15    19    21   19
## 524          8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 525     500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 526     413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 527       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 528        500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 529       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 530        2 Lts. Ret   Familiar    Retornable     3      NA    NA    NA   NA
## 531       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 532        2 Lts. Ret   Familiar    Retornable     3      NA    NA    NA   NA
## 533         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 534        500 ml Ret Individual    Retornable     2      NA    NA     4   NA
## 535       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 536        2 Lts. Ret   Familiar    Retornable     3      NA    NA    NA   NA
## 537        500 ml Ret Individual    Retornable     4       4     6     4    2
## 538       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 539         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 540       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 541      1 Ltro. N.R. Individual No Retornable     6       2     2     2    4
## 542       1.5 Lts. NR Individual No Retornable    NA      NA    NA    10   19
## 543     355 Ml NR Pet Individual No Retornable     5      NA    NA    NA   NA
## 544         600 ml NR Individual No Retornable     5      10     8     3   10
## 545    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 546         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 547  500 ml NR Vidrio Individual No Retornable     2       2     2    NA   NA
## 548  500 ml NR Vidrio Individual No Retornable     4       8    NA    NA    6
## 549          8 Oz. NR Individual No Retornable    NA      NA     1     1    1
## 550              Lata Individual No Retornable    NA      NA    NA    NA   NA
## 551  500 ml NR Vidrio Individual No Retornable    NA       2    NA    NA    4
## 552      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 553       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 554      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA     3    3
## 555     12 Oz. NR Pet Individual No Retornable     2      NA    NA    NA    5
## 556     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 557  500 ml NR Vidrio Individual No Retornable    21      19     8    11   23
## 558        500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 559          8 Oz. NR Individual No Retornable    NA       1     2     3    2
## 560              Lata Individual No Retornable    NA       2    NA    NA    2
## 561       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA    2
## 562       Lata 235 ml Individual No Retornable    NA       1     1    NA   NA
## 563      250 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 564     413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 565      200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 566       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 567         400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 568       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 569         400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 570       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 571         400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 572         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 573       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 574         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 575      1 Ltro. N.R. Individual No Retornable    NA       2    19    NA   NA
## 576       1.5 Lts. NR Individual No Retornable    NA      NA    13    NA   NA
## 577    300 ML. NR PET Individual No Retornable    NA      NA     1    NA   NA
## 578         600 ml NR Individual No Retornable    NA       3     5    NA   NA
## 579    250 ml. NR PET Individual No Retornable     0      NA     0    NA    0
## 580         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 581     12 Oz. NR Pet Individual No Retornable     2      NA    NA     1   NA
## 582       Lata 235 ml Individual No Retornable    NA       1    NA     0   NA
## 583          8 Oz. NR Individual No Retornable    NA      NA    NA    NA    1
## 584      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 585      1.250 Lts NR   Familiar No Retornable     3      NA     3     3    3
## 586       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 587  2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA    NA    NA   NA
## 588     500 ml NR PET Individual No Retornable     4       2     6     4    4
## 589  500 ml NR Vidrio Individual No Retornable    NA      NA    NA     2    2
## 590        500 ml Ret Individual    Retornable    NA      NA    13    17   23
## 591          8 Oz. NR Individual No Retornable     2       1    NA     1    2
## 592              Lata Individual No Retornable    NA      NA     2    NA    3
## 593       Lata 235 ml Individual No Retornable     1       1    NA     1    2
## 594     500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 595      250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 596     413 ml NR VId Individual No Retornable    NA      NA    NA    NA    0
## 597    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 598      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 599       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 600         2 Lts. NR   Familiar No Retornable     1      NA    NA     1    1
## 601    250 ml. NR PET Individual No Retornable     0      NA     0    NA    0
## 602     500 ml NR PET Individual No Retornable     1      NA     1    NA    1
## 603        500 ml Ret Individual    Retornable     1       1     2     1    2
## 604       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 605         2 Lts. NR   Familiar No Retornable     1      NA    NA     1    1
## 606     500 ml NR PET Individual No Retornable     1      NA     1    NA    1
## 607        500 ml Ret Individual    Retornable     1       1     2     1    2
## 608       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 609         2 Lts. NR   Familiar No Retornable     1      NA    NA     1    1
## 610    250 ml. NR PET Individual No Retornable     0      NA     0    NA    0
## 611     500 ml NR PET Individual No Retornable     1      NA     1    NA    1
## 612        500 ml Ret Individual    Retornable     1       1     2     1    2
## 613       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 614         2 Lts. NR   Familiar No Retornable     1      NA    NA     1    1
## 615    250 ml. NR PET Individual No Retornable     0      NA     0    NA    0
## 616     500 ml NR PET Individual No Retornable     1      NA     1    NA    1
## 617        500 ml Ret Individual    Retornable     1       1     2     1    2
## 618       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 619     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 620         600 ml NR Individual No Retornable     2       1     1     4    2
## 621       Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 622       Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 623      1 Ltro. N.R. Individual No Retornable     4       8     8    11    4
## 624       1.5 Lts. NR Individual No Retornable    NA       6    NA    10    6
## 625     355 Ml NR Pet Individual No Retornable     2      NA    NA    NA   NA
## 626         600 ml NR Individual No Retornable    NA      NA    NA     8   NA
## 627         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 628      1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 629    250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 630         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 631    250 ml. NR PET Individual No Retornable     1      NA     1    NA    1
## 632      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    1
## 633      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 634     12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA    1
## 635         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 636    250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 637         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 638      1 Ltro. N.R.   Familiar No Retornable     2      NA     2    NA    2
## 639         2 Lts. NR   Familiar No Retornable     3      NA    NA     3   NA
## 640       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    11    7
## 641  500 ml NR Vidrio Individual No Retornable     4      NA     2     6    2
## 642          8 Oz. NR Individual No Retornable    NA      NA    NA     1   NA
## 643              Lata Individual No Retornable    NA      NA     2     2   NA
## 644      1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA    2
## 645     12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 646  500 ml NR Vidrio Individual No Retornable    NA      NA    NA     2   NA
## 647      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 648      1.250 Lts NR   Familiar No Retornable     8       8     5    13   11
## 649       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 650      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA     3    6
## 651     12 Oz. NR Pet Individual No Retornable     2       5     6     6    5
## 652       2.5 Lts. NR   Familiar No Retornable     7       7    11    14   14
## 653  2.5 Lts. Ret Pet   Familiar    Retornable    35      21    18    32   32
## 654     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 655  500 ml NR Vidrio Individual No Retornable     8       4     6    13   11
## 656        500 ml Ret Individual    Retornable    30      42    40    36   23
## 657          8 Oz. NR Individual No Retornable     2       1     2     3    2
## 658              Lata Individual No Retornable     2       2     2     3    2
## 659       Lata 16 Oz. Individual No Retornable    NA      NA    NA     4    2
## 660       Lata 235 ml Individual No Retornable     4       3    NA     3    3
## 661      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA    1
## 662         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 663     1 Ltro. Tetra   Familiar No Retornable    NA       1     2    NA   NA
## 664      250 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 665    250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 666     413 ml NR VId Individual No Retornable     1      NA     2    NA    2
## 667       Lata 335 ml Individual No Retornable    NA       1    NA    NA   NA
## 668      200 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 669         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 670       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 671         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 672    250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 673         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 674        500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 675         600 ml NR Individual No Retornable     1      NA    NA     1   NA
## 676       Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 677         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 678       Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 679    250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 680         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 681         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 682         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 683        500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 684       Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 685      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 686       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 687      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 688         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 689       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     4   NA
## 690    250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 691         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 692        500 ml Ret Individual    Retornable    NA       2    NA     2    2
## 693         600 ml NR Individual No Retornable     1      NA    NA     1   NA
## 694       Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 695         600 ml NR Individual No Retornable     1      NA    NA     1   NA
## 696       Lata 453 ml Individual No Retornable    NA      NA    NA    NA    1
## 697         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 698         600 ml NR Individual No Retornable    NA      NA     1     1    1
## 699       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 700         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 701      1 Ltro. N.R. Individual No Retornable    11       2    17     2    2
## 702       1.5 Lts. NR Individual No Retornable     3       3    10     3    3
## 703     355 Ml NR Pet Individual No Retornable     3      NA     2    NA   NA
## 704         5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 705         600 ml NR Individual No Retornable     3      NA     5    NA   NA
## 706         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 707      1 Ltro. N.R. Individual No Retornable    NA       3     1     1    1
## 708         600 ml NR Individual No Retornable     1       1     3    NA   NA
## 709     500 ml NR PET Individual No Retornable    NA       1     1     1    1
## 710         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 711    250 ml. NR PET Individual No Retornable     3      NA    NA    NA    1
## 712         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 713      1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 714      1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    2
## 715     12 Oz. NR Pet Individual No Retornable    NA       1    NA     2    2
## 716         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 717       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 718       Lata 450 ml Individual No Retornable    NA      NA    NA     1   NA
## 719        12 Oz. Ret Individual    Retornable     2      NA    NA    NA   NA
## 720  500 ml NR Vidrio Individual No Retornable    NA      NA     2     2    2
## 721       Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 722      1 Ltro. N.R.   Familiar No Retornable     4       4     6     2    4
## 723        12 Oz. Ret Individual    Retornable    NA       2    NA    NA   NA
## 724         2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 725         400 ml NR Individual No Retornable     2       2     2     2    2
## 726  500 ml NR Vidrio Individual No Retornable     6       6     6     8    4
## 727          8 Oz. NR Individual No Retornable     2       1     2     4   NA
## 728       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 729      1 Ltro. N.R.   Familiar No Retornable    NA       4    NA     2   NA
## 730  500 ml NR Vidrio Individual No Retornable    NA      NA     2     2    2
## 731          8 Oz. NR Individual No Retornable    NA      NA    NA    NA    1
## 732      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 733      1.250 Lts NR   Familiar No Retornable     8      18    13    13   11
## 734       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 735      1.5 Lts. Ret   Familiar    Retornable    NA       3    NA     3    3
## 736     12 Oz. NR Pet Individual No Retornable     3       5     3     3    2
## 737        12 Oz. Ret Individual    Retornable    NA       2    NA    NA   NA
## 738        2 Lts. Ret   Familiar    Retornable     3      NA    NA    NA   NA
## 739       2.5 Lts. NR   Familiar No Retornable    NA      11    11    11    7
## 740  2.5 Lts. Ret Pet   Familiar    Retornable    28      25    21    42   18
## 741         400 ml NR Individual No Retornable     7       7     8    10    7
## 742  500 ml NR Vidrio Individual No Retornable    21      17    19    25   21
## 743        500 ml Ret Individual    Retornable    46      66    46    57   57
## 744       6.5 Oz. Ret Individual    Retornable    NA      NA     1    NA   NA
## 745         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 746         710 ml NR Individual No Retornable     9       3     6     3    6
## 747          8 Oz. NR Individual No Retornable     3       5     6     7    6
## 748              Lata Individual No Retornable     2       2     3     2    2
## 749       Lata 16 Oz. Individual No Retornable     2      NA     4     2    2
## 750       Lata 235 ml Individual No Retornable     4       3     2     2    2
## 751      1 Ltro. N.R. Individual No Retornable     1       1    NA     1    1
## 752     500 ml NR PET Individual No Retornable     1      NA    NA     1   NA
## 753         600 ml NR Individual No Retornable     1      NA    NA     2   NA
## 754      250 ml Tetra Individual No Retornable     1      NA     1     1    1
## 755    250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 756     413 ml NR VId Individual No Retornable     3       1     3     3    1
## 757    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 758    300 ML. NR PET Individual No Retornable     1       0    NA     0   NA
## 759      200 ml Tetra Individual No Retornable    NA       0     1     1    0
## 760         600 ml NR Individual No Retornable     2       3     3     1    2
## 761       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 762         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 763       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 764         2 Lts. NR   Familiar No Retornable    NA      NA     1     3    3
## 765         400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 766     500 ml NR PET Individual No Retornable     1       1     1     2    1
## 767        500 ml Ret Individual    Retornable    NA       2     2     4   NA
## 768         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 769       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 770       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 771         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 772         400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 773     500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 774        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 775         600 ml NR Individual No Retornable     1       2     2     3    1
## 776       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 777       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 778         2 Lts. NR   Familiar No Retornable    NA       3     3    NA   NA
## 779         400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 780     500 ml NR PET Individual No Retornable     1       1     1     2    1
## 781        500 ml Ret Individual    Retornable    NA       2    NA     2   NA
## 782         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 783         600 ml NR Individual No Retornable     1       3     2     1    1
## 784         2 Lts. NR   Familiar No Retornable    NA      NA     3     3   NA
## 785        500 ml Ret Individual    Retornable     2      NA     4    NA    2
## 786         600 ml NR Individual No Retornable     3      NA     1     3   NA
## 787       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 788       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 789        12 Oz. Ret Individual    Retornable    NA       2    NA    NA   NA
## 790         2 Lts. NR   Familiar No Retornable    NA       3     3     3    3
## 791        2 Lts. Ret   Familiar    Retornable    NA       3     3     3    3
## 792         400 ml NR Individual No Retornable    NA      NA    NA     0    1
## 793     500 ml NR PET Individual No Retornable     3       2     2     2    2
## 794        500 ml Ret Individual    Retornable     4      NA     2     2   NA
## 795         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 796       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 797     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 798         600 ml NR Individual No Retornable    NA       1     3     4    1
## 799       Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 800       Lata 453 ml Individual No Retornable    NA      NA     0    NA    2
## 801         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 802      1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 803       1.5 Lts. NR Individual No Retornable     3      NA    NA     3   NA
## 804     500 ml NR PET Individual No Retornable    NA      NA    NA     2   NA
## 805         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 806    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 807      1 Ltro. N.R.   Familiar No Retornable     2       4     2     6   NA
## 808         2 Lts. NR   Familiar No Retornable     3      NA     3    NA   NA
## 809  500 ml NR Vidrio Individual No Retornable     4       4     4     6    4
## 810  500 ml NR Vidrio Individual No Retornable    NA      NA    NA     2    2
## 811      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 812      1.250 Lts NR   Familiar No Retornable     8      11    13     8    8
## 813       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 814      1.5 Lts. Ret   Familiar    Retornable     3      10    10    19    6
## 815     12 Oz. NR Pet Individual No Retornable     2       2     3     5    2
## 816        12 Oz. Ret Individual    Retornable     3       2     2    NA   NA
## 817         2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 818       2.5 Lts. NR   Familiar No Retornable    11      11    18    14   18
## 819  2.5 Lts. Ret Pet   Familiar    Retornable    28      39    60    53   60
## 820     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 821  500 ml NR Vidrio Individual No Retornable     8       6     8     8   11
## 822        500 ml Ret Individual    Retornable    15      15    13    23   21
## 823          8 Oz. NR Individual No Retornable     2       2     1     3    2
## 824              Lata Individual No Retornable     2      NA    NA    NA   NA
## 825       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 826       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 827      1 Ltro. N.R. Individual No Retornable     1      NA    NA    NA   NA
## 828         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 829      250 ml Tetra Individual No Retornable    NA      NA    NA    NA    1
## 830    250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 831     413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 832     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 833     1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 834     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 835      200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 836       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 837       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 838         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 839       2.5 Lts. NR   Familiar No Retornable     2       1     1     2    1
## 840         400 ml NR Individual No Retornable     0       1    NA     1    0
## 841     500 ml NR PET Individual No Retornable     1      NA     1    NA    1
## 842        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 843         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 844       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 845       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 846         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 847       2.5 Lts. NR   Familiar No Retornable     2       1     1     2    1
## 848         400 ml NR Individual No Retornable     0       0    NA     1   NA
## 849     500 ml NR PET Individual No Retornable     1      NA     1    NA    1
## 850        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 851       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 852       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 853         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 854       2.5 Lts. NR   Familiar No Retornable     2       1     1     2    1
## 855         400 ml NR Individual No Retornable     0       1    NA     1    0
## 856     500 ml NR PET Individual No Retornable     1      NA     1    NA    1
## 857        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 858         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 859         400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 860        500 ml Ret Individual    Retornable    NA      NA     2    NA   NA
## 861       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 862       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 863         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 864       2.5 Lts. NR   Familiar No Retornable     2       1     1     2    1
## 865         400 ml NR Individual No Retornable     0       0     0     0    0
## 866     500 ml NR PET Individual No Retornable     1      NA     1    NA    1
## 867        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 868         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 869       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 870         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 871         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 872    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 873    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 874      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 875  2.5 Lts. Ret Pet   Familiar    Retornable    28      21    25    28   49
## 876  500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 877        500 ml Ret Individual    Retornable    23      19    23    38   42
## 878      250 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 879      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 880    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 881         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 882     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 883     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 884    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 885     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 886        500 ml Ret Individual    Retornable     2       2     2     6    4
## 887    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 888         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 889     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 890      1 Ltro. N.R. Individual No Retornable    NA      NA     2     4    6
## 891       1.5 Lts. NR Individual No Retornable    NA      NA     6     6    6
## 892         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 893         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 894    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 895    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 896    250 ml. NR PET Individual No Retornable     2       3     2     2    2
## 897         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 898      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 899      1 Ltro. N.R. Individual No Retornable    NA      NA     2    NA   NA
## 900     12 Oz. NR Pet Individual No Retornable    NA      NA     1    NA   NA
## 901         2 Lts. NR   Familiar No Retornable     3       6     6     6    3
## 902       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 903       Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 904     500 ml NR PET Individual No Retornable     1       1    NA    NA    1
## 905      1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA    2
## 906         2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 907       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 908         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 909  500 ml NR Vidrio Individual No Retornable     8       6     8     8    6
## 910          8 Oz. NR Individual No Retornable    NA      NA     2    NA    1
## 911      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 912      1.250 Lts NR   Familiar No Retornable    NA       3     5     3    5
## 913       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 914      1.5 Lts. Ret   Familiar    Retornable    25      22    19    32   22
## 915     12 Oz. NR Pet Individual No Retornable     5       2     3     2    2
## 916       2.5 Lts. NR   Familiar No Retornable     4      NA    NA     4    4
## 917  2.5 Lts. Ret Pet   Familiar    Retornable    70      63    46    53   46
## 918     500 ml NR PET Individual No Retornable     4      NA     4    NA    4
## 919  500 ml NR Vidrio Individual No Retornable     6       6     6     4    6
## 920        500 ml Ret Individual    Retornable    55      42    46    49   51
## 921          8 Oz. NR Individual No Retornable     3       2     2     1    1
## 922              Lata Individual No Retornable     1       0     1     0    0
## 923       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 924       Lata 235 ml Individual No Retornable     2       1    NA    NA   NA
## 925         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 926      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 927     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 928         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 929     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 930      250 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 931    250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 932     413 ml NR VId Individual No Retornable     4       4     1     2    1
## 933       Lata 335 ml Individual No Retornable    NA      NA    NA    NA   NA
## 934    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 935      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 936    300 ML. NR PET Individual No Retornable    NA       0     0     0   NA
## 937     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 938     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 939      200 ml Tetra Individual No Retornable     0       0     0     0    0
## 940         600 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 941         2 Lts. NR   Familiar No Retornable     1       1    NA    NA    1
## 942         400 ml NR Individual No Retornable     0       0     1    NA   NA
## 943        500 ml Ret Individual    Retornable     1      NA     1     2   NA
## 944       Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 945         2 Lts. NR   Familiar No Retornable     1       1    NA    NA    1
## 946         400 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 947        500 ml Ret Individual    Retornable     3      NA     1     2   NA
## 948       Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 949         2 Lts. NR   Familiar No Retornable     1       1    NA    NA   NA
## 950         400 ml NR Individual No Retornable     1      NA     0    NA   NA
## 951        500 ml Ret Individual    Retornable     1      NA     1     2   NA
## 952         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 953         400 ml NR Individual No Retornable     0       1     0    NA   NA
## 954       Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 955         2 Lts. NR   Familiar No Retornable     1       1    NA    NA    1
## 956    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 957         400 ml NR Individual No Retornable     0       1     1    NA   NA
## 958        500 ml Ret Individual    Retornable     1      NA     1     2   NA
## 959       Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 960         600 ml NR Individual No Retornable     2      NA     3     3    3
## 961       Lata 453 ml Individual No Retornable    NA      NA    NA    NA    0
## 962         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 963  500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 964              Lata Individual No Retornable     2      NA     2    NA   NA
## 965       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 966      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 967       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 968      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 969        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 970     500 ml NR PET Individual No Retornable     2       4     2     2    4
## 971        500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 972              Lata Individual No Retornable    NA       3     2     2   NA
## 973       Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 974      250 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 975     413 ml NR VId Individual No Retornable     1       4     4     2    2
## 976      200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 977         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 978              Lata Individual No Retornable    NA      NA     0    NA    0
## 979       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 980              Lata Individual No Retornable    NA      NA     0    NA    1
## 981       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 982              Lata Individual No Retornable    NA      NA     0    NA   NA
## 983       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 984              Lata Individual No Retornable    NA      NA     0    NA    0
## 985       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 986         600 ml NR Individual No Retornable     3       2     3     3    3
## 987      1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 988       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 989         5 Lts. NR   Familiar No Retornable    NA       4     4     4   NA
## 990         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 991        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 992    250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 993    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 994         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 995      1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA    1
## 996     12 Oz. NR Pet Individual No Retornable    NA       1    NA    NA   NA
## 997         2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 998  500 ml NR Vidrio Individual No Retornable     0       2    NA    NA   NA
## 999      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1000       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1001        400 ml NR Individual No Retornable    NA       2     2     2   NA
## 1002 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 1003     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1004     1.250 Lts NR   Familiar No Retornable    NA       3     5     3   NA
## 1005      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1006     1.5 Lts. Ret   Familiar    Retornable     3       3     3     6    3
## 1007    12 Oz. NR Pet Individual No Retornable     2       2     3     6    2
## 1008      2.5 Lts. NR   Familiar No Retornable     4       4    NA     4    4
## 1009 2.5 Lts. Ret Pet   Familiar    Retornable    NA      11    NA     4    7
## 1010    500 ml NR PET Individual No Retornable    NA       2     4     2    2
## 1011 500 ml NR Vidrio Individual No Retornable     6       2     6     6    2
## 1012       500 ml Ret Individual    Retornable     4       4     4    13    4
## 1013         8 Oz. NR Individual No Retornable     1      NA     1    NA   NA
## 1014      Lata 16 Oz. Individual No Retornable    NA      NA     2     2    2
## 1015      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1016    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1017   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 1018    413 ml NR VId Individual No Retornable    NA       1     0     2   NA
## 1019    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1020    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1021        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1022        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1023      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1024        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1025   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 1026        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1027       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1028        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1029      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1030        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1031        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1032       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1033      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1034        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1035   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 1036        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1037       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1038       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1039      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1040        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    3
## 1041   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 1042        400 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1043       500 ml Ret Individual    Retornable    NA      NA    NA     2    2
## 1044        600 ml NR Individual No Retornable     1      NA     1    NA    1
## 1045      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1046        600 ml NR Individual No Retornable    NA      NA     1    NA    3
## 1047        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1048      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1049        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1050     1 Ltro. N.R. Individual No Retornable     0       4     2     4    2
## 1051      1.5 Lts. NR Individual No Retornable     3       3    NA     6   NA
## 1052        600 ml NR Individual No Retornable     3      NA     3     3   NA
## 1053        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1054        600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 1055   250 ml. NR PET Individual No Retornable     3      NA     3    NA   NA
## 1056        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1057     1 Ltro. N.R.   Familiar No Retornable     0       1    NA     1   NA
## 1058     1 Ltro. N.R. Individual No Retornable    NA      NA     2    NA    2
## 1059    12 Oz. NR Pet Individual No Retornable     2       2     3     1    1
## 1060        2 Lts. NR   Familiar No Retornable     3       3     3     3   NA
## 1061      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1062     1 Ltro. N.R.   Familiar No Retornable     2      NA     2    NA    2
## 1063 500 ml NR Vidrio Individual No Retornable     2       2     2     2    2
## 1064     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1065     1.250 Lts NR   Familiar No Retornable     8       5     5     5    3
## 1066      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1067     1.5 Lts. Ret   Familiar    Retornable     3       3    NA     6    3
## 1068    12 Oz. NR Pet Individual No Retornable     5       3     3     3    3
## 1069       12 Oz. Ret Individual    Retornable     2       2    NA    NA   NA
## 1070      2.5 Lts. NR   Familiar No Retornable     4       4    NA     4    4
## 1071 2.5 Lts. Ret Pet   Familiar    Retornable    53      25    21    11   39
## 1072    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    2
## 1073 500 ml NR Vidrio Individual No Retornable     4       4     2     4   NA
## 1074       500 ml Ret Individual    Retornable    21      19    13     6   19
## 1075         8 Oz. NR Individual No Retornable     1       2     2     1    1
## 1076             Lata Individual No Retornable     2       6     2     2    2
## 1077      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 1078     1 Ltro. N.R. Individual No Retornable     1       1    NA    NA   NA
## 1079    500 ml NR PET Individual No Retornable    NA       1    NA    NA   NA
## 1080        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1081  100 ml NR Tetra Individual No Retornable    NA      NA     1    NA   NA
## 1082     250 ml Tetra Individual No Retornable     0       0     0    NA   NA
## 1083   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 1084    413 ml NR VId Individual No Retornable     2       3     3     2    3
## 1085    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1086     200 ml Tetra Individual No Retornable     0       0     0    NA   NA
## 1087        600 ml NR Individual No Retornable    NA      NA     1     1   NA
## 1088      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1089        2 Lts. NR   Familiar No Retornable    NA       4    NA     1   NA
## 1090        400 ml NR Individual No Retornable    NA       0     0     1    1
## 1091       500 ml Ret Individual    Retornable     1      NA     2    NA   NA
## 1092      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 1093        2 Lts. NR   Familiar No Retornable    NA       1    NA     1   NA
## 1094       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 1095             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1096      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 1097        2 Lts. NR   Familiar No Retornable    NA       1    NA     1   NA
## 1098        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1099       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 1100        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1101        400 ml NR Individual No Retornable    NA      NA     1     0    0
## 1102       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1103      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 1104        2 Lts. NR   Familiar No Retornable     3       1     3     4   NA
## 1105        400 ml NR Individual No Retornable     2       1     1     3    2
## 1106       500 ml Ret Individual    Retornable     5       4     4     4    2
## 1107        600 ml NR Individual No Retornable     1       1    NA     1   NA
## 1108      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 1109        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1110      Lata 453 ml Individual No Retornable    NA      NA    NA    NA    0
## 1111        600 ml NR Individual No Retornable     1       1     1     1    1
## 1112        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1113     1 Ltro. N.R. Individual No Retornable     2       2    NA     4    2
## 1114      1.5 Lts. NR Individual No Retornable     3      NA    NA    NA    6
## 1115    355 Ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1116        600 ml NR Individual No Retornable     3      NA    NA     3    3
## 1117   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1118       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1119   250 ml. NR PET Individual No Retornable     0       0     1     0    1
## 1120        600 ml NR Individual No Retornable    NA       1     1     1   NA
## 1121   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1122        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1123     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1124      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1125    237 ml NR Vid Individual No Retornable    NA      NA    NA    NA    1
## 1126 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA    2
## 1127 500 ml NR Vidrio Individual No Retornable    NA       2     4     4    4
## 1128         8 Oz. NR Individual No Retornable     1       2     1     1    2
## 1129      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 1130     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1131     1.250 Lts NR   Familiar No Retornable     3      11     5     8    5
## 1132      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1133     1.5 Lts. Ret   Familiar    Retornable     3      NA    NA     3    3
## 1134    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1135       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1136        2 Lts. NR   Familiar No Retornable     3       6    NA     6    6
## 1137      2.5 Lts. NR   Familiar No Retornable     4       4     4     7    4
## 1138 2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA    NA    NA   NA
## 1139        400 ml NR Individual No Retornable     8      12    10    10   14
## 1140    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1141 500 ml NR Vidrio Individual No Retornable    19      23    15    25   34
## 1142       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 1143      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1144         8 Oz. NR Individual No Retornable     3       6     2     4    6
## 1145             Lata Individual No Retornable     2       2     2     2    3
## 1146      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 1147      Lata 235 ml Individual No Retornable     2       1     1     1    3
## 1148        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1149     250 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1150   250 ML. NR VID Individual No Retornable     1       1    NA     1   NA
## 1151    413 ml NR VId Individual No Retornable    NA       2    NA     2   NA
## 1152      Lata 335 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1153     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1154   300 ML. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 1155    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1156     200 ml Tetra Individual No Retornable     1      NA    NA    NA    0
## 1157        600 ml NR Individual No Retornable    NA      NA     2    NA    1
## 1158        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1159      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1160       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1161        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1162      2.5 Lts. NR   Familiar No Retornable    NA       1    NA     1    2
## 1163   250 ml. NR PET Individual No Retornable     0       0     1     0    1
## 1164        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1165        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 1166      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1167        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1168      2.5 Lts. NR   Familiar No Retornable    NA       1    NA     1    2
## 1169      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1170        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1171      2.5 Lts. NR   Familiar No Retornable    NA       1    NA     1    2
## 1172   250 ml. NR PET Individual No Retornable     0       0     1     0    1
## 1173        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1174        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1175        600 ml NR Individual No Retornable    NA       1    NA     1    1
## 1176      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1177        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1178      2.5 Lts. NR   Familiar No Retornable    NA       1    NA     1    2
## 1179   250 ml. NR PET Individual No Retornable     0       0     1     0    1
## 1180        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 1181        600 ml NR Individual No Retornable     1       1     4     1    2
## 1182      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1183    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1184        600 ml NR Individual No Retornable     1      NA    NA     1    3
## 1185      Lata 222 ml Individual No Retornable    NA       0    NA    NA   NA
## 1186      LATA 680 ML Individual No Retornable    NA       1    NA    NA   NA
## 1187     1 Ltro. N.R. Individual No Retornable     4      NA     4    NA   NA
## 1188      1.5 Lts. NR Individual No Retornable     3      NA     6    NA   NA
## 1189   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1190        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 1191     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1192    500 ml NR PET Individual No Retornable    NA       2    NA    NA   NA
## 1193        600 ml NR Individual No Retornable    NA       1    NA     1    1
## 1194   250 ml. NR PET Individual No Retornable     2       1     2     2    2
## 1195    12 Oz. NR Pet Individual No Retornable    NA      NA     1    NA   NA
## 1196       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1197    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1198        400 ml NR Individual No Retornable     1       1    NA     1   NA
## 1199     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1200     1.250 Lts NR   Familiar No Retornable     3       3     3     3    3
## 1201      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1202     1.5 Lts. Ret   Familiar    Retornable     6       3    13    10    6
## 1203    12 Oz. NR Pet Individual No Retornable    NA      NA     2     2    2
## 1204 2.5 Lts. Ret Pet   Familiar    Retornable    56      70    70    74   88
## 1205        400 ml NR Individual No Retornable     2       2     2    NA   NA
## 1206 500 ml NR Vidrio Individual No Retornable     2       2     6     4    4
## 1207       500 ml Ret Individual    Retornable    17      23    25    25   30
## 1208         8 Oz. NR Individual No Retornable    NA      NA     1    NA    1
## 1209      Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 1210    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1211        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1212  125 ml NR Tetra Individual No Retornable     0      NA    NA    NA   NA
## 1213    413 ml NR VId Individual No Retornable    NA      NA    NA    NA    1
## 1214    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1215    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1216     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1217      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1218        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1219        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1220       500 ml Ret Individual    Retornable     1       2     1     2    2
## 1221        600 ml NR Individual No Retornable    NA      NA     1     1    1
## 1222      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 1223      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1224        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1225       500 ml Ret Individual    Retornable     1       2     1     2    2
## 1226      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 1227      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1228        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1229       500 ml Ret Individual    Retornable     1       2     1     2    2
## 1230      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 1231      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1232        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1233       500 ml Ret Individual    Retornable     1       2     1     2    2
## 1234        600 ml NR Individual No Retornable    NA       1     1    NA    1
## 1235      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 1236      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1237        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1238     1 Ltro. N.R. Individual No Retornable    NA      NA     4     4    6
## 1239      1.5 Lts. NR Individual No Retornable     3      NA    NA     3   10
## 1240   300 ML. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 1241        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 1242        600 ml NR Individual No Retornable     3      NA    NA     3    3
## 1243     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1244   300 ML. NR PET Individual No Retornable     0       0     0    NA   NA
## 1245        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1246   250 ml. NR PET Individual No Retornable    NA      NA     0     0   NA
## 1247        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1248   250 ml. NR PET Individual No Retornable     2       2    NA     2    3
## 1249     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     1    1
## 1250    12 Oz. NR Pet Individual No Retornable     3      NA     1     1   NA
## 1251        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1252        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 1253      Lata 450 ml Individual No Retornable     1       1    NA    NA   NA
## 1254    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1255 500 ml NR Vidrio Individual No Retornable    NA      NA     2     2    2
## 1256      Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 1257     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2   NA
## 1258 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA    4
## 1259     1 Ltro. N.R.   Familiar No Retornable    NA       2     2    NA   NA
## 1260    12 Oz. NR Pet Individual No Retornable     0      NA    NA    NA   NA
## 1261 500 ml NR Vidrio Individual No Retornable    NA      NA    NA     2   NA
## 1262     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1263     1.250 Lts NR   Familiar No Retornable     5      NA     5     8    5
## 1264      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1265     1.5 Lts. Ret   Familiar    Retornable     6      16    16    16    3
## 1266    12 Oz. NR Pet Individual No Retornable     3       5    NA     9   NA
## 1267       12 Oz. Ret Individual    Retornable    NA      NA     2    NA   NA
## 1268       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     3    3
## 1269      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     7    4
## 1270 2.5 Lts. Ret Pet   Familiar    Retornable    11       4     7    18   11
## 1271    500 ml NR PET Individual No Retornable     2      NA     2    NA   NA
## 1272 500 ml NR Vidrio Individual No Retornable    NA      11     4     4    6
## 1273       500 ml Ret Individual    Retornable    36      27    32    57   21
## 1274         8 Oz. NR Individual No Retornable     1       3     2     3    2
## 1275             Lata Individual No Retornable    NA      NA     3    NA    5
## 1276      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA    2
## 1277      Lata 235 ml Individual No Retornable     2       1    NA     1    2
## 1278        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1279     1 Ltro. N.R. Individual No Retornable    NA      NA     1     1   NA
## 1280    500 ml NR PET Individual No Retornable    NA      NA     1    NA   NA
## 1281        600 ml NR Individual No Retornable     1      NA     2    NA   NA
## 1282    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1283  125 ml NR Tetra Individual No Retornable     0       0     0    NA   NA
## 1284     250 ml Tetra Individual No Retornable     2       0    NA     0    0
## 1285   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 1286    413 ml NR VId Individual No Retornable     2       2     1     0   NA
## 1287   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1288     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 1289   300 ML. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 1290    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1291    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1292     200 ml Tetra Individual No Retornable     1       0     0     0   NA
## 1293        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1294        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1295      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1296     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1297        2 Lts. NR   Familiar No Retornable     3      NA     3    NA    1
## 1298      2.5 Lts. NR   Familiar No Retornable     2      NA     2    NA   NA
## 1299   250 ml. NR PET Individual No Retornable    NA      NA     0     0   NA
## 1300        400 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1301       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 1302        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 1303      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 1304      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1305     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1306        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 1307      2.5 Lts. NR   Familiar No Retornable    NA       2     2     2    2
## 1308        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1309       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1310      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 1311        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 1312   250 ml. NR PET Individual No Retornable    NA      NA     0     0   NA
## 1313       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1314        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1315        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1316     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1317        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1318       500 ml Ret Individual    Retornable    NA      NA    NA     2   NA
## 1319      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 1320      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1321     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1322        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    1
## 1323      2.5 Lts. NR   Familiar No Retornable     2      NA     2    NA   NA
## 1324   250 ml. NR PET Individual No Retornable    NA      NA     0     0   NA
## 1325        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1326       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1327        600 ml NR Individual No Retornable     1       1     1    NA    1
## 1328      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 1329        600 ml NR Individual No Retornable     3       1     2     4   NA
## 1330        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    3
## 1331        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1332      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1333        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1334     1 Ltro. N.R. Individual No Retornable    NA       4    NA     4    2
## 1335      1.5 Lts. NR Individual No Retornable    NA      NA    NA     3    3
## 1336    355 Ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1337        600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 1338        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1339        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1340       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1341   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1342    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1343        600 ml NR Individual No Retornable    NA      NA    NA    NA   -1
## 1344   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    2
## 1345    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1346        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1347       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    3
## 1348 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 1349         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1350             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1351 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 1352             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1353     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1354     1.250 Lts NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1355      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1356     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1357    12 Oz. NR Pet Individual No Retornable    NA      NA    NA     8    8
## 1358       12 Oz. Ret Individual    Retornable    NA      NA     2     3    6
## 1359        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1360      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 1361 2.5 Lts. Ret Pet   Familiar    Retornable     4       4    NA    18    7
## 1362    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    2
## 1363 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA    2
## 1364       500 ml Ret Individual    Retornable     4       6     8   110   19
## 1365         8 Oz. NR Individual No Retornable    NA      NA     1     1   NA
## 1366             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1367      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 1368      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1369        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1370    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1371     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1372    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 1373    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1374      Lata 335 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1375    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1376     200 ml Tetra Individual No Retornable     0       2    NA    NA    2
## 1377        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1378      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1379       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 1380        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1381      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1382   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1383        400 ml NR Individual No Retornable    NA      NA    NA    NA   -1
## 1384    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1385       500 ml Ret Individual    Retornable    NA      NA     1    NA    3
## 1386        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1387      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1388        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1389    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1390       500 ml Ret Individual    Retornable    NA      NA     1    NA   -1
## 1391             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1392      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1393       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1394   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1395        400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1396    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1397       500 ml Ret Individual    Retornable    NA      NA     1    NA    1
## 1398        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1399       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 1400       500 ml Ret Individual    Retornable    NA      NA     2    NA    2
## 1401      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1402       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1403   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1404        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1405    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1406       500 ml Ret Individual    Retornable    NA      NA     1    NA    1
## 1407        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1408             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1409      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1410        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 1411        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1412      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1413      Lata 453 ml Individual No Retornable    NA      NA    NA     0    0
## 1414        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1415     1 Ltro. N.R. Individual No Retornable     2       2    NA    NA    2
## 1416      1.5 Lts. NR Individual No Retornable     6      NA     3    NA    3
## 1417   250 ml. NR PET Individual No Retornable     0       1    NA     1    1
## 1418        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1419     1 Ltro. N.R.   Familiar No Retornable     1      NA    NA    NA   NA
## 1420    12 Oz. NR Pet Individual No Retornable     2      NA    NA    NA   NA
## 1421      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1422     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1423     1.250 Lts NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1424     1.5 Lts. Ret   Familiar    Retornable    16      10    19    10   16
## 1425    12 Oz. NR Pet Individual No Retornable     3       2     2     2    2
## 1426 2.5 Lts. Ret Pet   Familiar    Retornable    25      32    21    25   25
## 1427 500 ml NR Vidrio Individual No Retornable     2       2    NA     2    4
## 1428       500 ml Ret Individual    Retornable    15      15    17    21   15
## 1429         8 Oz. NR Individual No Retornable     1      NA    NA     1    1
## 1430     1 Ltro. N.R. Individual No Retornable     1      NA    NA    NA   NA
## 1431     250 ml Tetra Individual No Retornable     1       1     1     1    2
## 1432    413 ml NR VId Individual No Retornable     1       0     1     1    1
## 1433    1 Ltro. Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 1434     200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 1435      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1436        2 Lts. NR   Familiar No Retornable     3      NA    NA     3   NA
## 1437   250 ml. NR PET Individual No Retornable     0       1    NA     1    1
## 1438        400 ml NR Individual No Retornable     0       1     1     1    1
## 1439       500 ml Ret Individual    Retornable     2       2    NA    NA    2
## 1440      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1441        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1442       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1443      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1444        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1445       2 Lts. Ret   Familiar    Retornable     3      NA    NA    NA   NA
## 1446   250 ml. NR PET Individual No Retornable     0       1    NA     1    1
## 1447        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1448       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1449        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 1450      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1451        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1452   250 ml. NR PET Individual No Retornable     0       1    NA     1    1
## 1453        400 ml NR Individual No Retornable    NA       1     1     1    3
## 1454       500 ml Ret Individual    Retornable     2       2    NA     4   NA
## 1455      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1456      LATA 680 ML Individual No Retornable     1      NA    NA    NA   NA
## 1457        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1458        600 ml NR Individual No Retornable    NA       1     3     3    3
## 1459      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1460        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1461     1 Ltro. N.R. Individual No Retornable     4       6     2     6    6
## 1462        600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 1463     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1464 500 ml NR Vidrio Individual No Retornable     2      NA    NA     8    2
## 1465         8 Oz. NR Individual No Retornable    NA      NA    NA     1   NA
## 1466 500 ml NR Vidrio Individual No Retornable     2       4     4     4    4
## 1467         8 Oz. NR Individual No Retornable    NA      NA     2     2    1
## 1468     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1469      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1470     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1471       12 Oz. Ret Individual    Retornable     2      NA    NA    NA    2
## 1472 500 ml NR Vidrio Individual No Retornable    NA       4     2     2    4
## 1473       500 ml Ret Individual    Retornable    25      32    51    38   23
## 1474         8 Oz. NR Individual No Retornable     1       3     2     2    5
## 1475      Lata 235 ml Individual No Retornable     1       1     1     1    1
## 1476        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1477     250 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1478    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1479    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 1480     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 1481        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 1482        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1483        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 1484       500 ml Ret Individual    Retornable     2       1     2     1   NA
## 1485        400 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1486       500 ml Ret Individual    Retornable    NA       1    NA     1   NA
## 1487        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 1488       500 ml Ret Individual    Retornable    NA       1    NA     1   NA
## 1489        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 1490       500 ml Ret Individual    Retornable     4       1    NA     1    8
## 1491        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1492        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1493     1 Ltro. N.R. Individual No Retornable    NA       2    NA     2    2
## 1494      1.5 Lts. NR Individual No Retornable    NA      10    NA    10   16
## 1495        600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 1496     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1497   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1498   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1499        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1500     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1501        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1502     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1503       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1504 500 ml NR Vidrio Individual No Retornable    NA       2    NA     2   NA
## 1505         8 Oz. NR Individual No Retornable    NA       1    NA    NA   NA
## 1506     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1507     1.250 Lts NR   Familiar No Retornable    NA       3    NA     3    3
## 1508      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1509     1.5 Lts. Ret   Familiar    Retornable     3      16    22    13   19
## 1510    12 Oz. NR Pet Individual No Retornable    NA       2     2     3    2
## 1511       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   17
## 1512      2.5 Lts. NR   Familiar No Retornable     4      NA     4    NA   NA
## 1513 2.5 Lts. Ret Pet   Familiar    Retornable    14      21    21    32   32
## 1514    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1515 500 ml NR Vidrio Individual No Retornable     4       4     4     4    4
## 1516       500 ml Ret Individual    Retornable    21      23    27    38   30
## 1517        600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 1518         8 Oz. NR Individual No Retornable    NA      NA    NA     1   NA
## 1519      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 1520      Lata 235 ml Individual No Retornable    NA       1     1     1    1
## 1521        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1522     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1523    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 1524     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 1525        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1526      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1527       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1528        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1529   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1530        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 1531       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1532      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1533        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1534       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1535      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1536       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 1537        2 Lts. NR   Familiar No Retornable    NA      NA     3     3   NA
## 1538   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1539       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1540      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1541       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 1542        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    3
## 1543       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1544        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1545      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1546    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1547        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1548        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1549   250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 1550   250 ml. NR PET Individual No Retornable     0       1    NA    NA   NA
## 1551     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1552 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 1553     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1554      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1555     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA     6   NA
## 1556    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1557       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1558 2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA    NA    NA   NA
## 1559 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 1560       500 ml Ret Individual    Retornable     2      NA    NA    NA    2
## 1561    500 ml NR PET Individual No Retornable    NA      NA     1    NA   NA
## 1562        600 ml NR Individual No Retornable    NA      NA     6    NA    8
## 1563    1 Ltro. Tetra   Familiar No Retornable    11      NA     4    NA   NA
## 1564     250 ml Tetra Individual No Retornable    NA      NA     2    NA   NA
## 1565   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 1566    413 ml NR VId Individual No Retornable     4      NA     4     3    5
## 1567     1 Ltro. N.R.   Familiar No Retornable     4      NA    NA    NA   NA
## 1568   300 ML. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1569    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1570      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1571        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1572   250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 1573        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 1574        600 ml NR Individual No Retornable     3       3     3     3   NA
## 1575        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1576        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 1577        600 ml NR Individual No Retornable     3       3    NA     5   NA
## 1578        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1579   250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 1580        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 1581        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 1582     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2     2    2
## 1583      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1584        2 Lts. NR   Familiar No Retornable     6      NA    NA    NA   NA
## 1585      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1586   250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 1587        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 1588    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1589        600 ml NR Individual No Retornable     3       3     3     3   NA
## 1590        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1591     1 Ltro. N.R. Individual No Retornable     2       6    NA     2    6
## 1592      1.5 Lts. NR Individual No Retornable    NA       3    NA     3    3
## 1593        600 ml NR Individual No Retornable     3       3    NA     3    5
## 1594        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1595     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 1596        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1597        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1598     1 Ltro. N.R.   Familiar No Retornable     1      NA    NA    NA    1
## 1599     1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 1600    12 Oz. NR Pet Individual No Retornable     0       0    NA     1    1
## 1601    237 ml NR Vid Individual No Retornable     1      NA    NA    NA   NA
## 1602     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2     2    2
## 1603 500 ml NR Vidrio Individual No Retornable     4       2     2     4    4
## 1604         8 Oz. NR Individual No Retornable    NA       1    NA    NA   NA
## 1605     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1606     1.250 Lts NR   Familiar No Retornable     5       8     8     8    5
## 1607      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1608     1.5 Lts. Ret   Familiar    Retornable     6       6     6    13   10
## 1609    12 Oz. NR Pet Individual No Retornable     8      11    15    15   15
## 1610       12 Oz. Ret Individual    Retornable    NA       2    NA    NA   NA
## 1611 2.5 Lts. Ret Pet   Familiar    Retornable    25      25    28    28   21
## 1612 500 ml NR Vidrio Individual No Retornable     6       6     8     6   17
## 1613       500 ml Ret Individual    Retornable    19      21    19    27   23
## 1614         8 Oz. NR Individual No Retornable     4       5     5     4    7
## 1615             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1616      Lata 235 ml Individual No Retornable     2       2     1     1    1
## 1617     1 Ltro. N.R. Individual No Retornable    NA       1    NA    NA    1
## 1618    500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 1619     250 ml Tetra Individual No Retornable     0       0    NA    NA    0
## 1620   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA    0
## 1621    413 ml NR VId Individual No Retornable    NA       2     2     3    2
## 1622     200 ml Tetra Individual No Retornable     0       0     0    NA    0
## 1623        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1624        2 Lts. NR   Familiar No Retornable    NA       1     1     1    1
## 1625        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1626    500 ml NR PET Individual No Retornable     1       1     1     2    1
## 1627       500 ml Ret Individual    Retornable     2      NA    NA    NA    1
## 1628      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1629        2 Lts. NR   Familiar No Retornable    NA       1     1     1    1
## 1630        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1631    500 ml NR PET Individual No Retornable     1       1     1     2    1
## 1632       500 ml Ret Individual    Retornable    NA      NA    NA    NA    1
## 1633      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1634        2 Lts. NR   Familiar No Retornable    NA       1     1    NA   NA
## 1635        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 1636    500 ml NR PET Individual No Retornable     1       1     1     2    1
## 1637       500 ml Ret Individual    Retornable    NA      NA    NA    NA    1
## 1638        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1639        2 Lts. NR   Familiar No Retornable    NA       3    NA     1    1
## 1640       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1641      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1642        2 Lts. NR   Familiar No Retornable    NA       1     1     1    1
## 1643        400 ml NR Individual No Retornable     0       0    NA    NA    0
## 1644    500 ml NR PET Individual No Retornable     1       1     1     2    1
## 1645       500 ml Ret Individual    Retornable    NA      NA    NA    NA    1
## 1646      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1647        600 ml NR Individual No Retornable     1       1    NA     3    3
## 1648        600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 1649 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 1650             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1651       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1652 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 1653       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1654             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1655      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1656    1 Ltro. Tetra   Familiar No Retornable     1      NA     1     1   NA
## 1657     250 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 1658    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1659   300 ML. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1660     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1661        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1662             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1663             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1664        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1665             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1666             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1667        600 ml NR Individual No Retornable     3       3     4     1    3
## 1668        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1669     1 Ltro. N.R. Individual No Retornable    NA       4    NA     4   NA
## 1670      1.5 Lts. NR Individual No Retornable     3       3    NA    10   NA
## 1671   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1672        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 1673   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1674     1 Ltro. N.R. Individual No Retornable    NA       1    NA    NA   NA
## 1675      1.5 Lts. NR Individual No Retornable     2      NA    NA    NA   NA
## 1676        600 ml NR Individual No Retornable    NA       1     1    NA   NA
## 1677   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 1678        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1679     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA    NA   NA
## 1680     1 Ltro. N.R. Individual No Retornable    NA      NA     2    NA   NA
## 1681    12 Oz. NR Pet Individual No Retornable     0       1     2    NA   NA
## 1682        2 Lts. NR   Familiar No Retornable    NA       3     3    NA   NA
## 1683      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1684 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 1685      Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 1686     1 Ltro. N.R.   Familiar No Retornable    NA       2     2    NA    2
## 1687 500 ml NR Vidrio Individual No Retornable     6       2     2     4    6
## 1688         8 Oz. NR Individual No Retornable     1       1    NA     1   NA
## 1689     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1690     1.250 Lts NR   Familiar No Retornable     5      NA     3     3    3
## 1691      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1692     1.5 Lts. Ret   Familiar    Retornable    13      10    16    13    3
## 1693    12 Oz. NR Pet Individual No Retornable     2       3     2     3   NA
## 1694       12 Oz. Ret Individual    Retornable     2       2     5    NA    2
## 1695       2 Lts. Ret   Familiar    Retornable     3       6     6     3    3
## 1696      2.5 Lts. NR   Familiar No Retornable     7      NA     4    11   18
## 1697 2.5 Lts. Ret Pet   Familiar    Retornable    25      39    32    35   28
## 1698    500 ml NR PET Individual No Retornable     2       4     2     4   NA
## 1699 500 ml NR Vidrio Individual No Retornable     6       2     4     4    2
## 1700       500 ml Ret Individual    Retornable    11      13     8    13    8
## 1701         8 Oz. NR Individual No Retornable     1       1     1     1    1
## 1702      Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 1703     1 Ltro. N.R. Individual No Retornable     2       1    NA     1   NA
## 1704    500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 1705        600 ml NR Individual No Retornable     3       1    NA     3   NA
## 1706    1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1707     250 ml Tetra Individual No Retornable     1       0    NA    NA   NA
## 1708   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 1709    413 ml NR VId Individual No Retornable     1       2    NA     2    1
## 1710     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 1711   300 ML. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1712    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA    NA   NA
## 1713    1 Ltro. Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 1714     200 ml Tetra Individual No Retornable     1       1     0    NA   NA
## 1715      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1716     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1717        2 Lts. NR   Familiar No Retornable     1       3    NA     3    1
## 1718        400 ml NR Individual No Retornable    NA       0    NA    NA    0
## 1719       500 ml Ret Individual    Retornable    NA       2    NA     2   NA
## 1720      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1721     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1722        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA    1
## 1723        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1724       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1725      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1726        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 1727       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1728     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1729       12 Oz. Ret Individual    Retornable     2       2     2    NA    2
## 1730        2 Lts. NR   Familiar No Retornable     1       3     6     3    4
## 1731        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 1732       500 ml Ret Individual    Retornable    NA      NA     2     2   NA
## 1733      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1734      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1735     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1736        2 Lts. NR   Familiar No Retornable     1       3    NA     6    1
## 1737        400 ml NR Individual No Retornable    NA       1     1    NA    0
## 1738       500 ml Ret Individual    Retornable     2       2     2    NA    2
## 1739      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1740    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1741        600 ml NR Individual No Retornable    NA       3     1    NA    3
## 1742      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1743      Lata 453 ml Individual No Retornable    NA      NA     1     2   NA
## 1744        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1745     1 Ltro. N.R. Individual No Retornable     0       6    NA    NA   NA
## 1746        600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 1747   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1748     1 Ltro. N.R.   Familiar No Retornable     0      NA    NA    NA   NA
## 1749        600 ml NR Individual No Retornable    NA      NA    -1    NA   NA
## 1750      Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 1751 500 ml NR Vidrio Individual No Retornable    NA       2     2    NA    2
## 1752     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1753     1.250 Lts NR   Familiar No Retornable     3      NA     3     3    3
## 1754      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1755     1.5 Lts. Ret   Familiar    Retornable     3      NA    NA    NA   NA
## 1756    12 Oz. NR Pet Individual No Retornable     3       3     3     5   NA
## 1757       12 Oz. Ret Individual    Retornable    NA      NA     2    NA   NA
## 1758      2.5 Lts. NR   Familiar No Retornable     4       4     4     4    4
## 1759 2.5 Lts. Ret Pet   Familiar    Retornable    21      21    11    21   21
## 1760 500 ml NR Vidrio Individual No Retornable     4       4     4     4    8
## 1761       500 ml Ret Individual    Retornable     2      NA     2    NA   NA
## 1762         8 Oz. NR Individual No Retornable     1      NA    NA    NA   NA
## 1763             Lata Individual No Retornable     2      NA     2    NA    2
## 1764    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1765     250 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 1766    413 ml NR VId Individual No Retornable    NA      NA    NA    NA    0
## 1767    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1768     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1769      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1770        2 Lts. NR   Familiar No Retornable    NA       1    NA    NA    1
## 1771   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 1772        400 ml NR Individual No Retornable     1       0     1     1    0
## 1773       500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 1774        2 Lts. NR   Familiar No Retornable    NA       1    NA    NA    1
## 1775        400 ml NR Individual No Retornable     0       0     0     0    0
## 1776       500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 1777        2 Lts. NR   Familiar No Retornable    NA       1    NA    NA    4
## 1778   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 1779        400 ml NR Individual No Retornable     1       0     0     0   NA
## 1780       500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 1781        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1782        2 Lts. NR   Familiar No Retornable    NA       1    NA    NA    1
## 1783        400 ml NR Individual No Retornable     1       1     1     2    2
## 1784       500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 1785        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1786      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1787        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1788     1 Ltro. N.R. Individual No Retornable     4       4    11     6    4
## 1789      1.5 Lts. NR Individual No Retornable     6      NA    10     6   13
## 1790        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1791        600 ml NR Individual No Retornable     3       3     3     5    5
## 1792     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1793        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1794       12 Oz. Ret Individual    Retornable    NA      NA     2    NA   NA
## 1795   250 ml. NR PET Individual No Retornable    NA       0    NA     0    0
## 1796        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1797   250 ml. NR PET Individual No Retornable    NA       1     1    NA    1
## 1798     1 Ltro. N.R.   Familiar No Retornable     1      NA    NA    NA    1
## 1799     1 Ltro. N.R. Individual No Retornable    NA      NA     2     2   NA
## 1800    12 Oz. NR Pet Individual No Retornable    NA      NA     1     1    1
## 1801        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 1802        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 1803      Lata 450 ml Individual No Retornable    NA      NA    NA    NA    1
## 1804    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1805    237 ml NR Vid Individual No Retornable    NA      NA    NA     1   NA
## 1806     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     4    2
## 1807 500 ml NR Vidrio Individual No Retornable     2       2     4     4    2
## 1808         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1809     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1810 500 ml NR Vidrio Individual No Retornable    NA       2    NA    NA   NA
## 1811         8 Oz. NR Individual No Retornable     1      NA    NA    NA   NA
## 1812     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1813     1.250 Lts NR   Familiar No Retornable     5      11    13     8   13
## 1814      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1815     1.5 Lts. Ret   Familiar    Retornable    25      16    22    25   29
## 1816    12 Oz. NR Pet Individual No Retornable     3       2     5     5    3
## 1817       12 Oz. Ret Individual    Retornable     3       2    NA    NA   NA
## 1818        2 Lts. NR   Familiar No Retornable    NA      -3    NA    NA   NA
## 1819      2.5 Lts. NR   Familiar No Retornable    18      11    25    28   18
## 1820 2.5 Lts. Ret Pet   Familiar    Retornable   109      49    74    63   92
## 1821 500 ml NR Vidrio Individual No Retornable    11       4    11    15   13
## 1822       500 ml Ret Individual    Retornable    38      34    42    38   42
## 1823         8 Oz. NR Individual No Retornable     3       2     1     2    3
## 1824             Lata Individual No Retornable    NA      NA    NA    NA    2
## 1825      Lata 16 Oz. Individual No Retornable    NA       2     2     2   NA
## 1826      Lata 235 ml Individual No Retornable     1       4     1     2    1
## 1827     1 Ltro. N.R. Individual No Retornable     2      NA     1     1    2
## 1828        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1829     250 ml Tetra Individual No Retornable     0       0     1     1    0
## 1830    413 ml NR VId Individual No Retornable     3       1     2     2    2
## 1831      Lata 335 ml Individual No Retornable    NA      NA    NA    NA    0
## 1832      Lata 453 ml Individual No Retornable     0      NA    NA    NA   NA
## 1833   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1834     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1835   300 ML. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 1836    1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 1837     200 ml Tetra Individual No Retornable     0      NA     0     0    0
## 1838     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1839        2 Lts. NR   Familiar No Retornable     3      NA     3    NA   NA
## 1840      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1841   250 ml. NR PET Individual No Retornable    NA       0    NA     0    0
## 1842        400 ml NR Individual No Retornable     0      NA    NA     1   NA
## 1843       500 ml Ret Individual    Retornable    NA       2     3     3    1
## 1844        600 ml NR Individual No Retornable    NA       1    NA     1   NA
## 1845     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1846        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1847       500 ml Ret Individual    Retornable    NA      NA     1     1    1
## 1848       12 Oz. Ret Individual    Retornable     2      NA    NA    NA   NA
## 1849        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1850      2.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA   NA
## 1851   250 ml. NR PET Individual No Retornable    NA       0    NA     0    0
## 1852        400 ml NR Individual No Retornable    NA      NA     1    NA    0
## 1853       500 ml Ret Individual    Retornable    NA      NA     1     1    1
## 1854        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1855        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1856     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1857        2 Lts. NR   Familiar No Retornable     3      NA     3     6    3
## 1858       500 ml Ret Individual    Retornable     2      NA     2     2    2
## 1859     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1860       12 Oz. Ret Individual    Retornable     2      NA    NA    NA   NA
## 1861        2 Lts. NR   Familiar No Retornable     3       3     6     6    6
## 1862      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1863   250 ml. NR PET Individual No Retornable    NA       0    NA     0    0
## 1864        400 ml NR Individual No Retornable    NA       0     0     0   NA
## 1865       500 ml Ret Individual    Retornable    NA       2     1     1    3
## 1866        600 ml NR Individual No Retornable     1       1     2     1    1
## 1867        600 ml NR Individual No Retornable    NA      NA     1     1    3
## 1868      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1869     1 Ltro. N.R. Individual No Retornable    NA       4    NA    NA   NA
## 1870      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA    3
## 1871        600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 1872        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1873   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1874 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 1875         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1876    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1877      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1878 2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA    NA    NA   NA
## 1879 500 ml NR Vidrio Individual No Retornable     2      NA    NA     2    2
## 1880       500 ml Ret Individual    Retornable    NA      NA     2    NA    2
## 1881         8 Oz. NR Individual No Retornable    NA      NA    NA     1    1
## 1882             Lata Individual No Retornable     2      NA    NA    NA   NA
## 1883      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1884     250 ml Tetra Individual No Retornable    NA      NA    NA    NA    1
## 1885    413 ml NR VId Individual No Retornable    NA      NA     1    NA   NA
## 1886    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1887        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1888      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1889       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1890        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1891      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1892        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1893       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1894      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1895        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 1896       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1897      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1898        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1899       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1900        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1901      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1902        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1903      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1904        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1905     1 Ltro. N.R. Individual No Retornable    NA       4     2    NA    2
## 1906      1.5 Lts. NR Individual No Retornable    NA       3     3    NA    6
## 1907        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1908        600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 1909        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1910   250 ml. NR PET Individual No Retornable    NA       1     1    NA   NA
## 1911     1 Ltro. N.R.   Familiar No Retornable    NA       2     1    NA   NA
## 1912     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    2
## 1913    12 Oz. NR Pet Individual No Retornable    NA      NA     2    NA   NA
## 1914        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 1915      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1916     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 1917     1.5 Lts. Ret   Familiar    Retornable    10       6     3    13    3
## 1918    12 Oz. NR Pet Individual No Retornable    NA      NA    NA     2   NA
## 1919       2 Lts. Ret   Familiar    Retornable     6       8     3     6    3
## 1920      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1921 2.5 Lts. Ret Pet   Familiar    Retornable    42      35    28    21   35
## 1922 500 ml NR Vidrio Individual No Retornable     2       2     2     4    2
## 1923       500 ml Ret Individual    Retornable    23      17    25    30   19
## 1924         8 Oz. NR Individual No Retornable    NA      NA    NA     1    1
## 1925      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 1926        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1927     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1928     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 1929    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 1930     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 1931        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1932        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1933       500 ml Ret Individual    Retornable    NA      NA    NA     2   NA
## 1934        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1935        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1936       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1937        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1938        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1939        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1940       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1941        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1942       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1943        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1944        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1945        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1946       500 ml Ret Individual    Retornable     2      NA     2     2   NA
## 1947        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1948     1 Ltro. N.R. Individual No Retornable     2       2    NA    NA   NA
## 1949       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1950   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1951        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1952 500 ml NR Vidrio Individual No Retornable     2       2    NA     2    2
## 1953         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1954    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1955     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1956     1.250 Lts NR   Familiar No Retornable     3       5     5     8    8
## 1957      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1958     1.5 Lts. Ret   Familiar    Retornable     3      NA    NA     3   NA
## 1959    12 Oz. NR Pet Individual No Retornable     3       2     2     3    2
## 1960      2.5 Lts. NR   Familiar No Retornable     4       7    18    14   14
## 1961 2.5 Lts. Ret Pet   Familiar    Retornable    11      11    14    21   25
## 1962    500 ml NR PET Individual No Retornable    NA      NA     2    NA   NA
## 1963 500 ml NR Vidrio Individual No Retornable     4       4     4     8    4
## 1964       500 ml Ret Individual    Retornable    15      15    13    30   11
## 1965         8 Oz. NR Individual No Retornable     2       2     2     2    2
## 1966      Lata 16 Oz. Individual No Retornable     4       2     2     2    2
## 1967        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1968    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1969     250 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 1970   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 1971    413 ml NR VId Individual No Retornable     3       2     3    NA    1
## 1972   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1973      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1974      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 1975        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 1976      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1977        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1978       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1979      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1980     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1981        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 1982      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1983       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1984      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1985        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 1986      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1987        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1988       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1989      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1990        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 1991      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1992        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1993       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1994        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1995      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1996      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1997        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1998   300 ML. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 1999   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2000        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2001   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 2002        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2003    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2004       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2005        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2006     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2007      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2008     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2009    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2010      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2011 2.5 Lts. Ret Pet   Familiar    Retornable     4       7    NA    14    4
## 2012        400 ml NR Individual No Retornable     2       3     2     3    2
## 2013    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2014       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2015        710 ml NR Individual No Retornable     6       6     3     6    9
## 2016         8 Oz. NR Individual No Retornable     1      NA    NA    NA   NA
## 2017    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 2018    413 ml NR VId Individual No Retornable    NA      NA    NA    NA    0
## 2019        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2020   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2021        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 2022        600 ml NR Individual No Retornable    NA       1    NA     2   NA
## 2023      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 2024        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2025        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 2026        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2027      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 2028        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2029   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2030        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 2031        600 ml NR Individual No Retornable    NA       1    NA     1   NA
## 2032      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 2033        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA    3
## 2034      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2035   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2036        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 2037        600 ml NR Individual No Retornable    NA       1    NA     1   NA
## 2038      Lata 235 ml Individual No Retornable    NA      NA    NA     0   NA
## 2039        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2040        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2041     1 Ltro. N.R. Individual No Retornable     4       2    NA    NA   NA
## 2042      1.5 Lts. NR Individual No Retornable     3       3    NA    NA   NA
## 2043        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2044        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2045   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 2046   250 ml. NR PET Individual No Retornable     0       1     1     1    2
## 2047     1 Ltro. N.R.   Familiar No Retornable    -2       1    NA    NA   NA
## 2048    12 Oz. NR Pet Individual No Retornable     0       0    NA    NA   NA
## 2049      Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 2050     1 Ltro. N.R.   Familiar No Retornable     2       4     2     4    2
## 2051        2 Lts. NR   Familiar No Retornable     3       6     3     3    6
## 2052 500 ml NR Vidrio Individual No Retornable    NA       2    NA     2   NA
## 2053         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2054     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2055     1.250 Lts NR   Familiar No Retornable     5       3     3     3   NA
## 2056      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2057     1.5 Lts. Ret   Familiar    Retornable     6       3    10     6   NA
## 2058    12 Oz. NR Pet Individual No Retornable     2       3     2     2   NA
## 2059       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2060       2 Lts. Ret   Familiar    Retornable     3       6     3     6    3
## 2061      2.5 Lts. NR   Familiar No Retornable     4      NA     4    NA    7
## 2062 2.5 Lts. Ret Pet   Familiar    Retornable    25      35    32    32   28
## 2063 500 ml NR Vidrio Individual No Retornable     2       2     4     4   NA
## 2064       500 ml Ret Individual    Retornable     8      11    13    23    2
## 2065         8 Oz. NR Individual No Retornable     3      NA     2     2    1
## 2066     1 Ltro. N.R. Individual No Retornable     1       1    NA    NA   NA
## 2067        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2068     250 ml Tetra Individual No Retornable     0       0     0     0   NA
## 2069    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 2070   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2071    1 Ltro. Tetra   Familiar No Retornable    NA      NA     2     2    1
## 2072    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2073     200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 2074        600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 2075        2 Lts. NR   Familiar No Retornable     2      NA     1    NA   NA
## 2076   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 2077        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2078       500 ml Ret Individual    Retornable     1       1     1    NA    1
## 2079        600 ml NR Individual No Retornable     1       1     2     1    1
## 2080      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 2081        2 Lts. NR   Familiar No Retornable     2      NA     1    NA   NA
## 2082       500 ml Ret Individual    Retornable     1       1     1    NA    1
## 2083      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 2084        2 Lts. NR   Familiar No Retornable     2      NA     1    NA   NA
## 2085   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 2086        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 2087    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2088       500 ml Ret Individual    Retornable     1       1     1    NA    1
## 2089        600 ml NR Individual No Retornable     1       1     1     1   NA
## 2090       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2091      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 2092        2 Lts. NR   Familiar No Retornable     2       3     1    NA   NA
## 2093   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 2094        400 ml NR Individual No Retornable    NA       1     1    NA   NA
## 2095    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2096       500 ml Ret Individual    Retornable     1       1     1    NA    1
## 2097        600 ml NR Individual No Retornable     1       1     1     1    1
## 2098      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 2099        600 ml NR Individual No Retornable     1       3     3     3    4
## 2100      Lata 453 ml Individual No Retornable    NA      NA     0    NA   NA
## 2101        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2102        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2103     1 Ltro. N.R. Individual No Retornable     2       2    NA    NA   NA
## 2104      1.5 Lts. NR Individual No Retornable     3       3    NA    NA   NA
## 2105        600 ml NR Individual No Retornable     3       5     3     3    3
## 2106        600 ml NR Individual No Retornable     1       1     1     1    1
## 2107     1 Ltro. N.R.   Familiar No Retornable     1       1    NA     1   NA
## 2108     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2109    12 Oz. NR Pet Individual No Retornable     0       0    NA    NA   NA
## 2110     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2111     1.250 Lts NR   Familiar No Retornable    NA      NA    NA     3   NA
## 2112      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2113     1.5 Lts. Ret   Familiar    Retornable     4       3    10     6    6
## 2114    12 Oz. NR Pet Individual No Retornable     2       2    NA     2   NA
## 2115       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2116      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2117 2.5 Lts. Ret Pet   Familiar    Retornable     4       4    NA    NA   NA
## 2118    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2119 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 2120       500 ml Ret Individual    Retornable    36      34    46    59   53
## 2121        710 ml NR Individual No Retornable     3       3     6     3    3
## 2122         8 Oz. NR Individual No Retornable    NA       1    NA    NA    1
## 2123             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2124     1 Ltro. N.R. Individual No Retornable     1       1    NA    NA   NA
## 2125        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 2126     250 ml Tetra Individual No Retornable     0       0     0    NA   NA
## 2127   250 ML. NR VID Individual No Retornable     0      NA    NA    NA   NA
## 2128    413 ml NR VId Individual No Retornable     2       1     0     1    2
## 2129   250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 2130   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2131    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2132     200 ml Tetra Individual No Retornable     0       0    NA    NA    0
## 2133        600 ml NR Individual No Retornable     1       1     2     2    1
## 2134      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2135        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2136        400 ml NR Individual No Retornable    NA       2    NA    NA   NA
## 2137       500 ml Ret Individual    Retornable     1       1     3    NA    2
## 2138        600 ml NR Individual No Retornable     2      NA     1     3    1
## 2139      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 2140        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2141        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 2142       500 ml Ret Individual    Retornable     1       1     1    NA   NA
## 2143      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 2144        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2145        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2146       500 ml Ret Individual    Retornable     1       1     1    NA   NA
## 2147        600 ml NR Individual No Retornable     1       1     1     1    2
## 2148        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2149        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2150       500 ml Ret Individual    Retornable    NA      NA    NA     6    2
## 2151      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 2152     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA    NA   NA
## 2153        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2154       500 ml Ret Individual    Retornable     1       1     1    NA   NA
## 2155        600 ml NR Individual No Retornable     1       2     2     2    3
## 2156      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 2157    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2158        600 ml NR Individual No Retornable     1       1     1     1    2
## 2159      Lata 453 ml Individual No Retornable    NA      NA     0     0   NA
## 2160        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2161      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2162        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2163     1 Ltro. N.R. Individual No Retornable     8       8     8     4   15
## 2164      1.5 Lts. NR Individual No Retornable    19      22    22    19   32
## 2165   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2166        5 Lts. NR   Familiar No Retornable     7       4     7     4    7
## 2167        600 ml NR Individual No Retornable    10      NA     3    NA    3
## 2168        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2169   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2170   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2171    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2172   250 ml. NR PET Individual No Retornable     3       3     4     1    3
## 2173        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2174     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 2175    12 Oz. NR Pet Individual No Retornable    NA       1     1     1    1
## 2176        2 Lts. NR   Familiar No Retornable     8       8     6     3    6
## 2177      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2178    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2179 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 2180      Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 2181     1 Ltro. N.R.   Familiar No Retornable    13       6    17     6   17
## 2182        2 Lts. NR   Familiar No Retornable    NA      14    14    23   14
## 2183       2 Lts. Ret   Familiar    Retornable    11      14    17    11   11
## 2184      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2185 500 ml NR Vidrio Individual No Retornable    13      13    13    13    8
## 2186         8 Oz. NR Individual No Retornable    NA       1     2    NA    2
## 2187             Lata Individual No Retornable     2      NA    NA     2   NA
## 2188     1 Ltro. N.R.   Familiar No Retornable    11      11    17    13   17
## 2189        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2190 500 ml NR Vidrio Individual No Retornable     2       2     4     2    2
## 2191     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA    NA    2
## 2192     1.250 Lts NR   Familiar No Retornable    26      32    42    37   29
## 2193      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2194     1.5 Lts. Ret   Familiar    Retornable    19      10    22    10   16
## 2195    12 Oz. NR Pet Individual No Retornable    14      12    14    11    8
## 2196        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 2197      2.5 Lts. NR   Familiar No Retornable     7      25    32    28   46
## 2198 2.5 Lts. Ret Pet   Familiar    Retornable    81      74   102    74   85
## 2199    500 ml NR PET Individual No Retornable     4       4     6     6    2
## 2200 500 ml NR Vidrio Individual No Retornable    21      21    27    23   27
## 2201       500 ml Ret Individual    Retornable    57      51    66    68   63
## 2202         8 Oz. NR Individual No Retornable     6       4     5     6    8
## 2203             Lata Individual No Retornable    NA      NA    NA    NA    1
## 2204      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 2205      Lata 235 ml Individual No Retornable     4       1     4     1    2
## 2206     1 Ltro. N.R. Individual No Retornable     1       1     2     2    1
## 2207    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2208        600 ml NR Individual No Retornable     1      NA    NA     2   NA
## 2209    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 2210     250 ml Tetra Individual No Retornable    NA       0     0     0    0
## 2211    413 ml NR VId Individual No Retornable     4       1     4     4    5
## 2212     1 Ltro. N.R.   Familiar No Retornable     2      NA     2    NA   NA
## 2213   300 ML. NR PET Individual No Retornable     0      NA     0    NA   NA
## 2214     200 ml Tetra Individual No Retornable    NA       0     0     0    0
## 2215        600 ml NR Individual No Retornable     1       1     1     2    2
## 2216        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2217      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2218      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2219     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2220        2 Lts. NR   Familiar No Retornable    NA       1     3    NA    1
## 2221   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2222        400 ml NR Individual No Retornable     2       2     2     2    1
## 2223       500 ml Ret Individual    Retornable     2       2     2     1    1
## 2224        600 ml NR Individual No Retornable    NA      NA    NA    NA   -1
## 2225      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2226      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2227     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2228        2 Lts. NR   Familiar No Retornable    NA       1    NA    NA    1
## 2229        400 ml NR Individual No Retornable     1       1    NA     2    0
## 2230       500 ml Ret Individual    Retornable     2       2     2     1    1
## 2231        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2232      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2233      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2234        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2235      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    2
## 2236   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2237        400 ml NR Individual No Retornable     1       1     2     2    1
## 2238       500 ml Ret Individual    Retornable     2       2     2     1    1
## 2239        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2240        600 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 2241     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2242        2 Lts. NR   Familiar No Retornable    NA       1    NA    NA    1
## 2243        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 2244       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2245      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2246      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2247     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2248        2 Lts. NR   Familiar No Retornable    NA       1     3     3    1
## 2249   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2250        400 ml NR Individual No Retornable     2       2     2     2    1
## 2251       500 ml Ret Individual    Retornable     2       2     2     1    1
## 2252        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2253             Lata Individual No Retornable    NA      NA    NA    NA    0
## 2254      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2255    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2256        600 ml NR Individual No Retornable     3       4    NA     6    5
## 2257      Lata 453 ml Individual No Retornable    NA      NA     1    NA   NA
## 2258        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2259        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2260        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2261     1 Ltro. N.R. Individual No Retornable    NA       4     8     8    2
## 2262      1.5 Lts. NR Individual No Retornable    NA       6     6     3   10
## 2263        600 ml NR Individual No Retornable    NA       5     3     3    3
## 2264        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2265        600 ml NR Individual No Retornable    NA      NA     1     1    2
## 2266   250 ml. NR PET Individual No Retornable     3      NA     3     1    1
## 2267        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2268        2 Lts. NR   Familiar No Retornable    NA       3    NA     8    3
## 2269      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 2270     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2271 500 ml NR Vidrio Individual No Retornable     4       2    NA     4    2
## 2272     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2273     1.250 Lts NR   Familiar No Retornable     5       8     5     3    5
## 2274      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2275     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2276    12 Oz. NR Pet Individual No Retornable     3       6     5     5    5
## 2277      2.5 Lts. NR   Familiar No Retornable    NA       7    NA     7    4
## 2278 2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA    NA    NA   NA
## 2279 500 ml NR Vidrio Individual No Retornable     4       4     8     6    6
## 2280       500 ml Ret Individual    Retornable    13      13    15    19   15
## 2281             Lata Individual No Retornable     2       2    NA    NA    2
## 2282      Lata 235 ml Individual No Retornable     2       2     3     3    2
## 2283        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2284     250 ml Tetra Individual No Retornable     0       1    NA     1    1
## 2285    413 ml NR VId Individual No Retornable     3       2     1     1    2
## 2286    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2287     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2288        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2289        400 ml NR Individual No Retornable     0      NA     0    NA    1
## 2290       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2291        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    3
## 2292        400 ml NR Individual No Retornable     0      NA     0    NA    1
## 2293       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2294        2 Lts. NR   Familiar No Retornable    NA       3     6    NA    3
## 2295        400 ml NR Individual No Retornable     0       0    NA     0    0
## 2296       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2297        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2298        400 ml NR Individual No Retornable     1       0     1     1    1
## 2299       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2300        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2301        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2302     1 Ltro. N.R. Individual No Retornable     2       2     2    NA    2
## 2303      1.5 Lts. NR Individual No Retornable     3       3     3    NA    3
## 2304   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2305   300 ML. NR PET Individual No Retornable     1       1    NA     0   NA
## 2306   250 ml. NR PET Individual No Retornable     0       1     0     0   NA
## 2307        600 ml NR Individual No Retornable     1      NA     1     2    1
## 2308   250 ml. NR PET Individual No Retornable     1       1    NA    NA    2
## 2309        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2310     1 Ltro. N.R.   Familiar No Retornable    NA       1     1    NA   NA
## 2311     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 2312    12 Oz. NR Pet Individual No Retornable     1       2     1    NA    2
## 2313        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2314      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 2315    500 ml NR PET Individual No Retornable    NA      NA     1    NA   NA
## 2316    237 ml NR Vid Individual No Retornable    NA       1    NA    NA   NA
## 2317 500 ml NR Vidrio Individual No Retornable     2      NA     2     2   NA
## 2318     1 Ltro. N.R.   Familiar No Retornable     8       6     2     8    8
## 2319        2 Lts. NR   Familiar No Retornable     3       3     3     3   NA
## 2320      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     7   NA
## 2321 500 ml NR Vidrio Individual No Retornable     6       4     4     6    4
## 2322         8 Oz. NR Individual No Retornable     1      NA     1     1    1
## 2323             Lata Individual No Retornable     2      NA    NA     2   NA
## 2324 500 ml NR Vidrio Individual No Retornable     2       2     2     2    2
## 2325     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 2326     1.250 Lts NR   Familiar No Retornable    11       8    16    21   16
## 2327      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2328     1.5 Lts. Ret   Familiar    Retornable     6       3    10     6   10
## 2329    12 Oz. NR Pet Individual No Retornable     3       5     5     2    5
## 2330       12 Oz. Ret Individual    Retornable    NA      NA     2    NA   NA
## 2331        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2332       2 Lts. Ret   Familiar    Retornable    NA       3    NA    NA   NA
## 2333      2.5 Lts. NR   Familiar No Retornable     7      14    11    18   21
## 2334 2.5 Lts. Ret Pet   Familiar    Retornable    18      21    21    32   21
## 2335    500 ml NR PET Individual No Retornable     4       4     4     2    4
## 2336 500 ml NR Vidrio Individual No Retornable    13      11    11    11   13
## 2337       500 ml Ret Individual    Retornable    17      19    36    32   25
## 2338        600 ml NR Individual No Retornable     3       3     3    NA    5
## 2339         8 Oz. NR Individual No Retornable     3       4     5     6    6
## 2340             Lata Individual No Retornable    NA       2    NA     2    2
## 2341      Lata 16 Oz. Individual No Retornable    NA       2    NA    NA    2
## 2342      Lata 235 ml Individual No Retornable     2       2     1     2    1
## 2343     1 Ltro. N.R. Individual No Retornable     1       1     1    NA    1
## 2344    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2345        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2346     250 ml Tetra Individual No Retornable     0       1     0    NA   NA
## 2347   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 2348    413 ml NR VId Individual No Retornable     4       4     4     3    3
## 2349   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2350     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2351    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2352     200 ml Tetra Individual No Retornable     0       0     1    NA    0
## 2353        600 ml NR Individual No Retornable     2       1     1     3    1
## 2354        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2355      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2356     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2357        2 Lts. NR   Familiar No Retornable    NA       1     1    NA   NA
## 2358      2.5 Lts. NR   Familiar No Retornable     4       4     5     7    5
## 2359   250 ml. NR PET Individual No Retornable     0       1     0     0   NA
## 2360        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 2361       500 ml Ret Individual    Retornable     2      NA     1    NA   NA
## 2362        600 ml NR Individual No Retornable     3       3     3     3    1
## 2363      Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 2364     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2365        2 Lts. NR   Familiar No Retornable    NA       1     1    NA   NA
## 2366        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2367       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 2368        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2369      Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 2370        2 Lts. NR   Familiar No Retornable    NA       1     1    NA    3
## 2371      2.5 Lts. NR   Familiar No Retornable     2       5     2     2    2
## 2372   250 ml. NR PET Individual No Retornable     0       1     0     0   NA
## 2373        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2374       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 2375        600 ml NR Individual No Retornable     3       2     3     1    2
## 2376        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 2377     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2378        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2379      Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 2380     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2381        2 Lts. NR   Familiar No Retornable     3       1     1    NA    3
## 2382      2.5 Lts. NR   Familiar No Retornable     4       7     2     7    2
## 2383   250 ml. NR PET Individual No Retornable     0       1     0     0   NA
## 2384        400 ml NR Individual No Retornable     0      NA     0    NA    0
## 2385       500 ml Ret Individual    Retornable    NA       2     1    NA    2
## 2386        600 ml NR Individual No Retornable     3       3     4     5    4
## 2387      Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 2388    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2389        600 ml NR Individual No Retornable     3       3     1     1    1
## 2390      Lata 453 ml Individual No Retornable    NA      NA     0     1   NA
## 2391        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2392        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2393     1 Ltro. N.R. Individual No Retornable    11       4    NA    NA   NA
## 2394      1.5 Lts. NR Individual No Retornable    13       6    NA    NA   NA
## 2395        600 ml NR Individual No Retornable     5      NA    NA    NA   NA
## 2396   300 ML. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 2397   250 ml. NR PET Individual No Retornable     2       1     4    NA   NA
## 2398     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     1   NA
## 2399     1 Ltro. N.R. Individual No Retornable     2       4    NA    NA   NA
## 2400    12 Oz. NR Pet Individual No Retornable    NA      NA    NA     1   NA
## 2401        2 Lts. NR   Familiar No Retornable     6       6     3    NA   NA
## 2402      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 2403     1 Ltro. N.R.   Familiar No Retornable     6       4     2     4   NA
## 2404        2 Lts. NR   Familiar No Retornable     3       3    NA    NA   NA
## 2405        400 ml NR Individual No Retornable     2       3    NA    NA   NA
## 2406 500 ml NR Vidrio Individual No Retornable     6      13     4     4    2
## 2407         8 Oz. NR Individual No Retornable     2       1     1     1   NA
## 2408     1 Ltro. N.R.   Familiar No Retornable     6       2     2    NA   NA
## 2409        2 Lts. NR   Familiar No Retornable     6       6    NA    NA   NA
## 2410 500 ml NR Vidrio Individual No Retornable     4       4     2     2   NA
## 2411     1 Ltro. N.R.   Familiar No Retornable     8       6     8     4   NA
## 2412     1.250 Lts NR   Familiar No Retornable     5       3    NA     5   NA
## 2413      1.5 Lts. NR   Familiar No Retornable     6       6     3    NA   NA
## 2414     1.5 Lts. Ret   Familiar    Retornable    NA       3    NA     3   NA
## 2415    12 Oz. NR Pet Individual No Retornable     2       2    NA     2   NA
## 2416        2 Lts. NR   Familiar No Retornable    11      14    11    NA   NA
## 2417      2.5 Lts. NR   Familiar No Retornable    11      18    14    11    4
## 2418 2.5 Lts. Ret Pet   Familiar    Retornable    70      63    46    28    4
## 2419        400 ml NR Individual No Retornable     3       3     3     2   NA
## 2420 500 ml NR Vidrio Individual No Retornable    11      21     6     4    4
## 2421       500 ml Ret Individual    Retornable    40      42    30    19    6
## 2422         8 Oz. NR Individual No Retornable     3       6     2     2   NA
## 2423             Lata Individual No Retornable    NA       2    NA    NA   NA
## 2424      Lata 235 ml Individual No Retornable     3       3    NA     2   NA
## 2425        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2426     1 Ltro. N.R. Individual No Retornable     1       1    NA     1   NA
## 2427    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2428        600 ml NR Individual No Retornable     1       3    NA    NA   NA
## 2429    1 Ltro. Tetra   Familiar No Retornable     2       1     1    NA   NA
## 2430     250 ml Tetra Individual No Retornable    NA       0    NA     0   NA
## 2431   250 ML. NR VID Individual No Retornable     1       1     1    NA   NA
## 2432    413 ml NR VId Individual No Retornable     1       3     1    NA   NA
## 2433      Lata 335 ml Individual No Retornable     1      NA    NA    NA   NA
## 2434     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA    NA   NA
## 2435   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2436     200 ml Tetra Individual No Retornable    NA       0    NA     0    1
## 2437        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2438        2 Lts. NR   Familiar No Retornable     1       1    NA    NA   NA
## 2439        400 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2440       500 ml Ret Individual    Retornable    NA       1    NA    NA   NA
## 2441        600 ml NR Individual No Retornable     1       2    NA    NA   NA
## 2442      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 2443        2 Lts. NR   Familiar No Retornable     1       1    NA    NA   NA
## 2444        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 2445       500 ml Ret Individual    Retornable    NA       1    NA    NA   NA
## 2446      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 2447        400 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2448       500 ml Ret Individual    Retornable    NA       1    NA    NA   NA
## 2449        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2450        2 Lts. NR   Familiar No Retornable     6       1    NA    NA   NA
## 2451      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 2452       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 2453        2 Lts. NR   Familiar No Retornable     1       1    NA    NA   NA
## 2454        400 ml NR Individual No Retornable    NA       0    NA     1   NA
## 2455       500 ml Ret Individual    Retornable    NA       1    NA    NA   NA
## 2456        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 2457      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 2458    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2459        600 ml NR Individual No Retornable     3       1    NA    NA   NA
## 2460        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2461     1 Ltro. N.R. Individual No Retornable    11       8    11    NA   NA
## 2462        600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 2463   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2464      Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2465     1 Ltro. N.R.   Familiar No Retornable     2       2     2     2    2
## 2466       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    3
## 2467        400 ml NR Individual No Retornable    NA      NA    NA     2   NA
## 2468 500 ml NR Vidrio Individual No Retornable     2       2     2     2   NA
## 2469        600 ml NR Individual No Retornable    NA      NA    NA     5    5
## 2470         8 Oz. NR Individual No Retornable    NA       2     1    NA   NA
## 2471     1 Ltro. N.R.   Familiar No Retornable    NA       2     4    NA    4
## 2472      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2473     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2474    12 Oz. NR Pet Individual No Retornable    NA      NA    NA     2    2
## 2475        2 Lts. NR   Familiar No Retornable    NA       3     3    NA    3
## 2476      2.5 Lts. NR   Familiar No Retornable     4       4     4     4    4
## 2477 2.5 Lts. Ret Pet   Familiar    Retornable     4      NA    NA    NA   NA
## 2478    500 ml NR PET Individual No Retornable    NA      NA    NA     8   32
## 2479 500 ml NR Vidrio Individual No Retornable     6       2    NA     2   NA
## 2480       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2481         8 Oz. NR Individual No Retornable     1       2     1     1    2
## 2482     250 ml Tetra Individual No Retornable    NA      NA    NA    NA    0
## 2483    413 ml NR VId Individual No Retornable     1       3     3     1   NA
## 2484    500 ml NR PET Individual No Retornable    NA      NA    NA     2    5
## 2485        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2486        600 ml NR Individual No Retornable     1       2     1     1    4
## 2487      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2488      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2489        600 ml NR Individual No Retornable     1       2     2     1    4
## 2490      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2491        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2492        600 ml NR Individual No Retornable     3       3     3     2    4
## 2493      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2494        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2495        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2496     1 Ltro. N.R. Individual No Retornable    NA      NA     4     2   NA
## 2497      1.5 Lts. NR Individual No Retornable    NA      NA     3    NA    6
## 2498        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2499   250 ml. NR PET Individual No Retornable    NA      NA     3    NA   NA
## 2500     1 Ltro. N.R.   Familiar No Retornable    NA      NA     1    NA   NA
## 2501    12 Oz. NR Pet Individual No Retornable    NA      NA     1    NA   NA
## 2502        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2503    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2504     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA    2
## 2505        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2506 500 ml NR Vidrio Individual No Retornable    NA      NA     2    NA    2
## 2507     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA   NA
## 2508     1.250 Lts NR   Familiar No Retornable    NA      NA     3    NA    3
## 2509      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2510     1.5 Lts. Ret   Familiar    Retornable    NA      NA     6    NA    3
## 2511    12 Oz. NR Pet Individual No Retornable    NA      NA     3    NA   NA
## 2512      2.5 Lts. NR   Familiar No Retornable    NA      NA     7    NA    7
## 2513 2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA    14     7   14
## 2514 500 ml NR Vidrio Individual No Retornable    NA      NA     2    NA    2
## 2515       500 ml Ret Individual    Retornable    NA      NA    17     4   19
## 2516         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2517             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2518     1 Ltro. N.R. Individual No Retornable    NA      NA     1    NA   NA
## 2519    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2520     250 ml Tetra Individual No Retornable    NA      NA     1    NA   NA
## 2521   250 ML. NR VID Individual No Retornable    NA      NA     0    NA   NA
## 2522    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 2523   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2524     200 ml Tetra Individual No Retornable    NA      NA     0     0    0
## 2525        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2526        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2527      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2528        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 2529        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 2530       500 ml Ret Individual    Retornable    NA      NA     1     1    1
## 2531        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 2532       500 ml Ret Individual    Retornable    NA      NA     1     1    1
## 2533        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2534       500 ml Ret Individual    Retornable    NA      NA     1     1    1
## 2535        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 2536        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 2537        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2538       500 ml Ret Individual    Retornable    NA      NA     1     1    1
## 2539        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2540      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2541        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2542     1 Ltro. N.R. Individual No Retornable    NA       4    NA    NA   NA
## 2543      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2544        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2545     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2546   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2547   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2548      Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 2549     1 Ltro. N.R.   Familiar No Retornable     2       4    NA     4    2
## 2550       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2551        2 Lts. NR   Familiar No Retornable     3       3    NA     3    3
## 2552 500 ml NR Vidrio Individual No Retornable     4       4     4     2    6
## 2553         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2554 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 2555     1 Ltro. N.R.   Familiar No Retornable     2       6     4     6    6
## 2556      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2557     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA     3    3
## 2558    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA    2
## 2559        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2560      2.5 Lts. NR   Familiar No Retornable    18      18    18     7   14
## 2561 2.5 Lts. Ret Pet   Familiar    Retornable     4      NA    NA    NA   NA
## 2562 500 ml NR Vidrio Individual No Retornable     2       2    NA     2    2
## 2563       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 2564         8 Oz. NR Individual No Retornable    NA      NA    NA    NA    1
## 2565             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2566     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2567    1 Ltro. Tetra   Familiar No Retornable    NA       1    NA     1    1
## 2568     250 ml Tetra Individual No Retornable     1      NA    NA    NA    1
## 2569    413 ml NR VId Individual No Retornable    NA       0    NA    NA   NA
## 2570   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2571     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 2572    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2573     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2574        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2575        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2576        600 ml NR Individual No Retornable    NA       1     1     1    1
## 2577   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2578        2 Lts. NR   Familiar No Retornable    NA      NA     3     3    6
## 2579        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2580        600 ml NR Individual No Retornable    NA       1     1     3    2
## 2581      Lata 453 ml Individual No Retornable    NA      NA    NA    NA    0
## 2582        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2583      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2584        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2585     1 Ltro. N.R. Individual No Retornable     6       4     4     6    2
## 2586      1.5 Lts. NR Individual No Retornable     3      10     3     6    6
## 2587        600 ml NR Individual No Retornable     3      NA     3     3   NA
## 2588   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2589   250 ml. NR PET Individual No Retornable     1       1    NA     1    2
## 2590     1 Ltro. N.R.   Familiar No Retornable    NA       1     1    NA    1
## 2591     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 2592    12 Oz. NR Pet Individual No Retornable    NA       1     1     1    1
## 2593        2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 2594      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2595    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2596      Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 2597     1 Ltro. N.R.   Familiar No Retornable     4       2     4     2    4
## 2598        2 Lts. NR   Familiar No Retornable     3      NA     3     6    3
## 2599 500 ml NR Vidrio Individual No Retornable     2       2     2     4    4
## 2600         8 Oz. NR Individual No Retornable    NA      NA    NA    NA    1
## 2601             Lata Individual No Retornable    NA      NA     2    NA   NA
## 2602     1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA    2
## 2603        2 Lts. NR   Familiar No Retornable     3      NA    NA     3    3
## 2604 500 ml NR Vidrio Individual No Retornable     2       2    NA    NA    2
## 2605     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 2606     1.250 Lts NR   Familiar No Retornable     8      13    11    21   13
## 2607      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 2608     1.5 Lts. Ret   Familiar    Retornable     6      13    13    16    6
## 2609    12 Oz. NR Pet Individual No Retornable     3       5     3     3    2
## 2610      2.5 Lts. NR   Familiar No Retornable     4      NA    11    18    7
## 2611 2.5 Lts. Ret Pet   Familiar    Retornable    49      39    53    49   42
## 2612    500 ml NR PET Individual No Retornable     2       2     2     4   NA
## 2613 500 ml NR Vidrio Individual No Retornable     4       4    11    13   11
## 2614       500 ml Ret Individual    Retornable    19      15    36    32   13
## 2615         8 Oz. NR Individual No Retornable    NA       2    NA     2    1
## 2616             Lata Individual No Retornable     2       3     2     2    4
## 2617      Lata 235 ml Individual No Retornable     2       2     1     1    2
## 2618     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    2
## 2619        600 ml NR Individual No Retornable    NA       3    NA     1    1
## 2620     250 ml Tetra Individual No Retornable     2       1     0     0    0
## 2621   250 ML. NR VID Individual No Retornable     1       1     1     1    0
## 2622    413 ml NR VId Individual No Retornable     1       2     2     3    2
## 2623      Lata 335 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2624   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2625     200 ml Tetra Individual No Retornable    NA       0     0     0    0
## 2626        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 2627        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2628      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2629     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2630        2 Lts. NR   Familiar No Retornable     4      NA    NA     6    6
## 2631        400 ml NR Individual No Retornable     0       1     0     0    0
## 2632       500 ml Ret Individual    Retornable     1       1     1     3   NA
## 2633        600 ml NR Individual No Retornable     1      NA     1    NA    1
## 2634      Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 2635       Lata 8 OZ. Individual No Retornable    NA       0    NA    NA   NA
## 2636     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2637        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2638        400 ml NR Individual No Retornable     0       0    NA    NA   NA
## 2639       500 ml Ret Individual    Retornable     1       1     1     1   NA
## 2640      Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 2641       Lata 8 OZ. Individual No Retornable    NA       0    NA    NA   NA
## 2642        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 2643        400 ml NR Individual No Retornable    NA      NA    NA     0    0
## 2644       500 ml Ret Individual    Retornable     1       1     3     1    2
## 2645        600 ml NR Individual No Retornable    NA      NA     1     1    1
## 2646       Lata 8 OZ. Individual No Retornable    NA       0    NA    NA   NA
## 2647        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2648     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2649        2 Lts. NR   Familiar No Retornable     4      NA     6     6   NA
## 2650       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2651      Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 2652     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2653        2 Lts. NR   Familiar No Retornable     4       3     3     6    3
## 2654        400 ml NR Individual No Retornable     0       0    NA    NA    1
## 2655       500 ml Ret Individual    Retornable     1       1     1     1    2
## 2656        600 ml NR Individual No Retornable     1      NA     2     1    2
## 2657      Lata 235 ml Individual No Retornable    NA      NA     0     0    0
## 2658       Lata 8 OZ. Individual No Retornable    NA       0    NA    NA   NA
## 2659    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2660        600 ml NR Individual No Retornable     4       2     1     1    3
## 2661        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2662        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2663     1 Ltro. N.R. Individual No Retornable     2       8    NA    NA   NA
## 2664    355 Ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2665        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2666        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2667    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2668       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2669        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2670 500 ml NR Vidrio Individual No Retornable     6       2     6     4    2
## 2671     1 Ltro. N.R.   Familiar No Retornable     4       2     4     6    4
## 2672      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2673     1.5 Lts. Ret   Familiar    Retornable     1      NA    NA     6    3
## 2674    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2675      2.5 Lts. NR   Familiar No Retornable    14      14    21    14   21
## 2676 2.5 Lts. Ret Pet   Familiar    Retornable     4      NA    NA    NA   NA
## 2677 500 ml NR Vidrio Individual No Retornable    19      17    17    17   21
## 2678       500 ml Ret Individual    Retornable     4      NA    NA    NA   NA
## 2679         8 Oz. NR Individual No Retornable     1       1     1     1    1
## 2680             Lata Individual No Retornable    NA      NA    NA    NA    2
## 2681      Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 2682    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 2683     250 ml Tetra Individual No Retornable     0       2    NA    NA    0
## 2684    413 ml NR VId Individual No Retornable    NA       1     0     0    0
## 2685     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2686        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2687      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2688        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2689        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2690        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2691        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2692        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2693        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2694        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2695        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2696      Lata 453 ml Individual No Retornable    NA      NA    NA    NA    0
## 2697        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2698     1 Ltro. N.R. Individual No Retornable    -2      NA    NA    NA    2
## 2699   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2700   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2701    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA    1
## 2702     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2703     1.250 Lts NR   Familiar No Retornable    NA      NA    NA     3    3
## 2704      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2705     1.5 Lts. Ret   Familiar    Retornable     3      16    13    13   19
## 2706    12 Oz. NR Pet Individual No Retornable     2       2     2     3    3
## 2707 2.5 Lts. Ret Pet   Familiar    Retornable    49      53    46    42   35
## 2708    500 ml NR PET Individual No Retornable    NA       2    NA    NA   NA
## 2709 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 2710       500 ml Ret Individual    Retornable    36      25    34    34   40
## 2711      Lata 235 ml Individual No Retornable     2       1     2     1    1
## 2712        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2713     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2714    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 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   250 ML. NR VID Individual No Retornable    NA      NA    NA     1    1
## 2718    413 ml NR VId Individual No Retornable     1       0     0    NA   NA
## 2719      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2720       500 ml Ret Individual    Retornable    NA      NA     1     1   NA
## 2721       500 ml Ret Individual    Retornable    NA      NA     1     1   NA
## 2722       500 ml Ret Individual    Retornable    NA      NA     1     1   NA
## 2723       500 ml Ret Individual    Retornable    NA      NA     1     1   NA
## 2724        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2725     1 Ltro. N.R. Individual No Retornable     0      NA    NA    NA   NA
## 2726      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2727     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2728   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2729        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2730     1 Ltro. N.R.   Familiar No Retornable     0      NA    NA    NA   NA
## 2731        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2732 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 2733      Lata 235 ml Individual No Retornable     0      NA    NA    NA   NA
## 2734 500 ml NR Vidrio Individual No Retornable    NA      NA    NA     4    6
## 2735     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2736      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2737     1.5 Lts. Ret   Familiar    Retornable     0      NA    NA    NA   NA
## 2738 2.5 Lts. Ret Pet   Familiar    Retornable    11      NA    NA    11   28
## 2739    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2740 500 ml NR Vidrio Individual No Retornable    NA      NA    NA     2    8
## 2741       500 ml Ret Individual    Retornable     8      13     6    21   30
## 2742         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2743             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2744      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2745        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2746     250 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2747    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 2748     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2749    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2750     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2751      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2752        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2753    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2754       500 ml Ret Individual    Retornable    NA      NA     1     1    1
## 2755        600 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 2756        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2757    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2758       500 ml Ret Individual    Retornable    NA      NA     1     1    1
## 2759    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2760       500 ml Ret Individual    Retornable    NA      NA     1     1    1
## 2761        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2762       500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 2763       12 Oz. Ret Individual    Retornable    NA      NA     2    NA   NA
## 2764        2 Lts. NR   Familiar No Retornable     0      NA    NA    NA   NA
## 2765        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 2766    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2767       500 ml Ret Individual    Retornable    NA      NA     1     1    1
## 2768        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2769        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2770     1 Ltro. N.R. Individual No Retornable     0      NA    NA    NA    2
## 2771     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2772   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2773     1 Ltro. N.R.   Familiar No Retornable     0      NA    NA    NA   NA
## 2774      Lata 235 ml Individual No Retornable     0      NA    NA    NA   NA
## 2775 500 ml NR Vidrio Individual No Retornable     2      NA     2     2    2
## 2776     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2777     1.250 Lts NR   Familiar No Retornable     5       3    NA     3    5
## 2778      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2779     1.5 Lts. Ret   Familiar    Retornable     3      NA    NA     3    3
## 2780    12 Oz. NR Pet Individual No Retornable     3       3     2     5    5
## 2781      2.5 Lts. NR   Familiar No Retornable     4       4     7     4    7
## 2782 2.5 Lts. Ret Pet   Familiar    Retornable    36      35    35    32   42
## 2783 500 ml NR Vidrio Individual No Retornable     4       2     4     2    6
## 2784       500 ml Ret Individual    Retornable    11      11    15    11   13
## 2785         8 Oz. NR Individual No Retornable    NA       1    NA    NA   NA
## 2786      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2787        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2788     250 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2789    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 2790     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2791      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2792        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2793        600 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 2794      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2795      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2796      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2797        2 Lts. NR   Familiar No Retornable     6       3     3     6    3
## 2798        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 2799      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2800        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2801      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2802        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2803   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 2804     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2805      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2806    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2807      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2808 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 2809       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2810      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2811        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2812      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2813        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2814      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2815        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2816      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2817        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2818        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2819      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2820        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2821      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2822        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2823      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2824      LATA 680 ML Individual No Retornable    NA      NA    NA    NA   NA
## 2825        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2826        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2827     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 2828      1.5 Lts. NR Individual No Retornable    19      25    22    38   48
## 2829   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2830        600 ml NR Individual No Retornable     1       1     1     2    3
## 2831        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2832     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 2833    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2834     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2835       12 Oz. Ret Individual    Retornable    NA       2    NA     2   NA
## 2836 500 ml NR Vidrio Individual No Retornable    NA       2    NA     4    2
## 2837         8 Oz. NR Individual No Retornable    NA       1    NA     1    1
## 2838     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2839     1.250 Lts NR   Familiar No Retornable    NA       3     3    NA   NA
## 2840      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA     3   10
## 2841     1.5 Lts. Ret   Familiar    Retornable     3      NA    NA     3    3
## 2842    12 Oz. NR Pet Individual No Retornable     5       5     8     6    8
## 2843      2.5 Lts. NR   Familiar No Retornable     7       7     7    11   18
## 2844 2.5 Lts. Ret Pet   Familiar    Retornable     7       7    11     7    7
## 2845 500 ml NR Vidrio Individual No Retornable    13      15    25    17   25
## 2846       500 ml Ret Individual    Retornable    21      30    36    36   38
## 2847         8 Oz. NR Individual No Retornable     1       2     3     3    2
## 2848             Lata Individual No Retornable    NA      NA    NA     2    2
## 2849     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2850    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2851        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2852     250 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 2853   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 2854    413 ml NR VId Individual No Retornable     1       0    NA     0   NA
## 2855    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2856    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2857     200 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 2858        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2859        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2860      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2861        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 2862        600 ml NR Individual No Retornable     1       1     1     2    3
## 2863      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2864        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 2865        600 ml NR Individual No Retornable     1       1     1     1    1
## 2866        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 2867        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 2868        600 ml NR Individual No Retornable     1       2     3     3    3
## 2869      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2870        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2871     1 Ltro. N.R. Individual No Retornable    NA       6     2     2   NA
## 2872      1.5 Lts. NR Individual No Retornable     3       3    NA    NA   NA
## 2873        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2874   250 ml. NR PET Individual No Retornable    NA       1     1     1    1
## 2875     1 Ltro. N.R.   Familiar No Retornable     2       1     2    NA   NA
## 2876    12 Oz. NR Pet Individual No Retornable     0       1    NA     1   NA
## 2877      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2878     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA   NA
## 2879     1.250 Lts NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2880     1.5 Lts. Ret   Familiar    Retornable     6       3    NA     3   NA
## 2881    12 Oz. NR Pet Individual No Retornable     3       3     2     3    2
## 2882       12 Oz. Ret Individual    Retornable     2       2     5     3    3
## 2883      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 2884 2.5 Lts. Ret Pet   Familiar    Retornable     4       4    18     7    4
## 2885        400 ml NR Individual No Retornable     2      NA    NA    NA   NA
## 2886 500 ml NR Vidrio Individual No Retornable    NA       2     4     4    2
## 2887       500 ml Ret Individual    Retornable    11       6     4    17    4
## 2888      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2889         8 Oz. NR Individual No Retornable    NA      NA     1    NA   NA
## 2890             Lata Individual No Retornable    NA      NA    NA     2   NA
## 2891      Lata 235 ml Individual No Retornable     1       1     2     1   NA
## 2892     1 Ltro. N.R. Individual No Retornable     2       1    NA    NA   NA
## 2893        600 ml NR Individual No Retornable     2      NA    NA    NA   NA
## 2894     250 ml Tetra Individual No Retornable     0       0    NA     0   NA
## 2895    413 ml NR VId Individual No Retornable     1       1     2     1    1
## 2896    1 Ltro. Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2897     200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 2898        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2899        400 ml NR Individual No Retornable    NA      NA     1    NA    0
## 2900       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 2901      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2902        2 Lts. NR   Familiar No Retornable     1       3    NA    NA   NA
## 2903        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 2904       500 ml Ret Individual    Retornable     3      NA    NA    NA   NA
## 2905      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2906        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2907        400 ml NR Individual No Retornable     2       1     1    NA    1
## 2908       500 ml Ret Individual    Retornable     3      NA    NA    NA   NA
## 2909        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2910       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 2911      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2912        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2913        400 ml NR Individual No Retornable    NA       0     1    NA    0
## 2914       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 2915      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2916        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2917      1.5 Lts. NR Individual No Retornable    NA      NA     3     3   NA
## 2918        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2919   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2920   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2921     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2922 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 2923    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2924     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 2925     1.250 Lts NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2926      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2927     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA     3   NA
## 2928    12 Oz. NR Pet Individual No Retornable     2      NA    NA    NA    2
## 2929       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2930        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2931      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 2932 2.5 Lts. Ret Pet   Familiar    Retornable     7      NA     7     7    7
## 2933    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2934 500 ml NR Vidrio Individual No Retornable    NA       2     2     4   NA
## 2935       500 ml Ret Individual    Retornable    NA       4     6    13    6
## 2936         8 Oz. NR Individual No Retornable    NA      NA    NA    NA    1
## 2937             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2938    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 2939     250 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2940    413 ml NR VId Individual No Retornable     1      NA    NA    NA   NA
## 2941    1 Ltro. Tetra   Familiar No Retornable     0      NA    NA    NA   NA
## 2942       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2943        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2944   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2945        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 2946       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2947        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2948       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2949       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2950   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2951       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2952             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2953       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2954   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2955        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 2956       500 ml Ret Individual    Retornable    NA       2     2    NA    2
## 2957        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2958        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2959     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2960     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2961     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2962        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2963 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 2964      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2965     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2966    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2967 2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA    NA    NA    4
## 2968 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 2969       500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 2970         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2971             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2972      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2973        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2974    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2975    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2976     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 2977        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2978      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2979        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2980       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2981        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2982       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2983        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2984       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2985        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2986       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2987    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2988        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2989      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2990      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2991        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 2992        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2993        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2994   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2995    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2996 500 ml NR Vidrio Individual No Retornable    NA      NA     4     2    4
## 2997        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2998     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2999     1.250 Lts NR   Familiar No Retornable    NA      NA    11    21   18
## 3000      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3001     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3002    12 Oz. NR Pet Individual No Retornable    NA      NA     3     5    2
## 3003       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3004      2.5 Lts. NR   Familiar No Retornable    NA      NA    18    21   28
## 3005 2.5 Lts. Ret Pet   Familiar    Retornable    NA       7    35    49   70
## 3006 500 ml NR Vidrio Individual No Retornable    NA      NA    11    11   15
## 3007       500 ml Ret Individual    Retornable    NA      NA    27    40   30
## 3008      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3009         8 Oz. NR Individual No Retornable    NA      NA     1     2    2
## 3010             Lata Individual No Retornable    NA      NA     3     2    2
## 3011      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3012      Lata 235 ml Individual No Retornable    NA      NA     1     1   NA
## 3013    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3014        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3015     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3016   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 3017    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 3018        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3019      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3020        400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3021    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3022       500 ml Ret Individual    Retornable    NA      NA     2     2   NA
## 3023        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3024        400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3025        400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3026       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3027        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3028        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 3029    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3030       500 ml Ret Individual    Retornable    NA      NA     2     2   NA
## 3031        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3032        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3033     1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 3034      1.5 Lts. NR Individual No Retornable    NA       3    NA    NA   NA
## 3035   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3036     1 Ltro. N.R. Individual No Retornable     0      NA    NA    NA   NA
## 3037    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3038      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 3039 500 ml NR Vidrio Individual No Retornable     8       2     4     4    8
## 3040     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3041     1.250 Lts NR   Familiar No Retornable     5       8     8     5    5
## 3042      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3043     1.5 Lts. Ret   Familiar    Retornable    19      13    22    19   13
## 3044    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA    2
## 3045        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3046 2.5 Lts. Ret Pet   Familiar    Retornable    63      63    74    56   85
## 3047        400 ml NR Individual No Retornable    NA      NA    -2    NA   NA
## 3048 500 ml NR Vidrio Individual No Retornable    NA       2     2     2    4
## 3049       500 ml Ret Individual    Retornable    15      17    34    25   27
## 3050         8 Oz. NR Individual No Retornable     1       1     2     3    3
## 3051     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3052    500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 3053     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3054   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 3055    413 ml NR VId Individual No Retornable     0       0    NA     3    1
## 3056    1 Ltro. Tetra   Familiar No Retornable    NA      NA     1    NA   NA
## 3057    1 Ltro. Tetra   Familiar No Retornable     3       3    NA    NA   NA
## 3058     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3059      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3060        2 Lts. NR   Familiar No Retornable    NA       6     6     3    3
## 3061        400 ml NR Individual No Retornable    NA      NA     0    NA    3
## 3062       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 3063        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3064      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 3065       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 3066      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 3067       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 3068      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 3069        2 Lts. NR   Familiar No Retornable     3       6     8     6    6
## 3070        400 ml NR Individual No Retornable    NA      NA     0    NA    3
## 3071       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 3072        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3073      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 3074        600 ml NR Individual No Retornable     1       2     2     1   NA
## 3075      Lata 453 ml Individual No Retornable    NA      NA    NA     0   NA
## 3076   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3077   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3078        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3079    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3080        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3081     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3082 500 ml NR Vidrio Individual No Retornable     2      NA    NA     6    2
## 3083     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3   NA
## 3084       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 3085 2.5 Lts. Ret Pet   Familiar    Retornable    14      14    18    25   25
## 3086    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3087 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3088       500 ml Ret Individual    Retornable     6       6     6    15   13
## 3089         8 Oz. NR Individual No Retornable    NA      NA     1    NA   NA
## 3090    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 3091        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA    1
## 3092   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3093        400 ml NR Individual No Retornable     0      NA    NA    NA    0
## 3094       500 ml Ret Individual    Retornable     1       1    NA     1   NA
## 3095      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3096        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 3097        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 3098       500 ml Ret Individual    Retornable     1       1    NA     1   NA
## 3099      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3100        2 Lts. NR   Familiar No Retornable    NA      NA     3     3    1
## 3101   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3102        400 ml NR Individual No Retornable     0      NA    NA    NA    0
## 3103       500 ml Ret Individual    Retornable     1       1    NA     1   NA
## 3104      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3105        2 Lts. NR   Familiar No Retornable    NA       3    NA     6    4
## 3106   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3107        400 ml NR Individual No Retornable     1      NA    NA    NA    0
## 3108       500 ml Ret Individual    Retornable     1       1    NA     1   NA
## 3109      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3110        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3111        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3112    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA    3
## 3113      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    1
## 3114     1.250 Lts NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3115      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3116    12 Oz. NR Pet Individual No Retornable     3       2     5     3    3
## 3117       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3118      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3119 2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA    NA    NA   NA
## 3120    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3121 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3122       500 ml Ret Individual    Retornable     8      11    15    17   13
## 3123      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    1
## 3124    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3125     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3126    413 ml NR VId Individual No Retornable    NA      NA    NA    NA    1
## 3127       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3128        400 ml NR Individual No Retornable     2       1     1     2    1
## 3129       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3130        400 ml NR Individual No Retornable     2       1     2     2    1
## 3131        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3132     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3133   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3134     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3135  100 ml NR Tetra Individual No Retornable     1       0     1     1    1
## 3136    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3137       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3138         8 Oz. NR Individual No Retornable     1      NA     1     1    1
## 3139     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3140      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3141     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA    3
## 3142    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3143       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 3144 2.5 Lts. Ret Pet   Familiar    Retornable    18      14    11    18   14
## 3145       500 ml Ret Individual    Retornable    15      17    15    23   23
## 3146      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3147      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3148     1 Ltro. N.R. Individual No Retornable     1      NA    NA     1    1
## 3149    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3150        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3151  100 ml NR Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3152     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3153   250 ML. NR VID Individual No Retornable     1       1     1     1    0
## 3154      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3155     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3156       500 ml Ret Individual    Retornable     4       2     4     4    2
## 3157        600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 3158             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3159      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3160      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3161       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3162        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3163       500 ml Ret Individual    Retornable    NA      NA    NA     2   NA
## 3164       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3165       500 ml Ret Individual    Retornable     2       2     2     2    2
## 3166      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3167       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3168       500 ml Ret Individual    Retornable     2       2     2     4    2
## 3169      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3170        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3171        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3172   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3173 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3174     1.5 Lts. Ret   Familiar    Retornable    10       6    10    13   13
## 3175       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3176      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3177 2.5 Lts. Ret Pet   Familiar    Retornable    42      28    28    46   46
## 3178 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3179       500 ml Ret Individual    Retornable     4       2     4     2    6
## 3180         8 Oz. NR Individual No Retornable    NA      NA     1    NA   NA
## 3181        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3182        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3183     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 3184        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3185     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3186   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3187     1 Ltro. N.R.   Familiar No Retornable     0      NA    NA    NA   NA
## 3188      Lata 235 ml Individual No Retornable     0      NA    NA    NA   NA
## 3189     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 3190       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3191     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 3192     1.250 Lts NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3193      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3194     1.5 Lts. Ret   Familiar    Retornable     0      NA    NA    NA   NA
## 3195    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3196       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3197        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    6
## 3198      2.5 Lts. NR   Familiar No Retornable     0      NA    NA    NA   NA
## 3199 2.5 Lts. Ret Pet   Familiar    Retornable     0      NA    NA    NA   14
## 3200 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3201       500 ml Ret Individual    Retornable    NA      NA    NA    NA    4
## 3202         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3203     250 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 3204     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 3205        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 3206    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3207        600 ml NR Individual No Retornable     0      NA    NA    NA    1
## 3208        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 3209    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3210       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3211        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 3212    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3213        2 Lts. NR   Familiar No Retornable     0      NA    NA    NA   NA
## 3214        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 3215    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3216        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3217        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3218      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3219        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3220   250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3221        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3222     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     2    1
## 3223    12 Oz. NR Pet Individual No Retornable    NA       1    NA    NA   NA
## 3224        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3225        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3226      Lata 235 ml Individual No Retornable    NA      NA     0    NA    0
## 3227     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3228       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3229 500 ml NR Vidrio Individual No Retornable    NA      NA     2     2    4
## 3230     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3231     1.250 Lts NR   Familiar No Retornable    32      11    24    34   26
## 3232      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3233     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA     3    3
## 3234    12 Oz. NR Pet Individual No Retornable    NA      NA     2     3    3
## 3235       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3236      2.5 Lts. NR   Familiar No Retornable    14      NA    18    81   49
## 3237 2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA    NA    NA   NA
## 3238 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA    2
## 3239       500 ml Ret Individual    Retornable    89      57    68    80   51
## 3240         8 Oz. NR Individual No Retornable    NA      NA     1     2    2
## 3241             Lata Individual No Retornable     2      NA    NA     2    2
## 3242        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3243    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3244    413 ml NR VId Individual No Retornable     0      NA    NA    NA   NA
## 3245     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3246   300 ML. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 3247    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3248      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3249        400 ml NR Individual No Retornable     1       2     2     2    3
## 3250      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3251      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3252        400 ml NR Individual No Retornable     1       1     1     3    2
## 3253      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3254        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3255        400 ml NR Individual No Retornable     3       2     2     2    3
## 3256        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3257     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3258      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA    3
## 3259     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3260   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3261        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3262     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3263    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3264        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3265    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3266 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3267     1 Ltro. N.R.   Familiar No Retornable     8       6     2     4    4
## 3268 500 ml NR Vidrio Individual No Retornable     4      NA     2     4    2
## 3269    12 Oz. NR Pet Individual No Retornable     1       2     1     2    2
## 3270     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3271     1.250 Lts NR   Familiar No Retornable     8       8    11     5   11
## 3272      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3273     1.5 Lts. Ret   Familiar    Retornable     6      NA     3    NA   NA
## 3274    12 Oz. NR Pet Individual No Retornable     3       5     6    11    3
## 3275       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3276      2.5 Lts. NR   Familiar No Retornable     7       7    11     4    7
## 3277 2.5 Lts. Ret Pet   Familiar    Retornable    42      56    53    42   56
## 3278 500 ml NR Vidrio Individual No Retornable     8       4     4     4    6
## 3279       500 ml Ret Individual    Retornable    19      13    11    23   17
## 3280         8 Oz. NR Individual No Retornable     1       3     2     4    4
## 3281      Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 3282     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3283        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3284     250 ml Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3285   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 3286    413 ml NR VId Individual No Retornable     3       2     3     4    1
## 3287    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3288    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3289     200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 3290        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3    3
## 3291        400 ml NR Individual No Retornable     0      NA     1    NA   NA
## 3292       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3293       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3294        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3295       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3296        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3297        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3298        400 ml NR Individual No Retornable     1       0     0    NA    0
## 3299       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3300        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3301      Lata 453 ml Individual No Retornable    NA      NA    NA    NA    0
## 3302     1 Ltro. N.R. Individual No Retornable    NA       4    11    11   17
## 3303      1.5 Lts. NR Individual No Retornable    NA      10    19    16   29
## 3304   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3305        600 ml NR Individual No Retornable    NA       5     5     3   13
## 3306        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3307   250 ml. NR PET Individual No Retornable     3       3     2     7    3
## 3308     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     1    1
## 3309     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 3310    12 Oz. NR Pet Individual No Retornable    NA      NA    NA     2    1
## 3311        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3312    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3313    237 ml NR Vid Individual No Retornable    NA      NA    NA    NA    1
## 3314      Lata 235 ml Individual No Retornable    NA      -1    NA    NA   NA
## 3315     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2    4
## 3316        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 3317 500 ml NR Vidrio Individual No Retornable     6       8     6     8   11
## 3318         8 Oz. NR Individual No Retornable     1       1     1    NA    1
## 3319    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3320        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3321     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     2   NA
## 3322     1.250 Lts NR   Familiar No Retornable    24      26    16    18   24
## 3323      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3324     1.5 Lts. Ret   Familiar    Retornable     3       6    NA     6    6
## 3325    12 Oz. NR Pet Individual No Retornable     6       8     5     5    9
## 3326        2 Lts. NR   Familiar No Retornable    NA      NA     8     3    6
## 3327       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3328      2.5 Lts. NR   Familiar No Retornable     4      21    14    21   28
## 3329 2.5 Lts. Ret Pet   Familiar    Retornable    28      46    25    32   28
## 3330        400 ml NR Individual No Retornable    NA      NA    NA     2   NA
## 3331 500 ml NR Vidrio Individual No Retornable    11      11    11    21   15
## 3332       500 ml Ret Individual    Retornable    30      36    30    51   38
## 3333         8 Oz. NR Individual No Retornable     7       9     6    12   10
## 3334             Lata Individual No Retornable    NA      NA     3     3    2
## 3335      Lata 16 Oz. Individual No Retornable     2       2     2     4    2
## 3336      Lata 235 ml Individual No Retornable     2       5     3     3    2
## 3337     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1    1
## 3338    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3339        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3340  125 ml NR Tetra Individual No Retornable     1       1    NA    NA   NA
## 3341     250 ml Tetra Individual No Retornable     2      NA    NA     1    0
## 3342   250 ML. NR VID Individual No Retornable    NA      NA    NA     2    0
## 3343    413 ml NR VId Individual No Retornable     1      NA     2     3    2
## 3344      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3345     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 3346   300 ML. NR PET Individual No Retornable    NA       0     0    NA    1
## 3347     200 ml Tetra Individual No Retornable    NA      NA    NA     0    0
## 3348      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3349      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3350     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3351        2 Lts. NR   Familiar No Retornable    NA       3     3     3    6
## 3352        400 ml NR Individual No Retornable     0      NA     1     1    1
## 3353       500 ml Ret Individual    Retornable     1       2    NA     3    1
## 3354        600 ml NR Individual No Retornable    NA      NA     2    NA    1
## 3355      Lata 235 ml Individual No Retornable    NA       1     1     0    1
## 3356      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3357        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3358        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3359       500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 3360      Lata 235 ml Individual No Retornable    NA       1     1     0    1
## 3361        400 ml NR Individual No Retornable     0      NA    NA     1    1
## 3362       500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 3363        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3364        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3365      Lata 235 ml Individual No Retornable    NA       1     1     0    1
## 3366      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3367     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3368        2 Lts. NR   Familiar No Retornable     3       8    11     6   11
## 3369        400 ml NR Individual No Retornable     3       2     1     3    3
## 3370       500 ml Ret Individual    Retornable     1       4     2     1    1
## 3371        600 ml NR Individual No Retornable    NA      NA     2     1    1
## 3372      Lata 235 ml Individual No Retornable    NA       1     1     0    1
## 3373    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3374        600 ml NR Individual No Retornable    NA      NA    NA     4   NA
## 3375        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3376      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3377        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3378     1 Ltro. N.R. Individual No Retornable    NA       8     6    NA    4
## 3379      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA    3
## 3380        600 ml NR Individual No Retornable    NA       3     3    NA    3
## 3381     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3382     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3383   250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 3384   250 ml. NR PET Individual No Retornable    NA       1     1    NA    0
## 3385        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3386        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3387    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3388 500 ml NR Vidrio Individual No Retornable    NA       2     2     2    6
## 3389     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3390     1.250 Lts NR   Familiar No Retornable    NA       3     3     5    8
## 3391      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3392     1.5 Lts. Ret   Familiar    Retornable    NA      16    10    48   NA
## 3393    12 Oz. NR Pet Individual No Retornable    NA       2     6    20   NA
## 3394       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3395        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 3396      2.5 Lts. NR   Familiar No Retornable    NA       7    NA     4    7
## 3397 2.5 Lts. Ret Pet   Familiar    Retornable    NA      28    NA    32   11
## 3398 500 ml NR Vidrio Individual No Retornable    NA       2     8     6    6
## 3399       500 ml Ret Individual    Retornable    NA     116    21   554  190
## 3400         8 Oz. NR Individual No Retornable    NA       2     2     3   NA
## 3401             Lata Individual No Retornable    NA       3     2     3    5
## 3402      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3403    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3404        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3405     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3406   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 3407    413 ml NR VId Individual No Retornable    NA      NA    NA     2    2
## 3408   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3409    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3410     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3411        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3412        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1    4
## 3413   250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 3414        400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3415       500 ml Ret Individual    Retornable    NA       1     3     7    6
## 3416        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3417      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3418        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1    4
## 3419       500 ml Ret Individual    Retornable    NA       1     1     5   66
## 3420        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3421      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3422        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1    4
## 3423   250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 3424        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3425       500 ml Ret Individual    Retornable    NA       3     1     7   68
## 3426        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3427       500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 3428      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3429        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1    4
## 3430   250 ml. NR PET Individual No Retornable    NA       0     0    NA   NA
## 3431        400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3432       500 ml Ret Individual    Retornable    NA       7     3    11    6
## 3433        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3434      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3435        600 ml NR Individual No Retornable    NA       1    NA    NA    4
## 3436      Lata 453 ml Individual No Retornable    NA      NA    NA    NA    0
## 3437        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3438     1 Ltro. N.R. Individual No Retornable     8       4    NA    NA   NA
## 3439        600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 3440   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3441     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3442   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3443     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA    NA   NA
## 3444    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3445        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3446        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3447 500 ml NR Vidrio Individual No Retornable     2      NA     2    NA    4
## 3448     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3449      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3450     1.5 Lts. Ret   Familiar    Retornable    57      48    73    60   63
## 3451    12 Oz. NR Pet Individual No Retornable    NA       2    NA    NA   NA
## 3452       12 Oz. Ret Individual    Retornable    14       9     6     2   NA
## 3453 2.5 Lts. Ret Pet   Familiar    Retornable    92      70   109    95  106
## 3454    500 ml NR PET Individual No Retornable     4       4     6     6    8
## 3455 500 ml NR Vidrio Individual No Retornable     6       2     4     4    6
## 3456       500 ml Ret Individual    Retornable    57      57    59    55   85
## 3457         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3458             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3459      Lata 235 ml Individual No Retornable     3       2     2     2    4
## 3460     1 Ltro. N.R. Individual No Retornable     1      NA    NA    NA   NA
## 3461    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3462        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3463     250 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 3464    413 ml NR VId Individual No Retornable     1       0    NA    NA   NA
## 3465    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3466    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3467     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3468        2 Lts. NR   Familiar No Retornable     1       1    NA    NA   NA
## 3469        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3470       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 3471        2 Lts. NR   Familiar No Retornable     1       1    NA    NA   NA
## 3472        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3473       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3474        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3475        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3476       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 3477        2 Lts. NR   Familiar No Retornable     1       1    NA    NA   NA
## 3478        2 Lts. NR   Familiar No Retornable     1       6     3     3    6
## 3479        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3480       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 3481      Lata 453 ml Individual No Retornable    NA      NA    NA    NA    0
## 3482     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    4
## 3483      1.5 Lts. NR Individual No Retornable    NA      NA    NA     3   NA
## 3484        600 ml NR Individual No Retornable    NA      NA    NA     3    3
## 3485        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3486   250 ml. NR PET Individual No Retornable    NA      NA    NA     1    1
## 3487     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3488    12 Oz. NR Pet Individual No Retornable    NA      NA    NA     2   NA
## 3489       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3490      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3491 500 ml NR Vidrio Individual No Retornable    NA      NA    NA     2    2
## 3492       500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 3493         8 Oz. NR Individual No Retornable    NA      NA    NA     1    1
## 3494             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3495      Lata 235 ml Individual No Retornable    NA      NA    NA     1    1
## 3496     250 ml Tetra Individual No Retornable    NA      NA    NA     1    1
## 3497    413 ml NR VId Individual No Retornable    NA      NA    NA     2    1
## 3498   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3499     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3500        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3501        400 ml NR Individual No Retornable    NA      NA    NA     0    0
## 3502      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3503        400 ml NR Individual No Retornable    NA      NA    NA     0    0
## 3504      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3505        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 3506       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3507      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3508        400 ml NR Individual No Retornable    NA      NA    NA     0    0
## 3509      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3510     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3511   250 ml. NR PET Individual No Retornable     0       0     1     0    1
## 3512   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3513     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3514    12 Oz. NR Pet Individual No Retornable     3       3     5     3    3
## 3515       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    3
## 3516 2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA    NA    NA    7
## 3517 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3518       500 ml Ret Individual    Retornable    11      13    13    13   21
## 3519         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3520             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3521      Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 3522    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 3523   250 ml. NR PET Individual No Retornable     0       0     1     0    1
## 3524        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3525       500 ml Ret Individual    Retornable     2      NA     2     2    2
## 3526      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3527       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3528      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3529   250 ml. NR PET Individual No Retornable     0       0     1     0    1
## 3530       500 ml Ret Individual    Retornable     2      NA     2    NA    2
## 3531      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3532        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3533       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3534   250 ml. NR PET Individual No Retornable     0       0     1     0    1
## 3535       500 ml Ret Individual    Retornable     2       2     2     4    2
## 3536      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3537        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3538     1.250 Lts NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3539     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA     3   NA
## 3540    12 Oz. NR Pet Individual No Retornable     2      NA    NA    NA    2
## 3541       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3542 2.5 Lts. Ret Pet   Familiar    Retornable    11      14    14    11   18
## 3543 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3544       500 ml Ret Individual    Retornable    21      23    23    32   36
## 3545         8 Oz. NR Individual No Retornable     1      NA     1     1    1
## 3546    413 ml NR VId Individual No Retornable    NA      NA    NA     0   NA
## 3547        400 ml NR Individual No Retornable     0      NA    NA     0    0
## 3548        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3549        400 ml NR Individual No Retornable     0      NA    NA     0    0
## 3550        400 ml NR Individual No Retornable     0      NA    NA     0    0
## 3551        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3552       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3553        400 ml NR Individual No Retornable     0      NA    NA     0    0
## 3554        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3555        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3556        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3557     1 Ltro. N.R. Individual No Retornable    NA       4    NA    NA    2
## 3558      1.5 Lts. NR Individual No Retornable     6       6     6     3   10
## 3559        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3560        600 ml NR Individual No Retornable     3      NA     3    NA    3
## 3561     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3562     1 Ltro. N.R. Individual No Retornable    NA       1    NA    NA    2
## 3563   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3564        600 ml NR Individual No Retornable     1       1    NA     1    1
## 3565   250 ml. NR PET Individual No Retornable    NA      NA    NA     2   NA
## 3566     1 Ltro. N.R.   Familiar No Retornable    NA       0    NA    NA   NA
## 3567    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3568        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3569      Lata 235 ml Individual No Retornable    NA       0    NA    NA    1
## 3570     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3571        400 ml NR Individual No Retornable     2      NA    NA    NA   NA
## 3572         8 Oz. NR Individual No Retornable    NA      NA     1    NA    1
## 3573     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3574    12 Oz. NR Pet Individual No Retornable    NA      NA    NA     1   NA
## 3575 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3576         8 Oz. NR Individual No Retornable     2       2     3    NA    2
## 3577     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3578     1.250 Lts NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3579      1.5 Lts. NR   Familiar No Retornable    NA       3    NA     3    3
## 3580     1.5 Lts. Ret   Familiar    Retornable     3       3    NA     3    3
## 3581    12 Oz. NR Pet Individual No Retornable     2       2    NA    NA   NA
## 3582       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3583       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA    3
## 3584      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3585 2.5 Lts. Ret Pet   Familiar    Retornable    46      49    49    42   35
## 3586    500 ml NR PET Individual No Retornable    NA      NA    NA     2   NA
## 3587       500 ml Ret Individual    Retornable    27      30    42    25   25
## 3588        710 ml NR Individual No Retornable    NA       3     3     3   NA
## 3589         8 Oz. NR Individual No Retornable    NA      NA     1    NA    1
## 3590      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3591      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3592     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3593    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3594        600 ml NR Individual No Retornable     1      NA     1    NA   NA
## 3595     250 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 3596   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 3597    413 ml NR VId Individual No Retornable     2       2     2     5    2
## 3598     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 3599   300 ML. NR PET Individual No Retornable     1      NA    NA     1   NA
## 3600     200 ml Tetra Individual No Retornable     0       0    NA    NA   NA
## 3601        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3602        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3603      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3604      1.5 Lts. NR   Familiar No Retornable     3       5     5    NA   NA
## 3605        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3606       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3607      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 3608   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3609        400 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3610       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3611        600 ml NR Individual No Retornable     2       1     1     1    2
## 3612      Lata 235 ml Individual No Retornable    NA       0     2    NA    0
## 3613        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3614       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3615        600 ml NR Individual No Retornable     1       1     1     1    1
## 3616      Lata 235 ml Individual No Retornable    NA       0     2    NA    0
## 3617   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3618       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 3619        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 3620        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3621        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3622        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3623       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3624        600 ml NR Individual No Retornable    NA       1    NA     1    1
## 3625      Lata 235 ml Individual No Retornable    NA       0     2    NA    0
## 3626     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2     2    2
## 3627      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3628        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    6
## 3629       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3630   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 3631        400 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3632       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3633        600 ml NR Individual No Retornable     2       1     1     2    3
## 3634      Lata 235 ml Individual No Retornable    NA       0     2    NA    0
## 3635        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3636      Lata 453 ml Individual No Retornable    NA      NA    NA    NA    0
## 3637     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    2
## 3638      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3639        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3640   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3641     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 3642 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA    2
## 3643         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3644     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3645    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3646       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3647    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3648 500 ml NR Vidrio Individual No Retornable    NA      NA    NA     2    4
## 3649       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3650         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3651             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3652      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3653        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3654  125 ml NR Tetra Individual No Retornable    NA      NA    NA    NA    0
## 3655     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3656    413 ml NR VId Individual No Retornable    NA      NA    NA    NA    1
## 3657        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3658        2 Lts. NR   Familiar No Retornable    NA       6     3     3    3
## 3659      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3660      Lata 450 ml Individual No Retornable    NA      NA    NA    NA    2
## 3661     1 Ltro. N.R.   Familiar No Retornable     4       4    NA     2    4
## 3662 500 ml NR Vidrio Individual No Retornable     2       2    NA     4    4
## 3663     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3664      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3665     1.5 Lts. Ret   Familiar    Retornable    22      19    13    25   19
## 3666    12 Oz. NR Pet Individual No Retornable    NA      NA     2    NA   NA
## 3667       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3668 2.5 Lts. Ret Pet   Familiar    Retornable    28      21    18    28   28
## 3669    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3670 500 ml NR Vidrio Individual No Retornable     2      NA     2    NA    4
## 3671       500 ml Ret Individual    Retornable    17      13    19    38   17
## 3672      Lata 235 ml Individual No Retornable     1      NA     1    NA   NA
## 3673        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3674     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3675    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3676        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3677     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3678   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 3679    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 3680   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3681     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3682        400 ml NR Individual No Retornable    NA      NA     0     1   NA
## 3683       500 ml Ret Individual    Retornable     1      NA     2     3    1
## 3684        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3685       500 ml Ret Individual    Retornable     1      NA     2     3    1
## 3686        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3687       500 ml Ret Individual    Retornable     1      NA     2     3    1
## 3688        400 ml NR Individual No Retornable     1      NA     0     1   NA
## 3689       500 ml Ret Individual    Retornable     3       2     2     3    3
## 3690        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3691      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3692      Lata 453 ml Individual No Retornable    NA      NA    NA    NA    0
## 3693   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3694 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3695 2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA    NA    NA   NA
## 3696 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3697       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3698         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3699     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3700        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3701        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3702        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3703        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3704     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3705        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3706   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    2
## 3707 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3708     1 Ltro. N.R.   Familiar No Retornable     4      NA     2     2    4
## 3709      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3710     1.5 Lts. Ret   Familiar    Retornable    10      19    10    13   16
## 3711       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     3   NA
## 3712 2.5 Lts. Ret Pet   Familiar    Retornable    46      46    46    53   53
## 3713 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3714       500 ml Ret Individual    Retornable    17      19    19    30   30
## 3715         8 Oz. NR Individual No Retornable    NA       1    NA    NA   NA
## 3716             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3717    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 3718   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3719    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3720     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3721        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3722        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3723       500 ml Ret Individual    Retornable     2      NA    NA    NA    2
## 3724        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3725       500 ml Ret Individual    Retornable    NA      NA     2    NA   NA
## 3726        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3727       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 3728        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3729     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3730        2 Lts. NR   Familiar No Retornable    NA       3     3    NA    3
## 3731        400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3732       500 ml Ret Individual    Retornable     2      NA     2     2   NA
## 3733        600 ml NR Individual No Retornable     1       1     1     1    1
## 3734     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3735   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3736   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3737     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3738      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3739     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3740       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3741      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3742 2.5 Lts. Ret Pet   Familiar    Retornable     7      NA    NA     4   NA
## 3743       500 ml Ret Individual    Retornable    17      17    13    13   15
## 3744         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3745             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3746    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3747    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3748     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 3749        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3750        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3751       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3752        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3753        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3754       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3755        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3756        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3757       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3758       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3759        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3760        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3761       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3762        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3763       12 Oz. Ret Individual    Retornable    NA      NA     2    NA   NA
## 3764        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3765     1 Ltro. N.R. Individual No Retornable     8      NA    11    NA    6
## 3766        600 ml NR Individual No Retornable     8      NA    NA    NA    3
## 3767   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3768   250 ml. NR PET Individual No Retornable     4       2    16     7    4
## 3769    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3770    500 ml NR PET Individual No Retornable     4       2     4     2    4
## 3771     1.5 Lts. Ret   Familiar    Retornable     3      NA    NA    NA   NA
## 3772    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA    2
## 3773       12 Oz. Ret Individual    Retornable     2      NA    NA    NA   NA
## 3774       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     3   NA
## 3775 2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA    NA     4   NA
## 3776        400 ml NR Individual No Retornable     2      NA    NA    NA   NA
## 3777       500 ml Ret Individual    Retornable     4      NA    NA     2   NA
## 3778         8 Oz. NR Individual No Retornable    NA      NA    NA     1   NA
## 3779      Lata 235 ml Individual No Retornable    NA       2    NA     1   NA
## 3780        600 ml NR Individual No Retornable     1       1     3     1    2
## 3781    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1   NA
## 3782     250 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 3783    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 3784       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3785        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3786   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3787    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3788       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3789       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3790       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3791   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3792        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3793       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3794       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3795       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3796   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3797        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3798    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3799       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3800        600 ml NR Individual No Retornable     5      NA     7     3    3
## 3801      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3802      Lata 453 ml Individual No Retornable    NA      NA    NA     2    4
## 3803        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3804     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 3805      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3806        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3807   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3808 500 ml NR Vidrio Individual No Retornable     0      NA    NA    NA   NA
## 3809     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     2    2
## 3810       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3811     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3812     1.250 Lts NR   Familiar No Retornable     3      NA    NA    NA    3
## 3813      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3814     1.5 Lts. Ret   Familiar    Retornable     3      NA     3     3    6
## 3815    12 Oz. NR Pet Individual No Retornable     2       2     3     5   NA
## 3816 2.5 Lts. Ret Pet   Familiar    Retornable    35      21    28    18   35
## 3817 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3818       500 ml Ret Individual    Retornable    21      19    17    21   15
## 3819             Lata Individual No Retornable    NA      NA    NA     2   NA
## 3820        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3821    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 3822        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3823        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 3824      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 3825        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 3826      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 3827        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 3828      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 3829        2 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 3830        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3831       500 ml Ret Individual    Retornable     2      NA     2    NA   NA
## 3832        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3833      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 3834        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3835     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3836     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3837   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3838        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3839   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3840     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3841        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3842 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3843     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3844    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3845       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3846 2.5 Lts. Ret Pet   Familiar    Retornable    NA      NA    NA    NA   NA
## 3847    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3848 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3849       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3850         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3851             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3852      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3853     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3854    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 3855    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3856        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3857   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3858        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3859       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3860      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3861        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3862        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3863       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3864      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3865       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3866        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3867   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3868        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3869       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3870        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3871        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3872      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3873        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3874   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3875        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3876       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3877      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3878        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3879        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3880        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3881     1 Ltro. N.R. Individual No Retornable     2       6     4    NA    4
## 3882      1.5 Lts. NR Individual No Retornable     3       6     6    10    6
## 3883        600 ml NR Individual No Retornable     3       3     3    NA    3
## 3884   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3885   250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3886        600 ml NR Individual No Retornable     1      NA    NA    NA    2
## 3887   250 ml. NR PET Individual No Retornable    NA      NA     3    NA   NA
## 3888        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3889     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA    NA   NA
## 3890     1 Ltro. N.R. Individual No Retornable     1      NA    NA    NA   NA
## 3891    12 Oz. NR Pet Individual No Retornable     0      NA    NA    NA   NA
## 3892        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 3893       12 Oz. Ret Individual    Retornable     2      NA    NA    NA   NA
## 3894 500 ml NR Vidrio Individual No Retornable     2      NA    NA    NA    2
## 3895         8 Oz. NR Individual No Retornable    NA       1     1     1    1
## 3896     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3897     1.250 Lts NR   Familiar No Retornable    NA      NA     3     3    3
## 3898      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3899     1.5 Lts. Ret   Familiar    Retornable     3       3     3    NA   NA
## 3900    12 Oz. NR Pet Individual No Retornable     2       2    NA    NA   NA
## 3901       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3902      2.5 Lts. NR   Familiar No Retornable     4       4     7    NA   NA
## 3903 2.5 Lts. Ret Pet   Familiar    Retornable    25      28    25    25   28
## 3904        400 ml NR Individual No Retornable    NA      NA     2     2   NA
## 3905    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3906 500 ml NR Vidrio Individual No Retornable     2      NA    NA     2    2
## 3907       500 ml Ret Individual    Retornable    19      11    19    21   15
## 3908      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3909         8 Oz. NR Individual No Retornable     1       1     2    NA    1
## 3910             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3911     1 Ltro. N.R. Individual No Retornable     1       1    NA    NA   NA
## 3912    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3913        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3914     250 ml Tetra Individual No Retornable     0       0     0    NA   NA
## 3915    413 ml NR VId Individual No Retornable     1       2     1    NA    0
## 3916   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3917    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3918     200 ml Tetra Individual No Retornable     0       0    NA    NA    1
## 3919        600 ml NR Individual No Retornable     1      NA     1    NA    1
## 3920        2 Lts. NR   Familiar No Retornable     1       1     1     1   NA
## 3921   250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3922        400 ml NR Individual No Retornable     0      NA     0    NA   NA
## 3923       500 ml Ret Individual    Retornable     1       1    NA    NA   NA
## 3924        600 ml NR Individual No Retornable     1       1     1    NA    1
## 3925      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 3926        2 Lts. NR   Familiar No Retornable     1       1     1     1   NA
## 3927       500 ml Ret Individual    Retornable     1       1    NA    NA   NA
## 3928        600 ml NR Individual No Retornable    NA       1    NA     1   NA
## 3929      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 3930        2 Lts. NR   Familiar No Retornable     1       1     1     1   NA
## 3931   250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3932        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3933       500 ml Ret Individual    Retornable     1       1    NA    NA   NA
## 3934        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 3935        600 ml NR Individual No Retornable    NA       1    NA     1    1
## 3936      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 3937        2 Lts. NR   Familiar No Retornable     1       1     1     1   NA
## 3938   250 ml. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 3939        400 ml NR Individual No Retornable    NA       1     0    NA   NA
## 3940       500 ml Ret Individual    Retornable     1       1     2    NA   NA
## 3941        600 ml NR Individual No Retornable    NA       1     1     1    1
## 3942      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 3943        600 ml NR Individual No Retornable     3       1     1     1    3
## 3944      Lata 453 ml Individual No Retornable    NA      NA     1    NA   NA
## 3945        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3946        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3947        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3948    500 ml NR PET Individual No Retornable     2       2    NA    NA   NA
## 3949   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3950        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3951       12 Oz. Ret Individual    Retornable    NA       2    NA    NA   NA
## 3952       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3953 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3954         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3955         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3956     1.5 Lts. Ret   Familiar    Retornable     3       3     3     6    6
## 3957       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    5
## 3958      2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 3959 2.5 Lts. Ret Pet   Familiar    Retornable    NA       4     4     4    4
## 3960    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3961 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA    2
## 3962       500 ml Ret Individual    Retornable    13       8    19    19   13
## 3963      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3964         8 Oz. NR Individual No Retornable     1      NA    NA    NA    1
## 3965      Lata 235 ml Individual No Retornable    NA       2     1    NA    2
## 3966        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3967     250 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3968    413 ml NR VId Individual No Retornable    NA      NA    NA    NA   NA
## 3969    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3970    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3971       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 3972        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 3973   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 3974        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3975    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3976       500 ml Ret Individual    Retornable     1      NA     1     1    2
## 3977        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 3978        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3979    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3980       500 ml Ret Individual    Retornable     1      NA     1     1    2
## 3981        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 3982    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3983       500 ml Ret Individual    Retornable     1      NA     1     1    2
## 3984       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 3985        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 3986        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3987    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3988       500 ml Ret Individual    Retornable     1      NA     1     3    2
## 3989      Lata 453 ml Individual No Retornable    NA      NA    NA     0   NA
## 3990        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3991     1 Ltro. N.R. Individual No Retornable    NA      NA     2     2    2
## 3992      1.5 Lts. NR Individual No Retornable    NA      NA    NA     3   NA
## 3993        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3994        600 ml NR Individual No Retornable    NA      NA    NA     2   NA
## 3995   250 ml. NR PET Individual No Retornable    NA       1     1     3   NA
## 3996        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3997  100 ml NR Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3998    12 Oz. NR Pet Individual No Retornable     2      NA    NA    NA   NA
## 3999    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    2
##      Junio Julio Agosto Septiembre Octubre Noviembre Diciembre
## 1       NA    NA     NA         NA      NA        NA         1
## 2       NA    NA     NA         NA       0        NA        NA
## 3       NA    NA     NA         NA      NA        NA         4
## 4       NA    NA     NA          2      27        23        27
## 5       NA    NA     NA          2       8         8         4
## 6       NA    NA     NA          1      NA        NA        NA
## 7       NA    NA     NA         NA      NA         0        NA
## 8       NA     0     NA         NA      NA         1        NA
## 9       NA    NA     NA         NA      NA        NA        NA
## 10      NA    NA     NA         NA      NA        NA        NA
## 11      NA     2     NA         NA      NA        NA        NA
## 12       3    NA     NA         NA      NA        NA         3
## 13      NA     2     NA          2       2        NA        NA
## 14      NA    NA     NA         NA      NA        NA         2
## 15      NA    NA      7         NA      NA        NA        NA
## 16       7     4     14          4      11        18         4
## 17       2    NA     NA         NA      NA        NA        NA
## 18      NA     6     NA         NA       2        NA        NA
## 19       6     2     13         NA      11         6         6
## 20      NA     2     NA         NA      NA        NA        NA
## 21      NA     1     NA         NA      NA        NA        NA
## 22      NA     0      1         NA      NA         1        NA
## 23      NA    NA     NA         NA      NA         0        NA
## 24      NA    NA     NA         NA      NA        NA         2
## 25       1    NA     NA         NA      NA        NA        NA
## 26       0    NA     NA         NA      NA        NA        NA
## 27       0    NA     NA         NA      NA        NA        NA
## 28      NA    NA     NA         NA       2        NA        NA
## 29       0    NA     NA         NA      NA        NA        NA
## 30      NA     1     NA         NA      NA        NA        NA
## 31      NA    NA     NA          2       2         2        NA
## 32      NA    NA      3          3      NA        NA         3
## 33      NA    NA     NA          0      NA        NA        NA
## 34      NA     3     NA          3      NA        NA        NA
## 35      NA    NA     NA         NA      NA        NA         1
## 36      NA    NA     NA         NA       1        NA        NA
## 37      NA     1      5          2       1         1         0
## 38      NA    NA     NA          1      NA        NA        NA
## 39      NA     2     NA         NA      NA        NA        NA
## 40      NA    NA      1         NA       1        NA        NA
## 41      NA    NA     NA         NA      NA         2        NA
## 42      NA    NA      6         10      10        16         6
## 43      NA    NA     NA         NA      NA        NA         2
## 44      NA    NA     NA         NA      NA        NA         4
## 45      NA    NA      4          4       7         7        14
## 46      NA    NA     NA          2      NA         2        NA
## 47      NA     2     NA         NA       2        NA         2
## 48      NA     2     11         15      13        13         8
## 49      NA    NA     NA         NA       2        NA        NA
## 50      NA    NA     NA          1       2        NA        NA
## 51      NA    NA     NA         NA       1        NA        NA
## 52      NA    NA      0         NA      NA         1         1
## 53      NA    NA      1         NA       1         1         1
## 54      NA    NA     NA         NA      NA         2        NA
## 55      NA    NA     NA          1       1         1        NA
## 56      NA    NA      1          2       1         1         1
## 57      NA    NA     NA          1      NA         1        NA
## 58      NA    NA     NA          1       2         1         1
## 59      NA    NA     NA         NA       3        NA        NA
## 60      NA    NA     NA         NA       1         1        NA
## 61      NA    NA     NA         NA       1        NA         1
## 62      NA    NA      1          1      NA        NA         1
## 63      NA    NA      1          1       1         1        NA
## 64      NA    NA      1          1      NA        NA         1
## 65      NA    NA      1          1       1         1        NA
## 66      NA    NA      1          1      NA        NA         1
## 67      NA    NA      1          1       1         1        NA
## 68      NA    NA      1          1      NA        NA         1
## 69      NA    NA      1          1       1         1        NA
## 70      NA     1      3          1       2         1         2
## 71      NA    NA     NA         NA      NA        NA         1
## 72      NA     2     NA         NA       2        NA         2
## 73      NA    NA     NA         NA      NA        NA         1
## 74       1    NA     NA         NA      NA        NA        NA
## 75       1     1      1          1      NA         0        NA
## 76      NA    NA      3         NA      NA        NA        NA
## 77      NA    NA      3         NA      NA        NA        NA
## 78      NA    NA     NA         NA      NA        NA         2
## 79      NA    NA     NA         NA      NA        NA        NA
## 80       2    NA      4          2       2         2         2
## 81      17    11     13         17      19        21        17
## 82       1     2      1          1      NA         1        NA
## 83      NA    NA     NA         NA      NA        NA        NA
## 84       0    NA     NA         NA      NA        NA        NA
## 85      NA    NA     NA         NA       1        NA        NA
## 86      NA    NA     NA         NA      NA        NA        NA
## 87      NA    NA     NA         NA      NA        NA        NA
## 88      NA    NA     NA         NA      NA        NA         2
## 89      NA    NA     NA         NA      NA        NA        NA
## 90      NA    NA     NA         NA      NA        NA        NA
## 91      NA    NA     NA         NA      NA        NA         1
## 92      NA    NA     NA         NA       2        NA        NA
## 93      NA    NA     NA         NA      NA        NA        NA
## 94      NA     2     NA         NA      NA        NA        NA
## 95      NA    NA     NA         NA      NA         3        NA
## 96      NA    NA     NA         NA      NA        NA        NA
## 97      14    11     11         28      18        21        25
## 98      NA    NA     NA         NA      NA        NA        NA
## 99      15    15     13         21      13        21        11
## 100     NA    NA     NA         NA      NA        NA        NA
## 101     NA    NA     NA         NA      NA        NA        NA
## 102     NA    NA     NA         NA      NA        NA        NA
## 103     NA    NA     NA          0      NA        NA        NA
## 104     NA    NA     NA          1      NA        NA        NA
## 105      3     1      0          2       1         1         2
## 106     NA    NA     NA         NA      NA        NA        NA
## 107     NA    NA     NA         NA      NA         2        NA
## 108     NA     0      1          0      NA        NA         0
## 109     NA    NA     NA         NA      NA        NA        NA
## 110      1    NA      0          0      NA        NA         0
## 111     NA    NA     NA         NA      NA        NA        NA
## 112     NA    NA     NA         NA      NA        NA        NA
## 113      2     1      1          2       2         1         1
## 114     NA    NA     NA         NA      NA        NA        NA
## 115     NA    NA     NA         NA      NA        NA        NA
## 116     NA    NA     NA         NA      NA         1        NA
## 117     15     6     13         11      11         8         6
## 118     22    19     16         19      22        22        13
## 119     NA    NA     NA          1      NA        NA        NA
## 120     NA    NA     NA         NA      NA        NA        NA
## 121     NA    NA     NA         NA      NA         3        NA
## 122     NA    NA     NA         NA      NA         0        NA
## 123     NA    NA     NA         NA      NA         0        NA
## 124      2     3      3          1       2         1         2
## 125      0    NA     NA         NA       0        NA         1
## 126      1     1      2          1       2         1         1
## 127      1     1      2          1       1         1         1
## 128     NA    NA     NA          3      NA        NA        NA
## 129     NA     0     NA         NA      NA        NA        NA
## 130     NA    NA     NA         NA      NA        NA        NA
## 131     NA    NA     NA         NA      NA        NA        NA
## 132      6     6      6          6       6         6         4
## 133     NA    NA     NA         NA       2        NA        NA
## 134      4     6      6          4       4         6         4
## 135      1     1      1          1       2        NA         1
## 136      2    NA     NA          2      NA        NA        NA
## 137      2    NA     NA          2       2        NA        NA
## 138     NA    NA     NA          4       2         2        NA
## 139     13    21     16         NA       3        NA        NA
## 140      6     3     13         25      25        25        35
## 141     16    13     16         19      16        19        22
## 142     11    14     12         14      11        11         9
## 143     NA    NA     NA         NA      NA        NA        NA
## 144     25    28     32         11      18        25        35
## 145     32    25     42         42      46        46        56
## 146     19    15     19         21      19        19        21
## 147     59    61     63         68      70        53        68
## 148      4     2      3          4       3         5         3
## 149      2     2      2          2      NA         2        NA
## 150      2     2      2          2       4         2         2
## 151      3     2      1          2       2         2         2
## 152     NA     1      1          1       1         1         1
## 153     NA    NA     NA          1      NA        NA        NA
## 154      1    NA     NA         NA       1        NA        NA
## 155      1     1      1          1       2         3         2
## 156     NA    NA      0         NA      NA         0         0
## 157      1     2      3          1       2         0         3
## 158      0    NA     NA         NA       1        NA         0
## 159      0     1      1          0       1         1         1
## 160      1    NA      2          2       2         2         2
## 161      2     1      1          1       1         2         3
## 162     NA    NA     NA         NA      NA         0        NA
## 163      2     2      3          3       3         3         3
## 164      2     1      1          2       1         2         1
## 165     NA    NA     NA         NA      NA        NA        NA
## 166      1    NA     NA         NA       2         1         1
## 167      2     1      1          1       1         2         3
## 168      1     1      2         NA       0         0         0
## 169     NA     1      1         NA       1         2         1
## 170     NA    NA     NA         NA      NA        NA        NA
## 171      1    NA     NA          2       2         2         1
## 172     NA    NA     NA         NA      NA         0        NA
## 173      1     2      3          2       3         2         3
## 174     NA     1      1         NA       1         2         1
## 175      2     1      1          1       1         2         3
## 176      1     0     NA         NA       0        NA        NA
## 177     NA    NA     NA         NA      NA        NA        NA
## 178      1    NA      5         NA       2         4         2
## 179      5     4      4          1       4         2         3
## 180     NA    NA     NA         NA      NA         0        NA
## 181      3     3      3          5       4         4         4
## 182     NA     1      1         NA       3         2         3
## 183     NA    NA     NA         NA      NA        NA        NA
## 184     NA    NA      1          1       1         1        NA
## 185     NA     1      1         NA      NA        NA         1
## 186     NA    NA     NA         NA      NA        NA        NA
## 187     NA    NA     NA         NA      NA         1        NA
## 188     NA    NA     NA         NA      NA        NA        NA
## 189     NA    NA     NA         NA       3        NA        NA
## 190      1    NA     NA         NA      NA        NA        NA
## 191     NA    NA     NA          0       1        NA        NA
## 192     NA    NA     NA         NA      NA        NA        NA
## 193      8     4      6          6       8         4         4
## 194      4     2     NA          2       4        NA         2
## 195     NA    NA     NA         NA      NA        NA        NA
## 196     NA    NA     NA          4       2         4         4
## 197      8    11      8          3      NA        NA        NA
## 198     NA    NA      3         10      16        13        10
## 199      3    NA      3          3       3        10         3
## 200      6     6      9         14      11         5        17
## 201      4     7     NA         NA      14         7        39
## 202      4    NA      4          4       4         4        NA
## 203      8     4     11          4      11        11         6
## 204      6     6      4         11       4        NA         4
## 205     NA     1      1         NA       1         1        NA
## 206      2     2      2         NA      NA        NA        NA
## 207     NA    NA      2         NA       2        NA        NA
## 208     NA    NA      1         NA      NA        NA        NA
## 209     NA    NA      1         NA      NA        NA        NA
## 210     NA     1      1         NA      NA        NA        NA
## 211     NA     1      2          1      NA        NA        NA
## 212     NA     1      1         NA     -12        NA        NA
## 213     NA    NA     NA         NA      -1        NA        NA
## 214     NA    NA     NA         NA      NA        NA        NA
## 215     NA    NA      3          1       3        NA        NA
## 216     NA    NA     NA         NA      NA        NA        NA
## 217     NA    NA     NA          0       0        NA        NA
## 218     NA    NA     NA         NA      NA        NA        NA
## 219      1    NA     NA         NA      NA        NA        NA
## 220     NA    NA      0         NA      NA        NA        NA
## 221     NA    NA      0         NA      NA        NA        NA
## 222     NA    NA      0         NA      NA        NA        NA
## 223     NA    NA     NA         NA      -4        NA        NA
## 224     NA    NA      0         NA      NA        NA        NA
## 225     NA    NA      0         NA      NA        NA        NA
## 226     NA    NA     NA         NA      NA        NA         3
## 227     NA    NA      0         NA      NA        NA        NA
## 228      1    NA     NA         NA      NA        NA        NA
## 229     NA    NA      0         NA      NA        NA        NA
## 230     NA     2     NA         NA      NA        NA        NA
## 231     NA    NA     NA         NA      NA         2        NA
## 232     NA    NA      0         NA      NA        NA        NA
## 233     NA    NA     NA         NA      NA        NA         1
## 234      2     2      2         NA      NA        NA        NA
## 235      3     3      3         NA       3        NA        NA
## 236      0     0     NA          0      NA        NA        NA
## 237      2     2      2          1       3         1         1
## 238      1     1      1         NA      NA        NA        NA
## 239      1     0      1         NA      NA        NA        NA
## 240     NA    NA     NA         NA      NA        NA        NA
## 241     NA    NA     NA         NA      NA        NA        NA
## 242     NA     4     NA         NA      NA        NA        NA
## 243     NA    NA     NA         NA      NA        NA        NA
## 244      8     4      6          8       4         4         6
## 245      8     2      4          4       6         4         4
## 246      1     1      1         NA       1        NA         1
## 247     NA     4     NA          2      NA        NA        NA
## 248      1     1      1          1       1         1         1
## 249     NA    NA     NA          2       2        NA         4
## 250     11    NA     NA         NA      NA        NA        NA
## 251     16     6     10         13      16        13        13
## 252      3    10      6          3       3        NA         3
## 253      5     2      3          2       3         2         3
## 254     18     7      4          4      NA        NA        14
## 255     70    49     74         49      49        42        56
## 256      8    NA      4          6       8         6         6
## 257     21     6     15         15      17        19        15
## 258      2    NA      1          1       1         1         1
## 259      2     2     NA         NA      NA        NA        NA
## 260      1     2     NA         NA       1        NA        NA
## 261      2     3      4         NA      NA         1        NA
## 262      3     2      1          2       3         1         3
## 263      1    NA     NA         NA       1        NA        NA
## 264      3    NA     NA         NA      NA        NA        NA
## 265      1     1      1          0       1         0         2
## 266     NA    NA      0         NA      NA        NA        NA
## 267      1     2      0          2       3         1         1
## 268      0    NA     NA         NA      NA        NA        NA
## 269      0     0      0         NA       1         0         0
## 270     NA    NA     NA         NA      NA         1        NA
## 271      1     1      1         NA       1        NA        NA
## 272      0     0     NA          0      NA        NA        NA
## 273      1     1      3         NA      NA         1         1
## 274      0    NA     NA         NA      NA        NA        NA
## 275      0     0     NA          0      NA        NA        NA
## 276      1     1      1         NA       1        NA        NA
## 277      1     1      1         NA      NA         1         1
## 278      0     0     NA          0      NA        NA        NA
## 279      1     1      1         NA      NA        NA        NA
## 280      0     0     NA          0      NA        NA        NA
## 281      0    NA     NA         NA      NA        NA        NA
## 282      1     1      1         NA      NA         1         1
## 283      0    NA     NA         NA      NA        NA        NA
## 284     NA    NA     NA         NA       1        NA        NA
## 285      0     0     NA          0      NA        NA        NA
## 286      1     1      1         NA       1        NA        NA
## 287      0     0     NA          0      NA        NA        NA
## 288      0     0      0         NA       0        NA        NA
## 289      1     1      1         NA      NA         1         1
## 290      0    NA     NA         NA      NA        NA        NA
## 291      0     0     NA          0      NA        NA        NA
## 292      3     3      1          3       3        NA         2
## 293     NA    NA     NA         NA      NA        NA        NA
## 294     NA    NA      3         NA      NA        NA        NA
## 295     NA    NA     NA         NA      NA        NA         1
## 296     NA    NA     23          2       2        NA        NA
## 297     NA    NA     19          3       3        NA        NA
## 298     NA    NA      4         NA      NA        NA        NA
## 299     NA    NA      8         NA      NA        NA        NA
## 300     NA    NA     NA         NA      NA         0        NA
## 301      3     2      3          3       5         3         3
## 302      2     1      2          2       1         3         1
## 303      1    NA      1          1       2        NA         2
## 304     NA    NA     NA         NA      NA        NA        NA
## 305      2     2     NA         NA       2         2        NA
## 306     NA    NA      3         NA      NA        NA        NA
## 307     NA    NA      4         NA      NA        NA        NA
## 308     NA    NA     NA         NA      NA        NA        NA
## 309     NA    NA      3         NA      NA        NA        NA
## 310     NA    NA      3          3       3         3        NA
## 311      6     9      9          8       5         9         6
## 312     NA    NA     NA         NA      NA        NA         4
## 313     18    11     25         21      21        21        25
## 314     NA    NA      8         NA      NA        NA        NA
## 315      6     8      8         11      17        13        13
## 316     15     6     11          6       2         8        11
## 317     NA    NA     10         NA      NA        NA        NA
## 318      2     4      8          3       5         4         4
## 319     NA    NA     NA         NA      NA        NA        NA
## 320      2    NA      1         NA      NA        NA        NA
## 321      1    NA      1          1       1         1         1
## 322     NA     1     NA         NA      NA        NA        NA
## 323      0    NA      0          0       0         0         1
## 324      1     0      1          1       2         1         1
## 325      1     2      3          3       2         3         2
## 326      0    NA      0          0       0         0         0
## 327     NA    NA     NA          3       1        NA        NA
## 328     NA    NA     NA         NA      NA         0        NA
## 329     NA    NA      2         NA       1        NA        NA
## 330     NA    NA      1         NA      NA        NA        NA
## 331     NA    NA     NA         NA      NA        NA        NA
## 332     NA    NA     NA         NA       1        NA        NA
## 333     NA    NA     NA         NA       1        NA        NA
## 334     NA    NA     NA         NA      NA        NA        NA
## 335     NA    NA     NA         NA       1        NA        NA
## 336     NA    NA      1         NA      NA        NA        NA
## 337     NA    NA      3         NA       1        NA        NA
## 338     NA    NA      1         NA      NA        NA        NA
## 339     NA    NA     NA         NA      NA        NA        NA
## 340     NA    NA     NA         NA       1        NA        NA
## 341     NA    NA      0         NA       0         0        NA
## 342     NA    NA     NA         NA      NA        NA        NA
## 343     NA    NA     NA          2       1        NA        NA
## 344     NA    NA      1         NA      NA        NA        NA
## 345     NA    NA     NA         NA      NA        NA        NA
## 346      2     3      3          5       4         6         5
## 347     NA    NA     NA         NA      NA         1        NA
## 348     NA    NA     NA         NA      NA        NA         1
## 349      2    NA     NA         NA       2         2         2
## 350     NA    NA     NA         NA      NA        NA        NA
## 351     NA    NA     NA         NA      NA        NA        NA
## 352     NA    NA     NA         NA       3        NA         3
## 353     NA    NA     NA         NA      NA        NA         1
## 354     NA    NA     NA         NA      NA         0        NA
## 355      1    NA     NA         NA      NA        NA        NA
## 356     NA    NA     NA         NA      NA        NA        NA
## 357      1    NA     NA         NA      NA        NA        NA
## 358      0    NA     NA         NA      NA        NA        NA
## 359     NA    NA     NA         NA      NA        NA        NA
## 360     NA    NA     NA          2      NA        NA        NA
## 361     NA    NA      3          3       6        NA        NA
## 362     NA    NA      3          3       3        NA        NA
## 363      9    NA     NA         NA      NA         2        NA
## 364     NA    NA      2         NA      NA        NA        NA
## 365     NA    NA     NA         NA      NA        NA        NA
## 366     NA    NA     NA         NA      NA        NA        NA
## 367     NA    NA     NA         NA      NA        NA        NA
## 368     NA    NA      4         NA       2        NA        NA
## 369     NA     2      2         NA      NA        NA        NA
## 370     NA    NA     NA         NA      NA        NA        NA
## 371     NA    NA     NA         NA       1        NA        NA
## 372     NA    NA     NA         NA       1        NA        NA
## 373     NA    NA      0         NA      NA        NA        NA
## 374     NA     0     NA         NA      NA        NA        NA
## 375     NA    NA     NA         NA      NA        NA        NA
## 376      0    NA     NA         NA      NA        NA        NA
## 377     NA    NA     NA         NA      NA        NA        NA
## 378     NA    NA     NA         NA      NA        NA        NA
## 379     NA    NA     NA         NA      NA        NA        NA
## 380     NA    NA     NA         NA      NA        NA        NA
## 381     NA    NA      1         NA      NA        NA        NA
## 382     NA    NA     NA         NA       0        NA        NA
## 383     NA    NA     NA         NA      NA        NA        NA
## 384     NA    NA     NA         NA      NA        NA        NA
## 385     NA    NA     NA         NA      NA        NA        NA
## 386     NA    NA      1         NA      NA        NA        NA
## 387     NA    NA     NA         NA       0        NA        NA
## 388     NA    NA     NA         NA      NA        NA        NA
## 389     NA    NA     NA         NA      NA        NA        NA
## 390     NA    NA      1         NA      NA        NA        NA
## 391     NA     1     NA         NA      NA        NA        NA
## 392     NA    NA     NA         NA      NA        NA         0
## 393     NA    NA     NA         NA       0        NA        NA
## 394     NA    NA     NA         NA      NA        NA        NA
## 395     NA    NA     NA         NA      NA        NA        NA
## 396     NA    NA     NA         NA      NA         0        NA
## 397     NA    NA     NA         NA      NA        NA        NA
## 398     NA    NA      1         NA      NA        NA        NA
## 399     NA    NA     NA         NA       0        NA        NA
## 400     NA    NA     NA         NA      NA        NA         1
## 401     NA    NA     NA         NA      NA        NA         1
## 402      4    NA     NA         NA       1        NA        NA
## 403     NA    NA     NA         NA      NA        NA        NA
## 404     NA    NA      2         NA      NA         2        NA
## 405      2    NA      2         NA      NA         2        NA
## 406     NA    NA     NA         NA      NA        -3        NA
## 407     NA     6     NA          3       6         3         3
## 408     NA     2     NA         NA      NA         2        NA
## 409     NA    NA     NA          4      NA        NA        NA
## 410     14    18     11         18      18        18        14
## 411      4    NA     NA         NA       2        NA         2
## 412      4     6      8         NA      NA         4        NA
## 413     NA     1     NA         NA      NA         1        NA
## 414     NA    NA      2         NA      NA        NA        NA
## 415      1    NA     NA         NA       1        NA        NA
## 416     NA    NA     NA         NA      NA         1        NA
## 417      0     0      0          2       0         0         0
## 418     NA    NA     NA         NA      NA         2        NA
## 419     NA    NA      6         NA       3         3        NA
## 420     NA     1      1         NA      NA         1        NA
## 421     NA    NA     NA         NA      NA        NA        NA
## 422     NA    NA     NA         NA      NA        NA        NA
## 423     NA     0     NA         NA      NA        NA        NA
## 424     NA    NA     NA         NA      NA        NA        NA
## 425      0     1      1         NA      NA         1        NA
## 426     NA    NA     NA         NA      NA        NA         1
## 427     NA    NA     NA         NA      NA        NA        NA
## 428     NA    NA     NA         NA      NA        NA         1
## 429     NA    NA     NA         NA      NA        NA         2
## 430     NA    NA     NA         NA      NA         1        NA
## 431      4     2      2          4      NA        NA        NA
## 432      6     3      3          3      10        10        13
## 433     NA    NA     NA         NA      NA        NA        NA
## 434      3    NA      3          3      NA        NA        NA
## 435     NA    NA     NA         NA      NA        NA        NA
## 436     NA    NA     NA         NA      NA        NA        NA
## 437     NA    NA      0         NA       0         0        NA
## 438     NA    NA     NA          1      NA        NA        NA
## 439     NA    NA     NA         NA      NA        NA        NA
## 440     NA    NA     NA          1       1        NA        NA
## 441     NA     0     NA          0      NA        NA        NA
## 442     NA    NA     NA         NA      NA        NA        NA
## 443     NA    NA     NA          2      NA        NA        NA
## 444     NA    NA     NA         NA      NA        NA        NA
## 445      1    NA     NA         NA      NA        NA        NA
## 446     NA    NA     NA         NA      NA        NA        NA
## 447     NA     2     NA          2      NA        NA         2
## 448     NA    NA     NA         NA       2         2         2
## 449      3    NA     NA         NA      NA        NA        NA
## 450     NA    NA      3         NA       3        NA         3
## 451     57    57     67         79      79        63        70
## 452     NA    NA     NA          2      NA        NA        NA
## 453     NA    NA      2          3       2        NA        NA
## 454     NA    NA      3          3      NA        NA        NA
## 455     NA    NA     NA         NA       4         4         7
## 456     53    49     56         67      53        32        56
## 457     NA    NA      4         NA       6         8         8
## 458     13     4      6          8       8         2         4
## 459     51    40     38         49      46        32        32
## 460     NA    NA      1         NA       1        NA        NA
## 461      2    NA      2         NA       2        NA        NA
## 462     NA    NA      2          4      NA         2        NA
## 463      3     3      2          2       3         1         3
## 464     NA    NA     NA         NA      NA        NA        NA
## 465     NA    NA     NA         NA      NA        NA        NA
## 466     NA    NA     NA         NA       1        NA        NA
## 467     NA    NA     NA          1      NA        NA        NA
## 468      2     2      2          0       2         1         0
## 469     NA    NA      0         NA       0         1        NA
## 470      1     1      0          1       2         3        NA
## 471     NA    NA     NA         NA      NA        NA        NA
## 472     NA    NA     NA         NA      NA        NA        NA
## 473     NA    NA     NA         NA       1        NA         1
## 474      1     2     NA          2       2         1         2
## 475      2    NA     NA         NA      NA        NA        NA
## 476      2     1      1         NA       5         1         1
## 477     NA    NA     NA          1      NA        NA        NA
## 478     NA    NA      3         NA      NA        NA        NA
## 479     NA    NA      0         NA       0         0        NA
## 480     NA    NA     NA         NA       0         1         0
## 481     NA    NA     NA          3      NA        NA        NA
## 482      1     1      1          5      NA         1        NA
## 483      0     0      0          0       0        NA         0
## 484      1     2     NA          2       2         4         2
## 485      2    NA     NA         NA      NA        NA        NA
## 486      2     1      1         NA       2         1         1
## 487     NA    NA     NA          1      NA        NA        NA
## 488     NA    NA      3         NA      NA        NA        NA
## 489     NA    NA     NA         NA       0         1        NA
## 490      1     1      1          1      NA         1         2
## 491      0     0      0          0       0        NA         0
## 492      1     2     NA          2       2         1         2
## 493      1     1      1         NA       2         1         1
## 494     NA    NA     NA          1      NA        NA        NA
## 495     NA    NA      3         NA      NA        NA        NA
## 496     NA    NA      0         NA       0         0        NA
## 497     NA    NA     NA         NA       0         1         0
## 498      1     1      1          3      NA         1        NA
## 499     NA    NA     NA         NA      NA         1         1
## 500      2    NA     NA         NA      NA        NA        NA
## 501      1    NA     NA         NA      NA        NA        NA
## 502     NA    NA     NA          2      NA        NA        NA
## 503      0     0      0          0       0        NA         0
## 504      4     2      3          5       5         1         2
## 505      2    NA     NA         NA      NA        NA        NA
## 506      2     1      1         NA       2         4         1
## 507     NA    NA     NA          1      NA        NA        NA
## 508     NA    NA      3         NA      NA        NA        NA
## 509     NA    NA      0         NA       0         0        NA
## 510     NA    NA     NA         NA       0         1         1
## 511      3     1      1          5       2         1         2
## 512      0     0      0          0       0        NA         0
## 513     NA    NA      0         NA      NA        NA        NA
## 514     NA    NA     NA         NA      NA        NA         1
## 515     NA    NA     NA          3      NA        NA        NA
## 516      2    NA     NA         NA      NA        NA        NA
## 517     NA    NA     NA         NA      NA        NA        NA
## 518     NA    NA     NA         NA      NA        NA        NA
## 519     NA    NA      3         NA      NA        NA        NA
## 520      3    NA     NA          3       3         3         3
## 521     NA    NA      2         NA      NA        NA        NA
## 522     14    18     18         14       7        11         4
## 523     13    13     13         13      15        25         8
## 524     NA    NA     NA          1      NA        NA        NA
## 525     NA    NA     NA         NA      NA        NA        NA
## 526     NA    NA     NA          0      NA        NA        NA
## 527     NA    NA     NA         NA       1         1        NA
## 528     NA    NA     NA          2      NA        NA        NA
## 529     NA    NA     NA         NA      NA        NA        NA
## 530     NA     3     NA         NA      NA        NA        NA
## 531     NA    NA     NA         NA      NA        NA        NA
## 532      3    NA     NA         NA      NA        NA        NA
## 533     NA     0     NA         NA      NA        NA        NA
## 534      2     2      2         NA       2         2        NA
## 535     NA    NA     NA         NA      NA        NA        NA
## 536     NA    NA     NA         NA      NA        NA        NA
## 537      4    NA      2          6       6         2         2
## 538     NA    NA     NA         NA      NA        NA        NA
## 539     NA    NA     NA         NA       1        NA        NA
## 540     NA    NA     NA         NA      NA        NA         2
## 541     NA     2     NA          2       4         8         4
## 542     NA    NA      3         NA      NA         3         3
## 543     NA     2     NA         NA      NA         2        NA
## 544     NA    NA     NA         NA      NA        NA         3
## 545     NA    NA     NA          0      NA        NA        NA
## 546     NA    NA     NA         NA       1        NA        NA
## 547     NA    NA     NA         NA       2        NA        NA
## 548      2     6      4          6       4         4         4
## 549     NA     2     NA          1       1         1         1
## 550     NA    NA      2         NA      NA        NA        NA
## 551     NA     4      2         NA      NA         2        NA
## 552     NA    NA     NA          2       2        NA        NA
## 553     NA     3      3          3       3        NA        NA
## 554     NA     3      3          3       3        NA        NA
## 555     NA    NA     NA         NA      NA        NA        NA
## 556     NA    NA      4          4      NA        NA        NA
## 557     25    23     15         15      23        30         6
## 558     NA    NA     NA         NA      NA        NA        NA
## 559      2     2      3          2       6         6         2
## 560     NA    NA     NA         NA      NA        NA        NA
## 561     NA    NA     NA         NA      NA        NA        NA
## 562     NA    NA     NA          1      NA        NA        NA
## 563      0    NA     NA          0      NA        NA        NA
## 564     NA    NA     NA         NA       3        NA         3
## 565     NA    NA      0         NA      NA        NA        NA
## 566     NA    NA     NA          0      NA        NA        NA
## 567     NA    NA     NA         NA      NA        NA        NA
## 568     NA    NA     NA          0      NA        NA        NA
## 569     NA    NA     NA         NA      NA        NA        NA
## 570     NA    NA     NA          0      NA        NA        NA
## 571     NA    NA     NA         NA      NA        NA        NA
## 572     NA    NA      1         NA      NA        NA        NA
## 573     NA    NA     NA          0      NA        NA        NA
## 574     NA    NA     NA         NA      NA        NA         1
## 575     NA    NA     NA          2       2        NA         6
## 576     NA    NA     NA         NA      NA        NA        NA
## 577     NA    NA     NA         NA      NA        NA        NA
## 578     NA    NA     NA         NA       3        NA        NA
## 579     NA     0     NA          0       0        NA        NA
## 580      1     1      1          3      NA         1         0
## 581      1    NA     NA         NA      NA        NA        NA
## 582     NA     0      0          0      NA        NA         0
## 583     NA    NA     NA         NA       1        NA        NA
## 584     NA    NA     NA          2      NA        NA        NA
## 585     NA    NA     NA         NA      NA        NA        NA
## 586     NA     3      3          3      NA         3         3
## 587     NA    NA     NA          4      NA        NA        NA
## 588      6     6      8          8       6         8         6
## 589      2     4      4          4       4         4         4
## 590     27    27     21         30      27        27        23
## 591      2    NA      2          2       2         1         1
## 592     NA     2      2          2       2        NA        NA
## 593     NA     2     NA          1       2        NA         1
## 594     NA    NA     NA         NA      NA        NA        NA
## 595     NA    NA     NA         NA      NA        NA         0
## 596      1    NA     NA         NA      NA        NA        NA
## 597      0    NA     NA         NA      NA        NA        NA
## 598     NA    NA     NA         NA      NA        NA         0
## 599     NA    NA     NA         NA       1         1         1
## 600     NA     1      1          1       1         1         1
## 601     NA     0     NA          0       0        NA        NA
## 602      1     1      1         NA       1         1         1
## 603      1     1      2          1       1         1         2
## 604     NA    NA      0         NA       0         0        NA
## 605     NA     1      1          1       1         1         1
## 606      1     1      1         NA       1         1         1
## 607      1     1      2          1       1         1         2
## 608     NA    NA      0         NA       0         0        NA
## 609     NA     1      1          1       1         1         1
## 610     NA     0     NA          0       0        NA        NA
## 611      1     1      1         NA       1         1         1
## 612      1     1      2          1       1         1         2
## 613     NA    NA      0         NA       0         0        NA
## 614     NA     1      1          1       1         1         1
## 615     NA     0     NA          0       0        NA        NA
## 616      1     1      1         NA       1         1         1
## 617      1     1      2          1       1         1         2
## 618     NA    NA      0         NA       0         0        NA
## 619     NA    NA      1         NA      NA         1        NA
## 620      3    NA      6          1       1         3         1
## 621     NA    NA     NA         NA      NA         0        NA
## 622     NA    NA     NA         NA       1        NA        NA
## 623      2     4      2          6       2         6         2
## 624      3    NA      3          3       3        10         3
## 625     NA    NA     NA         NA      NA        NA        NA
## 626     NA    NA     NA         NA       3        NA        NA
## 627     NA    NA     NA         NA      NA        NA         1
## 628     NA    NA     NA         NA      NA        NA        NA
## 629     NA    NA     NA         NA      NA        NA        NA
## 630     NA    NA     NA          1      NA        NA        NA
## 631     NA     1     NA          1       1         1         0
## 632     NA    NA     NA          1      NA        NA         1
## 633     NA    NA      2         NA      NA        NA        NA
## 634     NA    NA      1          1      NA        NA         1
## 635     NA    NA      3         NA      NA        NA        NA
## 636     NA    NA     NA         NA      NA        NA        NA
## 637     NA    NA     NA         NA      NA        NA        NA
## 638      2    NA     NA          2       2        NA        NA
## 639     NA    NA     NA         NA      NA        NA        NA
## 640      4    14      7          4       7         7         7
## 641      4     8      2          6       4         2         4
## 642     NA    NA     NA          1      NA         1        NA
## 643      2    NA      2         NA      NA        NA        NA
## 644      2     2      2         NA       2        NA        NA
## 645     NA    NA     NA         NA       0        NA        NA
## 646      2    NA      2         NA       2        NA         2
## 647     NA    NA     NA         NA      NA        NA         2
## 648      3     3     NA          3      NA        NA        NA
## 649      6     3      6          3      10         3        10
## 650     NA     6     10          3      NA         3         6
## 651      5     3      5          5       2         3         2
## 652      7    14     11         11      NA         4        11
## 653     28    28     25         35      18        21        28
## 654     NA    NA     NA         NA      NA         2        NA
## 655      8    13      6         17       8         8        11
## 656     21    25     23         27      27        21        27
## 657      2     3      2          1      NA         2         2
## 658      2     2      2          2      NA         2         2
## 659      4     2      2          4       2         2         2
## 660      3     2      3          2       3         2         3
## 661     NA    NA      1          1      NA        NA         1
## 662      1     1      1          1       1        NA        NA
## 663     NA    NA     NA         NA      NA        NA        NA
## 664     NA    NA      0          0      NA        NA         0
## 665     NA    NA     NA         NA      NA         1        NA
## 666     NA     2     NA          2       2         3         2
## 667     NA    NA     NA         NA      NA         1        NA
## 668      0    NA      1          0      NA        NA         0
## 669     NA     1      1         NA      NA        NA        NA
## 670     NA    NA     NA         NA       1        NA        NA
## 671     NA    NA     NA         NA      NA         3        NA
## 672     NA    NA     NA         NA      NA        NA        NA
## 673     NA    NA     NA          0      NA        NA        NA
## 674      2    NA     NA         NA      NA         4        NA
## 675     NA    NA      2          1       1         1        NA
## 676     NA    NA     NA         NA      NA        NA        NA
## 677     NA    NA     NA         NA      NA        NA        NA
## 678     NA    NA     NA         NA      NA        NA        NA
## 679     NA    NA     NA         NA      NA        NA        NA
## 680     NA    NA     NA         NA       0        NA        NA
## 681     NA    NA     NA         NA      NA         1         1
## 682     NA    NA      3         NA      NA         3        NA
## 683     NA     2      2         NA       4        NA        NA
## 684     NA    NA     NA         NA      NA        NA        NA
## 685     NA    NA     NA         NA      NA        NA        NA
## 686     NA    NA     NA         NA      NA        NA         0
## 687      3    NA     NA         NA      NA        NA        NA
## 688     NA    NA     NA          3      NA         3         3
## 689     NA    NA     NA         NA      NA        NA        NA
## 690     NA    NA     NA         NA      NA        NA        NA
## 691     NA    NA      0         NA       0        NA         0
## 692      4     4      4          4      NA         2         2
## 693     NA    NA      3         NA       1        NA         1
## 694     NA    NA     NA         NA      NA        NA        NA
## 695     NA     1      1         NA      NA        NA        NA
## 696     NA    NA     NA         NA      NA        NA        NA
## 697     NA    NA     NA         NA      NA        NA         3
## 698      1    NA     NA         NA       1         1         1
## 699     NA    NA     NA         NA      NA        NA         3
## 700     NA    NA     NA         NA      NA         1        NA
## 701      6     6      4          4       6         8         2
## 702      6    10      3          3       3         6         6
## 703     NA    NA     NA         NA      NA        NA        NA
## 704     NA    NA     NA         NA      NA        NA        NA
## 705     NA     3     NA         NA      NA        NA         3
## 706     NA    NA     NA         NA      NA        NA         1
## 707      1    NA     NA         NA       1        NA        NA
## 708     NA    NA     NA         NA      NA         1        NA
## 709     NA     1      1         NA      NA        NA        NA
## 710     NA     1     NA          1       1         1         1
## 711      2     0      1         NA       1         2         1
## 712     NA    NA     NA         NA       0        NA        NA
## 713     NA     3      1          1       1         2         2
## 714      2    NA     NA         NA      NA        NA        NA
## 715      2     1      1          1       1         2         1
## 716     NA    NA     NA         NA       1        NA        NA
## 717     NA    NA     NA         NA      NA        NA        NA
## 718     NA    NA     NA         NA      NA        NA        NA
## 719     NA    NA     NA         NA      NA        NA        NA
## 720      2     2     NA         NA      NA        NA        NA
## 721     NA    NA     NA         NA      NA        NA        NA
## 722      4     4      4          2       6         4         4
## 723     NA    NA     NA         NA      NA        NA        NA
## 724     NA    NA     NA         NA      NA        NA        NA
## 725      3    NA      2          3      NA        NA        NA
## 726      6     4      8          8       6         6         6
## 727     NA     1      1          1       1         2         2
## 728      1    NA     NA         NA      NA        NA        NA
## 729      2     2      2          4       2         2         2
## 730      4     2      2          2       2         4         2
## 731     NA    NA     NA         NA      NA        NA        NA
## 732     NA    NA     NA          8       6         8         8
## 733     13    11      3         NA      NA        NA        NA
## 734      3    13     10          3      NA        NA         3
## 735      3     3      3          3       3         6         3
## 736      8     9      8         12       9         8         8
## 737     NA    NA     NA         NA      NA        NA        NA
## 738     NA    NA     NA         NA      NA        NA        NA
## 739      7    14      7         14      14        21        21
## 740     35    25     21         28      28        25        32
## 741     NA    NA     NA         NA      NA        NA        NA
## 742     32    23     19         25      23        21        23
## 743     53    61     49         42      51        42        44
## 744     NA    NA     NA         NA      NA        NA        NA
## 745      3     3     NA         NA      NA        NA        NA
## 746     NA    NA     NA         NA      NA        NA        NA
## 747      9     6      5          7       8         4         5
## 748      2     3      3          3      NA        NA        NA
## 749      4     2      2          2       2         2         2
## 750      3     2      2          2       3         3         2
## 751      1     1      1          1       1         1         1
## 752     NA    NA     NA         NA      NA        NA        NA
## 753     NA    NA     NA         NA      NA        NA        NA
## 754      0     0      1          0       0         0         0
## 755     NA    NA     NA         NA      NA        NA         0
## 756      1     2      2          1       3         3         2
## 757      0    NA     NA         NA      NA        NA        NA
## 758      0     0      0          0      NA         0         0
## 759      0     1      0          0       0         0         0
## 760      3     2      1          2       2         3         1
## 761     NA    NA     NA         NA      NA        NA         3
## 762     NA    NA     NA         NA       3        NA         1
## 763     NA    NA     NA         NA      NA        NA         2
## 764      4     3      3          3      NA        NA         1
## 765     NA    NA     NA         NA      NA         0        NA
## 766      2     1     NA         NA      NA        NA        NA
## 767      2    NA      2         NA       2         1         1
## 768     NA    NA      1          1       2         2         1
## 769     NA    NA     NA         NA      NA        NA        NA
## 770     NA    NA     NA         NA      NA        NA         2
## 771      1    NA     NA         NA      NA        NA         1
## 772     NA    NA     NA         NA      NA        NA        NA
## 773     NA    NA     NA         NA      NA        NA        NA
## 774     NA    NA     NA         NA      NA         1        NA
## 775      2     1      1          1       1         1         2
## 776     NA    NA     NA         NA      NA        NA        NA
## 777     NA    NA     NA         NA      NA        NA         2
## 778      3     6     NA          3       3         3        NA
## 779      0    NA     NA         NA      NA        NA        NA
## 780      1     1     NA         NA      NA        NA        NA
## 781      2    NA      2          2      NA         1        NA
## 782     NA    NA      1          1       1         2         1
## 783      2     1      1          3       1         3         2
## 784      4     3     NA         NA      NA        NA         1
## 785      2    NA     NA         NA      NA        NA        NA
## 786      3     1      1          3      NA        NA        NA
## 787     NA    NA     NA         NA      NA        NA        NA
## 788     NA    NA     NA         NA      NA        NA         2
## 789     NA    NA     NA         NA      NA        NA        NA
## 790      1     8      3          3       6         8         4
## 791      3    NA     NA         NA      NA        NA        NA
## 792     NA     0      0          0       0         0         0
## 793      1     2      2         NA      NA        NA        NA
## 794      2     2      2          4      NA         1         1
## 795     NA    NA     NA          1       2         4         3
## 796     NA    NA     NA         NA      NA        NA        NA
## 797     NA    NA      1         NA      NA         1         1
## 798      3     1      4          1       6         3         3
## 799      0    NA     NA         NA      NA        NA        NA
## 800     NA    NA     NA         NA      NA        NA        NA
## 801     NA    NA     NA         NA      NA         1        NA
## 802     NA    NA     NA         NA      NA         2        NA
## 803     NA    NA     NA         NA      NA        NA        NA
## 804     NA    NA     NA         NA      NA        NA        NA
## 805     NA    NA     NA         NA      NA        NA         1
## 806     NA    NA      0         NA      NA        NA        NA
## 807      4     4      6          4       2         2         4
## 808      3    NA      3          3       6        NA         3
## 809      6     4      4          6       4         4        11
## 810      2    NA     NA          2       2        NA        NA
## 811     NA    NA     NA         NA       2         2         2
## 812      8    NA     NA         NA      NA        NA        NA
## 813      3    10     16         13      16        13        13
## 814     10    13     10         13      13        10        16
## 815      3     3      2          3       6         2         2
## 816     NA    NA     NA         NA      NA        NA        NA
## 817     NA    NA     NA         NA      NA        NA        NA
## 818     25    18     11         18      21        25        32
## 819     60    60     49         56      53        74        63
## 820     NA    NA     NA         NA      NA        NA         2
## 821      8    13      6         11      11        11         8
## 822     15    17     15         15      15        15        25
## 823      2     3      3          4       3         3         2
## 824      0    NA      0         NA      NA         2        NA
## 825     NA    NA     NA         NA      NA        NA         2
## 826     NA    NA     NA         NA      NA        NA        NA
## 827     NA    NA     NA         NA      NA        NA        NA
## 828     NA    NA     NA         NA      NA        NA        NA
## 829      1     1      1          1       2         0         0
## 830     NA    NA     NA          0      NA        NA        NA
## 831     NA    NA      1          1       1         1         1
## 832      1     1     NA          1      NA        NA        NA
## 833     NA    NA     NA          1      NA        NA        NA
## 834     NA    NA     NA          1      NA        NA        NA
## 835      0    NA     NA         NA      NA        NA        NA
## 836     NA    NA     NA         NA       1         1        NA
## 837      1     1      1          2      NA         1        NA
## 838     NA    NA     NA         NA      NA         1        NA
## 839      3     2      3          1       1         1         2
## 840     NA    NA     NA         NA      NA        NA        NA
## 841      1     1      1          1       1        NA        NA
## 842      1    NA     NA          1      NA         1        NA
## 843     NA    NA     NA         NA      NA        NA         1
## 844      0    NA     NA         NA      NA        NA        NA
## 845      1     1      1          2      NA         1        NA
## 846     NA    NA     NA         NA      NA         1        NA
## 847      3     2      3          1       1         1         2
## 848     NA    NA     NA         NA      NA        NA        NA
## 849      1     1      1          1       1        NA        NA
## 850      1    NA     NA          1      NA         1        NA
## 851      0    NA     NA         NA      NA        NA        NA
## 852      1     1      1          2      NA         1        NA
## 853     NA    NA     NA         NA      NA         1        NA
## 854      3     2      3          1       1         1         2
## 855     NA    NA     NA         NA      NA        NA        NA
## 856      1     1      1          1       1        NA        NA
## 857      1    NA     NA          1      NA         1        NA
## 858     NA    NA     NA         NA      NA        NA         1
## 859     NA    NA     NA         NA      NA        NA        NA
## 860     NA    NA     NA         NA      NA        NA        NA
## 861      0    NA     NA         NA      NA        NA        NA
## 862      1     1      1          2      NA         1        NA
## 863     NA    NA     NA         NA      NA         1        NA
## 864      3     2      3          1       1         1         2
## 865     NA    NA     NA         NA      NA        NA        NA
## 866      1     1      1          1       1        NA        NA
## 867      1    NA     NA          1      NA         1        NA
## 868     NA    NA     NA         NA      NA        NA         1
## 869      0    NA     NA         NA      NA        NA        NA
## 870     NA    NA     NA         NA       1        NA        NA
## 871     NA    NA     NA         NA      NA        NA         1
## 872      0    NA     NA         NA      NA        NA        NA
## 873      1    NA     NA          0       0         0         0
## 874     13    19     25         22      22        32        10
## 875     56    32     32         46      42        25        18
## 876     NA    NA      4         NA      NA        NA         2
## 877     42    25     23         25      27        19        17
## 878     NA    NA     NA         NA      NA        NA        NA
## 879     NA    NA     NA         NA       0        NA        NA
## 880      0    NA     NA         NA      NA        NA        NA
## 881     NA     0     NA         NA      NA        NA        NA
## 882     -1    NA     NA         NA      NA        NA        NA
## 883     -1    NA     NA         NA      NA        NA        NA
## 884      0    NA     NA         NA      NA        NA        NA
## 885     -1    NA     NA         NA      NA        NA        NA
## 886      2     2      2          2       2         2         4
## 887      0    NA     NA         NA      NA        NA        NA
## 888     NA    NA     NA         NA      NA        NA        NA
## 889     -1    NA     NA         NA      NA        NA        NA
## 890      2     2      2          2      NA        NA        NA
## 891      3     3      3         NA      NA        NA        NA
## 892      3     3      3         NA      NA        NA        NA
## 893     NA    NA     NA         NA      NA        NA         3
## 894     NA    NA      1         NA      NA        NA        NA
## 895     NA    NA      1         NA      NA        NA        NA
## 896      2     2     NA          1       3        NA         1
## 897     NA     0     NA         NA      NA        NA        NA
## 898      1     1     NA          2       1        NA        NA
## 899     NA    NA     NA         NA      NA        NA        NA
## 900     NA     1     NA         NA       1         1        NA
## 901      3    NA      3          3       3        NA        NA
## 902     NA    NA     NA          0      NA        NA         0
## 903     NA    NA     NA         NA      NA         1        NA
## 904      1     1     NA         NA      NA        NA         1
## 905      2    NA     NA          2       2        NA        NA
## 906     NA     3     NA         NA      NA        NA         3
## 907     NA     4     NA         NA      NA        NA        NA
## 908     NA     2     NA         NA      NA        NA        NA
## 909      8     2      2          8       4         4         8
## 910      1     1      2          1      NA        NA        NA
## 911     NA    NA     NA         NA      NA         2        NA
## 912     NA     3     NA         NA      NA        NA        NA
## 913      3    NA      3         NA      NA         3        NA
## 914     29    29     32         25      35        32        29
## 915      3     2      3          8      21        NA        NA
## 916     NA     7      7         NA      14        NA         7
## 917     42    53     39         35      49        39        49
## 918      4    NA     NA         NA      NA        NA        NA
## 919      4     4      4          4       8         4         4
## 920     36    38     46         21      40        30        34
## 921      2     1      1          1       2        NA        NA
## 922      0     2      2         NA       2         2         1
## 923     NA     2     NA         NA      NA        NA        NA
## 924      1     1      1         NA      NA        NA        NA
## 925     NA     1     NA         NA      NA        NA        NA
## 926     NA     1     NA          1      NA        NA        NA
## 927     NA    NA     -1         NA      NA        NA        NA
## 928     NA     3      1         NA       1        NA         1
## 929     NA     1      1         NA      NA        NA        NA
## 930     NA     2     NA          1       0        NA         0
## 931     NA     1     NA          1       1         1         1
## 932      3     2     NA          2       1         1         2
## 933     NA     1      1         NA      NA        NA        NA
## 934     NA     0      0         NA      NA        NA         1
## 935     NA    NA     NA         NA      NA        NA        NA
## 936     NA     0     NA         NA      NA        NA        NA
## 937     NA    NA      1         NA      NA         1        NA
## 938     NA    NA      1         NA       2        NA        NA
## 939      0     1     NA         NA      NA        NA        NA
## 940     NA     1      1         NA      NA        NA        NA
## 941     NA    -2      1         NA      NA        NA        NA
## 942     NA     0     NA         NA      NA        NA        NA
## 943      1     1      1          1       1        NA         1
## 944     NA     0     NA         NA      NA        NA        NA
## 945     NA     1      1         NA      NA        NA        NA
## 946     NA    NA     NA         NA      NA        NA        NA
## 947      1     1      1          1       1        NA         1
## 948     NA     0     NA         NA      NA        NA        NA
## 949     NA     3     NA         NA      NA        NA        NA
## 950     NA    NA     NA         NA      NA        NA        NA
## 951      1     1      1          1       1        NA         1
## 952     NA     1      1         NA      NA        NA        NA
## 953     NA    NA     NA         NA      NA        NA        NA
## 954     NA     0     NA         NA      NA        NA        NA
## 955     NA     1      1         NA      NA        NA        NA
## 956     NA    NA      1         NA      NA        NA        NA
## 957     NA     0     NA         NA      NA        NA        NA
## 958      1     1      1          1       1        NA         1
## 959     NA     0     NA         NA      NA        NA        NA
## 960      2    NA     NA         NA      NA         1         1
## 961     NA    NA     NA         NA      NA        NA        NA
## 962     NA    NA     NA         NA       1        NA        NA
## 963     NA    NA     NA         NA      NA        NA         2
## 964      2    NA     NA          2      NA         2         2
## 965     NA    NA     NA         NA      NA        NA        NA
## 966     NA    NA     NA         NA       2        NA        NA
## 967     NA    NA      3         NA      NA        NA        NA
## 968     NA    NA      3         NA       3        NA        NA
## 969      2    NA      5         NA      NA        NA        NA
## 970      4     2     NA          6       4         4        NA
## 971     NA     2     NA         NA      NA        NA        NA
## 972      3     2     NA          5       2         3        NA
## 973     NA    NA     NA         NA      NA        NA        NA
## 974      0    NA     NA          0      NA         0        NA
## 975      3     2      1          5       4         3         0
## 976     NA    NA     NA         NA      NA        NA         0
## 977     NA    NA     NA         NA      NA        NA         1
## 978     NA     0     NA          0       0        NA        NA
## 979     NA    NA     NA         NA      NA        NA        NA
## 980     NA    NA     NA          0      NA        NA        NA
## 981     NA    NA     NA         NA      NA        NA        NA
## 982     NA    NA      0          0      NA        NA        NA
## 983     NA    NA     NA         NA      NA        NA        NA
## 984      0     0     NA          0       0        NA         0
## 985     NA    NA     NA         NA      NA        NA        NA
## 986      3     1     NA          8       4         6         2
## 987     NA    NA      2         NA      NA        NA        NA
## 988     NA    NA      6         NA      NA        NA        NA
## 989     NA     4      4         NA       7        NA        NA
## 990     NA    NA      3         NA       3        NA        NA
## 991     NA    NA     NA          2      NA         3        NA
## 992     NA    NA     NA         NA      NA        NA        NA
## 993     NA    NA     NA          2      NA        NA        NA
## 994     NA    NA     NA         NA       0        NA        NA
## 995     NA    NA     NA         NA      NA        NA        NA
## 996     NA    NA     NA         NA      NA        NA        NA
## 997      3     3      3          6       6         3         6
## 998     NA    NA     NA         NA      NA        NA        NA
## 999     NA    NA      2         NA      NA        NA        NA
## 1000    NA    NA     NA         NA       2        NA        NA
## 1001     2    NA      2         NA       2        NA        NA
## 1002    NA    NA     NA         NA       2        NA        NA
## 1003    NA    NA     NA         NA      NA         2         2
## 1004     5    NA     NA         NA      NA        NA        NA
## 1005    NA     6      6          6      NA         6         3
## 1006     6     6      6         13      10        10         3
## 1007     2     3      3          5       5         2         5
## 1008    NA     7      7         NA       4        NA        NA
## 1009     7     7      7         11       4        14        NA
## 1010     4    NA     NA         NA      NA        NA        NA
## 1011     2    11      6         13       6         4        11
## 1012     8     6     11         23       4        13         8
## 1013     2     2      2          1       1        NA         2
## 1014    NA     4     NA          2      NA         2        NA
## 1015    NA    NA      1         NA      NA        NA        NA
## 1016    NA    NA     NA         NA      NA        NA        NA
## 1017     0    NA     NA         NA      NA        NA        NA
## 1018     0    NA     NA         NA       2         1        NA
## 1019    NA    NA      2         NA      NA        NA        NA
## 1020    NA    NA     NA          1      NA        NA        NA
## 1021    -1    NA      1          2      NA         1        NA
## 1022    NA    NA     NA         NA      NA         4         3
## 1023    NA    NA     NA         NA      NA         1        NA
## 1024    -1    NA     NA         NA      NA         3        NA
## 1025    NA    NA     NA         NA      NA        NA        NA
## 1026    NA    NA      0         NA      NA        NA        NA
## 1027    -1    NA      1          2       3         4        NA
## 1028    NA    NA      1         NA      NA        NA        NA
## 1029    NA    NA     NA         NA      NA        NA        NA
## 1030    -1    NA     NA         NA      NA        NA        NA
## 1031    NA    NA      0         NA      NA        NA        NA
## 1032    -1    NA      1         NA       1        NA        NA
## 1033    NA    NA     NA         NA      NA        NA        NA
## 1034    -1    NA     NA         NA      NA        NA        NA
## 1035    NA    NA     NA         NA      NA        NA        NA
## 1036    NA    NA      0         NA      NA        NA        NA
## 1037    -1    NA      1         NA       1         2        NA
## 1038    NA    NA     NA         NA      NA        NA         2
## 1039    NA    NA     NA         NA      NA        NA        NA
## 1040    -1    NA      3         NA       3         3        NA
## 1041    NA    NA     NA         NA      NA        NA        NA
## 1042    NA    NA      0         NA       0        NA         1
## 1043    -1     2      1          6       3         4        NA
## 1044     1     1      1          1       1         1         1
## 1045    NA    NA     NA         NA      NA        NA        NA
## 1046    NA    NA     NA          1       1        NA         2
## 1047     1    NA     NA         NA      NA        NA        NA
## 1048    NA    NA     NA         NA      NA        NA         2
## 1049    NA    NA     NA         NA      NA         1        NA
## 1050     2     2      2          2       6         4         4
## 1051    NA     3      6         NA       3         3         3
## 1052     3    NA      3         NA       3         3        NA
## 1053    NA    NA     NA         NA      NA         1        NA
## 1054     1    NA     NA         NA      NA        NA        NA
## 1055    NA    NA     NA          2       1        NA        NA
## 1056    NA    NA     NA         NA      NA        NA         0
## 1057    NA     2     NA         NA       2        NA         1
## 1058    NA    NA     NA         NA      NA        NA        NA
## 1059     1     1      1          2       1         1         1
## 1060     6    NA     NA         NA      NA        NA        NA
## 1061    NA    NA     NA         NA      NA        NA        NA
## 1062     2    NA     NA          4      NA         2        NA
## 1063     2    NA      2          2      NA         2         2
## 1064    NA    NA     NA         NA      NA         2         2
## 1065     3    NA     NA         NA      NA        NA        NA
## 1066     3     6      3          6       6         6         3
## 1067     6    13      6         10      10         6         3
## 1068     3     5     NA          2       6         5         2
## 1069    NA    NA     NA         NA      NA        NA        NA
## 1070     7     4      7         NA       4         4         7
## 1071    14    14      7          7       4        21        25
## 1072    NA    NA     NA         NA      NA        NA        NA
## 1073    NA     2     NA         NA       2         2         4
## 1074    11     6      4          4       4        11        15
## 1075     3     1      2          1       2         1         1
## 1076    NA     2      2         NA       2        NA        NA
## 1077    NA    NA      2         NA      NA        NA        NA
## 1078    NA    NA     NA         NA      NA        NA         1
## 1079    NA    NA     NA         NA      NA        NA        NA
## 1080    NA    NA     NA         NA      NA        NA        NA
## 1081    NA    NA     NA         NA      NA        NA        NA
## 1082     0    NA      0          0       0         1         1
## 1083    NA    NA      0          1       0        NA        NA
## 1084     3     1      1          1       1        NA         3
## 1085     1    NA     NA         NA      NA        NA        NA
## 1086    NA    NA     NA         NA      NA        NA         0
## 1087     1     1     NA         NA       3         3        NA
## 1088    NA    NA     NA         NA       1        NA        NA
## 1089     1    NA     NA         NA      NA        NA        NA
## 1090     1     1      0         NA      NA         2         0
## 1091    NA    NA     NA          1      NA        NA        NA
## 1092    NA    NA     NA         NA      NA        NA        NA
## 1093     1    NA     NA         NA      NA        NA        NA
## 1094    NA    NA     NA          1      NA        NA        NA
## 1095    NA     2     NA         NA      NA        NA        NA
## 1096    NA    NA     NA         NA      NA        NA        NA
## 1097     1    NA     NA         NA      NA        NA        NA
## 1098     0    NA     NA          1       0        NA        NA
## 1099    NA    NA     NA          1      NA        NA        NA
## 1100    NA    NA     NA         NA      NA        NA        NA
## 1101    NA    NA     NA         NA      NA        NA        NA
## 1102    NA    NA     NA         NA       2         2        NA
## 1103    NA    NA     NA         NA      NA        NA        NA
## 1104     1     6      6          6       3         3         3
## 1105     3     1      1          1       2         1         3
## 1106     4     2      4          5       4        NA         2
## 1107    NA     1     NA          1       1         1         1
## 1108    NA    NA     NA         NA      NA        NA        NA
## 1109    NA    NA     NA         NA      NA        NA        NA
## 1110    NA    NA     NA          1      NA        NA        NA
## 1111    NA     2      2          1       1         2         1
## 1112    NA    NA     NA         NA      NA        NA         1
## 1113     8    NA      8          2       4         4         4
## 1114     3    NA     13          3      10         6        10
## 1115     6     2     NA         NA      NA        NA        NA
## 1116     8    -3     NA          3      10         5         3
## 1117    NA    NA     NA         NA      NA         0        NA
## 1118    NA     2     NA         NA      NA        NA        NA
## 1119     1     0      0          0       1         0         0
## 1120     3     1      1          1       2        NA         1
## 1121    NA    NA     NA         NA      NA         0        NA
## 1122     0    NA     NA         NA      NA        NA        NA
## 1123    NA    NA     NA         NA      NA         1        NA
## 1124    NA    NA     NA         NA       0        NA        NA
## 1125    NA    NA     NA         NA      NA        NA        NA
## 1126    NA    NA     NA         NA      NA        NA        NA
## 1127     2     2      2          2       4        NA         2
## 1128     2     1      2          1       3         2         2
## 1129     1    NA      1          1       1         1        NA
## 1130    NA    NA     NA         NA       2         4        NA
## 1131    11     3      3         NA      13         8         5
## 1132    NA    NA      3          6       3         3        NA
## 1133     3    NA      3          3       3         3        NA
## 1134    NA     6      8          9       9        18        17
## 1135    NA    NA     NA         NA      NA        NA         2
## 1136     3     3      3          6       6         3         8
## 1137    NA     4      7          4       7         4        11
## 1138    NA    NA     NA          4      NA        NA        NA
## 1139     2    NA     NA         NA      NA        NA        NA
## 1140     8     4     NA         NA      NA        NA        NA
## 1141    27    21     19         21      25        27        36
## 1142    NA     2      4          4      NA         2        NA
## 1143    NA    NA      1         NA      NA        NA        NA
## 1144     7     5      6          6       9         5         6
## 1145     2     2      2          3       3         3         3
## 1146    NA    NA     NA         NA       2        NA        NA
## 1147     2     2      2          3       2         2         2
## 1148    NA    NA     NA          1       1         1        NA
## 1149    NA     0     NA         NA      NA         0        NA
## 1150     1    NA      1         NA      NA         1        NA
## 1151     2     0      2         NA       2        NA         2
## 1152    NA    NA     NA         NA      NA        NA         0
## 1153    NA     2     NA         NA      NA        NA        NA
## 1154    NA     1     NA          1      NA         0        NA
## 1155    NA    NA     NA         NA      NA        NA        NA
## 1156     2     1      0          0       0         0         1
## 1157    NA     1      1          1      NA         1         1
## 1158    NA    NA     NA         NA      NA        NA         1
## 1159    NA    NA     NA         NA       2         1         1
## 1160    NA    NA     NA         NA      NA        NA         2
## 1161    NA    NA     NA         NA      NA        NA         1
## 1162    NA     2     NA         NA       1         1        NA
## 1163     1     0      0          0       1         0         0
## 1164    NA     0     NA         NA      NA        NA        NA
## 1165     1     1     NA          1       3         2         1
## 1166    NA    NA     NA         NA      NA        NA        NA
## 1167    NA    NA     NA         NA      NA        NA         1
## 1168    NA     2     NA         NA       1         1        NA
## 1169    NA    NA     NA         NA      NA        NA        NA
## 1170    NA    NA     NA         NA      NA        NA         1
## 1171    NA     2     NA         NA       1         1        NA
## 1172     1     0      0          0       1         0         0
## 1173    NA    NA      0         NA      NA        NA        NA
## 1174     1     1     NA          1       2         1        NA
## 1175     1     3      1         NA       1         1         1
## 1176    NA    NA     NA         NA      NA        NA        NA
## 1177    NA    NA     NA         NA      NA        NA         1
## 1178    NA     2     NA         NA       1         1        NA
## 1179     1     0      0          0       1         0         0
## 1180    NA    NA     NA         NA      NA        NA        NA
## 1181     4     3      2          2       3         3         5
## 1182    NA    NA     NA         NA      NA        NA        NA
## 1183    NA    NA      1         NA      NA        NA        NA
## 1184    NA     3      3         NA       3        NA         3
## 1185    NA     0     NA         NA       0        NA        NA
## 1186    NA    NA     NA         NA      NA        NA        NA
## 1187    NA     6     NA          2      NA        NA        NA
## 1188     6    NA     NA          3       3        NA         6
## 1189    NA    NA      0         NA      NA        NA        NA
## 1190    NA    NA     NA          3      NA        NA        NA
## 1191    NA    NA     NA         NA      NA        NA         1
## 1192    NA    NA     NA         NA      NA        NA        NA
## 1193    NA     1     NA         NA      NA        NA        NA
## 1194     2     1      2          1       1         1         1
## 1195    NA     1     NA         NA      NA        NA        NA
## 1196    NA    NA     NA         NA      NA         2         2
## 1197    NA     1      1          1      NA        NA        NA
## 1198    NA    NA     NA         NA      NA        NA        NA
## 1199    NA    NA     NA         NA      NA        NA         2
## 1200     3     3      3         NA      NA        NA        NA
## 1201    NA    NA      3         NA      NA        NA         3
## 1202    10     3     10         10      13         6        10
## 1203     3     5      3          5       5         3         3
## 1204    70    70     77        102      95        74        85
## 1205    NA    NA     NA         NA      NA        NA        NA
## 1206     4     4      8          2       6         4         4
## 1207    32    25     30         23      23        19        19
## 1208     1     1     NA          1      NA        NA         1
## 1209     1    NA     NA         NA      NA        NA        NA
## 1210    NA    NA     NA         NA      NA        NA        NA
## 1211    NA    NA     NA         NA      NA         1        NA
## 1212    NA    NA     NA         NA      NA        NA        NA
## 1213    NA    NA      1         NA      NA         4        NA
## 1214    NA    NA     NA         NA      NA         2        NA
## 1215    NA    NA     NA         NA      NA        NA        NA
## 1216    NA    NA      1         NA      NA        NA        NA
## 1217    NA    NA     NA          1      NA        NA        NA
## 1218     1     1      1          3      NA        NA        NA
## 1219    NA    NA     NA         NA      NA        NA        NA
## 1220     1     1      1          1       1         1         1
## 1221     1     1      1         NA       1        NA        NA
## 1222     0    NA      0         NA      NA        NA        NA
## 1223    NA    NA     NA          1      NA        NA        NA
## 1224     1     1      1         NA      NA        NA        NA
## 1225     1     1      1          1       1         1         1
## 1226     0    NA      0         NA      NA        NA        NA
## 1227    NA    NA     NA          1      NA        NA        NA
## 1228     1     1      1         NA      NA        NA        NA
## 1229     1     1      1          1       1         1         1
## 1230     0    NA      0         NA      NA        NA        NA
## 1231    NA    NA     NA          1      NA        NA        NA
## 1232     1     1      1         NA      NA        NA        NA
## 1233     1     1      1          1       1         1         1
## 1234    NA    NA     NA         NA      NA        NA        NA
## 1235     0    NA      0         NA      NA        NA        NA
## 1236    NA    NA      0         NA      NA        NA        NA
## 1237    NA    NA     NA         NA      NA         1        NA
## 1238     6     4      2          4      NA         2         4
## 1239     6     3      6          6       6         6         3
## 1240    NA    NA     NA         NA      NA        NA        NA
## 1241    NA    NA     NA         NA      NA        NA        NA
## 1242     3     5      3          3       8         3        NA
## 1243    NA    NA     NA         NA      NA        NA         1
## 1244    NA    NA     NA         NA      NA        NA        NA
## 1245    NA    NA     NA         NA      NA        NA        NA
## 1246    NA    NA     NA         NA      NA        NA        NA
## 1247    NA    NA     NA         NA      NA        NA         1
## 1248     6     2      3          1      NA         1         2
## 1249     1     1      1          1       1         1         1
## 1250     2     1      1          1       1         1         1
## 1251    NA     3     NA          3      NA        NA        NA
## 1252    NA    NA     NA         NA       1        NA        NA
## 1253    NA    NA     NA         NA      NA        NA        NA
## 1254    NA     1     NA         NA      NA        NA        NA
## 1255     2     4     NA         NA      NA        NA        NA
## 1256    NA    NA     NA         NA      NA        NA        NA
## 1257    NA     2     NA         NA      NA        NA         2
## 1258    NA     2      2          2       4        NA        NA
## 1259     2    NA      2         NA      NA         2         2
## 1260    NA     0     NA         NA      NA        NA        NA
## 1261    NA    NA     NA          4      NA        NA        NA
## 1262    NA    NA      2          4      NA         2         2
## 1263     3    NA     NA         NA      NA        NA        NA
## 1264    10     3      3          6       3        10        13
## 1265    19    19     13         10      16         6        19
## 1266     5     2      3          5       8         5         8
## 1267    NA    NA     NA         NA      NA         3         2
## 1268     3    NA      3         NA       3        NA        NA
## 1269     7    NA      4          7      11        NA        18
## 1270    14     7     14         11      25         7        11
## 1271     2     2     NA          2       2        NA        NA
## 1272    15     2      2          4      11        NA        13
## 1273    66    46     36         59      46        38        46
## 1274     3     2      3          4       2         3         2
## 1275     5     5      3          8      NA         2         3
## 1276     2    NA      2          2       2         2        NA
## 1277    NA    NA      1          1       2         1        NA
## 1278    NA    NA     NA         NA      NA        NA        NA
## 1279     1     1      1          1      -4         1         1
## 1280    NA    NA     NA         NA      NA        NA         1
## 1281     1    NA     NA         NA       1        NA        NA
## 1282    NA    NA     NA         NA      NA        NA         1
## 1283     0    NA      0         NA       0        NA        NA
## 1284     2     1      0          1      NA         0         1
## 1285    NA     0     NA          1      NA        NA         0
## 1286     3    NA     NA         NA       0         2         3
## 1287     1    NA     NA         NA      NA        NA        NA
## 1288     2     2      2          2      NA         2         2
## 1289    NA     0     NA          0      NA        NA        NA
## 1290    -1    NA     NA         NA      NA        NA        NA
## 1291     1    NA     NA         NA      NA        NA        NA
## 1292     1     1      1          3       0         1         1
## 1293     1    NA      2         NA      NA        NA        NA
## 1294    NA    NA     NA         NA      -1         1        NA
## 1295    NA    NA     NA         NA      NA        NA         1
## 1296     2    NA     NA         NA      NA        NA        NA
## 1297     3     1     NA          1      NA        NA         1
## 1298     4    NA      4          2       2         2         2
## 1299    NA    NA     NA         NA      NA        NA        NA
## 1300    NA     0      0          1      NA         0         0
## 1301     1    NA     NA          2       1        NA         1
## 1302     1     1     NA          1      NA        NA        NA
## 1303    NA    NA      0         NA      NA         0        NA
## 1304    NA    NA      0         NA      NA        NA        NA
## 1305     2    NA     NA         NA      NA        NA        NA
## 1306    NA     1     NA          1      NA         3         1
## 1307    NA    NA     NA         NA      NA        NA        NA
## 1308    NA    NA     NA         NA       0        NA        NA
## 1309     1    NA     NA         NA       1        NA        NA
## 1310    NA    NA      0         NA      NA         0        NA
## 1311    NA     1     NA          1      NA        NA         1
## 1312    NA    NA     NA         NA      NA        NA        NA
## 1313     1    NA     NA         NA       1        NA        NA
## 1314    NA    NA      1         NA      NA        NA        NA
## 1315     1    NA     NA         NA      NA         1        NA
## 1316     2    NA     NA         NA      NA        NA        NA
## 1317    NA    NA     NA         NA      NA        NA        NA
## 1318     2    NA     NA         NA      NA        NA        NA
## 1319    NA    NA      0         NA      NA         0        NA
## 1320    NA    NA      2          3      NA        NA        NA
## 1321     2    NA      3         NA      NA        NA        NA
## 1322     3     1      3          1       3        NA         1
## 1323     2    NA     NA          4      NA         2         2
## 1324    NA     1     NA          1      NA        NA        NA
## 1325     0    NA      0          0      NA         0        NA
## 1326     1     2      2         NA       1         2         1
## 1327     1     1      1         NA      NA         1         1
## 1328    NA    NA      0         NA      NA         0        NA
## 1329     1     1     NA         NA      NA         1         1
## 1330    NA    NA     NA         NA      NA        NA        NA
## 1331    NA    NA     NA         NA      NA         1        NA
## 1332    NA    NA     NA         NA      NA        NA         2
## 1333    NA    NA     NA         NA      NA         1        NA
## 1334     4     2      4         NA       8         2        NA
## 1335    NA    NA      3         NA      NA        NA        NA
## 1336    NA     6      5         NA      NA        NA        NA
## 1337    -3     5     -5         NA       8         3         3
## 1338    NA    NA     NA         NA      NA        NA         1
## 1339    NA    NA     NA         NA       4        NA        NA
## 1340    NA    NA     NA         NA       2        NA        NA
## 1341    NA    NA     NA         NA      NA         0        NA
## 1342    NA    NA      1         NA      NA        NA        NA
## 1343    NA    NA     NA         NA      NA        NA        NA
## 1344     3     2      1          1       0        NA         0
## 1345     2    NA     NA         NA      NA        NA        NA
## 1346    -3    NA      3         NA      NA        NA        NA
## 1347     6     2     NA         NA      NA        NA         3
## 1348     2     2      2         NA      -2         2        NA
## 1349    NA    NA      1         NA      NA        NA        NA
## 1350     2    NA     NA         NA      NA        NA         2
## 1351    NA    NA     NA          2      NA        NA        NA
## 1352    NA    NA     NA         NA      NA        NA         2
## 1353     2    NA     NA         NA      -6         4        NA
## 1354    NA     3     NA         NA      NA        NA        NA
## 1355    NA    NA     NA          3      -3         3        NA
## 1356    NA    NA      3         NA      -6         3        NA
## 1357     2     2      3         NA       2        NA        NA
## 1358    23     9      2         NA      12        15        20
## 1359     3    NA     NA         NA      NA        NA        NA
## 1360     7    NA      4         NA      NA        NA        NA
## 1361     7     4      7         NA       7        NA         7
## 1362     2    NA     NA         NA      NA         2        NA
## 1363    13     6     NA          2       6        NA         8
## 1364    30    21     42          4      25         2         4
## 1365     1     3      2         NA       1        NA        NA
## 1366     3     3     NA         NA       2        NA         2
## 1367    NA    NA     NA         NA       2        NA        NA
## 1368    NA    NA     NA         NA       1        NA        NA
## 1369     1    NA     NA         NA      NA        NA        NA
## 1370    NA    NA     -1         NA      NA        NA        NA
## 1371    -2    NA      0         NA       0        NA        NA
## 1372     1     1     NA         NA      NA         1         0
## 1373     4    NA     NA         NA      NA        NA        NA
## 1374    NA    NA     NA         NA      NA         0        NA
## 1375     1    NA     NA         NA      NA        NA        NA
## 1376    NA    NA      0         NA       1         0         0
## 1377     1    NA     NA         NA      NA        NA         1
## 1378    NA    NA     NA         NA       1        NA        NA
## 1379     6    NA     NA         NA      NA        NA         2
## 1380    NA    NA      3         NA      NA        NA        NA
## 1381    NA    NA     NA         NA      NA        NA         4
## 1382    NA    NA     NA         NA      NA         0        NA
## 1383     0    NA      0         NA      NA        NA        NA
## 1384    NA    NA     NA         NA      NA         1        NA
## 1385    NA    NA      1         NA      NA        NA        NA
## 1386     1    NA      1         NA      NA        NA        NA
## 1387    NA    NA      0         NA      NA        NA        NA
## 1388     1    NA     NA          0      NA        NA        NA
## 1389    NA    NA     NA         NA      NA         1        NA
## 1390    NA    NA      1         NA      NA        NA        NA
## 1391    NA     3     NA         NA      NA        NA        NA
## 1392    NA    NA      0         NA      NA        NA        NA
## 1393     2    NA     NA         NA      NA        NA         2
## 1394    NA    NA     NA         NA      NA         0        NA
## 1395    NA     0      0         NA      NA        NA        NA
## 1396    NA    NA     NA         NA      NA        -3        NA
## 1397    NA    NA      1         NA      NA        NA        NA
## 1398    NA    NA     NA         NA      NA        NA        NA
## 1399    NA    NA     NA         NA      NA        NA        NA
## 1400    NA    NA     NA         NA      NA        NA        NA
## 1401    NA    NA      0         NA      NA        NA        NA
## 1402     3     2     NA         NA      NA        NA        NA
## 1403    NA    NA     NA         NA      NA         0        NA
## 1404     1     1     NA         NA      NA        NA         0
## 1405    NA    NA     NA         NA      NA         1        NA
## 1406    NA    NA      1         NA       2        NA         2
## 1407     1    NA      1         NA      NA        NA        NA
## 1408    NA    NA     NA         NA      NA        NA         2
## 1409    NA    NA      0         NA      NA        NA        NA
## 1410    NA    NA     NA         NA      NA        NA        NA
## 1411     5    -1      1         NA      NA        NA         1
## 1412    NA    NA     NA         NA      NA         0        NA
## 1413     0    NA     NA         NA      NA        NA        NA
## 1414    NA    NA     NA         NA      NA        NA         1
## 1415     2     2      4          4       2         2         2
## 1416    NA     3     NA         NA      NA        NA         3
## 1417     1     0      0          0       0        NA         0
## 1418    NA    NA     NA         NA       0        NA        NA
## 1419    NA    NA     NA          1      NA        NA         1
## 1420     1    NA      1          1       1         1         1
## 1421    NA    NA     NA         NA      NA        NA        NA
## 1422    NA    NA     NA         NA      NA         2        NA
## 1423    NA    NA     NA         NA      NA        NA        NA
## 1424    22    25     25         19      10        25        19
## 1425     2     2      2          2       2        NA         2
## 1426    25    28     35         35      28        25        25
## 1427     2     2     NA          2       2         4         2
## 1428    19    17     17         19      25        19        17
## 1429    NA    NA      1         NA      NA        NA        NA
## 1430    NA    NA     NA         NA      NA        NA         1
## 1431     1     1      3          1       0         0         2
## 1432     1     1      0          0       1         0         0
## 1433    NA    NA     NA         NA      NA        NA        NA
## 1434    NA    NA     NA         NA      NA        NA         0
## 1435    NA    NA     NA         NA       1        NA        NA
## 1436     3     1      3          6       3         3         3
## 1437     1     0      0          0       0        NA         0
## 1438    NA    NA     NA          1       1         1         2
## 1439    NA     2      2          1       2         2         2
## 1440    NA    NA     NA         NA      NA        NA        NA
## 1441    NA     1     NA         NA      NA        NA        NA
## 1442    NA    NA      2          1      NA        NA        NA
## 1443    NA    NA     NA         NA      NA        NA        NA
## 1444    NA     1     NA         NA      NA        NA        NA
## 1445    NA    NA     NA         NA      NA        NA        NA
## 1446     1     0      0          0       0        NA         0
## 1447    NA    NA     NA          3      NA        NA        NA
## 1448    NA     2     NA          1      NA        NA        NA
## 1449    NA    NA     NA         NA      NA        NA        NA
## 1450    NA    NA     NA         NA      NA        NA        NA
## 1451     3     1      3          3       8         6        NA
## 1452     1     0      0          0       0        NA         0
## 1453     3    NA     NA          5       1         2         3
## 1454     2    NA      2          1      NA         2         2
## 1455    NA    NA     NA         NA      NA        NA        NA
## 1456    NA    NA     NA         NA      NA        NA        NA
## 1457    NA    NA     NA         NA       3        NA        NA
## 1458     4     1      3          2       1         1        NA
## 1459    NA    NA     NA         NA      NA        NA         2
## 1460    NA    NA     NA         NA      NA        NA         6
## 1461     2     4      4          4      NA         6         2
## 1462    NA    NA     NA         NA      NA        NA        NA
## 1463     1    NA     NA         NA      NA        NA        NA
## 1464    NA     2      2         NA      NA        NA         4
## 1465    NA    NA     NA         NA      NA        NA        NA
## 1466     4     2      2          4       4         2         4
## 1467    NA    NA     NA         NA      NA        NA        NA
## 1468    NA    NA     NA          2       2        NA        NA
## 1469    NA    NA      3          3       3        NA        NA
## 1470    NA     3      3          3       3        NA        NA
## 1471     3     2     NA          2      NA        NA        NA
## 1472     2     2      6          6       2         6         4
## 1473    46    38     32         23      23        25        36
## 1474     4     5      4          5       3         3         6
## 1475     1     1      1         NA      NA        NA        NA
## 1476    NA    NA     NA         NA       1        NA        NA
## 1477     0    NA     NA          0      NA        NA        NA
## 1478    NA    NA     NA         NA      NA        NA        NA
## 1479    NA    NA     NA         NA      NA        NA        NA
## 1480    NA    NA     NA         NA      NA        NA        NA
## 1481     1     1      1          1      NA         2         1
## 1482    NA    NA     NA         NA      NA        NA         2
## 1483    NA    NA     NA         NA      NA        NA        NA
## 1484     1     1      3          5       3         3        NA
## 1485    NA    NA     NA         NA      NA        NA        NA
## 1486     1     1      1          1       1         1        NA
## 1487    NA    NA     NA         NA      NA        NA        NA
## 1488     1     1      1          1       1         1        NA
## 1489    NA    NA     NA         NA      NA        NA        NA
## 1490     1     1      1          3       1         1         2
## 1491    NA    NA     NA         NA      NA         1        NA
## 1492    NA    NA     NA         NA      NA        NA         1
## 1493    NA    NA     NA         NA       2        NA        NA
## 1494     6     6      6          3      NA         3        NA
## 1495    NA    NA      3          3      NA        NA        NA
## 1496    NA    NA     NA         NA      NA        NA         1
## 1497    NA    NA     NA          0      NA        NA        NA
## 1498     1    NA     NA          1      NA        NA        NA
## 1499    NA    NA     NA         NA       0        NA        NA
## 1500    NA    NA     NA          1      NA        NA        NA
## 1501    NA    NA     NA         NA       3        NA        NA
## 1502    NA    NA     NA          2      NA         2        NA
## 1503    NA    NA     NA          3      NA        NA         3
## 1504    NA    NA      2         NA      NA         2        NA
## 1505    NA    NA     NA         NA       1        NA        NA
## 1506    NA    NA     NA         NA      NA        NA         4
## 1507     5    NA     NA         NA      NA        NA        NA
## 1508    NA     3      6          3       3         3         6
## 1509    16    19     13         13      19        10        10
## 1510     3     2      3          2       3        NA         3
## 1511    NA    NA     NA         NA      NA        NA        11
## 1512     7    NA      4         NA       4         4         4
## 1513    28    25     21         21      32        21        21
## 1514    NA    NA      2          2       2         2         4
## 1515     8     6      6          6       8         4         4
## 1516    25    30     38         25      42        25        21
## 1517    NA    NA     NA         NA      NA        NA        NA
## 1518     1    NA      1         NA      NA         1        NA
## 1519    NA    NA     NA          2      NA         4        NA
## 1520    NA     1      1         NA       1         1         1
## 1521    NA    NA     NA         NA       1        NA        NA
## 1522    NA    NA     NA         NA      NA         1         1
## 1523     1     1      1          0       2         2         1
## 1524    NA    NA     NA         NA      NA        NA        NA
## 1525    NA     1      1         NA      NA        NA        NA
## 1526    NA    NA     NA         NA       1        NA        NA
## 1527    NA    NA     NA          3      NA        NA         5
## 1528    NA    NA     NA         NA      NA         1         3
## 1529    NA    NA      1         NA      NA        NA        NA
## 1530    NA    NA     NA         NA      NA        NA        NA
## 1531    NA     1      3          1      NA         2         1
## 1532    NA    NA     NA         NA      NA        NA        NA
## 1533    NA    NA     NA         NA      NA         1        NA
## 1534    NA     1      1          1      NA        NA         1
## 1535    NA    NA     NA         NA      NA        NA        NA
## 1536    NA    NA     NA          3      NA        NA         3
## 1537    NA    NA     NA         NA      NA         1        NA
## 1538    NA    NA      1         NA      NA        NA        NA
## 1539    NA     1      1          1      NA         2         1
## 1540    NA    NA     NA         NA      NA        NA        NA
## 1541    NA    NA     NA          3      NA        NA         3
## 1542    NA    NA     NA         NA      NA         4        NA
## 1543    NA     3      5          3      NA        NA         1
## 1544    NA    NA      1         NA      NA        NA         1
## 1545    NA    NA     NA         NA      NA        NA        NA
## 1546    NA    NA      1         NA      NA        NA        NA
## 1547    NA     1     NA         NA      NA        NA        NA
## 1548    NA    NA     NA         NA      NA         1        NA
## 1549    NA    NA     NA         NA      NA        NA        NA
## 1550    NA    NA     NA         NA      NA        NA        NA
## 1551    NA    NA     NA         NA      NA         2        NA
## 1552    NA    NA     NA          2      NA        NA        NA
## 1553    NA    NA     NA         NA      NA        NA         2
## 1554    NA    NA     NA         NA      NA        NA         0
## 1555     3    NA     NA         NA      NA        NA         3
## 1556    NA    NA     NA         NA       2        NA        NA
## 1557    NA    NA      2         NA      NA        NA        NA
## 1558     4    NA     NA         NA      NA        NA        NA
## 1559     4    NA     NA         NA       2        NA        NA
## 1560     4     2     NA         NA      NA        NA        NA
## 1561    NA    NA     NA         NA      NA        NA        NA
## 1562    NA    NA     NA          3      NA         3        NA
## 1563     4    NA     NA          1       1        11         3
## 1564     1     0     NA         NA      NA        NA        NA
## 1565    NA    NA     NA         NA       0        NA        NA
## 1566     3     3      3         NA      NA         2         5
## 1567    NA     2     NA         NA      NA        NA        NA
## 1568    NA    NA     NA         NA      NA        NA        NA
## 1569     1    NA     NA         NA      NA        NA        NA
## 1570    NA    NA     NA         NA      NA        -2        NA
## 1571    NA     1     NA         NA      NA         6        NA
## 1572    NA    NA     NA         NA      NA        NA        NA
## 1573    NA    NA     NA         NA      NA        NA        NA
## 1574     3     3      3         NA      NA         3         3
## 1575    NA     1     NA         NA      NA        NA        NA
## 1576    NA    NA     NA         NA      NA        NA        NA
## 1577     3    NA     NA         NA      NA        NA        NA
## 1578    NA     1     NA         NA      NA        NA        NA
## 1579    NA    NA     NA         NA      NA        NA        NA
## 1580    NA    NA     NA         NA      NA        NA        NA
## 1581     3     1      3          3      NA         3         3
## 1582     2     6      2          2       4        NA        NA
## 1583    NA    NA     NA         NA      NA        NA         0
## 1584    NA     1      8         NA      NA        NA        14
## 1585    NA    11     25         NA      NA        35        NA
## 1586    NA    NA     NA         NA      NA        NA        NA
## 1587    NA    NA     NA         NA      NA        NA        NA
## 1588    NA    NA      2         NA      NA        NA        NA
## 1589     3     4      3          3       5         5         3
## 1590    NA    NA     NA         NA      NA         1        NA
## 1591    NA     2      2          2      NA        NA         2
## 1592     3     3      3          3      NA        NA         3
## 1593     3     5     NA          3      NA        NA        NA
## 1594    NA    NA     NA         NA      NA        NA         1
## 1595    NA    NA     NA         NA      NA        NA        NA
## 1596    NA     1     NA         NA      NA        NA        NA
## 1597    NA     0     NA         NA      NA        NA        NA
## 1598     1    NA      1          1      NA        NA         1
## 1599    NA    NA     NA         NA      NA        NA        NA
## 1600     1    NA      1          2      NA        NA         1
## 1601    NA    NA     NA         NA      NA        NA        NA
## 1602     2     2      4         NA      NA        NA        NA
## 1603     4     4      4          2       2         2         2
## 1604    NA    NA     NA         NA      NA        NA        NA
## 1605    NA    NA     NA         NA       2         2         4
## 1606     5    NA     NA         NA      NA        NA        NA
## 1607     3    13     10          6       6         6         3
## 1608     6    10      6         10       6         6         3
## 1609    15    14     12          9       5         9         3
## 1610    NA    NA      2         NA      NA        NA        NA
## 1611    28    32     28         25      18        21        11
## 1612    13    15     11          6       6         6         2
## 1613    17    19     17         15       8        15         6
## 1614     8     5      5          3       3         4         2
## 1615    NA    NA     NA         NA       2        NA        NA
## 1616     2     3     NA          1       1        NA        NA
## 1617    NA    NA      1          1      NA        NA         1
## 1618    NA    NA     NA         NA      NA        NA        NA
## 1619    NA    NA      0          0      NA        NA         1
## 1620    NA    NA     NA         NA      NA         1        NA
## 1621     2     2      2          2      NA         3         2
## 1622     0     0      0          0      NA        NA         0
## 1623    NA    NA     NA         NA      NA         1        NA
## 1624     1     1      1          1      NA        NA         1
## 1625    NA    NA     NA          0       0         1         0
## 1626     1     1      1         NA      NA        NA        NA
## 1627    NA    NA     NA          1      NA        NA         1
## 1628    NA    NA     NA         NA      NA        NA        NA
## 1629     1     1      1          1      NA        NA         1
## 1630    NA    NA     NA          0       0         1         0
## 1631     1     1      1         NA      NA        NA        NA
## 1632    NA    NA     NA          1      NA        NA         1
## 1633    NA    NA     NA         NA      NA        NA        NA
## 1634    NA    NA     NA         NA      NA        NA        NA
## 1635    NA    NA     NA          0       0         1         0
## 1636     1     1      1         NA      NA        NA        NA
## 1637    NA    NA     NA          1      NA        NA         1
## 1638    NA    NA     NA         NA      NA        NA        NA
## 1639     1     1      1          1      NA        NA         1
## 1640    NA    NA     NA         NA      NA        NA        NA
## 1641    NA    NA     NA         NA      NA        NA        NA
## 1642     1     1      1          1      NA        NA         1
## 1643    NA    NA      0          1       0         1         0
## 1644     1     1      1         NA      NA        NA        NA
## 1645    NA    NA      2          1      NA        NA         1
## 1646    NA    NA     NA         NA      NA        NA        NA
## 1647     3     1      1         NA      NA         3         1
## 1648     3    NA     NA         NA      NA        NA        NA
## 1649     2    NA     NA         NA      NA        NA        NA
## 1650    NA    NA     NA         NA      NA         2        NA
## 1651    NA    NA      5         NA      NA        NA         2
## 1652    NA    NA     NA         NA      NA         2        NA
## 1653     2    NA     NA         NA      NA        NA        NA
## 1654    NA    NA     NA          2       2        NA         2
## 1655    NA     1     NA         NA      NA        NA        NA
## 1656    NA    NA     NA         NA      NA         1        NA
## 1657     0     0     NA         NA      NA        NA        NA
## 1658     1    NA     NA         NA      NA        NA        NA
## 1659     0    NA     NA         NA      NA        NA        NA
## 1660    NA    NA     NA         NA      NA        NA         0
## 1661    NA     0     NA         NA      NA        NA        NA
## 1662    NA    NA     NA         NA       0        NA        NA
## 1663    NA    NA     NA         NA       0        NA        NA
## 1664    NA    NA      0         NA      NA        NA        NA
## 1665    NA    NA     NA         NA       0        NA        NA
## 1666    NA    NA     NA         NA       0        NA        NA
## 1667     2     1      3          3       1         3         3
## 1668    NA    NA     NA         NA      NA         1        NA
## 1669    NA    NA      2          2       2         4         2
## 1670    NA    NA      3          3       3         3         3
## 1671    NA    NA     NA          0      NA        NA        NA
## 1672    NA    NA     NA         NA      NA        NA        NA
## 1673    NA    NA     NA         NA      NA         0        NA
## 1674    NA    NA     NA         NA      NA        NA        NA
## 1675    NA    NA     NA         NA      NA        NA        NA
## 1676    NA    NA     NA         NA      NA        NA        NA
## 1677    NA    NA     NA          1      NA        NA        NA
## 1678    NA    NA     NA         NA       1        NA         0
## 1679    NA    NA      1          1       1         1         1
## 1680    NA    NA     NA         NA      NA        NA        NA
## 1681    NA    NA      1          1       1         1         1
## 1682    NA    NA     NA         NA       3        NA        NA
## 1683    NA    NA     NA         NA      NA        NA        NA
## 1684    NA     2     NA         NA      NA        NA        NA
## 1685    NA    NA     NA         NA      NA        NA        NA
## 1686     2     2      4          4       2        NA         6
## 1687     2     6      2          6       2         2         6
## 1688     1    NA      2         NA      NA         1         1
## 1689    NA    NA      2          2       2         2         4
## 1690    NA    NA     NA         NA      NA        NA        NA
## 1691     3     3      3          3      NA        10         3
## 1692     6    13     13         10      13        10        19
## 1693    NA     3      3          2       2         5         3
## 1694    NA     2     NA          2       3         5         5
## 1695     6     6     NA          3       3         6         3
## 1696    NA     7     NA          7       7        11         4
## 1697    35    42     21         25      25        28        42
## 1698     2     4      2          4       2         4         2
## 1699     4     4      2          4       4        NA         4
## 1700    13    15     17         15      15        11        17
## 1701     2     1      1          1       1         2         2
## 1702    NA    NA     NA         NA      NA        NA        NA
## 1703    NA    NA      1          1       1         1         1
## 1704    NA    NA      1         NA      NA        NA        NA
## 1705    NA    NA     NA         NA       1        NA        NA
## 1706    NA    NA     NA         NA      NA        NA        NA
## 1707    NA    NA      0          0       0         0         1
## 1708    NA    NA      0         NA      NA        NA         1
## 1709    NA     1      0         NA       1        NA         2
## 1710    NA    NA     NA         NA      NA        NA        NA
## 1711    NA    NA     NA         NA      NA        NA        NA
## 1712    NA    NA     NA         NA      NA        NA        NA
## 1713    NA    NA     NA         NA      NA        NA        NA
## 1714    NA    NA      0          0       0         0         0
## 1715    NA    NA     NA         NA       1         1        NA
## 1716    NA     1     NA         NA      NA        NA        NA
## 1717    NA     3      1          3       1         4         3
## 1718     0    NA     NA         NA      NA        NA        NA
## 1719    NA     1     NA          2      NA         1         1
## 1720    NA    NA     NA         NA      NA        NA        NA
## 1721    NA     1     NA         NA      NA        NA        NA
## 1722    NA    NA      1         NA       1         1        NA
## 1723    NA    NA     NA         NA      NA        NA        NA
## 1724    NA     1     NA         NA      NA         1         1
## 1725    NA    NA     NA         NA      NA        NA        NA
## 1726    NA    NA     NA         NA      NA        NA         0
## 1727    NA     1      2         NA      NA         1         1
## 1728    NA     1     NA         NA      NA        NA        NA
## 1729     2    NA     NA         NA      NA         2        NA
## 1730    NA     3      6          3       7         4         3
## 1731    NA     0     NA         NA      NA        NA        NA
## 1732     2    NA     NA          2      NA        NA        NA
## 1733    NA    NA     NA         NA      NA        NA        NA
## 1734    NA    NA     NA         NA      NA        NA         0
## 1735    NA     1     NA         NA      NA        NA        NA
## 1736     3     3      1          3       4         6         3
## 1737     0     0      0          0       1         0        NA
## 1738     2     1     NA          2       2         1         1
## 1739    NA    NA     NA         NA      NA        NA        NA
## 1740    NA     1      1          2       2         1         2
## 1741     2     1     NA         NA      NA        NA        NA
## 1742     0    NA     NA         NA      NA        NA        NA
## 1743     2     1      1          0       2        NA        NA
## 1744    NA    NA     NA         NA      NA        NA         1
## 1745    NA    NA     NA         NA      NA        NA        NA
## 1746    NA    NA     NA         NA      NA        NA        NA
## 1747    NA    NA     NA          1      NA        NA        NA
## 1748    NA    NA     NA         NA      NA        NA        NA
## 1749    NA    NA     NA         NA      NA        NA        NA
## 1750    NA    NA     NA         NA      NA        NA        NA
## 1751    NA     2     NA          2       2        NA         2
## 1752    NA    NA     NA         NA      NA         2        NA
## 1753     3     3      3         NA      NA        NA        NA
## 1754    NA    NA      3          6       3         6         3
## 1755     3    NA     NA         NA      NA        NA        NA
## 1756     2     2      2          5       3         5         3
## 1757    NA    NA     NA         -2       2        NA        NA
## 1758     4     7      7         NA       4        NA         4
## 1759    25    14     14         14      18        11        18
## 1760     8     8      8          4      13         4         4
## 1761    NA     2     NA         -6       8        NA        NA
## 1762    NA    NA     NA         NA       1        NA        NA
## 1763    NA     2     NA          2       2         2        NA
## 1764    NA    NA     NA         NA      NA        NA        NA
## 1765    NA    NA     NA         NA      NA        NA         0
## 1766    NA    NA     NA         NA      NA        NA        NA
## 1767    NA    NA     NA         NA       1         1        NA
## 1768    NA    NA     NA         NA       1        NA        NA
## 1769    NA    NA     NA         NA       1        NA        NA
## 1770    NA    NA      1         NA      NA         1        NA
## 1771    NA    NA     NA         NA      NA        NA        NA
## 1772     1     0     NA          1       2         0         0
## 1773     2    NA     NA         NA       1        NA        NA
## 1774    NA    NA      1         NA      NA         1        NA
## 1775     1     1     NA          0       2        NA         1
## 1776    NA    NA     NA         NA       1        NA        NA
## 1777    NA    NA      1         NA      NA         1        NA
## 1778    NA    NA     NA         NA      NA        NA        NA
## 1779     1    NA     NA          1       2         0         0
## 1780    NA    NA     NA         NA       1        NA        NA
## 1781    NA    NA     NA         NA      NA        NA        NA
## 1782    NA    NA      1         NA      NA         1        NA
## 1783     1    NA      1          1       2         0         1
## 1784     2    NA     NA         NA       1        NA        NA
## 1785    NA    NA     NA         NA      NA        NA         1
## 1786    NA    NA      0         NA      NA        NA        NA
## 1787    NA    NA     NA         NA      NA         1        NA
## 1788     6    17      8          4       6         8         6
## 1789     6    22     10          3       6         6        10
## 1790    NA    NA     18         NA      NA        NA        NA
## 1791    NA     5     15          3       3         3         3
## 1792    NA     3     NA         NA      NA        NA        NA
## 1793     1    NA     NA         NA      NA        NA        NA
## 1794    NA    NA     NA         NA      NA        NA        NA
## 1795     0     1     NA          0      NA        NA        NA
## 1796    NA     2     NA         NA       1        NA        NA
## 1797     1     8     NA         NA      NA        NA        NA
## 1798     1     1      1          1       1         1         1
## 1799    NA    NA     NA         NA      NA        NA        NA
## 1800     1     1      1          1       1         1         1
## 1801    NA    17     NA         NA      NA        NA        NA
## 1802    NA     2     NA         NA      NA        NA        NA
## 1803    NA     1     NA         NA      NA         1        NA
## 1804    NA    NA      1         NA      NA        NA        NA
## 1805    NA    NA     NA         NA      NA        NA        NA
## 1806     6     2      4          4       4        NA         4
## 1807     4    11     NA          4       2         6         2
## 1808     1    NA     NA          1      NA        NA        NA
## 1809    NA     2     NA          2       2         2        NA
## 1810    NA    NA     NA         NA      NA        NA        NA
## 1811    NA    NA     NA         NA      NA        NA        NA
## 1812    NA    NA     NA          2       2         2        NA
## 1813     8    NA     NA         NA      NA        NA        NA
## 1814     6    44     16         13      13        19        16
## 1815    22    54     10         25      19        25        19
## 1816     5    11      6          3       5         5         5
## 1817    NA    NA     NA         NA      NA        NA        NA
## 1818    NA    NA     NA         NA      NA        NA        NA
## 1819    28    92     21         11      25        21        42
## 1820    63   155     95         63      60        63        70
## 1821    13    36     19         11      15         8        13
## 1822    42    85     15         15      25        17        19
## 1823     3     4      3          1       2         1         1
## 1824     2     3      2         NA       2         2         2
## 1825     2     4     NA         NA       2         2        NA
## 1826    NA     1      1          1       1         1         3
## 1827     1     1      1          1       2         1         1
## 1828     1     6     NA         NA      NA        NA        NA
## 1829     1     7      0          0       1         1         1
## 1830     4     7      2          1       3         2         1
## 1831    NA    NA     NA         NA      NA        NA        NA
## 1832    NA    NA     NA         NA      NA        NA        NA
## 1833     0    NA     NA         NA      NA        NA        NA
## 1834     2    NA     NA         NA      NA        NA         2
## 1835     0     1     NA          0      NA        NA        NA
## 1836    NA    NA     NA         NA      NA        NA        NA
## 1837     0     1      0          0       0         0         0
## 1838     2     1     NA          1      NA        NA        NA
## 1839     3     3      3          3       1        NA         3
## 1840    NA    NA     NA         NA      NA        NA         4
## 1841     0     1     NA          0      NA        NA        NA
## 1842    -1     1     NA         NA      NA        NA        NA
## 1843     2     2     NA         NA      NA         1        NA
## 1844     1     1     NA          1       1         1         1
## 1845     2     1     NA          1      NA        NA        NA
## 1846    NA    NA     NA         NA       1        NA        NA
## 1847    NA    NA     NA         NA      NA         1        NA
## 1848    NA    NA     NA         NA      NA        NA        NA
## 1849    NA    NA     NA         NA       1        NA        NA
## 1850    NA    NA     NA         NA      NA        NA        -7
## 1851     0     1     NA          0      NA        NA        NA
## 1852    NA     1     NA         NA       0        NA        NA
## 1853    NA    NA      2         NA      NA         1        NA
## 1854    NA     1     NA         NA       1        NA        NA
## 1855     1     1     NA         NA      NA        NA         1
## 1856     2     1     NA          1      NA        NA        NA
## 1857     3    11      3          8       6         6         6
## 1858     2     6     NA         NA      NA        NA         2
## 1859     2     1     NA          1      NA        NA        NA
## 1860    NA    NA     NA         NA      NA        NA        NA
## 1861     3     6      3          6       4         3         6
## 1862    NA    NA     NA         NA      NA        NA         4
## 1863     0     1     NA          0      NA        NA        NA
## 1864     2     1      0          0       0         1         0
## 1865    NA     4     NA          2       2         3        NA
## 1866     1     3      2          2       1         1         2
## 1867     2    10     NA          1      NA         1        NA
## 1868     0    NA     NA         NA      NA        NA        NA
## 1869    NA    NA      4         NA      NA         2        NA
## 1870    NA    NA      3         NA      NA        NA        NA
## 1871    NA    NA     NA         NA      NA        NA         3
## 1872    NA    NA     NA         NA      NA        NA        NA
## 1873    NA    NA     NA         NA      NA         0        NA
## 1874    NA    NA      2         NA      NA        NA        NA
## 1875     1    NA     NA         NA       1        NA        NA
## 1876     2    NA     NA          2      NA        NA        NA
## 1877    NA    NA     NA         NA      NA         4        NA
## 1878    NA    NA     NA          4      NA        NA         4
## 1879    NA    NA      2         NA      NA         2        NA
## 1880    NA     2      2         NA      NA        NA         2
## 1881    NA    NA      1         NA      NA         1        NA
## 1882    NA    NA     NA         NA      NA        NA        NA
## 1883    NA    NA     NA         NA      NA         1         1
## 1884    NA     0     NA         NA      NA        NA         0
## 1885    NA     1      1         NA       0         0         0
## 1886    NA    NA     NA          1      NA        NA        NA
## 1887    NA    NA     NA         NA      NA         1        NA
## 1888    NA    NA     NA         NA      NA         1         1
## 1889    NA     1     NA         NA      NA        NA        NA
## 1890    NA    NA     NA         NA      NA         1        NA
## 1891     0     0     NA         NA      NA        NA        NA
## 1892    NA    NA     NA         NA      NA        NA         3
## 1893    NA     1     NA         NA      NA        NA        NA
## 1894     0     0     NA         NA      NA        NA        NA
## 1895    NA    NA     NA         NA      NA         0        NA
## 1896    NA     1     NA         NA      NA        NA        NA
## 1897     0     0     NA         NA      NA        NA        NA
## 1898     0    NA     NA         NA       1        NA        NA
## 1899    NA     1     NA         NA      NA        NA        NA
## 1900    NA    NA     NA          1      NA        NA        NA
## 1901     0     0     NA         NA      NA        NA        NA
## 1902    NA     1     NA         NA      NA        NA         1
## 1903    NA    NA     NA         NA      NA        NA         2
## 1904    NA    NA     NA         NA      NA        NA         1
## 1905     4     2      6          2       2         2         2
## 1906     6     3     10          3       3         3         3
## 1907    NA    NA     14         NA      NA        NA        NA
## 1908     3    NA      5         NA      NA        NA        NA
## 1909    NA    NA      1         NA      NA        NA        NA
## 1910     0    NA     NA         NA       2        NA        NA
## 1911     1     1      3          1       1        NA         1
## 1912    NA    NA     NA         NA      NA         2        NA
## 1913     1     2      1          1       1         1         2
## 1914    NA     3      3          3       3         3        NA
## 1915    NA    NA     NA         NA      NA        NA         0
## 1916    NA    NA     NA         NA      NA        NA        NA
## 1917    10    13     13         13       6        13        10
## 1918     2     2      2          2       2         2         2
## 1919     6     8      8          6       6         6         6
## 1920     4    NA     NA         NA       4        NA        NA
## 1921    28    28     60         35      42        35        35
## 1922     2    NA      4          4      NA         4         2
## 1923    21    21     34         23      25        23        17
## 1924    NA     1      1         NA       1         1         1
## 1925    NA    NA      2         NA      NA        NA        NA
## 1926    NA    NA      1         NA      NA        NA        NA
## 1927     1     1      1          1       1         1         1
## 1928     0     0      0          0       0         0         0
## 1929     1    NA      0         NA      NA        NA        NA
## 1930     0     0      0          0       0         0         0
## 1931     1     3      3         NA      NA        NA        NA
## 1932     0    NA     NA         NA      NA         0        NA
## 1933     2     1      4          2       2         1         2
## 1934    NA     1      2         NA      NA        NA        NA
## 1935     1    NA     NA         NA      NA        NA        NA
## 1936    NA     1      4         NA      NA         3        NA
## 1937    NA    NA      1         NA      NA        NA        NA
## 1938     1    NA     NA         NA       3         3        NA
## 1939    NA    NA     NA          0      NA        NA         0
## 1940    NA     1     NA         NA      NA         1        NA
## 1941     1    NA     NA         NA      NA        NA        NA
## 1942    NA    NA      6         NA      NA         2        NA
## 1943    NA    NA      1         NA      NA        NA        NA
## 1944     1    NA     NA          3      NA        NA         3
## 1945    NA     0      0         NA       2        NA        NA
## 1946     2     1      2         NA       2         3        NA
## 1947    NA    NA      1         NA      NA        NA        NA
## 1948    NA    NA     NA         NA      NA        NA        NA
## 1949    NA    NA     NA         NA       2        NA        NA
## 1950     0    NA     NA         NA      NA        NA        NA
## 1951    NA    NA     NA         NA       1        NA         1
## 1952    NA     2     NA          2       4        NA         2
## 1953    NA    NA     NA          1      NA        NA        NA
## 1954    NA    NA     NA         NA      NA         0        NA
## 1955    NA    NA     NA         NA      NA         2         2
## 1956    NA    NA     NA         NA      NA        NA        NA
## 1957    NA     3     10          6       3        16        NA
## 1958     3    NA     NA         NA      NA         3        NA
## 1959     2     2      5          2      NA         3         2
## 1960    14     7     18         11       7        18        25
## 1961    21    11     32         25      28        21        25
## 1962    NA    NA     NA         NA      NA        NA        NA
## 1963     6     4     15          6       6         6         4
## 1964    13    17     11         15      23        NA        11
## 1965    NA     2      2          2       1        NA         2
## 1966     4     2      4          2       2         2         2
## 1967    NA    NA     NA          1      NA        NA        NA
## 1968    NA    NA     NA         NA       1        NA        NA
## 1969    NA    NA     NA         NA      NA         0         0
## 1970    NA    NA     NA          1      NA        NA        NA
## 1971     3    NA      3          2       6         0         4
## 1972    NA     0     NA         NA      NA        NA        NA
## 1973    NA    NA     NA         NA       1         1        NA
## 1974    NA    NA     NA         NA      NA        NA        NA
## 1975    NA    NA     NA         NA      NA        NA        NA
## 1976     1    NA     NA         NA      NA        NA        NA
## 1977     1    NA      0         NA      NA        NA        NA
## 1978    NA    NA     NA         NA       1        NA        NA
## 1979    NA    NA     NA         NA      NA         0        NA
## 1980    NA    NA     NA         NA      NA         4        NA
## 1981    NA    NA     NA         NA      NA        NA        NA
## 1982     1    NA     NA         NA      NA        NA        NA
## 1983    NA    NA     NA         NA       1        NA        NA
## 1984    NA    NA     NA         NA      NA         0        NA
## 1985    NA    NA     NA         NA      NA        NA        NA
## 1986     1    NA     NA         NA      NA        NA        NA
## 1987    NA    NA     NA         NA       0        NA        NA
## 1988    NA    NA     NA         NA       1        NA        NA
## 1989    NA    NA     NA         NA      NA         0        NA
## 1990    NA    NA     NA         NA      NA        NA        NA
## 1991     1    NA     NA         NA      NA        NA        NA
## 1992    NA     0     NA         NA      NA        NA        NA
## 1993    NA    NA     NA         NA       1        NA        NA
## 1994    NA     1     NA         NA      NA        NA        NA
## 1995    NA    NA     NA         NA      NA         0        NA
## 1996    NA    NA      0          1      NA        NA        NA
## 1997    NA    NA     NA         NA      NA        NA         1
## 1998    NA    NA     NA         NA      NA        NA        NA
## 1999    NA    NA     NA         NA      NA        NA        NA
## 2000    NA    NA     NA         NA      NA        NA         1
## 2001    NA    NA     NA         NA      NA        NA        NA
## 2002    NA    NA     NA         NA       0        NA        NA
## 2003    NA    NA      1         NA      NA        NA        NA
## 2004    NA    NA     NA         NA      NA        -2        NA
## 2005     3    NA     NA         NA      NA        NA        NA
## 2006    NA     2     NA         NA       2        NA         2
## 2007    NA    NA      3         NA       3        NA         3
## 2008    NA    NA     NA         NA       3         6         3
## 2009    NA    NA     NA         NA      15         2        NA
## 2010    NA    NA     NA         NA      NA         4        NA
## 2011    18     7      7         11      14        11        11
## 2012     3    NA     NA         NA      NA        NA        NA
## 2013    NA     2      4          2       2         4         2
## 2014    NA    NA     NA         NA       2        NA         2
## 2015     3    NA     NA         NA      NA        NA        NA
## 2016    NA    NA      1         NA      NA        -1        NA
## 2017    NA    NA     NA         NA      NA        NA        NA
## 2018    NA    NA     NA         NA       1        NA        NA
## 2019    NA    NA     NA         NA      NA        NA        NA
## 2020    NA    NA     NA         NA      NA        NA        NA
## 2021     1    NA     NA          0      NA        NA        NA
## 2022    NA     1      1         NA       1         1        NA
## 2023    NA    NA     NA         NA      NA        NA        NA
## 2024    NA    NA     NA         NA      NA        NA        NA
## 2025    NA    NA     NA          0      NA        NA        NA
## 2026    NA    NA      1         NA       1         1        NA
## 2027    NA    NA     NA         NA      NA        NA        NA
## 2028    NA    NA     NA         NA      NA        NA        NA
## 2029    NA    NA     NA         NA      NA        NA        NA
## 2030     1    NA     NA          0      NA        NA        NA
## 2031    NA     1      1         NA       1         1         1
## 2032    NA    NA     NA         NA      NA        NA        NA
## 2033    NA    NA     NA         NA      NA        NA        NA
## 2034    NA    NA     NA         NA       2        NA         4
## 2035    NA    NA     NA         NA      NA        NA        NA
## 2036     1    NA     NA          0      NA        NA        NA
## 2037    NA     1      1         NA       2         1         1
## 2038    NA    NA     NA         NA      NA        NA        NA
## 2039    NA    NA     NA         NA      NA        NA         1
## 2040    NA    NA     NA         NA      NA        NA         1
## 2041     2     2      2          0       2         2         4
## 2042    NA     3     NA         NA       3        NA         6
## 2043    NA    NA      5         NA      NA        NA        NA
## 2044    NA    NA     NA         NA      NA        NA         1
## 2045     0    NA     NA         NA      NA        NA        NA
## 2046    NA    NA     NA          1      NA        NA        NA
## 2047    NA     1     NA         NA      NA        NA         1
## 2048     1     1      0          0       0         0         1
## 2049    NA    NA     NA         NA      NA        NA        NA
## 2050     2     2     NA          4      NA        NA        NA
## 2051     3     3     NA         NA      NA        NA        NA
## 2052    NA     2     NA         NA       2        NA        NA
## 2053    NA    NA     NA         NA       3        NA        NA
## 2054    NA    NA     NA          2       2         2        NA
## 2055     3     3      5         NA      NA        NA        NA
## 2056    NA    NA     NA          3       3         3        NA
## 2057     3     3     10          3       3         3         3
## 2058    NA     2     NA         NA      NA        NA         2
## 2059    NA    NA     NA         NA      NA         6        NA
## 2060     3     6      3         NA      NA        NA        NA
## 2061     4    NA     NA          4      NA        NA        NA
## 2062    39    28     28         28       4         4         4
## 2063    NA    NA     NA          4       2        NA        NA
## 2064    15     8     13          6       4         2         2
## 2065     3     1      2         NA      NA        NA        NA
## 2066    NA     1     NA         NA      NA        NA         1
## 2067    NA    NA      1         NA      NA        NA        NA
## 2068     0     0      0          0       0         0         0
## 2069     1    NA     NA         NA      NA        NA        NA
## 2070     0    NA     NA         NA      NA        NA        NA
## 2071    NA    NA     NA         NA      NA        NA        NA
## 2072    NA     1     NA         NA      NA        NA        NA
## 2073    NA     0      0          0      NA        NA         0
## 2074    NA    NA     NA         NA      NA        NA        NA
## 2075     1     1      1          1       1        NA         1
## 2076     0    NA     NA         NA      NA        NA        NA
## 2077    NA     1      2          0       0        NA        NA
## 2078     2     1      1          1       1         1        NA
## 2079     2     1     NA          1      NA        NA        NA
## 2080    NA    NA     NA         NA      NA        NA        NA
## 2081     1     1      1          1       1        NA         1
## 2082    NA     1      1          1       1         1        NA
## 2083    NA    NA     NA         NA      NA        NA        NA
## 2084     1     1      1          1       1        NA         1
## 2085     0    NA     NA         NA      NA        NA        NA
## 2086    NA    NA     NA         NA      NA        NA        NA
## 2087    NA    NA     NA         NA      NA        NA         2
## 2088    NA     1      1          1       1         1        NA
## 2089     1     1     NA          1      NA        NA        NA
## 2090    NA     2     NA         NA      NA        NA         2
## 2091    NA    NA     NA         NA      NA        NA        NA
## 2092     1     1      1          1       1         3         1
## 2093     0    NA     NA         NA      NA        NA        NA
## 2094    NA    NA      1          0      NA         0         0
## 2095    NA    NA     NA         NA      NA        NA         2
## 2096    NA     1      1          1       1         1        NA
## 2097     1    NA      1          1      NA        NA        NA
## 2098    NA    NA     NA         NA      NA        NA        NA
## 2099     4     3      3          4       1        NA        NA
## 2100    NA    NA     NA         NA      NA        NA        NA
## 2101    NA    NA     NA         NA       1        NA        NA
## 2102    NA    NA     NA         NA      NA        NA         1
## 2103     2     2      4          4       6         6         6
## 2104     3     6      6          3      10        10         6
## 2105     3     3      5          3       5         3        NA
## 2106     1     2      1          1       1        NA         1
## 2107     1    NA     NA         NA      NA        NA        NA
## 2108    NA    NA     NA         NA      NA         1        NA
## 2109     1     0      0          1       0         1         1
## 2110    NA    NA     NA         NA       4         2        NA
## 2111    NA    NA     NA         NA      NA        NA        NA
## 2112    NA     3     NA          3       3         3        NA
## 2113     3     6      6          3       6         3         6
## 2114     2     3      3          6       5         2         2
## 2115    NA     2     NA         NA      NA        NA        NA
## 2116    NA    NA     NA         NA       7         4        NA
## 2117     4     7      7          4       4         4         4
## 2118    NA    NA     NA         NA       2        NA        NA
## 2119    NA    NA      2         NA       2        NA        NA
## 2120    53    51     51         38      49        42        34
## 2121    NA    NA     NA         NA      NA        NA        NA
## 2122    NA    NA     NA          3       3         1         1
## 2123    NA    NA     NA          2       3         2         2
## 2124     1    NA     NA         NA      NA        NA        NA
## 2125     1    NA      1         NA      NA        NA        NA
## 2126     0     0      0          0       0         0         0
## 2127    NA    NA     NA          0      NA        NA        NA
## 2128     1     0      0          2       2         3         2
## 2129    NA    NA     NA         NA      NA        NA        NA
## 2130    NA    NA      0         NA      NA        NA        NA
## 2131     1    NA     NA         NA      NA        NA        NA
## 2132     0     0     NA         NA      NA        NA        NA
## 2133     1     1      1          2       2         1         1
## 2134    NA    NA     NA         NA       1        NA        NA
## 2135     1     1      1         NA       1         1         1
## 2136     0    NA     NA         NA      NA        NA        NA
## 2137    NA     3      1          1       1         2         1
## 2138     1     1      1          1       1         1         1
## 2139    NA    NA     NA         NA      NA        NA        NA
## 2140     1     1      1         NA       1         1         1
## 2141    NA    NA     NA         NA      NA        NA        NA
## 2142    NA     1      1          1       1        NA         1
## 2143    NA    NA     NA         NA      NA        NA        NA
## 2144     1     1      1         NA       1         1         1
## 2145    NA    NA     NA         NA       0        NA        NA
## 2146    NA     1      1          1       1        NA         1
## 2147     1     1      1          1       1         1         1
## 2148    NA    NA     NA         NA      NA        NA        NA
## 2149    NA     0     NA         NA      NA        NA        NA
## 2150     6     2      4         NA       2         2         2
## 2151    NA    NA     NA         NA      NA        NA        NA
## 2152     2    NA     NA         NA      NA        NA        NA
## 2153     1     1      1          3       1         1         1
## 2154    NA     1      1          1       1        NA         1
## 2155     2     2      2          1       2        NA         2
## 2156    NA    NA     NA         NA      NA        NA        NA
## 2157    NA    NA      1         NA      NA        NA        NA
## 2158     1     1      1          1       2         1         1
## 2159    NA    NA     NA         NA      NA        NA        NA
## 2160    NA    NA     NA         NA       1        NA        NA
## 2161    NA    NA     NA         NA      NA        NA         2
## 2162    NA    NA     NA         NA      NA        NA         3
## 2163    11     4      8          8      11         6         6
## 2164    22    25     10         22      29        16        19
## 2165    NA    NA     NA          0      NA        NA        NA
## 2166     7    11      4          7      11         4         4
## 2167     3     3     NA         NA       3         3        NA
## 2168    NA    NA     NA         NA      NA        NA         2
## 2169    NA    NA     NA         NA      NA         1        NA
## 2170    NA    NA     NA         NA       1        NA        NA
## 2171    NA    NA     NA         NA      NA        NA        NA
## 2172     4     3      4          4       2         1         3
## 2173    NA    NA     NA          0      NA        NA        NA
## 2174     1     1      1          2       2         1         1
## 2175     1     2      1          2       2         1         1
## 2176     6     3      3         NA       6         3         3
## 2177    NA    NA      1         NA      NA        NA         0
## 2178     1    NA     NA         NA      NA        NA        NA
## 2179    NA     2     NA         NA      NA        NA        NA
## 2180    NA    NA     NA         NA      NA        NA        NA
## 2181     6    11     15         13      17        13        11
## 2182    14    20     20         20      20        14        25
## 2183    14    20     14         20      25        20        20
## 2184    NA    NA     NA         NA      NA         4        NA
## 2185    17    19     17         19      21        15        21
## 2186    NA     2      2          1       2         1        NA
## 2187    NA    NA     NA         NA       2        NA        NA
## 2188    15    13     13         15      19        15        13
## 2189    NA    NA     NA         NA      NA        NA        NA
## 2190    NA     4      2          4       2        NA        NA
## 2191    NA     2     NA         19       4         4         4
## 2192    32    NA     NA          3      NA        NA        NA
## 2193    10    51     48         16      44        32        35
## 2194    29    22     32         16      25        22        29
## 2195     6     9     11          8      11        11        15
## 2196    NA    NA     NA         NA      NA        NA         3
## 2197    39    35     39         35      35        39        49
## 2198   123   113    109        113      88        95        70
## 2199     2     6      6          4      11         8         2
## 2200    25    32     36         27      32        25        25
## 2201    76    82     87         74      74        63        57
## 2202     6     8      9          6       8         7        11
## 2203    NA     2     NA          2       0         2         0
## 2204    NA     2     NA         NA      NA        NA        NA
## 2205     4     2      2          2       3         3         3
## 2206     1     1      1          2       3         1         1
## 2207    NA    NA     NA         NA      NA        NA        NA
## 2208    NA    NA     NA         NA      NA        NA        NA
## 2209    NA    NA     NA         NA      NA        NA        NA
## 2210     0     0      0          0       1         1         0
## 2211     6     5      7          3       4         6         3
## 2212     2     2      2         NA      NA        NA        NA
## 2213    NA    NA     NA         NA      NA        NA        NA
## 2214     1     0      0          0       1         0         1
## 2215     2     3      3          1       1         2        NA
## 2216    NA    NA     NA         NA       1        NA        NA
## 2217    NA    NA     NA         NA       1        NA        NA
## 2218    NA    NA     NA         NA      NA         1         1
## 2219     2     1     NA          1      NA         1        NA
## 2220     1     1      1          1       1         1         9
## 2221    NA    NA     NA         NA       1        NA        NA
## 2222     2     2      3          3       2         1         2
## 2223     1     2      1          2       1         1         2
## 2224    NA    NA     NA         NA      NA         1        NA
## 2225     0     0      0          0       0         0         0
## 2226    NA    NA     NA         NA      NA         1         1
## 2227     2     1     NA          1      NA         1        NA
## 2228     1     1      1          1       1         1         1
## 2229     2     1      0          0       1         1         0
## 2230     1     2      1          2       1         1         2
## 2231    NA    NA     NA         NA      NA         1        NA
## 2232     0     0      0          0       0         0         0
## 2233    NA    NA     NA         NA      NA         1         1
## 2234    NA    NA     NA         NA      NA        NA         9
## 2235    NA    NA     NA         NA      NA        NA        NA
## 2236    NA    NA     NA         NA       1        NA        NA
## 2237     2     3      2          2       1         1         1
## 2238     1     2      1          2       1         1         2
## 2239    NA    NA     NA         NA      NA         1        NA
## 2240    NA    NA     -1          2       1         1        NA
## 2241     2     1     NA          1      NA         1        NA
## 2242     1     1      1          1       1         1        NA
## 2243    NA    NA     NA         NA      NA        NA        NA
## 2244     2    NA     NA         NA      NA        NA        NA
## 2245     0     0      0          0       0         0         0
## 2246    NA    NA     NA         NA      NA         1         1
## 2247     2     1     NA          1      NA         1        NA
## 2248     1     1      1          1       4         1         9
## 2249    NA    NA     NA         NA       1        NA        NA
## 2250     2     2      3          3       1         2         2
## 2251     1     2      1          2       1         1         2
## 2252    NA    NA      1         NA       3        NA        NA
## 2253    NA    NA     NA         NA      NA        NA        NA
## 2254     0     0      0          0       0         0         0
## 2255    NA    NA     NA         NA      NA         1        NA
## 2256    NA     4      5          2       3         4         1
## 2257    NA    NA      0         NA      NA        NA        NA
## 2258    NA    NA     NA         NA       3        NA        NA
## 2259    NA    NA     NA         NA       1        NA        NA
## 2260    NA    NA     NA         NA      NA         1        NA
## 2261     4     2      6          2       8         6        NA
## 2262     6     6      6          3       6        10         3
## 2263     3    NA      3          3       3        NA         3
## 2264    NA    NA     NA         NA      NA        NA         1
## 2265     1     1      3          3      NA         3        NA
## 2266     1     3      1          1       2         1         2
## 2267     0    NA     NA         NA       1        NA         0
## 2268     3     6      6          3       8         3         3
## 2269    NA    NA     NA         NA      NA        NA        NA
## 2270    NA    NA     NA          2      NA        NA        NA
## 2271     2     4      2          2       6         4         2
## 2272    NA     2     NA         NA      NA        NA        NA
## 2273     5     5     NA         NA      NA        NA        NA
## 2274    NA    NA      6          3       6        10         6
## 2275    NA    NA     NA         NA       3        NA        NA
## 2276     5     2      2          5       6         3         2
## 2277    11     4     11          7       7         7        14
## 2278    NA    NA      4          4      NA        NA        NA
## 2279     6     6      6          4      11         8         8
## 2280    15    21     25         21      21        21        17
## 2281    NA     2      2         NA       2         2        NA
## 2282     1     3      3          2       3         2         2
## 2283    NA    NA     NA         NA       1        NA        NA
## 2284     1    NA      1          0       1         1         0
## 2285     4     1      3          2       3         3         1
## 2286    NA    NA     NA         NA       1        NA        NA
## 2287     0    NA     NA         NA      NA        NA        NA
## 2288     1    NA     NA         NA      NA        NA        NA
## 2289    NA    NA      0          1       1         1         1
## 2290    NA     1     NA         NA      NA        NA        NA
## 2291     4    NA      3          3      NA         3        NA
## 2292     0    NA      1          1       1         1         1
## 2293    NA     1     NA         NA      NA        NA        NA
## 2294     4    NA      3          3       3         3        NA
## 2295     0     1      0          1       0         0         0
## 2296    NA     1     NA         NA      NA        NA        NA
## 2297     1    NA     NA         NA      NA        NA        NA
## 2298     1     0      1          1       1         2         1
## 2299    NA     1     NA         NA       2        NA        NA
## 2300    NA    NA     NA         NA       1        NA        NA
## 2301    NA    NA     NA         NA      NA        NA         1
## 2302    NA    NA      2          2       2        NA         2
## 2303    NA    NA      3          3       3        NA         3
## 2304    NA    NA     NA          0      NA        NA        NA
## 2305    NA    NA     NA         NA      NA        NA        NA
## 2306     1    NA      1          1       0        NA         0
## 2307     1    NA      1         NA       1         1         1
## 2308    NA     1     NA          1       1        NA        NA
## 2309    NA     0     NA         NA      NA        NA        NA
## 2310    NA    NA      1         NA       2         1         1
## 2311    NA    NA     NA         NA      NA        NA        NA
## 2312     1     2      1          1       2         1         1
## 2313    NA    NA     NA         NA      NA        NA        NA
## 2314    NA    NA     NA         NA      NA        NA        NA
## 2315    NA    NA     NA         NA      NA        NA        NA
## 2316    NA    NA     NA         NA      NA        NA        NA
## 2317    NA    NA     NA          2      NA         2         2
## 2318     6     8      8          6       6         4         6
## 2319    NA     3     NA         NA       3         6        NA
## 2320    NA    NA     NA         NA      NA        NA        NA
## 2321     2     4      4          4       6         4         4
## 2322     1     1     NA          1       1         1         1
## 2323    NA    NA     NA         NA      NA        NA        NA
## 2324    NA     2     NA          2      NA         2         2
## 2325    NA    NA     NA          2       2        NA         8
## 2326    16    13     13         13       8        16         3
## 2327    NA    NA     NA          3       3        NA         6
## 2328     6     6      6          3      13        NA        10
## 2329     3     6      3          5       8         3         5
## 2330    NA    NA     NA         NA      NA        NA        NA
## 2331    NA    NA     NA         NA      NA         3        NA
## 2332    NA    NA     NA         NA      NA        NA        NA
## 2333    11    18     18         18      14        21        18
## 2334    21    21     28         32      25        32        28
## 2335     4     4      6          4       6         4         6
## 2336    11     8     13         13      15        15        17
## 2337    25    23     23         27      25        27        27
## 2338     3    NA      3          3       3         3         5
## 2339     5     2      3          3       3         2         3
## 2340     2    NA      2          2       2        NA         2
## 2341     2    NA      2         NA       2         2         4
## 2342     1     1      2         NA       2         1         2
## 2343    NA     1      1         NA       2         1         1
## 2344    NA    NA     NA         NA       1        NA        NA
## 2345    NA    NA     NA         NA       1        NA        NA
## 2346    NA    NA      0         NA       0         0         0
## 2347    NA    NA     NA         NA       0        NA        NA
## 2348     6     4      2          2       2         1         3
## 2349     0    NA     NA         NA      NA        NA        NA
## 2350    NA     2     NA         NA      NA        NA        NA
## 2351    NA    NA     NA          1      NA        NA         1
## 2352    NA    NA      0         NA       0         0         1
## 2353     2     2      2          3       1         1         2
## 2354    NA    NA     NA         NA      NA         1         2
## 2355    NA    NA     NA         NA       1        NA         1
## 2356     1    NA     NA         NA      NA        NA        NA
## 2357    NA    NA      3          3      NA         3         4
## 2358    NA     4     NA         NA      NA        NA        NA
## 2359     1    NA      1          1       0        NA         0
## 2360    NA     0      0          0       0         1        NA
## 2361    NA    NA      1         NA       1        NA         1
## 2362     3     2      1          3       2         2         2
## 2363    NA     0     NA         NA      NA        NA         0
## 2364     1    NA     NA         NA      NA        NA        NA
## 2365    NA    NA     NA         NA      NA        NA         1
## 2366    NA    NA     NA          0       0        NA        NA
## 2367    NA    NA      1         NA       1        NA         1
## 2368    NA    NA     NA         NA      NA        NA        NA
## 2369    NA     0     NA         NA      NA        NA         0
## 2370    NA    NA     NA         NA      NA         3        NA
## 2371    NA     2      2         NA      NA        NA        NA
## 2372     1    NA      1          1       0        NA         0
## 2373    NA     0     NA          0       0        NA        NA
## 2374    NA    NA      1         NA       1        NA         1
## 2375     3     3      3          2       3         2         2
## 2376    NA    NA     NA         NA      NA        NA        NA
## 2377     1    NA     NA         NA      NA        NA        NA
## 2378    NA    NA     NA         NA      NA        NA         1
## 2379    NA     0     NA         NA      NA        NA         0
## 2380     1    NA     NA         NA      NA        NA        NA
## 2381    NA    NA     NA          3       6         3         1
## 2382     4     4      2          4      NA        NA         2
## 2383     1    NA      1          1       0        NA         0
## 2384    NA     1      0          0      NA         0         0
## 2385    NA    NA      1         NA       1        NA         1
## 2386     4     4      4          4       4         2         2
## 2387    NA     0     NA         NA      NA        NA         0
## 2388    NA    NA     NA         NA      NA         1        NA
## 2389     3     1      3          1       4         3         1
## 2390    NA    NA      0         NA      NA        NA        NA
## 2391    NA    NA     NA         NA       1        NA        NA
## 2392    NA    NA     NA         NA      NA        NA         1
## 2393    NA    NA      2          2       2         2        NA
## 2394    NA    NA      3          3       3         3        NA
## 2395    NA    NA     NA         NA      NA        NA        NA
## 2396    NA    NA     NA         NA      NA         0        NA
## 2397    NA    NA     NA          0      NA        NA        NA
## 2398    NA    NA      1          1       1         1        NA
## 2399    NA    NA     NA         NA      NA        NA        NA
## 2400    NA    NA      1          1       1         1         1
## 2401    NA    NA     NA         NA      NA        NA        NA
## 2402    NA    NA     NA         NA      NA        NA        NA
## 2403    NA    NA     NA         NA      NA        NA        NA
## 2404    NA    NA     NA         NA      NA        NA        NA
## 2405    NA    NA     NA         NA      NA        NA        NA
## 2406    NA    NA     NA          2      NA        NA        NA
## 2407    NA    NA     NA         NA      NA        NA        NA
## 2408    NA     2      4          2      NA         2         2
## 2409    NA    NA     NA         NA      NA        NA        NA
## 2410    NA     2     NA          2       2         2        NA
## 2411     2    NA     NA         NA       2         4         2
## 2412    NA    NA     NA         NA      NA        NA        NA
## 2413    NA    NA     NA         NA      NA        NA         3
## 2414     3    NA      3          3       3         3        NA
## 2415    NA    NA      2          2       2         2         2
## 2416    NA    NA     NA         NA      NA        NA        NA
## 2417     4    NA      4         NA      NA        NA         4
## 2418    18    11      4          7       7         7        11
## 2419    NA    NA     NA         NA      NA        NA        NA
## 2420     2    NA      4          2       2         2         4
## 2421    17    21     11          4       8        11         8
## 2422    NA     1     NA         NA      NA        NA         2
## 2423    NA     0     NA         NA      NA        NA        NA
## 2424    NA    NA     NA         NA      NA        NA        NA
## 2425    NA    NA     NA         NA      NA        NA        NA
## 2426    NA    NA      1          1       1         1        NA
## 2427    NA    NA     NA         NA      NA        NA        NA
## 2428    NA    NA     NA         NA       1        NA        NA
## 2429    NA    NA     NA         NA      NA        NA        NA
## 2430    NA    NA      0          0       0         0        NA
## 2431    NA    NA     NA         NA      NA        NA        NA
## 2432    NA    NA      3          1       1         1         1
## 2433    NA    NA     NA         NA      NA        NA        NA
## 2434    NA    NA     NA         NA      NA        NA        NA
## 2435    NA    NA      0         NA      NA        NA        NA
## 2436     0    NA      0          0       0         0         0
## 2437    NA    NA     NA         NA      NA        NA        NA
## 2438    NA    NA      1          1      NA        NA        NA
## 2439    NA    NA     NA          0       0         0        NA
## 2440    NA    NA      1         NA       1        NA        NA
## 2441    NA    NA     NA         NA      NA        NA        NA
## 2442    NA    NA     NA         NA      NA        NA        NA
## 2443    NA    NA      1          1      NA        NA         3
## 2444    NA    NA     NA         NA      NA        NA         0
## 2445    NA    NA      1         NA       1        NA        NA
## 2446    NA    NA     NA         NA      NA        NA        NA
## 2447    NA    NA     NA         NA      NA        NA        NA
## 2448    NA    NA      1         NA       1        NA        NA
## 2449    NA    NA     NA         NA      NA        NA        NA
## 2450    NA    NA      1          1      NA         3        NA
## 2451    NA    NA     NA         NA      NA        NA        NA
## 2452    NA    NA     NA         NA      NA        NA        NA
## 2453    NA    NA      1          1       3        NA        NA
## 2454     0    NA      0          0      NA         0        NA
## 2455    NA    NA      1          2       1         2        NA
## 2456    NA    NA     NA         NA      NA        NA        NA
## 2457    NA    NA     NA         NA      NA        NA        NA
## 2458    NA    NA     NA         NA      NA         1        NA
## 2459    NA    NA     NA         NA      NA        NA        NA
## 2460    NA    NA     NA         NA      NA        NA         1
## 2461    NA    NA     NA         NA       6         2        NA
## 2462    NA    NA     NA         NA      NA        NA        NA
## 2463     1     1      1          0       1        NA        NA
## 2464    NA    NA     NA         NA      NA        NA         1
## 2465    NA     2     NA          2       2        NA        NA
## 2466    NA     2     NA         NA      NA        NA        NA
## 2467    NA    NA     NA         NA       3        NA        NA
## 2468    NA     2      2          4      NA        NA        NA
## 2469    NA    NA     NA         NA      NA        NA        NA
## 2470    NA    NA     NA         NA      NA        NA        NA
## 2471    NA     2     NA          2      NA        NA        NA
## 2472    NA    NA     NA          3      NA        NA        NA
## 2473    NA    NA     NA          3      NA        NA        NA
## 2474    NA    NA     NA         NA      NA        NA        NA
## 2475    NA     6      3         NA       3        NA        NA
## 2476    NA     4     NA          4      NA        NA        NA
## 2477    NA    NA     NA         NA       4        NA         7
## 2478    NA    NA     NA         NA       6        NA        NA
## 2479     4     4      8          4       2        NA        NA
## 2480     2    NA     NA         NA      NA        NA         4
## 2481    NA     1      2          2       1        NA        NA
## 2482    NA     0     NA         NA      NA        NA        NA
## 2483    NA     1      3          2       0        NA        NA
## 2484    NA    NA     NA         NA       1        NA        NA
## 2485    NA     1      1          1       1        NA        NA
## 2486    NA     1      1          2       1        NA        NA
## 2487    NA    NA     NA          0      NA        NA        NA
## 2488    NA    NA     NA          0      NA        NA        NA
## 2489    NA     1      1          2       1        NA        NA
## 2490    NA    NA     NA          0      NA        NA        NA
## 2491    NA    NA     NA         NA      NA        NA        NA
## 2492    NA     2      3          2       1        NA        NA
## 2493    NA    NA     NA          0      NA        NA        NA
## 2494    NA    NA     NA          1      NA        NA        NA
## 2495    NA    NA     NA         NA      NA        NA         1
## 2496    NA     6      2          4       2         2         2
## 2497     3     3      3          3       3         3         6
## 2498    NA     1     NA         NA      NA        NA        NA
## 2499     1     1      1          1       1         0        NA
## 2500    NA    NA      1          1       1        NA         1
## 2501    NA     1      1          1       1        NA         1
## 2502    NA    NA     NA         NA       3        NA        NA
## 2503     1    NA      1         NA       1        NA        NA
## 2504    NA    NA     NA         NA      NA        NA        NA
## 2505    NA    NA     NA         NA      NA        NA         3
## 2506     2     6      2          4       2         2         2
## 2507    NA    NA     NA          2       2         2        NA
## 2508    NA    NA      3         NA      NA        NA        NA
## 2509     3    NA      3          3       3        NA        NA
## 2510     3     6      3          6      10         3         3
## 2511    NA    NA      2          2       2        NA         2
## 2512     4     7      4          7       4        NA        11
## 2513    14    11      4          7       7         7        14
## 2514     4     6      4          4       2         2         4
## 2515    15     8      2          4       4         2         6
## 2516    NA    NA      1         NA      NA        NA        NA
## 2517     2    NA     NA          0       0         0         2
## 2518     3    NA      1          1       1        NA         1
## 2519     1    NA     NA         NA       1        NA        NA
## 2520     0     1      0          1       1         0         0
## 2521    NA    NA     NA         NA      NA        NA        NA
## 2522     2     1      0         NA       0        NA        NA
## 2523     1    NA     NA         NA      NA        NA        NA
## 2524    NA     1      0          0       0         0         0
## 2525    NA    NA     NA         NA       1        NA        NA
## 2526    NA    NA     NA         NA       1        NA        NA
## 2527    NA    NA     NA         NA       1        NA        NA
## 2528     1    NA      1          1       1        NA         1
## 2529     0    NA     NA         NA      NA        NA        NA
## 2530     1    NA      1          1       1        NA         1
## 2531     1    NA      1          1       1        NA         1
## 2532     1    NA      1          1       1        NA         1
## 2533     0    NA     NA         NA      NA        NA        NA
## 2534     1    NA      1          1       1        NA         1
## 2535     1    NA      1          1       1        NA         1
## 2536     1    NA      1          1       1        NA         1
## 2537    NA     0      0          0       0        NA         0
## 2538     1    NA      1          1       1        NA         1
## 2539    NA    NA     NA         NA       1        NA        NA
## 2540    NA    NA      0         NA      NA        NA        NA
## 2541    NA    NA     NA         NA      NA        NA         1
## 2542    NA    NA     NA         NA       4        NA        NA
## 2543    NA    NA     NA          3      NA        NA        NA
## 2544    NA    NA     NA         NA       3        NA        NA
## 2545    NA    NA     NA         NA      NA        NA         1
## 2546    NA    NA     NA         NA      NA         0        NA
## 2547    NA    NA     NA         NA      NA         0        NA
## 2548    NA    NA     NA         NA      NA        NA        NA
## 2549     4     2      4         NA       2         2         2
## 2550     2    NA     NA         NA      NA        NA        NA
## 2551     3     3      6         NA       3         3         3
## 2552     2     4      2          2       2         2         4
## 2553    NA    NA      1         NA      NA        NA        NA
## 2554     2    NA     NA         NA      NA        NA        NA
## 2555     4     4      6          2       2         4         4
## 2556    NA    NA     NA          3       3         3        NA
## 2557     3     3      3          3       3         3        NA
## 2558    NA    NA     NA         NA      NA        NA        NA
## 2559    NA    NA     NA          3      NA        NA        NA
## 2560     7     4     11         11      11        14        18
## 2561    NA    NA     NA         NA      NA        NA        NA
## 2562     8     8     NA         NA       4         6         6
## 2563    NA    NA     NA          4      NA        NA        NA
## 2564    NA    NA      2         NA      NA        NA        NA
## 2565     2    NA     NA         NA      NA        NA        NA
## 2566    NA     1     NA         NA      NA        NA        NA
## 2567     3     1     NA         NA       3         1         1
## 2568    NA     1      0         NA       0         1         1
## 2569    NA    NA      0         NA      NA        NA        NA
## 2570    NA    NA     NA         NA      NA         0        NA
## 2571    NA    NA     NA         NA      NA        NA         2
## 2572    NA     1     NA         NA      NA        NA        NA
## 2573    NA     0      0         NA      NA        NA        NA
## 2574    NA    NA     NA         NA      NA        NA        NA
## 2575    NA    NA     NA         NA      NA        NA        NA
## 2576     1     1      2          1       1         2         1
## 2577    NA    NA      1         NA      NA        NA        NA
## 2578     6    NA      6          3      NA         3         3
## 2579    NA    NA     NA         NA      NA        NA        NA
## 2580     2     1      3         NA       2         1         3
## 2581    NA    NA     NA         NA      NA        NA        NA
## 2582    NA    NA     NA         NA      NA        NA         3
## 2583    NA    NA     NA         NA      NA        NA         2
## 2584    NA    NA     NA         NA      NA         1        NA
## 2585     8     2      2          4       2         2         2
## 2586     6    10      3         10       3         3         3
## 2587     3     3      3          3       3         3        NA
## 2588     0    NA     NA         NA      NA         0        NA
## 2589     3     2      1          1       3        NA         1
## 2590     1    NA      1          1       1         1         1
## 2591    NA    NA     NA         NA      NA        NA        NA
## 2592     1    NA      1          1       1         1         1
## 2593    NA     6     NA         NA      NA        NA         3
## 2594    NA    NA     NA         NA      NA        NA         0
## 2595    NA    NA     NA         NA       1        NA        NA
## 2596    NA    NA     NA         NA      NA        NA        NA
## 2597     4     4      6          4       6         2         6
## 2598     3     3      3          3      NA        NA        NA
## 2599     2     4      2          2       4        NA         4
## 2600    NA     1     NA          1      NA        NA         1
## 2601     2    NA     NA         NA      NA        NA        NA
## 2602    NA     2      2          2      NA        NA        NA
## 2603    NA     3      3         NA      NA        NA        NA
## 2604    NA     2     NA         NA       2        NA        NA
## 2605    NA     2     NA          2       4         2         4
## 2606    11    NA      3         NA      NA        NA        NA
## 2607     3    13     10         13      13         3         3
## 2608    10    13     10         10       6        10        13
## 2609     2     3      3          3       2         2         2
## 2610    14    14      4         11      NA        NA        18
## 2611    42    42     25         39      39        39        35
## 2612    NA    NA     NA         NA      NA        NA        NA
## 2613    11     8      6         11       6         4         8
## 2614    15    19     15         17      21        19        19
## 2615     1     2      2          1       1         1         2
## 2616     1     2      3          3       2        NA         2
## 2617     1     1     NA         NA      NA        NA        NA
## 2618     1     1      2          1       1         1         3
## 2619    NA     1     NA          1       1        NA        NA
## 2620     0     0      0          0       0         0         2
## 2621     1     0      1          0       1         1         1
## 2622     2     3      1          1      NA         1         2
## 2623     0    NA     NA         NA      NA        NA        NA
## 2624    NA    NA     NA          0      NA        NA        NA
## 2625     0     0      0          0       0         0         1
## 2626     1     1      1          1      NA        NA        NA
## 2627    NA    NA     NA         NA       2         1         1
## 2628    NA    NA     NA         NA       1        NA        NA
## 2629     2    NA     NA         NA      NA        NA        NA
## 2630     3     4      9          1       2         3         3
## 2631     0     0      1          0      NA        NA         0
## 2632     1     1      1          1       1         1         1
## 2633     1     1     NA          1       1        NA         1
## 2634     0     0     NA         NA      NA        NA        NA
## 2635    NA    NA     NA         NA      NA        NA        NA
## 2636     2    NA     NA         NA      NA        NA        NA
## 2637    NA     1      1          1       2        NA        NA
## 2638    NA     0     NA         NA       0        NA        NA
## 2639     1     1      1          1       1         1        NA
## 2640     0     0     NA         NA      NA        NA        NA
## 2641    NA    NA     NA         NA      NA        NA        NA
## 2642    NA    NA     NA         NA      NA        NA        NA
## 2643    NA     0      0          0      NA         0         0
## 2644     1     3      1          3       1         1         2
## 2645    NA     1     NA          1       1        NA         1
## 2646    NA    NA     NA         NA      NA        NA        NA
## 2647    NA    NA     NA         NA      NA        NA         1
## 2648     2    NA     NA         NA      NA        NA        NA
## 2649     3     4      1          1       2        NA        NA
## 2650     2    NA     NA         NA      NA        NA        NA
## 2651     0     0     NA         NA      NA        NA        NA
## 2652     2    NA     NA         NA      NA        NA        NA
## 2653    NA     6      1          1       2        NA         3
## 2654     1     0      1          0      NA         0         1
## 2655     3     1      1          1       1         1         1
## 2656     1     1      1          1       1         1         1
## 2657     0     0     NA         NA      NA        NA        NA
## 2658    NA    NA     NA         NA      NA        NA        NA
## 2659    NA    NA     NA         NA      NA         1        NA
## 2660     1     1     NA          1      NA        NA         1
## 2661    NA    NA     NA         -4      NA        NA        NA
## 2662    NA    NA     NA         NA      NA        NA         1
## 2663    NA    NA     NA         NA      NA        NA        NA
## 2664    NA    NA     NA          2      NA        NA        NA
## 2665    NA    NA     NA         -2      NA        NA        NA
## 2666    NA    NA     NA         -2      NA        NA        NA
## 2667    NA    NA     NA         -4      NA        NA        NA
## 2668    NA    NA     NA         NA       2        NA        NA
## 2669     2    NA     NA         NA      NA        NA        NA
## 2670     6     4      4          4       4         2         4
## 2671     4     8      2          4       2         2         2
## 2672    NA    NA      3          3       6         3        NA
## 2673     3     3     NA          1       3         3        NA
## 2674    NA     2     NA         NA      NA        NA         2
## 2675    21    14     21         21      14        18        35
## 2676    NA    NA     NA         NA      NA        NA        NA
## 2677    13    23     21         21      19        15        27
## 2678    NA    NA     NA         NA      NA        NA        NA
## 2679    NA    NA      1          1      NA        NA         1
## 2680     2    NA      2         NA      NA         2        NA
## 2681    NA    NA     NA         NA      NA        NA        NA
## 2682    NA    NA     NA         NA      NA        NA        NA
## 2683    NA     0     NA         -1       0         0        NA
## 2684     0    NA      0         NA      NA        NA        NA
## 2685     0    NA     NA         NA      NA        NA        NA
## 2686    NA    NA     NA         NA      NA        NA        NA
## 2687    NA    NA     NA         NA       1        NA        NA
## 2688    NA    NA     NA          0      NA        NA        NA
## 2689    NA    NA     NA         NA      NA        NA        NA
## 2690    NA    NA     NA         NA      NA        NA        NA
## 2691    NA    NA     NA         -1      NA        NA        NA
## 2692    NA    NA     NA          1      NA        NA        NA
## 2693    NA    NA     NA         NA      NA        NA        NA
## 2694    NA    NA     NA         NA       0        NA        NA
## 2695    NA    NA     NA         NA      NA        NA        NA
## 2696    NA    NA     NA         NA      NA        NA        NA
## 2697    NA    NA     NA         NA      NA         1        NA
## 2698    NA     2     NA         NA      NA        NA        NA
## 2699    NA    NA     NA          0      NA        NA        NA
## 2700    NA    NA     NA          1      NA        NA        NA
## 2701    NA    NA      1         NA      NA        NA        NA
## 2702    NA    NA     NA          2      NA         2        NA
## 2703     3    NA     NA         NA      NA        NA        NA
## 2704     6     3      6          3       3         6        NA
## 2705    16    13     19         22      25        25        32
## 2706     2     3      2          2       2         3         3
## 2707    46    53     56         46      42        25        46
## 2708    NA    NA     NA         NA      NA        NA        NA
## 2709    NA    NA     NA         NA      NA         2        NA
## 2710    40    40     34         27      34        23        21
## 2711     1     1      1          1      NA        NA        NA
## 2712    NA    NA      1         NA      NA        NA        NA
## 2713    NA     1     NA         NA      NA        NA        NA
## 2714    NA     1     NA         NA      NA        NA        NA
## 2715    NA     1     NA         NA      NA        NA        NA
## 2716    NA    NA      0         NA      NA        NA        NA
## 2717    NA     1      0         NA      NA        NA        NA
## 2718    NA    NA     NA         NA      NA        NA        NA
## 2719    NA    NA     NA         NA       1        NA        NA
## 2720     1     1     NA         NA      NA        NA        NA
## 2721     1     1     NA         NA      NA        NA        NA
## 2722     1     1     NA         NA      NA        NA        NA
## 2723     1     1     NA         NA      NA        NA        NA
## 2724    NA    NA     NA         NA      NA        NA         1
## 2725    NA    NA     NA         NA      NA        NA        NA
## 2726    NA    NA     NA         NA      NA         3        NA
## 2727    NA    NA     NA         NA      NA        NA         1
## 2728    NA     2     NA          0       1         1         0
## 2729     0    NA     NA         NA      NA         0        NA
## 2730    NA    NA     NA         NA      NA        NA        NA
## 2731    NA    NA      3         NA      NA        NA        NA
## 2732    NA     2     NA         NA      NA        NA        NA
## 2733    NA    NA     NA         NA      NA        NA        NA
## 2734     4     4      6          4      NA         6         4
## 2735    NA    NA     NA         NA      NA         4         2
## 2736    NA    NA     NA         NA      NA         3         3
## 2737    NA     6      6          3       6        10         3
## 2738    28    28     32         18      25        53         4
## 2739    NA    NA      2         NA      NA         6         2
## 2740     4     4      4          6       8         6         2
## 2741    25    34     25         34      30        27        27
## 2742    NA    NA     NA         NA      NA         2        NA
## 2743    NA    NA     NA         NA       2         3        NA
## 2744    NA    NA     NA         NA       1        NA        NA
## 2745    NA    NA     NA         NA       1        NA        NA
## 2746    NA    NA     NA         NA      NA        NA         0
## 2747    NA    NA      2         NA       2        NA         2
## 2748    NA    NA     NA         NA      NA         4         4
## 2749     1    NA      1          2       2         4         8
## 2750    NA    NA     NA         NA      NA        NA        NA
## 2751    NA    NA     NA         NA       2         1         1
## 2752    NA    NA     NA         NA      NA        NA         1
## 2753    NA     1     NA         NA      NA        NA        NA
## 2754     1     3      3          3       2         2         4
## 2755    NA    NA     NA         NA      NA        NA        NA
## 2756    NA    NA     NA         NA      NA        NA         1
## 2757    NA     1     NA         NA      NA        NA        NA
## 2758     1     3      3          3       2         2         4
## 2759    NA     1     NA         NA      NA        NA        NA
## 2760     1     3      3          3       2         2         4
## 2761    NA    NA     NA         NA      NA        NA         1
## 2762    NA    NA     NA         NA      NA        NA        NA
## 2763    NA    NA     NA         NA      NA        NA        NA
## 2764    NA    NA     NA         NA      NA        NA         1
## 2765    NA    NA     NA         NA       0         0        NA
## 2766    NA     1     NA         NA      NA        NA        NA
## 2767     1     3      3          3       2         2         4
## 2768    NA    NA     NA         NA       1        NA        NA
## 2769    NA    NA     NA         NA      NA         1        NA
## 2770    NA    NA     NA         NA      NA        NA        NA
## 2771    NA    NA     NA         NA      NA        NA         1
## 2772    NA    NA      1         NA      NA        NA         0
## 2773    NA    NA     NA         NA      NA        NA        NA
## 2774    NA    NA     NA         NA      NA        NA        NA
## 2775     2     4     NA          2       4         2         4
## 2776    NA    NA     NA         NA      NA        NA         2
## 2777     5     5      5          3       3        NA        NA
## 2778    NA    NA     NA         NA       3         6         6
## 2779     3    10     NA         NA       3         3         3
## 2780     3     3      5          5       3         6         3
## 2781     4     7      4          4       7         4        11
## 2782    49    49     46         46      32        39        35
## 2783     4     4      2          6       6         2         4
## 2784    15    17     11         15      11         6        11
## 2785    NA    NA     NA         NA      NA        NA        NA
## 2786    NA     1     NA         NA      NA        NA        NA
## 2787    NA    NA     NA         NA       1        NA        NA
## 2788     0    NA     NA         NA      NA         0        NA
## 2789     0     0     NA         NA      NA         0        NA
## 2790    NA    NA     NA         NA      NA        NA        NA
## 2791    NA    NA     NA         NA       2         1        NA
## 2792    NA    NA     NA         NA      NA        NA         3
## 2793    NA    NA     NA         NA      NA        NA        NA
## 2794     0    NA     NA         NA      NA        NA        NA
## 2795     0    NA     NA         NA      NA        NA        NA
## 2796     0    NA     NA         NA      NA        NA        NA
## 2797     6     3      6         NA      NA        NA        NA
## 2798    NA    NA     NA         NA      NA        NA        NA
## 2799     0    NA     NA         NA      NA        NA        NA
## 2800    NA    NA     NA         NA       1         1        NA
## 2801    NA    NA     NA         NA      NA         0        NA
## 2802    NA    NA     NA         NA      NA        NA         1
## 2803     2    NA     NA          1      NA        NA        NA
## 2804    NA    NA     NA         NA       2        NA        NA
## 2805    NA    NA     NA         NA       3        NA        NA
## 2806    NA    NA     NA          5       2         3        NA
## 2807     4    NA     NA         NA      NA        NA        NA
## 2808    NA    NA      2         NA      NA        NA        NA
## 2809     2    NA     NA         NA       2        NA        NA
## 2810    NA    NA     NA          5       2         3         0
## 2811    NA    NA     NA         NA      NA         1         1
## 2812    NA    NA     NA         NA      NA        NA         1
## 2813    NA    NA     NA          2       0         0        NA
## 2814    NA    NA     NA         NA      NA        NA         0
## 2815    NA     0     NA          2      NA         0        NA
## 2816    NA    NA     NA         NA      NA        NA         0
## 2817    NA    NA     NA          2      NA         0        NA
## 2818    NA    NA     NA         NA      NA        NA         0
## 2819    NA    NA     NA         NA      NA        NA         0
## 2820    NA    NA     NA          2      NA         0        NA
## 2821    NA    NA     NA         NA      NA        NA         0
## 2822    NA    NA     NA          6       1         1        NA
## 2823     1    NA     NA          2       1         5         1
## 2824    NA    NA     NA         NA       2        NA        NA
## 2825    NA    NA     NA         NA       1        NA        NA
## 2826    NA    NA     NA         NA      NA        NA         1
## 2827    NA    NA     NA         NA      NA        NA        NA
## 2828    41    41     38         32      98        NA        13
## 2829    NA    NA     NA         NA      NA         0        NA
## 2830     1     1      1          1       3         1         1
## 2831    NA    NA     NA         NA       1        NA        NA
## 2832    NA     1      1         NA       1        NA        NA
## 2833    NA     1      1         NA      NA        NA        NA
## 2834    NA    NA     NA         NA       2         2        NA
## 2835    NA     2     NA         NA       2        NA        NA
## 2836     4     4      2         NA       6         2        NA
## 2837    NA    NA      1         NA       1        NA        NA
## 2838     4     2      2          4       4         4         4
## 2839    NA    NA     NA         NA      NA        NA        NA
## 2840    NA    NA      4         NA      NA        NA         3
## 2841     3    NA      3         NA      NA        NA         3
## 2842     8     6      9          5       9         6         5
## 2843    11    11     11         11      25        21         7
## 2844    11    11     11          7      11         4         4
## 2845    23    21     23         17      44        21        17
## 2846    32    49     51         42      25        27        21
## 2847     3     3      3          2       5         2         2
## 2848     3     2      3          2       3        NA        NA
## 2849    NA    NA      1         NA      NA         2        NA
## 2850    NA    NA      1         NA      NA        NA        NA
## 2851    NA    NA      1         NA       1        NA        NA
## 2852    NA    NA     NA         NA      NA         0         0
## 2853    NA    NA     NA          0      NA        NA        NA
## 2854    NA    NA     NA          1       5         3         2
## 2855    NA    NA     NA         NA       1        NA        NA
## 2856     1    NA     NA         NA      NA        NA        NA
## 2857     0    NA     NA         NA      NA        NA        NA
## 2858    NA    NA     NA         NA      NA        NA        NA
## 2859    NA    NA     NA         NA      NA        -1        NA
## 2860    NA    NA     NA         NA       1        NA        NA
## 2861     3    NA     NA         NA       3        NA        NA
## 2862     1     2      1          1       3         2         2
## 2863    NA    NA      1         NA      NA        NA        NA
## 2864    NA    NA     NA         NA      NA        NA        NA
## 2865     1    NA     NA         NA      NA        NA        NA
## 2866     3    NA     NA         NA       3        -3        NA
## 2867    NA     0     NA         NA      NA        NA        NA
## 2868     3     3      2          3       4         3         2
## 2869    NA    NA      0         NA      NA        NA        NA
## 2870    NA    NA     NA         NA      NA         1        NA
## 2871     2     2      2          4       2         2         4
## 2872    NA     3      3          3      NA        NA         3
## 2873    NA    NA     NA         NA      NA         8        NA
## 2874    NA    NA      0         NA      NA        NA         1
## 2875    NA     1      1         NA      NA        NA        NA
## 2876     1     1      1          1       1         2         1
## 2877    NA    NA     NA         NA      NA        NA         0
## 2878    NA    NA     NA         NA      NA         2        NA
## 2879    NA    NA     NA         NA      NA        NA        NA
## 2880     3     3      3          3       3         3         3
## 2881     3     3      3          3      NA         3         2
## 2882     3     2      3         NA       2        NA        NA
## 2883    NA    NA     NA         NA      NA        NA        NA
## 2884     7     4      4         11       4         7         4
## 2885    NA    NA     NA         NA      NA        NA        NA
## 2886     2     4      4          2      NA        NA        NA
## 2887     8    13      6         21       8         8         6
## 2888    NA    NA     NA         NA      NA         1        NA
## 2889     1     1     NA         NA      NA         1        NA
## 2890    NA    NA     NA         NA      NA        NA        NA
## 2891     3     1     NA         NA      NA        NA        NA
## 2892    NA     1      1         NA      NA        NA        NA
## 2893    NA    NA     NA         NA      NA        29        NA
## 2894     0     0      0          0       0         0         0
## 2895     2    NA      1         NA      NA        NA        NA
## 2896    NA    NA     NA         NA      NA        NA        NA
## 2897    NA     0      0          0      NA        NA        NA
## 2898     1    NA      1         NA      NA        NA        NA
## 2899     0     0      0         NA      NA        NA        NA
## 2900     1    NA      1         NA       1         1        NA
## 2901    NA     0     NA         NA      NA        NA        NA
## 2902     1    NA      1         NA      NA         3        NA
## 2903    NA     0     NA         NA       0        NA        NA
## 2904     1    NA      1         NA       1         1        NA
## 2905    NA     0     NA         NA      NA        NA        NA
## 2906     1    NA      1         NA      NA        NA        NA
## 2907     1    NA     NA          0      NA        NA        NA
## 2908     1    NA      1         NA       1         1        NA
## 2909    NA    NA     NA         NA      NA        NA        NA
## 2910    NA     2     NA         NA      NA        NA        NA
## 2911    NA     0     NA         NA      NA        NA        NA
## 2912     1     3      1          3       3        NA         3
## 2913     1     0     NA         NA      NA        NA        NA
## 2914     3    NA      1          2       1         3         2
## 2915    NA     0     NA         NA      NA        NA        NA
## 2916     1    NA     NA         NA      NA        NA        NA
## 2917    NA     3      6         NA      NA        NA        NA
## 2918     3    NA     NA         NA      NA        NA        NA
## 2919     0    NA     NA         NA      NA        NA        NA
## 2920     3     0      0          1       0         1        NA
## 2921    NA    NA     NA         NA       2        NA        NA
## 2922    NA    NA     NA         NA       2        NA        NA
## 2923     0    NA     NA         NA      NA        NA        NA
## 2924    NA    NA     NA         NA      NA        NA        NA
## 2925     3    NA     NA         NA      NA        NA        NA
## 2926    NA    NA     NA         NA      NA         3        NA
## 2927     3     6     NA         NA       3         3        NA
## 2928    NA    NA     NA          2      NA        NA         2
## 2929    NA     3     NA         NA       2         2        NA
## 2930    NA    NA     NA         NA      NA        NA         3
## 2931    NA    NA     NA         NA      NA        NA         4
## 2932     4    21      4          4       7         4        11
## 2933     4    NA     NA         NA       2        NA        NA
## 2934    NA     8      4         NA       6        NA         2
## 2935    11    15     15          4       6        15         4
## 2936    NA     1     NA         NA      NA        NA        NA
## 2937    NA    NA     NA         NA       2         2        NA
## 2938    NA    NA     NA         NA      NA        NA        NA
## 2939    NA    NA     NA         NA      NA        NA        NA
## 2940    NA    NA     NA         NA       0        NA        NA
## 2941    NA    NA     NA         NA      NA        NA        NA
## 2942    NA     3     NA         NA      NA        NA        NA
## 2943     3    NA     NA         NA      NA        NA        NA
## 2944     0    NA     NA         NA      NA        NA        NA
## 2945    NA    NA      1         NA      NA        NA         0
## 2946    NA    NA     NA         NA      NA         1        NA
## 2947    NA    NA     NA         NA       3        NA        NA
## 2948    NA    NA     NA         NA      NA         1        NA
## 2949    NA    NA     NA         NA       2        NA        NA
## 2950     0    NA     NA         NA      NA        NA        NA
## 2951    NA    NA     NA         NA      NA         1        NA
## 2952    NA    NA     NA         NA       0        NA        NA
## 2953    NA    NA     NA         NA      NA        NA         2
## 2954     0    NA     NA         NA      NA        NA        NA
## 2955    NA    NA      1         NA      NA        NA        NA
## 2956    NA    NA      2         NA      NA         3        NA
## 2957    NA    NA     NA         NA       3        NA        NA
## 2958    NA    NA     NA         NA       1         1        NA
## 2959    NA    NA     NA          4      NA        NA        NA
## 2960    NA    NA     NA         NA      NA        NA         2
## 2961    NA    NA     NA          1       1        NA        NA
## 2962     0    NA     NA         NA      NA        NA        NA
## 2963     2    NA      2          2       4        NA         2
## 2964    NA    NA      3         NA      NA        NA        NA
## 2965    16    25     29         32      32         6        25
## 2966     6     3      3          3       6        NA         2
## 2967    63    77     77         88     116        35        77
## 2968     6     8      6         11       8         2        11
## 2969    44    55     55         66      70        21        46
## 2970     1    NA     NA          1       3        NA         2
## 2971     1    NA     NA         NA      NA        NA        NA
## 2972     3     1      3          2       3        NA         2
## 2973    NA    NA     NA         NA       1        NA        NA
## 2974    NA    NA     NA          1      NA         1        NA
## 2975    NA    NA     NA         NA      NA         1        NA
## 2976    NA    NA     NA         NA      NA         0        NA
## 2977    NA    NA     NA         NA      NA         1        NA
## 2978    NA    NA     NA         NA       1         1         1
## 2979    NA    NA     NA         NA      NA        NA         1
## 2980    NA     1     NA         NA      NA        NA        NA
## 2981    NA    NA     NA         NA      NA        NA         1
## 2982    NA     1     NA         NA      NA        NA        NA
## 2983    NA    NA     NA         NA      NA        NA         1
## 2984    NA     1     NA         NA      NA        NA        NA
## 2985    NA    NA     NA         NA      NA        NA         1
## 2986    NA     1     NA         NA      NA        NA        NA
## 2987    NA    NA     NA          1       2        NA        NA
## 2988    NA    NA     NA         NA      NA        NA         1
## 2989    NA    NA     NA          0      NA         0        NA
## 2990    NA    NA      1          1       1        NA        NA
## 2991    NA    NA     NA         NA      NA        NA        NA
## 2992    NA    NA     NA         NA       3        NA        NA
## 2993    NA    NA     NA         NA      NA        NA         1
## 2994     0    NA     NA         NA      NA        NA        NA
## 2995    NA    NA     NA         NA      NA        NA        -1
## 2996     2     6      2          2       4         2         6
## 2997    NA    NA     NA         NA      NA        NA        NA
## 2998    NA    NA     NA         NA      NA         8        13
## 2999    11    NA     NA         NA      NA        NA        NA
## 3000     6    25     25         19      22         6        22
## 3001    NA     3     NA          3      NA         3         6
## 3002     3     3      3          5       5         3         5
## 3003    NA    NA     NA         NA      NA         3         6
## 3004    25    32     25         32      32        25        60
## 3005    70    77     81        106      60        63        85
## 3006    13    21     13         NA      17        15        15
## 3007    27    34     25         46      25        38        25
## 3008    NA    NA     NA         NA      NA        NA         1
## 3009     1     1      1          1       1        NA         1
## 3010     2     2     NA          3      NA        NA         2
## 3011    NA    NA     NA         NA      NA        NA         4
## 3012    NA     1      1          2       1         1         1
## 3013    NA    NA     NA         NA       1        NA        NA
## 3014    NA    NA     NA         NA       1        NA        NA
## 3015    NA    NA     NA         NA      NA         1         2
## 3016    NA    NA     NA         NA      NA        NA         1
## 3017    NA    NA     NA         NA      NA         2         7
## 3018    NA    NA     NA         NA      NA        NA         2
## 3019    NA    NA     NA         NA       1        NA        NA
## 3020     1    NA     NA         NA      NA        NA        NA
## 3021    NA    NA      1         NA       2        NA        NA
## 3022    NA     2     NA          2       2        NA         4
## 3023    NA    NA     NA          3      NA        NA        NA
## 3024     0    NA     NA         NA      NA        NA        NA
## 3025     0    NA     NA         NA      NA        NA        NA
## 3026    NA    NA     NA         NA      NA        NA         2
## 3027    NA    NA      6         NA      NA        NA        NA
## 3028    NA    NA     NA         NA      NA        NA        NA
## 3029    NA    NA      1         NA      NA        NA         2
## 3030     2     2     NA          2       2        NA         6
## 3031    NA    NA     NA         NA      NA        NA         1
## 3032    NA    NA     NA         NA      NA         1        NA
## 3033    NA    NA     NA         NA      NA        NA        NA
## 3034    NA    NA     NA         NA      NA        NA        NA
## 3035     2     2      2          2       1        NA         1
## 3036    NA    NA     NA         NA      NA        NA        NA
## 3037    NA    NA     NA         NA      NA        -2        NA
## 3038    NA    NA     NA         NA      NA        NA        NA
## 3039     2     4      4          6       6        13        13
## 3040    NA    NA     NA          2       2         2         2
## 3041     3    NA     NA         NA      NA        NA        NA
## 3042     3    13     13         10      10        13         3
## 3043    19    16      6         16      19        16        16
## 3044     3     3      3          2       2         2         3
## 3045    NA    NA     NA         NA      NA        NA         8
## 3046   102    95     99         95      99        77        88
## 3047    NA    NA     NA         NA      NA        NA        NA
## 3048     4     4      6          4       4         4         4
## 3049    19    25     27         23      19        17        17
## 3050     1     1      1          1      NA         1         1
## 3051    NA    NA     NA          2       1         1        NA
## 3052     1     2     NA         NA      NA        NA        NA
## 3053    NA    NA     NA          0      NA         0        NA
## 3054    NA    NA      1         NA      NA        NA         0
## 3055     3     1      2          2       2         0         2
## 3056    NA    NA     NA         NA      NA        NA        NA
## 3057    NA    NA      2          3       6         1         2
## 3058    NA    NA     NA         NA      NA        NA         0
## 3059    NA    NA     NA         NA       1        NA        NA
## 3060     3     3      3          3       6         6         8
## 3061     0    NA      0         NA      NA        NA        NA
## 3062    NA    NA     NA         NA      NA        NA        NA
## 3063    NA    NA     NA         NA      NA        NA        NA
## 3064    NA    NA     NA         NA      NA        NA        NA
## 3065    NA    NA     NA         NA      NA        NA        NA
## 3066    NA    NA     NA         NA      NA        NA        NA
## 3067    NA    NA     NA         NA      NA        NA        NA
## 3068    NA    NA     NA         NA      NA        NA        NA
## 3069     3     8      8         11      14         8         8
## 3070     2     2      3          5       4         1         3
## 3071    NA    NA     NA         NA      NA        NA        NA
## 3072    NA    NA     NA         NA      NA        NA        NA
## 3073    NA    NA     NA         NA      NA        NA        NA
## 3074     2     1     NA          1      NA         1        NA
## 3075    NA    NA     NA         NA      NA        NA        NA
## 3076    NA     0     NA         NA      NA        NA        NA
## 3077    NA    NA     NA         NA       1        NA        NA
## 3078    NA    NA     NA         NA       0        NA        NA
## 3079    NA    NA     NA         -1      -2        NA        NA
## 3080    NA     3      3         NA      NA        NA        NA
## 3081    NA    NA     NA         NA      NA        NA         2
## 3082    NA     2     NA         NA       2        NA         2
## 3083     3     6      3          3      10         6        NA
## 3084     2    NA     NA         NA       2        NA        NA
## 3085    21    35      7         11      21        11        11
## 3086    NA    NA     NA         NA      NA         2        NA
## 3087    NA     2      2          4       2        NA        NA
## 3088    13    13     15          8       8        11        11
## 3089    NA    NA     NA          2       1         1        NA
## 3090    NA    NA     NA          0       0        NA        NA
## 3091    NA    NA      1         NA      NA        NA        NA
## 3092    NA     0     NA         NA      NA        NA        NA
## 3093     0     0     NA         NA      NA         0        NA
## 3094    NA     1      2          3      NA         1        NA
## 3095    NA    NA     NA          0      NA        NA        NA
## 3096    NA     3      1         NA      NA        NA        NA
## 3097     1    NA     NA         NA      NA        NA        NA
## 3098    NA     1     NA          1      NA         1        NA
## 3099    NA    NA     NA          0      NA        NA        NA
## 3100     3    NA      4          3      NA         3         6
## 3101    NA     0     NA         NA      NA        NA        NA
## 3102     0     0     NA         NA      NA         0         0
## 3103    NA     1      2          3      NA         1        NA
## 3104    NA    NA     NA          0      NA        NA        NA
## 3105     6     8      1         NA      NA         3         3
## 3106    NA     0     NA         NA      NA        NA        NA
## 3107     0     0     NA         NA      NA         1        NA
## 3108    NA     1     NA          5      NA         1        NA
## 3109    NA    NA     NA          0      NA        NA        NA
## 3110    NA    NA     NA         NA      NA        NA         1
## 3111    NA    NA     NA         NA      -1        NA        NA
## 3112    NA     2      2         NA       1        NA        NA
## 3113    NA    NA     NA         NA      NA        NA        NA
## 3114    NA    NA     NA         NA      NA        NA        NA
## 3115    NA     3     NA         NA      NA        NA        NA
## 3116     2     5      3          5       3         3         3
## 3117    NA     6     NA         NA      NA        NA         2
## 3118     4    NA     NA         NA      NA        NA        NA
## 3119    NA    11      4         NA      NA        NA        NA
## 3120     2    NA     NA         NA      NA        NA        NA
## 3121    NA    NA     NA         NA      NA        NA         2
## 3122    11    27     15         15      19        21        15
## 3123    NA    NA     NA         NA      NA        NA        NA
## 3124     1    NA     NA         NA      NA        NA        NA
## 3125    NA    NA     NA         NA      NA         0         1
## 3126    NA    NA     NA         NA       3         5         7
## 3127    NA     2     NA         NA      NA        NA        NA
## 3128     1     2      2          2       3         2         4
## 3129    NA    NA     NA         NA      NA         2        NA
## 3130     2     2      1          2       3         2         4
## 3131    NA    NA     NA         NA      NA        NA         1
## 3132    NA    NA     NA         NA      NA        NA         2
## 3133    NA    NA     NA         NA       0        NA        NA
## 3134    NA    NA     NA         NA      NA         1         1
## 3135     0     1      1         NA       1         0        NA
## 3136    NA    NA     NA         NA      NA         1        NA
## 3137    NA    NA     NA          2      NA        NA        NA
## 3138     1    NA      1         NA      NA        NA        NA
## 3139    NA    NA     NA         NA      NA         2         4
## 3140    NA    NA     NA         NA      NA         3         6
## 3141    10    10     10         10      10        13        13
## 3142    NA    NA     NA         NA      NA         2        NA
## 3143    NA     3     NA          2      NA        NA        NA
## 3144    18    18     11         18      11         7        14
## 3145    27    25     23         15      21        19        25
## 3146    NA     2     NA         NA      NA        NA        NA
## 3147    NA    NA     NA         NA      NA        NA         1
## 3148    NA    NA     NA         NA      NA        NA        NA
## 3149    NA    NA     NA         NA      NA        NA        NA
## 3150    NA    NA     NA         NA      NA        NA        NA
## 3151    NA    NA     NA          0      NA         0         0
## 3152    NA    NA     NA         NA      NA        NA         0
## 3153     1     1      1          0      NA         1         1
## 3154    NA    NA     NA         NA       1        NA        NA
## 3155    NA    NA     NA         NA       6        NA        NA
## 3156     2     4      4          2      NA         4         2
## 3157    NA    NA     NA         NA      NA        NA        NA
## 3158     0    NA     NA         NA      NA        NA        NA
## 3159    NA     0      0          0       0         0         0
## 3160    NA     0      0          0       0         0         0
## 3161    NA     2     NA         NA      NA        NA        NA
## 3162    NA    NA     NA          0      NA        NA        NA
## 3163    NA    NA     NA         NA      NA         4         2
## 3164    NA    NA     NA          2      NA        NA        NA
## 3165     2     2      2          2      NA        NA        NA
## 3166    NA     0      0          0       0         0         0
## 3167    NA    NA     NA          2      NA        NA        NA
## 3168     2     6      2          4       2         2         2
## 3169    NA     0      0          0       0         0         0
## 3170    NA    NA     NA         NA      NA        NA         1
## 3171    NA    NA     NA         NA      NA        NA         1
## 3172     0     0     NA         NA      NA        NA        NA
## 3173    NA    NA     NA          2      NA        NA        NA
## 3174    13    19     10          3       6         3         6
## 3175    NA    NA      2          2      NA        NA        NA
## 3176    NA    NA     NA          4      NA        NA        NA
## 3177    39    32     25         35      25        25        25
## 3178     2     2     NA          2      NA        NA         2
## 3179     8     6     11         11      11        11         6
## 3180    NA    NA     NA         NA      NA        NA        NA
## 3181    NA     0     NA         NA      NA        NA        NA
## 3182     3    NA     NA         NA      NA        NA        NA
## 3183    NA    NA     NA         NA      NA        NA        NA
## 3184    NA    NA     NA          3      NA        NA        NA
## 3185     1    NA     NA         NA      NA        NA        NA
## 3186     1     0     NA         NA      NA        NA        NA
## 3187    NA    NA     NA         NA      NA        NA        NA
## 3188    NA    NA     NA         NA      NA        NA        NA
## 3189    NA    NA     NA         NA      NA        NA        NA
## 3190    NA    NA      2         NA      NA        NA        NA
## 3191    NA    NA     NA         NA      NA        NA        NA
## 3192     3    NA     NA         NA      NA        NA        NA
## 3193     3    10     13         19      NA        NA        NA
## 3194    NA     3     NA         NA      NA        NA        NA
## 3195    NA    NA      2         NA      NA        NA        NA
## 3196    NA     2      2         NA      NA        NA        NA
## 3197     3     6      6         NA      NA        NA        NA
## 3198    NA    NA     NA         14      NA        NA        NA
## 3199    42    11     25         28      NA        NA        NA
## 3200     2     2      2          6      NA        NA        NA
## 3201     6    13     15         13      NA        NA        NA
## 3202    NA     1      1         NA      NA        NA        NA
## 3203    NA    NA     NA         NA      NA        NA        NA
## 3204    NA    NA     NA         NA      NA        NA        NA
## 3205    NA    NA     NA         NA      NA        NA        NA
## 3206    NA    NA     NA          1      NA        NA        NA
## 3207    NA    NA     NA         NA      NA        NA        NA
## 3208    NA    NA     NA         NA      NA        NA        NA
## 3209    NA    NA     NA          1      NA        NA        NA
## 3210    NA     2     NA         NA      NA        NA        NA
## 3211    NA    NA     NA         NA      NA        NA        NA
## 3212    NA    NA     NA          1      NA        NA        NA
## 3213    NA    NA     NA         NA      NA        NA        NA
## 3214    NA    NA     NA         NA      NA        NA        NA
## 3215    NA    NA     NA          1      NA        NA        NA
## 3216    NA    NA      1         NA      NA        NA        NA
## 3217    NA    NA     NA         NA      NA        NA         1
## 3218    NA     3     NA         NA      NA         6        NA
## 3219    NA    NA     NA         NA      NA         5        NA
## 3220    NA    NA     NA         NA      NA        NA        NA
## 3221    NA    NA     NA         NA      NA        NA         0
## 3222    NA    NA     NA         NA      NA        NA         1
## 3223    NA    NA     NA          1       1         1        NA
## 3224    NA     3      3         NA      NA         3        NA
## 3225    NA    NA     NA         NA      NA        NA        NA
## 3226    NA     0      0         NA      NA        NA        NA
## 3227     2    NA     NA         NA      NA        NA        NA
## 3228    NA    NA     NA          2      NA        NA        NA
## 3229     2     6      4          4       4         6         4
## 3230    NA    NA     NA         NA      NA        NA         2
## 3231    16    NA     NA         NA      NA        NA        NA
## 3232    NA    29     35         38      54        48        35
## 3233     3     6     NA         NA      NA         3         3
## 3234     2     5      5          3       5         5         5
## 3235    NA     2     NA          2      NA        NA        NA
## 3236    18    11     NA         49      53        60        NA
## 3237    NA    NA     NA         NA      NA        NA         4
## 3238    NA    NA     NA         NA      NA         2        NA
## 3239    38    51     61         63      70        55        40
## 3240     2     4      3          2       3         3         2
## 3241     2    NA      2          2      NA         2        NA
## 3242    NA    NA     NA         NA      NA        NA        NA
## 3243    NA     3     NA         NA      NA         1        NA
## 3244     0     1      2          4       3         3         5
## 3245    NA     2     NA         NA      NA        NA        NA
## 3246    NA    NA     NA         NA      NA        NA        NA
## 3247    NA     2      5          5       3        NA        NA
## 3248    NA    NA     NA         NA       2        NA        NA
## 3249     2     2      3          2       1         3         1
## 3250    NA    NA     NA         NA       2        NA        NA
## 3251    NA    NA     NA         NA       2        NA        NA
## 3252     2     3      1          2      NA         2         1
## 3253    NA    NA     NA         NA       2        NA        NA
## 3254    NA    NA      3          6       3         6         3
## 3255     2     3      3          2       3         3         1
## 3256    NA    NA     NA         NA      NA         1        NA
## 3257    NA     4      2          2       2         2         2
## 3258    NA     3      3          3       3         3         3
## 3259    NA    NA      5         NA      NA        NA        NA
## 3260    NA     1     NA          2      NA        NA        NA
## 3261    NA    NA     NA         NA      NA        NA         0
## 3262     1     1      1          1       1        NA         1
## 3263    NA     1      1          1       2        NA         1
## 3264    NA    NA     NA         NA      NA        NA        NA
## 3265     1    NA     NA          1      NA        NA        NA
## 3266    NA     2     NA         NA      NA        NA        NA
## 3267     6     6      6         NA       4         4         2
## 3268     2     4      2          2       2         2         4
## 3269     3     2      2          1       2         2         1
## 3270    NA    NA     NA          2       4         8        11
## 3271     5    NA     NA         NA      NA        NA        NA
## 3272     3    10     10          6      10        NA        NA
## 3273     6     3      3          3       3        NA         3
## 3274     8     3      5          5       6         6         5
## 3275    NA    NA     NA         NA      NA        NA        -2
## 3276     4     7      7         NA      NA         7         7
## 3277    53    49     56         46      56        35        49
## 3278     4     6      6          4       8         8        11
## 3279    17    32     15         15      17        19        21
## 3280     2     2      1         NA       1         3         2
## 3281    NA    NA     NA         NA      NA        NA        NA
## 3282    NA    -1      1          1       1        NA         1
## 3283    NA    NA     NA         NA       1        NA        NA
## 3284    NA     0      0          0       0         0         1
## 3285    NA    NA     NA         NA      NA        NA         0
## 3286     3     3      3          2       3         1         2
## 3287    NA    NA      1         NA      NA        NA        NA
## 3288    NA     1     NA         NA      NA        NA        NA
## 3289    NA     0      0          0       0        NA         0
## 3290     3    NA     NA         NA       6         3         6
## 3291    NA    NA      0          0       0        NA         0
## 3292    NA    NA      2          1       2        NA         1
## 3293    NA    NA     NA          1      NA        NA         1
## 3294     0    NA     NA         NA      NA        NA        NA
## 3295    NA    NA     NA          1      NA        NA         1
## 3296    NA    NA      2          1       1         2         2
## 3297    NA     3      3          3      NA        NA         3
## 3298     0     0     NA          1       1         1         0
## 3299    NA     2     NA          1      NA        NA         1
## 3300     1    NA     NA         NA      NA        NA        NA
## 3301    NA    NA     NA         NA      NA        NA        NA
## 3302    11    13      6          8      13         8        11
## 3303    19    13     10         16      19        16        16
## 3304    NA    NA     NA          1       0        NA        NA
## 3305     5    10      5          8       8         8         5
## 3306    NA    NA     NA         NA      NA        NA        NA
## 3307    NA     3      1          3       1         3         2
## 3308    NA    NA     NA          1       1        NA        NA
## 3309    NA    NA     NA         NA      NA        NA        NA
## 3310    NA    NA     NA          1       1        NA        NA
## 3311    NA    NA     NA         NA      NA        NA        NA
## 3312     1    NA     NA         NA      NA        NA        NA
## 3313    NA    NA     NA         NA      NA        NA        NA
## 3314    NA    NA     NA         NA      NA        NA        NA
## 3315     2     2     NA          2      NA         4         4
## 3316     3     3     NA         NA      NA        NA        NA
## 3317     6     6      2          6       4         6         8
## 3318    NA     2      1         NA       1         1        NA
## 3319     0    NA     NA         NA      NA        NA        NA
## 3320    -1    NA     NA         NA      NA        NA        NA
## 3321    NA    NA      8         21      21        15        11
## 3322    13    NA     NA         NA      NA        NA        NA
## 3323     3    38     30         NA      NA        16         3
## 3324     6     3      3          3       3        NA         6
## 3325     5     6      3          8       8         6         6
## 3326     6     3      3         NA       8        11        11
## 3327    NA    NA     NA         NA      NA        NA         3
## 3328    25    18     21         32      46        28        35
## 3329    14    32     18         18      21        25        18
## 3330    NA    NA     NA         NA      NA        NA        NA
## 3331     6    17     11          8      13        19        15
## 3332    36    27     30         21      42        44        30
## 3333    10    10      8          8      11        11        10
## 3334     5     2      2         NA       3         2         2
## 3335     2     4      2         NA       4         2         2
## 3336     4     3      4          1       2         1         1
## 3337    NA     1     NA          1       1        NA        NA
## 3338    NA     1     NA         NA      NA        NA        NA
## 3339    NA     1     NA         NA      NA        NA        NA
## 3340    NA    NA     NA         NA      NA        NA        NA
## 3341    NA     1     NA          0       0        NA         1
## 3342     1     1     NA          1       1         2         1
## 3343     2     3     NA          2       2         3         1
## 3344    NA     0     NA         NA      NA        NA        NA
## 3345    NA    NA     NA         NA      NA         2        NA
## 3346    NA    NA     NA         NA      NA         0        NA
## 3347    NA    NA     NA          0       0        NA        NA
## 3348    NA    NA     NA         NA       1        NA        NA
## 3349    NA    NA      2          3      NA         2        NA
## 3350     3     3     NA         NA      NA        NA        NA
## 3351     3    NA      1          1      NA        NA         3
## 3352     1     1      2          1       1         2         2
## 3353    NA     2      1          1       1         2         2
## 3354    NA    NA     NA         NA      NA        NA        NA
## 3355     0     1      0          0       1        NA         0
## 3356    NA    NA      1         NA      NA        NA        NA
## 3357    NA    NA      1          1      NA        NA        NA
## 3358    NA    NA     NA         NA      NA        NA         1
## 3359    NA     2      1          1       1         2         2
## 3360     0     1      0          0       1        NA         0
## 3361     1     1     NA          0       1         1         2
## 3362    NA     4      1          1       1         2         2
## 3363    NA    NA     NA         NA      NA        NA        NA
## 3364    NA    NA      1          1      NA        NA        NA
## 3365     0     1      0          0       1        NA         0
## 3366    NA    NA      2          3       3         2        NA
## 3367     3     3     NA         NA      NA        NA        NA
## 3368     3    NA      1          1       3        NA        NA
## 3369     1     2      2          1       2         2         2
## 3370    NA     2      1          1       1         2         2
## 3371    NA    NA     NA         NA      NA        NA        NA
## 3372     0     1      0          0       1        NA         0
## 3373    NA    NA     NA         NA       2        NA        NA
## 3374    NA    NA     NA         NA      NA        NA        NA
## 3375     1    NA     NA         NA      NA        NA        NA
## 3376    NA    NA     NA         NA      NA        NA         5
## 3377    NA    NA     NA         NA      NA         1         4
## 3378     4     2      4         NA       6         2         8
## 3379     6    NA     NA         NA       3        NA        10
## 3380    NA     3      3         NA       3         3        NA
## 3381    NA    NA     NA         NA      NA        NA         2
## 3382     2    NA     NA          2      NA        NA        NA
## 3383    NA    NA     NA         NA      NA         0         1
## 3384    NA    NA      2         NA      NA        NA        NA
## 3385    NA    NA     NA         NA      NA        NA         0
## 3386    NA    NA     NA         NA       3         3        NA
## 3387     1    NA     NA         NA      NA        NA        NA
## 3388     4     2      4          4       4         2         4
## 3389    NA    NA      2          2      NA         2         2
## 3390     3     5      3         NA      NA        NA        NA
## 3391     3     3      3          3       6         6         6
## 3392     6    13     10         19      16        29        19
## 3393    NA     5      5          6       5         6         5
## 3394    75    NA     NA         NA      NA        NA        NA
## 3395    NA    NA     NA         NA      NA        NA        NA
## 3396     4     7      7          4       7        NA         4
## 3397    18     7     11         14      11        21        14
## 3398     4    NA     NA          6       6         6         4
## 3399   998    42     40         40      44        34        49
## 3400     2     1      2          2       4         2         2
## 3401     3     2      2          2       3         3        NA
## 3402    NA    NA     NA          1      NA        NA        NA
## 3403    NA    NA     NA         NA      NA        NA        NA
## 3404    NA    NA     NA         NA      NA         1        NA
## 3405    NA    NA     NA         NA       0         0        NA
## 3406    NA    NA     NA         NA      NA        NA         0
## 3407     3    NA     NA         NA       0         1         3
## 3408     0    NA     NA         NA      NA        NA        NA
## 3409    NA    NA     NA         NA      NA        NA         1
## 3410     0    NA     NA         NA      NA        NA         0
## 3411    NA    NA     NA         NA       1         2         1
## 3412    NA     1      1          1       2         2         2
## 3413    NA    NA     NA         NA      NA         0         1
## 3414    NA     2     NA         NA      NA        NA        NA
## 3415    NA    NA     NA         NA       2         1         2
## 3416     1     1      1          1       1         1         1
## 3417    NA    NA     NA         NA      NA        NA        NA
## 3418    NA     1      1          1       2         2         2
## 3419    74    NA      2          4       2         1         2
## 3420    NA     1     NA         NA      NA         1        NA
## 3421    NA    NA     NA         NA      NA        NA        NA
## 3422    NA     1      1          1       2         2         2
## 3423    NA    NA     NA         NA      NA         0         1
## 3424    NA     2     NA         NA      NA        NA        NA
## 3425    85    NA     NA         NA       2         1         2
## 3426     1     1     NA         NA       1         1         1
## 3427    NA    NA      2         NA      NA        NA        NA
## 3428    NA    NA     NA         NA      NA        NA        NA
## 3429    NA     1      1          1       2         2         2
## 3430    NA    NA     NA         NA      NA         0         1
## 3431    NA     2     NA         NA      NA        NA        NA
## 3432    NA     2      2          4       2         3         2
## 3433     1     1      1          1       2         1         1
## 3434    NA    NA     NA         NA      NA        NA        NA
## 3435    NA    NA     NA         NA      NA         1        NA
## 3436    NA    NA     NA         NA      NA        NA        NA
## 3437    NA    NA     NA         NA      NA         1         3
## 3438    NA    NA     NA         NA      NA        NA        NA
## 3439    NA    NA     NA         NA      NA        NA        NA
## 3440    NA    NA     NA         NA      NA        NA        NA
## 3441    NA    NA     NA          2      NA        NA        NA
## 3442     1    NA     NA         NA      NA        NA        NA
## 3443     1    NA     NA         NA      NA        NA        NA
## 3444     1    NA     NA         NA      NA        NA        NA
## 3445    NA    NA      3         NA      NA        NA         3
## 3446    -4    NA     NA         NA      NA        NA        NA
## 3447    NA     2     NA         NA       2         2         2
## 3448    NA    NA     NA         NA       2        NA        NA
## 3449    NA    NA      3         NA       3        NA         3
## 3450    82    57     54         60      70        48        79
## 3451    NA    NA     NA         NA      NA        NA        NA
## 3452    NA    NA     NA         NA      NA        NA        NA
## 3453   130   123    130         92     102        53       116
## 3454     8     6      8          6       8         6         8
## 3455     8     4      2          6       6         4         4
## 3456   101    74     76         63      76        63        80
## 3457    NA    NA     NA          1       1         2        NA
## 3458     2    NA     NA         NA      NA        NA        NA
## 3459     4     3      3          3       6         3         2
## 3460     1    NA     NA         NA      NA        NA        NA
## 3461    NA    NA     NA         NA      NA        NA        NA
## 3462    -1    NA     NA         NA      NA        NA        NA
## 3463     0    NA     NA         NA      NA         0         1
## 3464    NA    NA     NA         NA      NA         1         3
## 3465    -1    NA     NA         NA      NA        NA        NA
## 3466     1    NA     NA         NA      NA        NA        NA
## 3467     0     0     NA         NA      NA        NA        NA
## 3468    NA    NA      1         NA      NA        NA        NA
## 3469    NA    NA      1         NA      NA        NA        NA
## 3470    NA    NA      1         NA      NA        NA        NA
## 3471    NA    NA      1         NA      NA        NA        NA
## 3472    NA    NA      1         NA      NA        NA        NA
## 3473    NA    NA      1         NA      NA        NA        NA
## 3474    NA    NA      1         NA      NA        NA        NA
## 3475    NA    NA      1         NA      NA        NA        NA
## 3476    NA    NA      1         NA      NA        NA        NA
## 3477    NA    NA     NA         NA      NA        NA        NA
## 3478     6     6     10          3       3         6         8
## 3479    NA    NA      1          1      NA        NA        NA
## 3480    NA    NA      1         NA      NA        NA        NA
## 3481    NA    NA     NA         NA      NA        NA        NA
## 3482     2     2      2         NA       4        NA         2
## 3483     3    NA     NA         NA      NA        NA        NA
## 3484    NA    NA     NA         NA       5        NA         3
## 3485    NA    NA     NA         NA      NA         1        NA
## 3486     2     1      1         NA       2        NA         1
## 3487    NA    NA     NA         NA       3        NA        NA
## 3488    NA    NA     NA         NA      NA        NA        NA
## 3489    NA    NA     NA         NA      NA         2        NA
## 3490    NA    NA     NA         NA      NA         4        NA
## 3491     2     2      2         NA       2        NA        NA
## 3492    NA     2      2          4       2        NA        NA
## 3493    NA    NA     NA          1      NA        NA         1
## 3494    NA     2     NA         NA      NA        NA        NA
## 3495     2    NA      1          1       2         1         1
## 3496     1     1      1         NA       1        NA        NA
## 3497    NA     2      2          0       1        NA        NA
## 3498     0    NA     NA         NA      NA        NA        NA
## 3499    NA    NA     NA         NA      NA        NA         0
## 3500    NA    NA     NA         NA      NA         3        NA
## 3501     0     0     NA         NA      NA         0        NA
## 3502    NA    NA     NA          0       0         0         0
## 3503     0     0     NA         NA      NA        NA        NA
## 3504    NA    NA     NA          0       0         0         0
## 3505     0     0     NA         NA      NA        NA        NA
## 3506    NA    NA     NA         NA       2        NA        NA
## 3507    NA    NA     NA          0       0         0         0
## 3508     1     0     NA         NA      NA        NA        NA
## 3509    NA    NA     NA          0       0         0         0
## 3510    NA    NA     NA         NA       2        NA        NA
## 3511     1     0      0          0       1         0        NA
## 3512    NA    NA     NA         NA      NA         0        NA
## 3513    NA    NA     NA         NA       3        NA        NA
## 3514     3     3      2          2       3         2         3
## 3515    NA    NA     NA         NA      NA        NA        NA
## 3516    NA    11     NA         NA      NA        NA        NA
## 3517     2    NA     NA         NA       2         2        NA
## 3518     8    15     23         15      15        27        11
## 3519     1    NA     NA         NA      NA        NA        NA
## 3520    NA     2      2         NA      NA        NA        NA
## 3521    NA    NA     NA         NA      NA        NA        NA
## 3522     0    NA      0         NA      NA        NA        NA
## 3523     1     0      0          0       1         0        NA
## 3524    NA     0     NA         NA      NA        NA        NA
## 3525    NA     2     NA         NA       2         1         2
## 3526     0    NA     NA         NA      NA         0        NA
## 3527    NA    NA     NA         NA      NA         1        NA
## 3528     0    NA     NA         NA      NA         0        NA
## 3529     1     0      0          0       1         0        NA
## 3530     2     2      2         NA       2         1        NA
## 3531     0    NA     NA         NA      NA         0        NA
## 3532    NA    NA     NA         NA       3        NA        NA
## 3533    NA    NA     NA         NA      -3        NA        NA
## 3534     1     0      0          0       1         0        NA
## 3535     2    NA      4          2       4         1         2
## 3536     0    NA     NA         NA      NA         0        NA
## 3537    NA     1     NA         NA      NA        NA        NA
## 3538    NA    NA     NA         NA      NA        NA        NA
## 3539     3    NA     NA         10       3        10        10
## 3540    NA     2      2         NA      NA        NA        NA
## 3541    NA     2     NA         NA      NA        NA        NA
## 3542    18    14     21         11       7         7        11
## 3543     2     2     NA         NA       2         2        NA
## 3544    30    25     23         21      23         8        11
## 3545    NA    NA     NA          1      NA        NA        NA
## 3546    NA    NA     NA         NA      NA        NA        NA
## 3547    NA     0     NA         NA      NA        NA        NA
## 3548    NA     1     NA         NA      -3        NA        NA
## 3549    NA     1     NA         NA      NA        NA        NA
## 3550    NA    NA     NA         NA      NA        NA        NA
## 3551    NA     1     NA         NA      NA        NA        NA
## 3552    NA    NA     NA         NA      NA         2        NA
## 3553    NA     0     NA         NA      NA        NA        NA
## 3554    NA     1     NA         NA      NA        NA        NA
## 3555    NA    NA     NA         NA      NA         1        NA
## 3556    NA    NA     NA         NA      NA         1        NA
## 3557     2     2      2          2       2         2         2
## 3558    10    10      6          3       3         6        10
## 3559    NA    NA     NA          4      NA        NA        NA
## 3560     3    NA      3         -3      NA        NA        NA
## 3561    NA    NA     NA         NA      NA        NA         2
## 3562    NA    NA     NA         NA      NA        NA        NA
## 3563    NA     0     NA         NA      NA        NA        NA
## 3564     1     1     NA          1       1         1         1
## 3565    NA    NA     NA         NA      NA        NA        NA
## 3566    NA     1      1          1       1         1         1
## 3567    NA    NA      1          1       1         1         1
## 3568     3     3     NA          3       3         3        NA
## 3569     1     0      1         NA      NA        NA        NA
## 3570    NA    NA     NA         NA      NA        NA         2
## 3571    NA    NA     NA         NA      NA        NA        NA
## 3572    NA    NA     NA          1       1         1        NA
## 3573    NA    NA     NA         NA       2        NA        NA
## 3574    NA    NA     NA          1       1         1        NA
## 3575    NA     2     NA         NA      NA        NA        NA
## 3576     1     1      1          1       2         2         2
## 3577    NA    NA     NA          2       2         2         2
## 3578     3    NA     NA         NA      NA        NA        NA
## 3579     3     3      3          3       3         3         7
## 3580     6    NA      3          3       3         3         3
## 3581    NA    NA      2          2       2         2         2
## 3582    NA    NA     NA         NA       2         2        NA
## 3583     6     3      6          3       6        NA         3
## 3584    NA    NA     NA          4      NA        NA        NA
## 3585    18    35     39         32      25        49        49
## 3586    NA    NA     NA         NA      NA        NA        NA
## 3587    13    23     25         25      19        30        17
## 3588    NA    NA     NA         NA      NA        NA        NA
## 3589     1     2      2          1      NA        NA         1
## 3590    NA    NA     NA         NA       2         2        NA
## 3591    NA     1     NA         NA      NA        NA        NA
## 3592    NA    NA      1          1       1         1         1
## 3593    NA    NA     NA         NA      NA        NA        NA
## 3594    NA     1     NA         NA      NA        NA        NA
## 3595    NA    NA      0          0       0         0         0
## 3596    NA    NA     NA         NA      NA        NA         0
## 3597     2     2     NA          2       4        NA         1
## 3598    NA    NA      2         NA      NA        NA        NA
## 3599     0    NA      0         NA      NA        NA        NA
## 3600    NA    NA      0          0       0         0         0
## 3601    NA    NA     NA          1      NA        NA        NA
## 3602    NA    NA     NA         NA      NA         1        NA
## 3603    NA    NA     NA         NA       1        NA        NA
## 3604    NA    NA     NA         NA      NA        NA         3
## 3605     3    NA      3          3      NA         3        NA
## 3606    NA     3     NA         NA      NA        NA        NA
## 3607    NA    NA     NA         NA      NA        NA        NA
## 3608    NA     0     NA         NA      NA        NA        NA
## 3609    NA    NA     NA         NA       1        NA         0
## 3610    NA    NA     NA          1      NA        NA         1
## 3611     1     1      1          1       1         1         1
## 3612     0     0      0          0      NA         0        NA
## 3613    NA    NA     NA          0      NA        NA        NA
## 3614    NA    NA     NA          1       2        NA         1
## 3615    NA     1     NA         NA      NA        NA        NA
## 3616     0     0      0          0      NA         0        NA
## 3617    NA     0     NA         NA      NA        NA        NA
## 3618    NA    NA      2          1      NA        NA         1
## 3619     1    NA      1         NA       1        NA         1
## 3620     1    NA     NA          1       1         2        NA
## 3621     3     3      6          3      NA        NA        NA
## 3622    NA    NA     NA         NA      NA         0        NA
## 3623    NA     2     NA         NA      NA        NA        NA
## 3624     1     3     NA          3      NA         1        NA
## 3625     0     0      0          0      NA         0        NA
## 3626     2     2      2         NA      NA        NA        NA
## 3627    NA    NA     NA         NA      NA        NA         0
## 3628     3     3      8          6       3         6         6
## 3629     3     3      3          3       3        NA        NA
## 3630    NA     0     NA         NA      NA        NA        NA
## 3631    NA     1      0          1       1        NA        NA
## 3632    NA    NA     NA          1      NA         2         1
## 3633     1     2      1          3       1         1         1
## 3634     0     0      0          0      NA         0        NA
## 3635    NA    NA      1         NA      NA         1        NA
## 3636    NA    NA     NA         NA      NA        NA        NA
## 3637     2     2      2          2      NA        NA        NA
## 3638    NA    NA     NA          6      NA        NA        NA
## 3639    NA    NA     NA         NA      NA        NA         3
## 3640    NA    NA      0         NA      NA        NA        NA
## 3641    NA    NA     NA         NA      NA        NA        NA
## 3642    NA    NA     NA         NA      NA        NA        NA
## 3643    NA    NA     NA         NA      NA        NA         1
## 3644    NA    NA     NA         NA      NA         3        NA
## 3645    NA     2     NA         NA      NA        NA        NA
## 3646     3     2     NA         NA      NA         2         3
## 3647    NA    NA      2          2       4         2        NA
## 3648    NA     2      2         NA      NA         4         2
## 3649    NA     2      2         NA       4        NA        NA
## 3650    NA    NA     NA         NA      NA        NA         1
## 3651    NA    NA     NA         NA       0        NA        NA
## 3652     1    NA     NA         NA      NA        NA        NA
## 3653    NA    NA      1         NA      NA        NA        NA
## 3654    NA    NA     NA         NA       0        NA        NA
## 3655    NA    NA     NA         NA       0        NA        NA
## 3656     1     1      1         NA       1        NA        NA
## 3657    NA    NA     NA         NA       0        NA        NA
## 3658     3    NA     NA         NA      NA        NA        NA
## 3659    NA    NA      0         NA      NA        NA        NA
## 3660     3     1      3          4      NA        NA        NA
## 3661     4     6      8          4       4         4         2
## 3662     2     4      4          2       2         2         2
## 3663    NA    NA     NA         NA      NA         2         2
## 3664    NA    NA     NA         NA      NA         3         3
## 3665    16    16     22         19      25        10        10
## 3666    NA    NA     NA         NA      NA        NA        NA
## 3667    NA    NA     NA          3      -2        NA        NA
## 3668    25    28     28         32      25        11        25
## 3669    NA    NA     NA          2      NA        NA         2
## 3670    NA    NA      2          2      NA         2        NA
## 3671    17    23     15         13      13        11        19
## 3672     1     2      2          2       2         1         1
## 3673    NA    NA      1         NA      NA        NA        NA
## 3674    NA     1     NA         NA      NA        NA        NA
## 3675    NA     1     NA         NA      NA        NA        NA
## 3676    NA     1     NA         NA      NA        NA        NA
## 3677    NA    NA     NA         NA      NA         0        NA
## 3678    NA    NA     NA          1      NA        NA        NA
## 3679     1    NA      2          2       1         2        NA
## 3680     0    NA     NA         NA      NA        NA        NA
## 3681    NA    NA     NA         NA      NA        NA         0
## 3682    NA    NA     NA         NA      NA        NA        NA
## 3683     1     3      1          2       1         1         1
## 3684    NA     3      3         NA      NA        NA        NA
## 3685     1     1      1          2       1         1         1
## 3686    NA     3      3         NA      NA        NA        NA
## 3687     1     1      1          2       1         1         1
## 3688    NA    NA     NA         NA      NA        NA        NA
## 3689     1     3      1          2       1         1         3
## 3690     2    NA     NA         NA      NA        NA         1
## 3691     0    NA     NA         NA      NA        NA        NA
## 3692    NA    NA     NA         NA      NA        NA        NA
## 3693    NA     0      1         NA      NA        NA        NA
## 3694    NA    NA     NA         NA      NA         2         2
## 3695    NA     4      4         NA      NA        NA         4
## 3696    NA    NA     NA         NA      NA         2        NA
## 3697    NA     2      2         NA      NA         4        NA
## 3698    NA    NA     NA         NA      NA        NA         1
## 3699    NA    NA     NA         NA      NA        NA         0
## 3700    NA    NA     NA         NA      NA        NA         0
## 3701    NA    NA     NA         NA       0        NA         0
## 3702    NA    NA     NA         NA      NA        NA         0
## 3703    NA    NA     NA         NA      NA        NA         1
## 3704    NA     2     NA         NA      NA        NA        NA
## 3705    NA    NA     NA         NA      NA        NA        NA
## 3706     1    NA      0          0       0        NA        NA
## 3707    NA    NA     NA          2      NA        NA        NA
## 3708     2     4      2          2       2         2         2
## 3709    NA    NA      3         NA       3         3        NA
## 3710    13    19     19         10      22        19        22
## 3711    NA     3      3          3       3         3         3
## 3712    42    53     49         60      60        56        46
## 3713     2    NA     NA          4      NA        NA        NA
## 3714    19    27     25         27      21        21        19
## 3715     1     2      1         -1      NA        NA        NA
## 3716    NA    NA     NA          3      NA        NA        NA
## 3717    NA     0     NA          0      NA        NA        NA
## 3718    NA    NA     NA         NA      NA         0         0
## 3719    NA    NA     NA         NA      NA         1        NA
## 3720    NA    NA     NA         NA       0        NA        NA
## 3721    NA    NA     NA         NA      NA        NA         1
## 3722    NA    NA     NA          0      NA        NA        NA
## 3723     2    NA      2          1       2        NA        NA
## 3724    NA    NA     NA         NA      NA        NA         1
## 3725    NA    NA     NA          1      NA        NA         2
## 3726    NA    NA     NA         NA      NA        NA         1
## 3727     2    NA     NA          1      NA        NA        NA
## 3728    NA    NA     NA         NA       3        NA        NA
## 3729    NA    NA     NA         NA       3        NA         3
## 3730     3     6      3         NA       3         3         1
## 3731    NA    NA     NA          0      NA        NA        NA
## 3732     2     2     NA          3      NA         2        NA
## 3733     1     1      1         NA      NA        NA        NA
## 3734    NA    NA      2         NA      NA        NA        NA
## 3735    NA    NA      0         NA      NA        NA         0
## 3736    NA     1     NA         NA      NA        NA        NA
## 3737    NA    NA     NA         NA      NA         2        NA
## 3738    NA    NA     NA         NA      NA         3        NA
## 3739    NA    NA      3         NA      NA         3        NA
## 3740    NA     5     NA          2      NA        NA        NA
## 3741    NA    NA     NA         NA      NA        NA         4
## 3742     4     7      4         NA      NA         7        NA
## 3743    21    21     21          8      17        11        11
## 3744    NA     1     NA         NA       1        NA        NA
## 3745    NA    NA     NA         NA       2        NA         2
## 3746    NA    NA     NA         NA      NA        -1        NA
## 3747    NA    NA     NA         NA      NA         1         1
## 3748    NA    NA     NA         NA      NA        NA        NA
## 3749    NA     1     NA         NA      NA        NA        NA
## 3750    NA    NA     NA         NA       0         1        NA
## 3751     1     1     NA         NA      NA        -2        NA
## 3752    NA     1     NA         NA      NA        NA        NA
## 3753    NA    NA     NA         NA      NA         0        NA
## 3754     1     1     NA         NA      NA        NA        NA
## 3755    NA     1     NA         NA      NA        NA        NA
## 3756    NA    NA     NA         NA      NA         1        NA
## 3757     1     1     NA         NA      NA        NA        NA
## 3758    NA     2     NA         NA      NA        NA        NA
## 3759    NA     1     NA         NA      NA        NA        NA
## 3760    NA     0     NA         NA      NA         1        NA
## 3761     1     1     NA         NA      NA         2        NA
## 3762    NA    NA     NA         NA      NA        NA        NA
## 3763    NA    NA     NA         NA      NA        NA        NA
## 3764    NA    NA     NA         NA      NA        NA         1
## 3765    NA    NA      4          4       6        NA        NA
## 3766    NA    NA      3          3      NA        NA        NA
## 3767    NA    NA     NA         NA       0        NA        NA
## 3768     7     0     11          2      NA        NA        NA
## 3769    NA    NA     NA          2      NA        NA        NA
## 3770    NA    NA      2          2      NA        NA        NA
## 3771    NA    NA     NA         NA      NA        NA        NA
## 3772    NA    NA     NA         NA       2         2        NA
## 3773     2    NA     NA         NA      11         2        NA
## 3774    NA    NA     NA         NA      NA        NA        NA
## 3775    NA     4     NA         NA      NA        NA        NA
## 3776    NA    NA     NA         NA      NA        NA        NA
## 3777    NA     4      6          2      21         2        NA
## 3778     1    NA     NA         NA      NA        NA        NA
## 3779    NA    NA     NA         NA      NA        NA        NA
## 3780     1    NA      3          1       1        NA        NA
## 3781    NA    NA     NA         NA      NA        NA        NA
## 3782    NA    NA     NA         NA       0        NA        NA
## 3783    NA    NA      0         NA       2        NA        NA
## 3784    NA    NA     NA         NA       3        NA        NA
## 3785    NA    NA     NA         NA      NA        NA        NA
## 3786    NA    NA     NA         NA       0        NA        NA
## 3787    NA    NA     NA         NA      NA        NA        NA
## 3788    NA    NA     NA         NA       1        NA        NA
## 3789    NA    NA     NA         NA       1        NA        NA
## 3790    NA    NA     NA         NA       2        NA        NA
## 3791    NA    NA     NA         NA       0        NA        NA
## 3792    NA    NA     NA         NA       0        NA         0
## 3793    NA    NA     NA         NA       1        NA        NA
## 3794    NA    NA     NA         NA       2        NA        NA
## 3795    NA    NA     NA          2       2        NA        NA
## 3796    NA    NA     NA         NA       0        NA        NA
## 3797    NA    NA     NA         NA       0        NA        NA
## 3798    NA    NA     NA         NA      NA        NA        NA
## 3799    NA    NA     NA         NA       1        NA        NA
## 3800     1    NA      3          1       5        NA        NA
## 3801     1    NA     NA         NA      NA         0        NA
## 3802     1    NA      3          2      NA        NA        NA
## 3803    NA    NA     NA         NA      NA        NA         1
## 3804    NA    NA     NA         NA      NA        NA        NA
## 3805     3    NA      3         NA      NA        NA        NA
## 3806    NA    NA     NA         NA      NA        NA         1
## 3807     2    NA     NA         NA       2        NA        NA
## 3808    NA    NA     NA         NA      NA        NA        NA
## 3809     2     2     NA          2       2        NA        NA
## 3810    NA    NA     NA         NA      NA         3         2
## 3811    NA    NA     NA         NA      NA         4        NA
## 3812    NA    NA     NA         NA      NA        NA        NA
## 3813    NA     6      3         NA       3         3         3
## 3814    10    13     10         10      10        10         6
## 3815    NA     2      2          2       3         2         2
## 3816    25    28     25         39      28        14        25
## 3817     4     2     NA         NA       2        NA         2
## 3818    17    21     17         19       8        30        15
## 3819    NA    NA      2         NA      NA        NA        NA
## 3820     1    NA     NA         NA      NA        NA        NA
## 3821     0     0     NA          0      NA        NA        NA
## 3822    NA    NA     NA         NA       1        NA        NA
## 3823     1    NA     NA         NA      NA        NA        NA
## 3824    NA    NA     NA         NA      NA        NA        NA
## 3825     1    NA     NA         NA      NA        NA        NA
## 3826    NA    NA     NA         NA      NA        NA        NA
## 3827     1    NA     NA         NA      NA        NA        NA
## 3828    NA    NA     NA         NA      NA        NA        NA
## 3829     1    NA     NA         NA      NA        NA        NA
## 3830    NA    NA     NA          0      NA        NA        NA
## 3831     2    NA     NA          2      NA        NA        NA
## 3832    NA    NA     NA         NA       1        NA        NA
## 3833    NA    NA     NA         NA      NA        NA        NA
## 3834    NA    NA     NA         NA      NA        NA         1
## 3835    NA    NA      2         NA      NA        NA         2
## 3836    NA    NA     NA         NA       1        NA        NA
## 3837    NA    NA     NA         NA       0        NA        NA
## 3838    NA    NA     NA         NA       1        NA        NA
## 3839    NA    NA      3          1       1         2         1
## 3840    NA    NA     NA          1      NA        NA         2
## 3841    NA    NA     NA          3      NA        NA        NA
## 3842    NA     2     NA         NA      NA        NA        NA
## 3843    NA    22     29         16      25        25        10
## 3844    NA     2      2         NA       3        NA        NA
## 3845    NA    NA      2         NA      NA        NA        NA
## 3846     4    32     21         28      35        18        14
## 3847    NA    NA     NA         NA       2        NA        NA
## 3848     2     2     NA          2       2         2        NA
## 3849     2    13     13         15      15        11         6
## 3850    NA     1     NA         NA       2        NA        NA
## 3851    NA    NA     NA         NA      NA        NA         1
## 3852    NA    NA     NA         NA       1         1        NA
## 3853    NA    NA     NA         NA      NA         0         0
## 3854    NA     1      1          0       2         2         1
## 3855    NA    NA     NA          1      NA        NA        NA
## 3856    NA    NA      1          3       6        NA         3
## 3857    NA    NA     NA         NA       0        NA        NA
## 3858    NA    NA     NA         NA      NA        NA         1
## 3859     1     3      2          1       1         1        NA
## 3860    NA     0     NA          0       0         0         0
## 3861    NA    NA      1          3       6         3        NA
## 3862    NA    NA      0          0      NA        NA        NA
## 3863     1     3      2          1       1         1        NA
## 3864    NA     0     NA          0       0         0         0
## 3865    NA    NA     NA         NA       2        NA        NA
## 3866    NA    NA     NA          1       6        NA        NA
## 3867    NA    NA     NA         NA       0        NA        NA
## 3868    NA    NA     NA         NA      NA        NA         0
## 3869     1     3      2          1       1         1        NA
## 3870    NA    NA      1          1      NA        NA        NA
## 3871    NA    NA     NA         NA       0        NA         0
## 3872    NA     0     NA          0       0         0         0
## 3873    NA    NA      4          6       3         3        NA
## 3874    NA    NA     NA         NA       0        NA        NA
## 3875    NA    NA     NA         NA      NA        NA         1
## 3876     1     3      2          1       1         3        NA
## 3877    NA     0     NA          0       0         0         0
## 3878    NA    NA     NA         NA       1        NA         1
## 3879     1    NA     NA         NA      NA        NA        NA
## 3880    NA    NA     NA         NA      NA        NA         1
## 3881     4     2      4          2       4         4         2
## 3882     3     6      3         NA       6         3        10
## 3883     3    NA      3         NA       3        NA         3
## 3884    NA    NA     NA         NA      NA         0        NA
## 3885    NA     0      0         NA       0         0        NA
## 3886     1    NA      1          1      NA         1        NA
## 3887    NA    NA     NA         NA      NA         0        NA
## 3888    NA    NA     NA          0      NA        NA         0
## 3889    NA     1     NA         NA      NA        NA        NA
## 3890    NA    NA     NA         NA      NA        NA        NA
## 3891     1     0      0          1       0         0         1
## 3892     3    NA     NA          3      NA        NA         3
## 3893    NA    NA     NA         NA      NA        NA        NA
## 3894    NA    NA     NA         NA       2        NA        NA
## 3895    NA     1     NA          1       1         1         1
## 3896    NA    NA     NA         NA       2         2         2
## 3897    NA    NA     NA         NA      NA        NA        NA
## 3898     3     6      6          3       6         6        10
## 3899     3     3      3          3       3         3         3
## 3900    NA     2      2          2       2        NA         2
## 3901    NA    NA     NA          5      NA         2        NA
## 3902     4    NA     NA          4      NA         7        35
## 3903    32    32     28         32      35        32        35
## 3904    NA    NA     NA         NA      NA        NA        NA
## 3905    NA     2     NA         NA      NA        NA        NA
## 3906    NA    NA     NA         NA      NA        NA        NA
## 3907    25    23     21         13      19        23        17
## 3908    NA    NA     NA          1      NA        NA        NA
## 3909     1     1      2          2       3         4         3
## 3910     2    NA     NA          2      NA         2        NA
## 3911    NA     1     NA         NA      NA        NA        NA
## 3912    NA    NA     NA         NA      NA        NA        NA
## 3913    NA    NA     NA         NA       1        NA        NA
## 3914     0     0      0          0       1         2         0
## 3915     2     2      1          2       1         1         1
## 3916     0    NA     NA         NA      NA         0        NA
## 3917    NA    NA     NA         NA      NA         1        NA
## 3918     0     0      0         NA       1         1        NA
## 3919     1     1      1          1       1        NA         1
## 3920    NA     1      1          1       1         1         1
## 3921    NA     0      0         NA       0         0        NA
## 3922    NA     0     NA         NA       0        NA        NA
## 3923     1     2      2          1       1         1         1
## 3924     1     1      1          1       1         1         1
## 3925    NA    NA     NA         NA      NA        NA        NA
## 3926    NA     1      1          1       1         1         1
## 3927     1    NA     NA          1       1         1        NA
## 3928     1     1      1          1      NA         1         1
## 3929    NA    NA     NA         NA      NA        NA        NA
## 3930    NA     1      1          1       1         1         1
## 3931    NA     0      0         NA       0         0        NA
## 3932    NA     0     NA         NA      NA         0        NA
## 3933     1    NA     NA          1       1         1        NA
## 3934    NA    NA     NA         NA      NA        NA        NA
## 3935    NA     1      1          1      NA         1        NA
## 3936    NA    NA     NA         NA      NA        NA        NA
## 3937     3     1      1          1       4         1         4
## 3938    NA     0      0         NA       0         0         1
## 3939    NA    NA     NA         NA      NA        NA        NA
## 3940     1    NA     NA          1       1         1         1
## 3941     1     1      1          1       1         1         1
## 3942    NA    NA     NA         NA      NA        NA        NA
## 3943     1     1     NA         NA       1         1         1
## 3944    NA     0      0          1      NA        NA        NA
## 3945    NA    NA     NA         NA      NA        NA         1
## 3946    NA    NA     NA          3      NA        NA        NA
## 3947    NA    NA     NA         NA      NA        NA         1
## 3948    NA    NA     NA         NA      NA        NA        NA
## 3949     1    NA      1         NA      NA        NA        NA
## 3950    NA     0     NA         NA       0        NA        NA
## 3951    NA    NA     NA         NA      NA        NA        NA
## 3952    NA    NA     NA          2      NA        NA        NA
## 3953    NA     2     NA         NA       2        NA        NA
## 3954    NA    NA     NA          2      NA        NA        NA
## 3955    NA    NA     NA          1      NA        NA        NA
## 3956     6     3      3          3      10         6         3
## 3957    NA    NA      2          6      NA         2        NA
## 3958    NA    NA     NA         NA      NA        NA        NA
## 3959     7     4      4         NA       7        NA         4
## 3960    NA    NA     NA          2      NA        NA         2
## 3961     2     2     NA          2       2        NA        NA
## 3962    32    23     27         19      19        23        21
## 3963     1     1      1          1       1         1         1
## 3964     2     1     NA         NA      NA         1        NA
## 3965     1     2      2          1      NA         1         2
## 3966    NA    NA     NA         NA      NA         1        NA
## 3967    NA    NA     NA         NA      NA         0        NA
## 3968    NA    NA     NA          0       2         0        NA
## 3969    NA    NA     NA         NA      NA         1        NA
## 3970    NA    NA     NA         NA      NA         1        NA
## 3971    NA    NA     NA          2      NA        NA        NA
## 3972    NA    NA     NA         NA      NA        NA         1
## 3973    NA    NA     NA         NA      NA        NA        NA
## 3974    NA     0     NA          0      NA        NA        NA
## 3975    NA    NA     NA         NA       1        NA        NA
## 3976     1     1      1          1       2         2        NA
## 3977    NA    NA     NA         NA      NA        NA         1
## 3978    NA    NA      1         NA      NA        NA        NA
## 3979    NA    NA     NA         NA       1        NA        NA
## 3980     1     3      1          1       2        NA        NA
## 3981    NA    NA     NA         NA      NA        NA         1
## 3982    NA    NA     NA         NA       1        NA        NA
## 3983     1     1      1          1       2        NA        NA
## 3984    NA    NA     NA          2      NA        NA        NA
## 3985    NA    NA     NA         NA      NA        NA         1
## 3986    NA     0     NA         NA      NA        NA        NA
## 3987    NA    NA     NA         NA       1        NA        NA
## 3988     1     1      3          1       2        NA        NA
## 3989    NA    NA     NA         NA      NA        NA        NA
## 3990    NA    NA     NA         NA      NA         1        NA
## 3991    NA    NA      2         NA      NA        NA        NA
## 3992     3    NA      6         NA      NA        NA        NA
## 3993     3    NA     NA         NA      NA        NA        NA
## 3994    NA    NA     NA         NA      NA        NA        NA
## 3995     1    NA     NA         NA      NA        NA        NA
## 3996     0    NA     NA         NA      NA        NA        NA
## 3997    NA    NA     NA          0      NA        NA        NA
## 3998    NA    NA      1         NA      NA        NA        NA
## 3999    NA    NA     NA         NA      NA        NA        NA
##  [ reached 'max' / getOption("max.print") -- omitted 113111 rows ]

Función Arrange

arrange(base_de_datos, CEDI, Marca, Presentacion)
##          ID  Año  Territorio Sub.Territorio         CEDI Cliente Nombre
## 1    184065 2018  Territorio Sub Territorio         CEDI      NA Nombre
## 2    200110 2018 Guadalajara        Belenes Suc. Belenes    7800  SAN I
## 3    200224 2018 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 4    200461 2018 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 5    200576 2018 Guadalajara        Belenes Suc. Belenes    8010  ABARR
## 6    200682 2018 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 7    200783 2018 Guadalajara        Belenes Suc. Belenes    8201  MIGUE
## 8    200968 2018 Guadalajara        Belenes Suc. Belenes    8678  FERNA
## 9    201041 2018 Guadalajara        Belenes Suc. Belenes    8689  ABARR
## 10   201313 2018 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 11   201415 2018 Guadalajara        Belenes Suc. Belenes    8842  ABARR
## 12   201520 2018 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 13   201625 2018 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 14   201751 2018 Guadalajara        Belenes Suc. Belenes    9017  MINIS
## 15   201865 2018 Guadalajara        Belenes Suc. Belenes    9041  ABARR
## 16   201985 2018 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 17   202101 2018 Guadalajara        Belenes Suc. Belenes    9140  CERVE
## 18   202268 2018 Guadalajara        Belenes Suc. Belenes    9186  EMPOR
## 19   202356 2018 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 20   202474 2018 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 21   202608 2018 Guadalajara        Belenes Suc. Belenes    9462  MINI 
## 22   202725 2018 Guadalajara        Belenes Suc. Belenes    9492  JOEL 
## 23   202809 2018 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 24   202923 2018 Guadalajara        Belenes Suc. Belenes    9574  ABARR
## 25   203027 2018 Guadalajara        Belenes Suc. Belenes    9591  ABARR
## 26   203103 2018 Guadalajara        Belenes Suc. Belenes    9603  ABARR
## 27   203208 2018 Guadalajara        Belenes Suc. Belenes    9615  TIEND
## 28   203408 2018 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 29   203520 2018 Guadalajara        Belenes Suc. Belenes    9671  ABARR
## 30   203625 2018 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 31   203728 2018 Guadalajara        Belenes Suc. Belenes    9742  ABARR
## 32   203811 2018 Guadalajara        Belenes Suc. Belenes    9743  ABARR
## 33   203900 2018 Guadalajara        Belenes Suc. Belenes    9767  ABARR
## 34   204008 2018 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 35   204223 2018 Guadalajara        Belenes Suc. Belenes    9884  ABARR
## 36   204324 2018 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 37   204425 2018 Guadalajara        Belenes Suc. Belenes    9915  ADAN 
## 38   204948 2018 Guadalajara        Belenes Suc. Belenes     183  CESAR
## 39   205054 2018 Guadalajara        Belenes Suc. Belenes     184  AVELI
## 40   205159 2018 Guadalajara        Belenes Suc. Belenes     242  ABARR
## 41   205278 2018 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 42   205381 2018 Guadalajara        Belenes Suc. Belenes     280  MERCE
## 43   205475 2018 Guadalajara        Belenes Suc. Belenes     286  SIX T
## 44   205581 2018 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 45   205802 2018 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 46   205913 2018 Guadalajara        Belenes Suc. Belenes     407  LUIS 
## 47   206111 2018 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 48   206246 2018 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 49   206347 2018 Guadalajara        Belenes Suc. Belenes     535  MINIS
## 50   206568 2018 Guadalajara        Belenes Suc. Belenes     597  ALBIN
## 51   206661 2018 Guadalajara        Belenes Suc. Belenes     623  MARIA
## 52   206791 2018 Guadalajara        Belenes Suc. Belenes     651  SUPER
## 53   206899 2018 Guadalajara        Belenes Suc. Belenes     652  ABARR
## 54   207015 2018 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 55   207122 2018 Guadalajara        Belenes Suc. Belenes     786  ABARR
## 56   207210 2018 Guadalajara        Belenes Suc. Belenes     905  EDGAR
## 57   207304 2018 Guadalajara        Belenes Suc. Belenes     921  MOISE
## 58   207428 2018 Guadalajara        Belenes Suc. Belenes     932  MARIA
## 59   207683 2018 Guadalajara        Belenes Suc. Belenes    1090  ABARR
## 60   207799 2018 Guadalajara        Belenes Suc. Belenes    1116  ABARR
## 61   207886 2018 Guadalajara        Belenes Suc. Belenes    1160  ABARR
## 62   207991 2018 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 63   208096 2018 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 64   208214 2018 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 65   208304 2018 Guadalajara        Belenes Suc. Belenes    1317  DAVID
## 66   208409 2018 Guadalajara        Belenes Suc. Belenes    1388  OSVAL
## 67   208517 2018 Guadalajara        Belenes Suc. Belenes    1393  SUPER
## 68   208632 2018 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 69   208735 2018 Guadalajara        Belenes Suc. Belenes    1420  MARCE
## 70   208810 2018 Guadalajara        Belenes Suc. Belenes    1428  VINOS
## 71   208869 2018 Guadalajara        Belenes Suc. Belenes    1543  EMMAN
## 72   208979 2018 Guadalajara        Belenes Suc. Belenes    1635  LA HI
## 73   209095 2018 Guadalajara        Belenes Suc. Belenes    1664  ABARR
## 74   209289 2018 Guadalajara        Belenes Suc. Belenes    1716  ABARR
## 75   209407 2018 Guadalajara        Belenes Suc. Belenes    1731  NORBE
## 76   209567 2018 Guadalajara        Belenes Suc. Belenes    1759  ELVA 
## 77   209683 2018 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 78   209785 2018 Guadalajara        Belenes Suc. Belenes    1791  ALICI
## 79   209902 2018 Guadalajara        Belenes Suc. Belenes    1795  ABARR
## 80   210001 2018 Guadalajara        Belenes Suc. Belenes    1812  ABARR
## 81   210115 2018 Guadalajara        Belenes Suc. Belenes    1818  LA LO
## 82   210329 2018 Guadalajara        Belenes Suc. Belenes    1897  ABARR
## 83   210407 2018 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 84   210521 2018 Guadalajara        Belenes Suc. Belenes    1927  ISMAE
## 85   210623 2018 Guadalajara        Belenes Suc. Belenes    1956  ABARR
## 86   210737 2018 Guadalajara        Belenes Suc. Belenes    2000  ABARR
## 87   211017 2018 Guadalajara        Belenes Suc. Belenes    2146  ABARR
## 88   211130 2018 Guadalajara        Belenes Suc. Belenes    2242  ABARR
## 89   211222 2018 Guadalajara        Belenes Suc. Belenes    2294  JOSE 
## 90   211485 2018 Guadalajara        Belenes Suc. Belenes    2456  ABARR
## 91   211563 2018 Guadalajara        Belenes Suc. Belenes    2529  ABARR
## 92   211744 2018 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 93   211863 2018 Guadalajara        Belenes Suc. Belenes    2702  JOSE 
## 94   211948 2018 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 95   212082 2018 Guadalajara        Belenes Suc. Belenes    2759  JOSE 
## 96   212175 2018 Guadalajara        Belenes Suc. Belenes    2795  ABARR
## 97   212277 2018 Guadalajara        Belenes Suc. Belenes    2861  ABARR
## 98   212378 2018 Guadalajara        Belenes Suc. Belenes    2912  BRAUL
## 99   212489 2018 Guadalajara        Belenes Suc. Belenes    2926  J JES
## 100  212574 2018 Guadalajara        Belenes Suc. Belenes    2993  MARTI
## 101  212661 2018 Guadalajara        Belenes Suc. Belenes    3023  ABARR
## 102  212770 2018 Guadalajara        Belenes Suc. Belenes    3060  MARIA
## 103  212844 2018 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 104  212981 2018 Guadalajara        Belenes Suc. Belenes    3085  SUPER
## 105  213091 2018 Guadalajara        Belenes Suc. Belenes    3142  ANA M
## 106  213180 2018 Guadalajara        Belenes Suc. Belenes    3179  LA DU
## 107  213284 2018 Guadalajara        Belenes Suc. Belenes    3189  FRANC
## 108  213565 2018 Guadalajara        Belenes Suc. Belenes    2516  JOSE 
## 109  213763 2018 Guadalajara        Belenes Suc. Belenes    2611  JESUS
## 110  213844 2018 Guadalajara        Belenes Suc. Belenes    2622  TORIB
## 111  213917 2018 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 112  214028 2018 Guadalajara        Belenes Suc. Belenes    2700  MARCO
## 113  214201 2018 Guadalajara        Belenes Suc. Belenes    3082  GERAR
## 114  214339 2018 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 115  243323 2018 Guadalajara        Belenes Suc. Belenes    7731  VINOS
## 116  243373 2018 Guadalajara        Belenes Suc. Belenes    7732  EL CH
## 117  243457 2018 Guadalajara        Belenes Suc. Belenes    7760  MARIC
## 118  243629 2018 Guadalajara        Belenes Suc. Belenes    7778  MARIA
## 119  243731 2018 Guadalajara        Belenes Suc. Belenes    7802  ANTON
## 120  243819 2018 Guadalajara        Belenes Suc. Belenes    7809  MARIA
## 121  243842 2018 Guadalajara        Belenes Suc. Belenes    7812  MARIA
## 122  243972 2018 Guadalajara        Belenes Suc. Belenes    8074  MIGUE
## 123  244023 2018 Guadalajara        Belenes Suc. Belenes    8187  CREME
## 124  244075 2018 Guadalajara        Belenes Suc. Belenes    8190  GUSTA
## 125  244159 2018 Guadalajara        Belenes Suc. Belenes    8224  IRMA 
## 126  244431 2018 Guadalajara        Belenes Suc. Belenes    8635  JOSE 
## 127  244484 2018 Guadalajara        Belenes Suc. Belenes    8681  MARGA
## 128  244589 2018 Guadalajara        Belenes Suc. Belenes    8874  OFELI
## 129  244788 2018 Guadalajara        Belenes Suc. Belenes    8985  TERES
## 130  245044 2018 Guadalajara        Belenes Suc. Belenes    9082  DULCE
## 131  245183 2018 Guadalajara        Belenes Suc. Belenes    9102  RAFAE
## 132  245365 2018 Guadalajara        Belenes Suc. Belenes    9149  MARIA
## 133  245419 2018 Guadalajara        Belenes Suc. Belenes    9164  DANIE
## 134  245575 2018 Guadalajara        Belenes Suc. Belenes    9281  JUAN 
## 135  245624 2018 Guadalajara        Belenes Suc. Belenes    9338  CARME
## 136  245662 2018 Guadalajara        Belenes Suc. Belenes    9376  PATRI
## 137  245699 2018 Guadalajara        Belenes Suc. Belenes    9403  MARIA
## 138  245732 2018 Guadalajara        Belenes Suc. Belenes    9407  ARACE
## 139  245801 2018 Guadalajara        Belenes Suc. Belenes    9408  MARIA
## 140  245844 2018 Guadalajara        Belenes Suc. Belenes    9411  ESTHE
## 141  245876 2018 Guadalajara        Belenes Suc. Belenes    9415  EVELI
## 142  245935 2018 Guadalajara        Belenes Suc. Belenes    9432  MARIA
## 143  246018 2018 Guadalajara        Belenes Suc. Belenes    9448  JOSE 
## 144  246079 2018 Guadalajara        Belenes Suc. Belenes    9453  MARIA
## 145  246117 2018 Guadalajara        Belenes Suc. Belenes    9459  OBDUL
## 146  246147 2018 Guadalajara        Belenes Suc. Belenes    9478  MARIA
## 147  246209 2018 Guadalajara        Belenes Suc. Belenes    9486  ELISA
## 148  246264 2018 Guadalajara        Belenes Suc. Belenes    9500  RAFAE
## 149  246291 2018 Guadalajara        Belenes Suc. Belenes    9525  SARA 
## 150  246388 2018 Guadalajara        Belenes Suc. Belenes    9553  CARLO
## 151  246444 2018 Guadalajara        Belenes Suc. Belenes    9554  MARIA
## 152  246513 2018 Guadalajara        Belenes Suc. Belenes    9625  SILVI
## 153  246777 2018 Guadalajara        Belenes Suc. Belenes    9730  LETIC
## 154  246818 2018 Guadalajara        Belenes Suc. Belenes    9736  FELIC
## 155  246915 2018 Guadalajara        Belenes Suc. Belenes    9791  SILVI
## 156  246972 2018 Guadalajara        Belenes Suc. Belenes    9804  CARME
## 157  247093 2018 Guadalajara        Belenes Suc. Belenes    9835  EMILI
## 158  247144 2018 Guadalajara        Belenes Suc. Belenes    9858  MARGA
## 159  247158 2018 Guadalajara        Belenes Suc. Belenes    9862  MARIA
## 160  247258 2018 Guadalajara        Belenes Suc. Belenes    9922  ARTUR
## 161  247282 2018 Guadalajara        Belenes Suc. Belenes    9937  MARIA
## 162  247299 2018 Guadalajara        Belenes Suc. Belenes    9954  ELIOD
## 163  247316 2018 Guadalajara        Belenes Suc. Belenes    9960  MARIA
## 164  247328 2018 Guadalajara        Belenes Suc. Belenes    9964  JOSE 
## 165  247361 2018 Guadalajara        Belenes Suc. Belenes      30  LAURA
## 166  247455 2018 Guadalajara        Belenes Suc. Belenes      67  LA PR
## 167  247512 2018 Guadalajara        Belenes Suc. Belenes      73  MARIA
## 168  247618 2018 Guadalajara        Belenes Suc. Belenes     123  ABARR
## 169  247678 2018 Guadalajara        Belenes Suc. Belenes     139  SILVI
## 170  247853 2018 Guadalajara        Belenes Suc. Belenes     181  ABARR
## 171  247974 2018 Guadalajara        Belenes Suc. Belenes     193  CLAUD
## 172  248058 2018 Guadalajara        Belenes Suc. Belenes     212  JOSE 
## 173  248213 2018 Guadalajara        Belenes Suc. Belenes     285  ANA G
## 174  248322 2018 Guadalajara        Belenes Suc. Belenes     353  MARIA
## 175  248341 2018 Guadalajara        Belenes Suc. Belenes     356  MARIA
## 176  248387 2018 Guadalajara        Belenes Suc. Belenes     357  MARIA
## 177  248455 2018 Guadalajara        Belenes Suc. Belenes     409  JUANA
## 178  248474 2018 Guadalajara        Belenes Suc. Belenes     427  OLIVI
## 179  248557 2018 Guadalajara        Belenes Suc. Belenes     464  SIX M
## 180  248656 2018 Guadalajara        Belenes Suc. Belenes     492  LUIS 
## 181  248807 2018 Guadalajara        Belenes Suc. Belenes     518  ABARR
## 182  248937 2018 Guadalajara        Belenes Suc. Belenes     527  SERGI
## 183  248964 2018 Guadalajara        Belenes Suc. Belenes     544  CLAUD
## 184  248990 2018 Guadalajara        Belenes Suc. Belenes     553  LILIA
## 185  249111 2018 Guadalajara        Belenes Suc. Belenes     591  ANA A
## 186  249150 2018 Guadalajara        Belenes Suc. Belenes     600  ABARR
## 187  249238 2018 Guadalajara        Belenes Suc. Belenes     659  ABARR
## 188  249366 2018 Guadalajara        Belenes Suc. Belenes     694  XOCHI
## 189  249486 2018 Guadalajara        Belenes Suc. Belenes     730  ADALB
## 190  249546 2018 Guadalajara        Belenes Suc. Belenes     732  ANDRE
## 191  249608 2018 Guadalajara        Belenes Suc. Belenes     763  ROCIO
## 192  249746 2018 Guadalajara        Belenes Suc. Belenes     793  ABARR
## 193  249882 2018 Guadalajara        Belenes Suc. Belenes     802  LUIS 
## 194  249984 2018 Guadalajara        Belenes Suc. Belenes     837  JOSEF
## 195  250060 2018 Guadalajara        Belenes Suc. Belenes     910  MARTH
## 196  250081 2018 Guadalajara        Belenes Suc. Belenes     923  MARIA
## 197  250141 2018 Guadalajara        Belenes Suc. Belenes     933  JUANA
## 198  250169 2018 Guadalajara        Belenes Suc. Belenes     945  LUCIA
## 199  250250 2018 Guadalajara        Belenes Suc. Belenes     952  LICON
## 200  250331 2018 Guadalajara        Belenes Suc. Belenes     959  ROSA 
## 201  250362 2018 Guadalajara        Belenes Suc. Belenes     989  HOGAR
## 202  250507 2018 Guadalajara        Belenes Suc. Belenes    1014  ALEJA
## 203  250621 2018 Guadalajara        Belenes Suc. Belenes    1064  SOCOR
## 204  250761 2018 Guadalajara        Belenes Suc. Belenes    1118  MARIA
## 205  250801 2018 Guadalajara        Belenes Suc. Belenes    1123  MARIA
## 206  250835 2018 Guadalajara        Belenes Suc. Belenes    1156  TEODU
## 207  250938 2018 Guadalajara        Belenes Suc. Belenes    1166  JANET
## 208  250999 2018 Guadalajara        Belenes Suc. Belenes    1175  CREME
## 209  251074 2018 Guadalajara        Belenes Suc. Belenes    1190  EVANG
## 210  251107 2018 Guadalajara        Belenes Suc. Belenes    1219  ANGEL
## 211  251187 2018 Guadalajara        Belenes Suc. Belenes    1267  MARIA
## 212  251299 2018 Guadalajara        Belenes Suc. Belenes    1316  MARIS
## 213  251427 2018 Guadalajara        Belenes Suc. Belenes    1351  JUAN 
## 214  251528 2018 Guadalajara        Belenes Suc. Belenes    1368  RAUL 
## 215  251586 2018 Guadalajara        Belenes Suc. Belenes    1411  ALICI
## 216  251702 2018 Guadalajara        Belenes Suc. Belenes    1433  EVARI
## 217  251786 2018 Guadalajara        Belenes Suc. Belenes    1456  MARIA
## 218  251872 2018 Guadalajara        Belenes Suc. Belenes    1501  SAN J
## 219  251991 2018 Guadalajara        Belenes Suc. Belenes    1542  RODOL
## 220  252062 2018 Guadalajara        Belenes Suc. Belenes    1671  LUIS 
## 221  252087 2018 Guadalajara        Belenes Suc. Belenes    1721  RAMON
## 222  252226 2018 Guadalajara        Belenes Suc. Belenes    1766  MA AG
## 223  252243 2018 Guadalajara        Belenes Suc. Belenes    1790  CESAR
## 224  252295 2018 Guadalajara        Belenes Suc. Belenes    1803  FARMA
## 225  252313 2018 Guadalajara        Belenes Suc. Belenes    1808  MARGA
## 226  252470 2018 Guadalajara        Belenes Suc. Belenes    1888  MIGUE
## 227  252574 2018 Guadalajara        Belenes Suc. Belenes    1914  ANTON
## 228  252602 2018 Guadalajara        Belenes Suc. Belenes    1958  MARIA
## 229  252645 2018 Guadalajara        Belenes Suc. Belenes    2001  MICHA
## 230  252686 2018 Guadalajara        Belenes Suc. Belenes    2007  CREME
## 231  252824 2018 Guadalajara        Belenes Suc. Belenes    2053  JOSE 
## 232  252859 2018 Guadalajara        Belenes Suc. Belenes    2058  POLLE
## 233  252899 2018 Guadalajara        Belenes Suc. Belenes    2065  LOS P
## 234  252931 2018 Guadalajara        Belenes Suc. Belenes    2078  RUBEN
## 235  252974 2018 Guadalajara        Belenes Suc. Belenes    2080  MARTH
## 236  253145 2018 Guadalajara        Belenes Suc. Belenes    2225  LUZ D
## 237  253283 2018 Guadalajara        Belenes Suc. Belenes    2252  ARTUR
## 238  253327 2018 Guadalajara        Belenes Suc. Belenes    2256  LA PR
## 239  253372 2018 Guadalajara        Belenes Suc. Belenes    2322  JOSE 
## 240  253437 2018 Guadalajara        Belenes Suc. Belenes    2336  MARIA
## 241  253519 2018 Guadalajara        Belenes Suc. Belenes    2359  JUANA
## 242  253605 2018 Guadalajara        Belenes Suc. Belenes    2364  LUCY 
## 243  253630 2018 Guadalajara        Belenes Suc. Belenes    2385  SEMIL
## 244  253690 2018 Guadalajara        Belenes Suc. Belenes    2395  GLORI
## 245  253802 2018 Guadalajara        Belenes Suc. Belenes    2430  ABARR
## 246  253853 2018 Guadalajara        Belenes Suc. Belenes    2445  JULIA
## 247  253955 2018 Guadalajara        Belenes Suc. Belenes    2489  MARIA
## 248  253991 2018 Guadalajara        Belenes Suc. Belenes    2504  ELPID
## 249  254092 2018 Guadalajara        Belenes Suc. Belenes    2546  MODEL
## 250  254157 2018 Guadalajara        Belenes Suc. Belenes    2561  MARIA
## 251  254197 2018 Guadalajara        Belenes Suc. Belenes    2578  JUAN 
## 252  254323 2018 Guadalajara        Belenes Suc. Belenes    2620  JAVIE
## 253  254356 2018 Guadalajara        Belenes Suc. Belenes    2625  JUAN 
## 254  254444 2018 Guadalajara        Belenes Suc. Belenes    2639  SONIA
## 255  254450 2018 Guadalajara        Belenes Suc. Belenes    2645  MARIA
## 256  254638 2018 Guadalajara        Belenes Suc. Belenes    2738  ELISA
## 257  254725 2018 Guadalajara        Belenes Suc. Belenes    2756  DE TE
## 258  254786 2018 Guadalajara        Belenes Suc. Belenes    2760  ABARR
## 259  254853 2018 Guadalajara        Belenes Suc. Belenes    2777  CEREA
## 260  254991 2018 Guadalajara        Belenes Suc. Belenes    2788  ALBER
## 261  255043 2018 Guadalajara        Belenes Suc. Belenes    2805  NOHEM
## 262  255078 2018 Guadalajara        Belenes Suc. Belenes    2808  RAMIR
## 263  255336 2018 Guadalajara        Belenes Suc. Belenes    2913  MARIA
## 264  255387 2018 Guadalajara        Belenes Suc. Belenes    2918  ISABE
## 265  255463 2018 Guadalajara        Belenes Suc. Belenes    2958  MARIA
## 266  255528 2018 Guadalajara        Belenes Suc. Belenes    2960  ANTON
## 267  255620 2018 Guadalajara        Belenes Suc. Belenes    2972  ELENA
## 268  255644 2018 Guadalajara        Belenes Suc. Belenes    2974  NORMA
## 269  255734 2018 Guadalajara        Belenes Suc. Belenes    3017  MARIA
## 270  255847 2018 Guadalajara        Belenes Suc. Belenes    3051  ERNES
## 271  255885 2018 Guadalajara        Belenes Suc. Belenes    3066  FARMA
## 272  256133 2018 Guadalajara        Belenes Suc. Belenes    3175  MARIA
## 273  256315 2018 Guadalajara        Belenes Suc. Belenes    3236  OFELI
## 274  256457 2018 Guadalajara        Belenes Suc. Belenes    1056  ABARR
## 275  256582 2018 Guadalajara        Belenes Suc. Belenes    8597  CERVE
## 276  256753 2018 Guadalajara        Belenes Suc. Belenes    6241  ABARR
## 277  256830 2018 Guadalajara        Belenes Suc. Belenes    6614  ABARR
## 278  256865 2018 Guadalajara        Belenes Suc. Belenes    6633  ABARR
## 279  256918 2018 Guadalajara        Belenes Suc. Belenes    6647  DULCE
## 280  256951 2018 Guadalajara        Belenes Suc. Belenes    9562  VINOS
## 281  257248 2018 Guadalajara        Belenes Suc. Belenes    4841  LICOR
## 282  257369 2018 Guadalajara        Belenes Suc. Belenes    3279  ANTON
## 283  257443 2018 Guadalajara        Belenes Suc. Belenes    2523  GRACI
## 284  257471 2018 Guadalajara        Belenes Suc. Belenes    2530  MARIA
## 285  257679 2018 Guadalajara        Belenes Suc. Belenes    2623  LEONO
## 286  257716 2018 Guadalajara        Belenes Suc. Belenes    2667  FRANC
## 287  257728 2018 Guadalajara        Belenes Suc. Belenes    2668  CRIST
## 288  257751 2018 Guadalajara        Belenes Suc. Belenes    2693  CONSU
## 289  257764 2018 Guadalajara        Belenes Suc. Belenes    2760  FRANC
## 290  257889 2018 Guadalajara        Belenes Suc. Belenes    2825  MARIA
## 291  257915 2018 Guadalajara        Belenes Suc. Belenes    2829  LETIC
## 292  257929 2018 Guadalajara        Belenes Suc. Belenes    2837  MARIA
## 293  257964 2018 Guadalajara        Belenes Suc. Belenes    2845  SEVER
## 294  258082 2018 Guadalajara        Belenes Suc. Belenes    2945  TOMAS
## 295  258305 2018 Guadalajara        Belenes Suc. Belenes    3003  LAS L
## 296  258338 2018 Guadalajara        Belenes Suc. Belenes    3035  ROCIO
## 297  258356 2018 Guadalajara        Belenes Suc. Belenes    3049  NORMA
## 298  258463 2018 Guadalajara        Belenes Suc. Belenes    3105  EDUAR
## 299  258493 2018 Guadalajara        Belenes Suc. Belenes    3109  RODOL
## 300  258606 2018 Guadalajara        Belenes Suc. Belenes    3158  JOAQU
## 301  258680 2018 Guadalajara        Belenes Suc. Belenes    3177  TERES
## 302  258733 2018 Guadalajara        Belenes Suc. Belenes    3183  CRIST
## 303  258755 2018 Guadalajara        Belenes Suc. Belenes    3184  CARLO
## 304  258764 2018 Guadalajara        Belenes Suc. Belenes    3191  MARIA
## 305  258842 2018 Guadalajara        Belenes Suc. Belenes    3230  SALVA
## 306  258912 2018 Guadalajara        Belenes Suc. Belenes    3257  MARIA
## 307  258955 2018 Guadalajara        Belenes Suc. Belenes    3290  JOSE 
## 308  259136 2018 Guadalajara        Belenes Suc. Belenes    8329  ANA B
## 309  259231 2018 Guadalajara        Belenes Suc. Belenes    6981  SUSAN
## 310  259303 2018 Guadalajara        Belenes Suc. Belenes    9295  ABARR
## 311  259376 2018 Guadalajara        Belenes Suc. Belenes    9635  ANA I
## 312  259413 2018 Guadalajara        Belenes Suc. Belenes    1719  MISCE
## 313  259472 2018 Guadalajara        Belenes Suc. Belenes    2441  DEPOS
## 314  259550 2018 Guadalajara        Belenes Suc. Belenes    8583  HOGAR
## 315  259636 2018 Guadalajara        Belenes Suc. Belenes     153  HOGAR
## 316  259678 2018 Guadalajara        Belenes Suc. Belenes    3033  MISCE
## 317  259753 2018 Guadalajara        Belenes Suc. Belenes    3057  HOGAR
## 318  259804 2018 Guadalajara        Belenes Suc. Belenes    3596  MISCE
## 319  259897 2018 Guadalajara        Belenes Suc. Belenes    4640  MISCE
## 320  259968 2018 Guadalajara        Belenes Suc. Belenes    5141  HOGAR
## 321  260036 2018 Guadalajara        Belenes Suc. Belenes    9547  HOGAR
## 322  260104 2018 Guadalajara        Belenes Suc. Belenes     335  FELIP
## 323  260229 2018 Guadalajara        Belenes Suc. Belenes     905  MARIA
## 324  260239 2018 Guadalajara        Belenes Suc. Belenes    1229  MA DE
## 325  260252 2018 Guadalajara        Belenes Suc. Belenes    1230  ELIDA
## 326  260271 2018 Guadalajara        Belenes Suc. Belenes    1231  MISCE
## 327  260318 2018 Guadalajara        Belenes Suc. Belenes    1289  MISCE
## 328  260450 2018 Guadalajara        Belenes Suc. Belenes    3978  HOGAR
## 329  260478 2018 Guadalajara        Belenes Suc. Belenes    3986  NOEMI
## 330  260524 2018 Guadalajara        Belenes Suc. Belenes    3996  MISCE
## 331  260566 2018 Guadalajara        Belenes Suc. Belenes    4286  ANA R
## 332  260605 2018 Guadalajara        Belenes Suc. Belenes    4287  MISCE
## 333  260742 2018 Guadalajara        Belenes Suc. Belenes    7373  MISCE
## 334  260787 2018 Guadalajara        Belenes Suc. Belenes    7705  DEPOS
## 335  260801 2018 Guadalajara        Belenes Suc. Belenes    7718  FRUTE
## 336  260838 2018 Guadalajara        Belenes Suc. Belenes    7720  MICEL
## 337  260879 2018 Guadalajara        Belenes Suc. Belenes    7723  ABARR
## 338  260966 2018 Guadalajara        Belenes Suc. Belenes    8523  DEPOS
## 339  260978 2018 Guadalajara        Belenes Suc. Belenes    8528  CREME
## 340  260988 2018 Guadalajara        Belenes Suc. Belenes    8532  MISCE
## 341  261102 2018 Guadalajara        Belenes Suc. Belenes    8537  SIX E
## 342  261141 2018 Guadalajara        Belenes Suc. Belenes    8539  ABARR
## 343  261180 2018 Guadalajara        Belenes Suc. Belenes    9456  MARIA
## 344  261223 2018 Guadalajara        Belenes Suc. Belenes    9500  REBEC
## 345  261328 2018 Guadalajara        Belenes Suc. Belenes    9505  MISCE
## 346  261482 2018 Guadalajara        Belenes Suc. Belenes     839  MISCE
## 347  261524 2018 Guadalajara        Belenes Suc. Belenes    5418  MISCE
## 348  261628 2018 Guadalajara        Belenes Suc. Belenes    5139  MISCE
## 349  261686 2018 Guadalajara        Belenes Suc. Belenes    5271  MISCE
## 350  261750 2018 Guadalajara        Belenes Suc. Belenes    7440  FARMA
## 351  261758 2018 Guadalajara        Belenes Suc. Belenes    7445  HOGAR
## 352  261771 2018 Guadalajara        Belenes Suc. Belenes    1760  MISCE
## 353  261797 2018 Guadalajara        Belenes Suc. Belenes    3105  MISCE
## 354  261987 2018 Guadalajara        Belenes Suc. Belenes    3620  MISCE
## 355  262032 2018 Guadalajara        Belenes Suc. Belenes    8927  GRACI
## 356  262070 2018 Guadalajara        Belenes Suc. Belenes    6008  BERTH
## 357  262098 2018 Guadalajara        Belenes Suc. Belenes    7372  MISCE
## 358  262134 2018 Guadalajara        Belenes Suc. Belenes    8727  VINOS
## 359  262237 2018 Guadalajara        Belenes Suc. Belenes    3925  JOSE 
## 360  262303 2018 Guadalajara        Belenes Suc. Belenes    4069  OLGA 
## 361  262312 2018 Guadalajara        Belenes Suc. Belenes    8618  ABARR
## 362  262382 2018 Guadalajara        Belenes Suc. Belenes    5583  FERNA
## 363  262398 2018 Guadalajara        Belenes Suc. Belenes    5584  JOSE 
## 364  262423 2018 Guadalajara        Belenes Suc. Belenes    5587  SUSAN
## 365  262479 2018 Guadalajara        Belenes Suc. Belenes    8784  ABARR
## 366  304192 2019 Guadalajara        Belenes Suc. Belenes    7796  MARIA
## 367  304278 2019 Guadalajara        Belenes Suc. Belenes    7800  SAN I
## 368  304388 2019 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 369  304488 2019 Guadalajara        Belenes Suc. Belenes    7884  ABARR
## 370  304594 2019 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 371  304694 2019 Guadalajara        Belenes Suc. Belenes    8010  ABARR
## 372  304796 2019 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 373  304891 2019 Guadalajara        Belenes Suc. Belenes    8201  MIGUE
## 374  304988 2019 Guadalajara        Belenes Suc. Belenes    8284  MINI 
## 375  305272 2019 Guadalajara        Belenes Suc. Belenes    8696  ABARR
## 376  305345 2019 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 377  305530 2019 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 378  305617 2019 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 379  305731 2019 Guadalajara        Belenes Suc. Belenes    9017  MINIS
## 380  305834 2019 Guadalajara        Belenes Suc. Belenes    9041  ABARR
## 381  305950 2019 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 382  306058 2019 Guadalajara        Belenes Suc. Belenes    9140  CERVE
## 383  306209 2019 Guadalajara        Belenes Suc. Belenes    9186  EMPOR
## 384  306286 2019 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 385  306397 2019 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 386  306523 2019 Guadalajara        Belenes Suc. Belenes    9462  MINI 
## 387  306696 2019 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 388  306803 2019 Guadalajara        Belenes Suc. Belenes    9574  ABARR
## 389  306974 2019 Guadalajara        Belenes Suc. Belenes    9603  ABARR
## 390  307068 2019 Guadalajara        Belenes Suc. Belenes    9615  TIEND
## 391  307252 2019 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 392  307366 2019 Guadalajara        Belenes Suc. Belenes    9671  ABARR
## 393  307469 2019 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 394  307653 2019 Guadalajara        Belenes Suc. Belenes    9743  ABARR
## 395  307844 2019 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 396  308038 2019 Guadalajara        Belenes Suc. Belenes    9884  ABARR
## 397  308147 2019 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 398  308340 2019 Guadalajara        Belenes Suc. Belenes    9961  FRANC
## 399  308405 2019 Guadalajara        Belenes Suc. Belenes       4  MARIA
## 400  308481 2019 Guadalajara        Belenes Suc. Belenes     100  ABARR
## 401  308581 2019 Guadalajara        Belenes Suc. Belenes     154  ABARR
## 402  308863 2019 Guadalajara        Belenes Suc. Belenes     242  ABARR
## 403  308968 2019 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 404  309064 2019 Guadalajara        Belenes Suc. Belenes     280  MERCE
## 405  309243 2019 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 406  309438 2019 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 407  309621 2019 Guadalajara        Belenes Suc. Belenes     426  ANTON
## 408  309708 2019 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 409  309825 2019 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 410  309928 2019 Guadalajara        Belenes Suc. Belenes     535  MINIS
## 411  310123 2019 Guadalajara        Belenes Suc. Belenes     597  ALBIN
## 412  310212 2019 Guadalajara        Belenes Suc. Belenes     623  MARIA
## 413  310326 2019 Guadalajara        Belenes Suc. Belenes     651  SUPER
## 414  310419 2019 Guadalajara        Belenes Suc. Belenes     652  ABARR
## 415  310537 2019 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 416  310644 2019 Guadalajara        Belenes Suc. Belenes     786  ABARR
## 417  310726 2019 Guadalajara        Belenes Suc. Belenes     905  EDGAR
## 418  310814 2019 Guadalajara        Belenes Suc. Belenes     921  MOISE
## 419  310923 2019 Guadalajara        Belenes Suc. Belenes     932  MARIA
## 420  311128 2019 Guadalajara        Belenes Suc. Belenes    1090  ABARR
## 421  311220 2019 Guadalajara        Belenes Suc. Belenes    1116  ABARR
## 422  311292 2019 Guadalajara        Belenes Suc. Belenes    1160  ABARR
## 423  311383 2019 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 424  311492 2019 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 425  311601 2019 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 426  311673 2019 Guadalajara        Belenes Suc. Belenes    1317  DAVID
## 427  311857 2019 Guadalajara        Belenes Suc. Belenes    1393  SUPER
## 428  311967 2019 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 429  312074 2019 Guadalajara        Belenes Suc. Belenes    1420  MARCE
## 430  312203 2019 Guadalajara        Belenes Suc. Belenes    1543  EMMAN
## 431  312408 2019 Guadalajara        Belenes Suc. Belenes    1664  ABARR
## 432  312510 2019 Guadalajara        Belenes Suc. Belenes    1713  MISCE
## 433  312599 2019 Guadalajara        Belenes Suc. Belenes    1716  ABARR
## 434  312847 2019 Guadalajara        Belenes Suc. Belenes    1759  ELVA 
## 435  312959 2019 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 436  313058 2019 Guadalajara        Belenes Suc. Belenes    1791  ALICI
## 437  313153 2019 Guadalajara        Belenes Suc. Belenes    1795  ABARR
## 438  313244 2019 Guadalajara        Belenes Suc. Belenes    1812  ABARR
## 439  313348 2019 Guadalajara        Belenes Suc. Belenes    1818  LA LO
## 440  313602 2019 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 441  313782 2019 Guadalajara        Belenes Suc. Belenes    1956  ABARR
## 442  313888 2019 Guadalajara        Belenes Suc. Belenes    2000  ABARR
## 443  313980 2019 Guadalajara        Belenes Suc. Belenes    2047  LA ME
## 444  314041 2019 Guadalajara        Belenes Suc. Belenes    2075  MARTH
## 445  314138 2019 Guadalajara        Belenes Suc. Belenes    2146  ABARR
## 446  314239 2019 Guadalajara        Belenes Suc. Belenes    2242  ABARR
## 447  314317 2019 Guadalajara        Belenes Suc. Belenes    2294  JOSE 
## 448  314397 2019 Guadalajara        Belenes Suc. Belenes    2399  ABARR
## 449  314623 2019 Guadalajara        Belenes Suc. Belenes    2529  ABARR
## 450  314716 2019 Guadalajara        Belenes Suc. Belenes    2531  JOSE 
## 451  314803 2019 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 452  314912 2019 Guadalajara        Belenes Suc. Belenes    2702  JOSE 
## 453  314997 2019 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 454  315198 2019 Guadalajara        Belenes Suc. Belenes    2795  ABARR
## 455  315294 2019 Guadalajara        Belenes Suc. Belenes    2861  ABARR
## 456  315379 2019 Guadalajara        Belenes Suc. Belenes    2912  BRAUL
## 457  315484 2019 Guadalajara        Belenes Suc. Belenes    2926  J JES
## 458  315559 2019 Guadalajara        Belenes Suc. Belenes    2993  MARTI
## 459  315648 2019 Guadalajara        Belenes Suc. Belenes    3023  ABARR
## 460  315732 2019 Guadalajara        Belenes Suc. Belenes    3060  MARIA
## 461  315793 2019 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 462  315891 2019 Guadalajara        Belenes Suc. Belenes    3085  SUPER
## 463  315988 2019 Guadalajara        Belenes Suc. Belenes    3142  ANA M
## 464  316069 2019 Guadalajara        Belenes Suc. Belenes    3179  LA DU
## 465  316149 2019 Guadalajara        Belenes Suc. Belenes    3189  FRANC
## 466  316228 2019 Guadalajara        Belenes Suc. Belenes    6688  SALVA
## 467  316294 2019 Guadalajara        Belenes Suc. Belenes    2486  ABARR
## 468  316508 2019 Guadalajara        Belenes Suc. Belenes    2539  ANDAN
## 469  316725 2019 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 470  316834 2019 Guadalajara        Belenes Suc. Belenes    2700  MARCO
## 471  317004 2019 Guadalajara        Belenes Suc. Belenes    3082  GERAR
## 472  317123 2019 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 473  317284 2019 Guadalajara        Belenes Suc. Belenes    7726  MARIA
## 474  317335 2019 Guadalajara        Belenes Suc. Belenes    7732  EL CH
## 475  317538 2019 Guadalajara        Belenes Suc. Belenes    7778  MARIA
## 476  317587 2019 Guadalajara        Belenes Suc. Belenes    7802  ANTON
## 477  317727 2019 Guadalajara        Belenes Suc. Belenes    7821  ESPER
## 478  317760 2019 Guadalajara        Belenes Suc. Belenes    7987  PRIMI
## 479  317933 2019 Guadalajara        Belenes Suc. Belenes    8224  IRMA 
## 480  318290 2019 Guadalajara        Belenes Suc. Belenes    8896  DE GE
## 481  318654 2019 Guadalajara        Belenes Suc. Belenes    9096  GRACI
## 482  318782 2019 Guadalajara        Belenes Suc. Belenes    9110  MARIA
## 483  318818 2019 Guadalajara        Belenes Suc. Belenes    9117  ANGEL
## 484  318855 2019 Guadalajara        Belenes Suc. Belenes    9120  MARIC
## 485  318934 2019 Guadalajara        Belenes Suc. Belenes    9164  DANIE
## 486  319204 2019 Guadalajara        Belenes Suc. Belenes    9407  ARACE
## 487  319470 2019 Guadalajara        Belenes Suc. Belenes    9453  MARIA
## 488  319630 2019 Guadalajara        Belenes Suc. Belenes    9525  SARA 
## 489  319667 2019 Guadalajara        Belenes Suc. Belenes    9553  CARLO
## 490  319870 2019 Guadalajara        Belenes Suc. Belenes    9693  JAIME
## 491  319939 2019 Guadalajara        Belenes Suc. Belenes    9721  FORTI
## 492  319966 2019 Guadalajara        Belenes Suc. Belenes    9730  LETIC
## 493  320341 2019 Guadalajara        Belenes Suc. Belenes    9922  ARTUR
## 494  320370 2019 Guadalajara        Belenes Suc. Belenes    9944  EMILI
## 495  320447 2019 Guadalajara        Belenes Suc. Belenes      30  LAURA
## 496  320533 2019 Guadalajara        Belenes Suc. Belenes      67  LA PR
## 497  320620 2019 Guadalajara        Belenes Suc. Belenes     123  ABARR
## 498  320820 2019 Guadalajara        Belenes Suc. Belenes     181  ABARR
## 499  320917 2019 Guadalajara        Belenes Suc. Belenes     209  MARTH
## 500  321087 2019 Guadalajara        Belenes Suc. Belenes     345  FARMA
## 501  321355 2019 Guadalajara        Belenes Suc. Belenes     510  MARTH
## 502  321439 2019 Guadalajara        Belenes Suc. Belenes     518  ABARR
## 503  321747 2019 Guadalajara        Belenes Suc. Belenes     659  ABARR
## 504  322083 2019 Guadalajara        Belenes Suc. Belenes     766  ROSA 
## 505  322194 2019 Guadalajara        Belenes Suc. Belenes     793  ABARR
## 506  322511 2019 Guadalajara        Belenes Suc. Belenes     952  LICON
## 507  323273 2019 Guadalajara        Belenes Suc. Belenes    1273  PRIMI
## 508  323692 2019 Guadalajara        Belenes Suc. Belenes    1456  MARIA
## 509  323741 2019 Guadalajara        Belenes Suc. Belenes    1462  FIDEL
## 510  323781 2019 Guadalajara        Belenes Suc. Belenes    1501  SAN J
## 511  323921 2019 Guadalajara        Belenes Suc. Belenes    1671  LUIS 
## 512  324072 2019 Guadalajara        Belenes Suc. Belenes    1766  MA AG
## 513  324106 2019 Guadalajara        Belenes Suc. Belenes    1790  CESAR
## 514  324180 2019 Guadalajara        Belenes Suc. Belenes    1808  MARGA
## 515  324283 2019 Guadalajara        Belenes Suc. Belenes    1914  ANTON
## 516  324303 2019 Guadalajara        Belenes Suc. Belenes    1958  MARIA
## 517  324536 2019 Guadalajara        Belenes Suc. Belenes    2058  POLLE
## 518  324577 2019 Guadalajara        Belenes Suc. Belenes    2065  LOS P
## 519  324820 2019 Guadalajara        Belenes Suc. Belenes    2225  LUZ D
## 520  325096 2019 Guadalajara        Belenes Suc. Belenes    2385  SEMIL
## 521  325145 2019 Guadalajara        Belenes Suc. Belenes    2395  GLORI
## 522  325327 2019 Guadalajara        Belenes Suc. Belenes    2489  MARIA
## 523  325617 2019 Guadalajara        Belenes Suc. Belenes    2639  SONIA
## 524  325926 2019 Guadalajara        Belenes Suc. Belenes    2777  CEREA
## 525  325992 2019 Guadalajara        Belenes Suc. Belenes    2786  LETIC
## 526  326139 2019 Guadalajara        Belenes Suc. Belenes    2818  MARIA
## 527  326165 2019 Guadalajara        Belenes Suc. Belenes    2826  MARIA
## 528  326337 2019 Guadalajara        Belenes Suc. Belenes    2918  ISABE
## 529  326401 2019 Guadalajara        Belenes Suc. Belenes    2958  MARIA
## 530  326624 2019 Guadalajara        Belenes Suc. Belenes    3017  MARIA
## 531  326725 2019 Guadalajara        Belenes Suc. Belenes    3051  ERNES
## 532  327063 2019 Guadalajara        Belenes Suc. Belenes    3236  OFELI
## 533  327115 2019 Guadalajara        Belenes Suc. Belenes    9998  MARIA
## 534  327344 2019 Guadalajara        Belenes Suc. Belenes    5488  DON M
## 535  327418 2019 Guadalajara        Belenes Suc. Belenes    6647  DULCE
## 536  327453 2019 Guadalajara        Belenes Suc. Belenes    9562  VINOS
## 537  327496 2019 Guadalajara        Belenes Suc. Belenes    1472  ABARR
## 538  327618 2019 Guadalajara        Belenes Suc. Belenes    4841  LICOR
## 539  327674 2019 Guadalajara        Belenes Suc. Belenes    7611  MARTI
## 540  327856 2019 Guadalajara        Belenes Suc. Belenes    2566  ANTON
## 541  327980 2019 Guadalajara        Belenes Suc. Belenes    2628  MARIA
## 542  328018 2019 Guadalajara        Belenes Suc. Belenes    2668  CRIST
## 543  328063 2019 Guadalajara        Belenes Suc. Belenes    2760  FRANC
## 544  328099 2019 Guadalajara        Belenes Suc. Belenes    2790  JOSE 
## 545  328275 2019 Guadalajara        Belenes Suc. Belenes    2911  ELIGI
## 546  328365 2019 Guadalajara        Belenes Suc. Belenes    2945  TOMAS
## 547  328594 2019 Guadalajara        Belenes Suc. Belenes    3049  NORMA
## 548  328651 2019 Guadalajara        Belenes Suc. Belenes    3109  RODOL
## 549  328735 2019 Guadalajara        Belenes Suc. Belenes    3177  TERES
## 550  328890 2019 Guadalajara        Belenes Suc. Belenes    3235  CREME
## 551  329113 2019 Guadalajara        Belenes Suc. Belenes    9295  ABARR
## 552  329198 2019 Guadalajara        Belenes Suc. Belenes    1719  MISCE
## 553  329356 2019 Guadalajara        Belenes Suc. Belenes    3033  MISCE
## 554  329543 2019 Guadalajara        Belenes Suc. Belenes    4640  MISCE
## 555  329623 2019 Guadalajara        Belenes Suc. Belenes    5141  HOGAR
## 556  329821 2019 Guadalajara        Belenes Suc. Belenes     335  FELIP
## 557  329892 2019 Guadalajara        Belenes Suc. Belenes     384  VERON
## 558  330104 2019 Guadalajara        Belenes Suc. Belenes    1298  SUPER
## 559  330169 2019 Guadalajara        Belenes Suc. Belenes    3003  MISCE
## 560  330209 2019 Guadalajara        Belenes Suc. Belenes    3978  HOGAR
## 561  330402 2019 Guadalajara        Belenes Suc. Belenes    4287  MISCE
## 562  330477 2019 Guadalajara        Belenes Suc. Belenes    6880  MISCE
## 563  330582 2019 Guadalajara        Belenes Suc. Belenes    7703  MISCE
## 564  330677 2019 Guadalajara        Belenes Suc. Belenes    7720  MICEL
## 565  330870 2019 Guadalajara        Belenes Suc. Belenes    8528  CREME
## 566  331049 2019 Guadalajara        Belenes Suc. Belenes    8539  ABARR
## 567  331125 2019 Guadalajara        Belenes Suc. Belenes    9500  REBEC
## 568  331265 2019 Guadalajara        Belenes Suc. Belenes    9505  MISCE
## 569  331321 2019 Guadalajara        Belenes Suc. Belenes    9510  MICEL
## 570  331507 2019 Guadalajara        Belenes Suc. Belenes     839  MISCE
## 571  331699 2019 Guadalajara        Belenes Suc. Belenes    5271  MISCE
## 572  331826 2019 Guadalajara        Belenes Suc. Belenes    1760  MISCE
## 573  331902 2019 Guadalajara        Belenes Suc. Belenes    3105  MISCE
## 574  332121 2019 Guadalajara        Belenes Suc. Belenes    3398  HOGAR
## 575  332341 2019 Guadalajara        Belenes Suc. Belenes    6008  BERTH
## 576  332386 2019 Guadalajara        Belenes Suc. Belenes    7372  MISCE
## 577  332622 2019 Guadalajara        Belenes Suc. Belenes    3929  MISCE
## 578  332734 2019 Guadalajara        Belenes Suc. Belenes    9301  ABARR
## 579  332967 2019 Guadalajara        Belenes Suc. Belenes    5592  MA DE
## 580  333050 2019 Guadalajara        Belenes Suc. Belenes    8130  MODEL
## 581  333098 2019 Guadalajara        Belenes Suc. Belenes    8784  ABARR
## 582  333177 2019 Guadalajara        Belenes Suc. Belenes    8786  MISCE
## 583  333606 2019 Guadalajara        Belenes Suc. Belenes    5562  DAVID
## 584  333664 2019 Guadalajara        Belenes Suc. Belenes    6101  MISCE
## 585  333943 2019 Guadalajara        Belenes Suc. Belenes    1516  RUBEN
## 586  334001 2019 Guadalajara        Belenes Suc. Belenes    5729  RUBEN
## 587  334143 2019 Guadalajara        Belenes Suc. Belenes    7720  VINOS
## 588  334249 2019 Guadalajara        Belenes Suc. Belenes    7772  VINOS
## 589  334305 2019 Guadalajara        Belenes Suc. Belenes    7775  BERTH
## 590  335166 2019 Guadalajara        Belenes Suc. Belenes    7883  MARTH
## 591  335221 2019 Guadalajara        Belenes Suc. Belenes    7890  CARLO
## 592  335461 2019 Guadalajara        Belenes Suc. Belenes    8017  MARGA
## 593  335521 2019 Guadalajara        Belenes Suc. Belenes    8045  TERES
## 594  335598 2019 Guadalajara        Belenes Suc. Belenes    8076  ABARR
## 595  335781 2019 Guadalajara        Belenes Suc. Belenes    8116  MIGUE
## 596  335889 2019 Guadalajara        Belenes Suc. Belenes    8144  MINI 
## 597  336173 2019 Guadalajara        Belenes Suc. Belenes    8278  MARIA
## 598  336311 2019 Guadalajara        Belenes Suc. Belenes    8387  FRANC
## 599  336362 2019 Guadalajara        Belenes Suc. Belenes    8457  JORGE
## 600  336432 2019 Guadalajara        Belenes Suc. Belenes    8477  SUPER
## 601  336564 2019 Guadalajara        Belenes Suc. Belenes    8528  JOSE 
## 602  336752 2019 Guadalajara        Belenes Suc. Belenes    8694  LAURA
## 603  336824 2019 Guadalajara        Belenes Suc. Belenes    8897  MARIA
## 604  336994 2019 Guadalajara        Belenes Suc. Belenes    8906  LUIS 
## 605  337069 2019 Guadalajara        Belenes Suc. Belenes    8937  MARIA
## 606  337133 2019 Guadalajara        Belenes Suc. Belenes    8942  ANTON
## 607  337220 2019 Guadalajara        Belenes Suc. Belenes    8949  ELISA
## 608  337299 2019 Guadalajara        Belenes Suc. Belenes    8962  ELOIS
## 609  337454 2019 Guadalajara        Belenes Suc. Belenes    8986  JOSE 
## 610  337491 2019 Guadalajara        Belenes Suc. Belenes    8987  MISCE
## 611  337693 2019 Guadalajara        Belenes Suc. Belenes    9056  MARTH
## 612  337753 2019 Guadalajara        Belenes Suc. Belenes    9060  ELIA 
## 613  337798 2019 Guadalajara        Belenes Suc. Belenes    9065  ADRI 
## 614  337871 2019 Guadalajara        Belenes Suc. Belenes    9078  ISMAE
## 615  338111 2019 Guadalajara        Belenes Suc. Belenes    9105  MARIA
## 616  338236 2019 Guadalajara        Belenes Suc. Belenes    9122  MARIA
## 617  338319 2019 Guadalajara        Belenes Suc. Belenes    9146  ABARR
## 618  338392 2019 Guadalajara        Belenes Suc. Belenes    9150  FELIZ
## 619  338571 2019 Guadalajara        Belenes Suc. Belenes    9191  ANGEL
## 620  338672 2019 Guadalajara        Belenes Suc. Belenes    9201  MARIA
## 621  338735 2019 Guadalajara        Belenes Suc. Belenes    9221  CESAR
## 622  338841 2019 Guadalajara        Belenes Suc. Belenes    9263  BEATR
## 623  339039 2019 Guadalajara        Belenes Suc. Belenes    9300  MISCE
## 624  339170 2019 Guadalajara        Belenes Suc. Belenes    9304  TORIB
## 625  339239 2019 Guadalajara        Belenes Suc. Belenes    9346  ENRIQ
## 626  339304 2019 Guadalajara        Belenes Suc. Belenes    9353  ELIAS
## 627  339352 2019 Guadalajara        Belenes Suc. Belenes    9362  ANA M
## 628  339483 2019 Guadalajara        Belenes Suc. Belenes    9372  CLARA
## 629  339665 2019 Guadalajara        Belenes Suc. Belenes    9386  MARIA
## 630  339768 2019 Guadalajara        Belenes Suc. Belenes    9392  ESPER
## 631  339882 2019 Guadalajara        Belenes Suc. Belenes    9396  GUADA
## 632  340199 2019 Guadalajara        Belenes Suc. Belenes    9440  ROSA 
## 633  340249 2019 Guadalajara        Belenes Suc. Belenes    9450  ABARR
## 634  340324 2019 Guadalajara        Belenes Suc. Belenes    9518  MARTH
## 635  340555 2019 Guadalajara        Belenes Suc. Belenes    9546  RODOL
## 636  340681 2019 Guadalajara        Belenes Suc. Belenes    9556  MARTH
## 637  340925 2019 Guadalajara        Belenes Suc. Belenes    9586  DANIE
## 638  341126 2019 Guadalajara        Belenes Suc. Belenes    9627  EVELI
## 639  341680 2019 Guadalajara        Belenes Suc. Belenes    9696  JOSE 
## 640  341998 2019 Guadalajara        Belenes Suc. Belenes    9738  ABARR
## 641  342194 2019 Guadalajara        Belenes Suc. Belenes    9764  ABARR
## 642  342254 2019 Guadalajara        Belenes Suc. Belenes    9773  JUAN 
## 643  342290 2019 Guadalajara        Belenes Suc. Belenes    9774  JONAT
## 644  342710 2019 Guadalajara        Belenes Suc. Belenes    9817  MARIO
## 645  342898 2019 Guadalajara        Belenes Suc. Belenes    9850  ABARR
## 646  343094 2019 Guadalajara        Belenes Suc. Belenes    9864  CIBER
## 647  343575 2019 Guadalajara        Belenes Suc. Belenes    9940  SMART
## 648  343654 2019 Guadalajara        Belenes Suc. Belenes    9941  ABARR
## 649  343882 2019 Guadalajara        Belenes Suc. Belenes    9999  ROSAL
## 650  343937 2019 Guadalajara        Belenes Suc. Belenes      14  ELIZA
## 651  344049 2019 Guadalajara        Belenes Suc. Belenes      24  MISCE
## 652  344184 2019 Guadalajara        Belenes Suc. Belenes      34  MARIA
## 653  344233 2019 Guadalajara        Belenes Suc. Belenes      37  JUAN 
## 654  344410 2019 Guadalajara        Belenes Suc. Belenes      64  PEDRO
## 655  344552 2019 Guadalajara        Belenes Suc. Belenes      77  VERON
## 656  344632 2019 Guadalajara        Belenes Suc. Belenes      83  RAUL 
## 657  344710 2019 Guadalajara        Belenes Suc. Belenes      91  ANA M
## 658  344822 2019 Guadalajara        Belenes Suc. Belenes      96  ODON 
## 659  344919 2019 Guadalajara        Belenes Suc. Belenes     105  VERON
## 660  345037 2019 Guadalajara        Belenes Suc. Belenes     108  ANACL
## 661  345224 2019 Guadalajara        Belenes Suc. Belenes     153  ABARR
## 662  345420 2019 Guadalajara        Belenes Suc. Belenes     161  MARIA
## 663  345532 2019 Guadalajara        Belenes Suc. Belenes     165  JOSE 
## 664  345818 2019 Guadalajara        Belenes Suc. Belenes     208  MANUE
## 665  345859 2019 Guadalajara        Belenes Suc. Belenes     210  MARIA
## 666  345938 2019 Guadalajara        Belenes Suc. Belenes     259  MARIA
## 667  346132 2019 Guadalajara        Belenes Suc. Belenes     274  MISCE
## 668  346321 2019 Guadalajara        Belenes Suc. Belenes     308  GABRI
## 669  346802 2019 Guadalajara        Belenes Suc. Belenes     447  VICTO
## 670  346872 2019 Guadalajara        Belenes Suc. Belenes     448  EL DK
## 671  347008 2019 Guadalajara        Belenes Suc. Belenes     457  MARIA
## 672  347088 2019 Guadalajara        Belenes Suc. Belenes     498  ABARR
## 673  347156 2019 Guadalajara        Belenes Suc. Belenes     506  NOEMI
## 674  347329 2019 Guadalajara        Belenes Suc. Belenes     551  ABARR
## 675  347399 2019 Guadalajara        Belenes Suc. Belenes     552  CELIA
## 676  347610 2019 Guadalajara        Belenes Suc. Belenes     587  YENI 
## 677  347670 2019 Guadalajara        Belenes Suc. Belenes     604  J ROS
## 678  348001 2019 Guadalajara        Belenes Suc. Belenes     646  ADALB
## 679  348064 2019 Guadalajara        Belenes Suc. Belenes     649  MARTH
## 680  348141 2019 Guadalajara        Belenes Suc. Belenes     653  MARIA
## 681  348332 2019 Guadalajara        Belenes Suc. Belenes     713  SOFIA
## 682  348392 2019 Guadalajara        Belenes Suc. Belenes     729  JORGE
## 683  348546 2019 Guadalajara        Belenes Suc. Belenes     736  MARIA
## 684  348646 2019 Guadalajara        Belenes Suc. Belenes     770  FERNA
## 685  348824 2019 Guadalajara        Belenes Suc. Belenes     823  SEBAS
## 686  348986 2019 Guadalajara        Belenes Suc. Belenes     828  GABRI
## 687  349100 2019 Guadalajara        Belenes Suc. Belenes     840  LAURA
## 688  349217 2019 Guadalajara        Belenes Suc. Belenes     845  ABARR
## 689  349358 2019 Guadalajara        Belenes Suc. Belenes     865  RAMIR
## 690  349466 2019 Guadalajara        Belenes Suc. Belenes     883  MARIA
## 691  349594 2019 Guadalajara        Belenes Suc. Belenes     913  RAMON
## 692  349686 2019 Guadalajara        Belenes Suc. Belenes     927  JORGE
## 693  349814 2019 Guadalajara        Belenes Suc. Belenes     940  MANUE
## 694  350050 2019 Guadalajara        Belenes Suc. Belenes     956  EL TE
## 695  350108 2019 Guadalajara        Belenes Suc. Belenes     957  ABARR
## 696  350172 2019 Guadalajara        Belenes Suc. Belenes     958  BERTH
## 697  350240 2019 Guadalajara        Belenes Suc. Belenes     970  ABARR
## 698  350345 2019 Guadalajara        Belenes Suc. Belenes     975  JOSE 
## 699  350476 2019 Guadalajara        Belenes Suc. Belenes     995  ABARR
## 700  350591 2019 Guadalajara        Belenes Suc. Belenes    1021  ROBER
## 701  350645 2019 Guadalajara        Belenes Suc. Belenes    1025  OSCAR
## 702  350782 2019 Guadalajara        Belenes Suc. Belenes    1032  ABARR
## 703  350840 2019 Guadalajara        Belenes Suc. Belenes    1034  MARIA
## 704  350911 2019 Guadalajara        Belenes Suc. Belenes    1042  ROSAU
## 705  351070 2019 Guadalajara        Belenes Suc. Belenes    1062  ABARR
## 706  351181 2019 Guadalajara        Belenes Suc. Belenes    1099  PABLO
## 707  351568 2019 Guadalajara        Belenes Suc. Belenes    1162  OLGA 
## 708  351806 2019 Guadalajara        Belenes Suc. Belenes    1183  RAYIT
## 709  351995 2019 Guadalajara        Belenes Suc. Belenes    1213  HORAC
## 710  352133 2019 Guadalajara        Belenes Suc. Belenes    1254  ABARR
## 711  352327 2019 Guadalajara        Belenes Suc. Belenes    1288  ABARR
## 712  352434 2019 Guadalajara        Belenes Suc. Belenes    1297  HOGR 
## 713  352551 2019 Guadalajara        Belenes Suc. Belenes    1304  DANIE
## 714  352655 2019 Guadalajara        Belenes Suc. Belenes    1344  MA GU
## 715  352953 2019 Guadalajara        Belenes Suc. Belenes    1371  ABARR
## 716  353294 2019 Guadalajara        Belenes Suc. Belenes    1421  MARIA
## 717  353365 2019 Guadalajara        Belenes Suc. Belenes    1446  JOSE 
## 718  353628 2019 Guadalajara        Belenes Suc. Belenes    1483  MARIA
## 719  353735 2019 Guadalajara        Belenes Suc. Belenes    1499  IVAN 
## 720  353919 2019 Guadalajara        Belenes Suc. Belenes    1536  ABARR
## 721  354001 2019 Guadalajara        Belenes Suc. Belenes    1537  BALTA
## 722  354111 2019 Guadalajara        Belenes Suc. Belenes    1559  HECTO
## 723  354371 2019 Guadalajara        Belenes Suc. Belenes    1597  ABARR
## 724  354440 2019 Guadalajara        Belenes Suc. Belenes    1609  KARIN
## 725  354504 2019 Guadalajara        Belenes Suc. Belenes    1632  EXPEN
## 726  354711 2019 Guadalajara        Belenes Suc. Belenes    1705  JOVIT
## 727  355301 2019 Guadalajara        Belenes Suc. Belenes    1749  ALICI
## 728  355573 2019 Guadalajara        Belenes Suc. Belenes    1761  LUZ E
## 729  355749 2019 Guadalajara        Belenes Suc. Belenes    1796  NORMA
## 730  355830 2019 Guadalajara        Belenes Suc. Belenes    1811  MARIA
## 731  355904 2019 Guadalajara        Belenes Suc. Belenes    1813  JAIME
## 732  355977 2019 Guadalajara        Belenes Suc. Belenes    1815  SERGI
## 733  356031 2019 Guadalajara        Belenes Suc. Belenes    1851  KARIN
## 734  356100 2019 Guadalajara        Belenes Suc. Belenes    1861  ABARR
## 735  356237 2019 Guadalajara        Belenes Suc. Belenes    1911  SANTI
## 736  356285 2019 Guadalajara        Belenes Suc. Belenes    1915  CELIA
## 737  356393 2019 Guadalajara        Belenes Suc. Belenes    1928  ABARR
## 738  356434 2019 Guadalajara        Belenes Suc. Belenes    1931  HUMBE
## 739  356663 2019 Guadalajara        Belenes Suc. Belenes    1950  AUREL
## 740  356750 2019 Guadalajara        Belenes Suc. Belenes    1964  IVAN 
## 741  356790 2019 Guadalajara        Belenes Suc. Belenes    1967  ABARR
## 742  356828 2019 Guadalajara        Belenes Suc. Belenes    1972  ARTUR
## 743  356882 2019 Guadalajara        Belenes Suc. Belenes    1973  EMIDI
## 744  357009 2019 Guadalajara        Belenes Suc. Belenes    1999  ABARR
## 745  357331 2019 Guadalajara        Belenes Suc. Belenes    2046  CATAR
## 746  357445 2019 Guadalajara        Belenes Suc. Belenes    2072  MARIA
## 747  357473 2019 Guadalajara        Belenes Suc. Belenes    2073  ABARR
## 748  357600 2019 Guadalajara        Belenes Suc. Belenes    2105  FRANC
## 749  357634 2019 Guadalajara        Belenes Suc. Belenes    2111  VINOS
## 750  357681 2019 Guadalajara        Belenes Suc. Belenes    2121  EFRAI
## 751  357904 2019 Guadalajara        Belenes Suc. Belenes    2129  ABARR
## 752  358263 2019 Guadalajara        Belenes Suc. Belenes    2198  PEDRO
## 753  358316 2019 Guadalajara        Belenes Suc. Belenes    2204  ABARR
## 754  358457 2019 Guadalajara        Belenes Suc. Belenes    2238  CECIL
## 755  358499 2019 Guadalajara        Belenes Suc. Belenes    2241  MARIA
## 756  358576 2019 Guadalajara        Belenes Suc. Belenes    2243  GRACI
## 757  358662 2019 Guadalajara        Belenes Suc. Belenes    2246  RAUL 
## 758  358732 2019 Guadalajara        Belenes Suc. Belenes    2260  MISCE
## 759  359001 2019 Guadalajara        Belenes Suc. Belenes    2305  JOSE 
## 760  359340 2019 Guadalajara        Belenes Suc. Belenes    2391  MARIA
## 761  359488 2019 Guadalajara        Belenes Suc. Belenes    2435  VINOS
## 762  359540 2019 Guadalajara        Belenes Suc. Belenes    2436  MARIA
## 763  359654 2019 Guadalajara        Belenes Suc. Belenes    2466  FELIC
## 764  359728 2019 Guadalajara        Belenes Suc. Belenes    2467  ABARR
## 765  359962 2019 Guadalajara        Belenes Suc. Belenes    2487  MARIA
## 766  360055 2019 Guadalajara        Belenes Suc. Belenes    2500  JOSE 
## 767  360201 2019 Guadalajara        Belenes Suc. Belenes    2507  ALEJA
## 768  360392 2019 Guadalajara        Belenes Suc. Belenes    2523  ROSA 
## 769  360730 2019 Guadalajara        Belenes Suc. Belenes    2547  VIVIA
## 770  360801 2019 Guadalajara        Belenes Suc. Belenes    2551  ABARR
## 771  360942 2019 Guadalajara        Belenes Suc. Belenes    2591  ABARR
## 772  361070 2019 Guadalajara        Belenes Suc. Belenes    2627  ABARR
## 773  361151 2019 Guadalajara        Belenes Suc. Belenes    2633  ALFRE
## 774  361538 2019 Guadalajara        Belenes Suc. Belenes    2686  ABARR
## 775  361625 2019 Guadalajara        Belenes Suc. Belenes    2704  JOSE 
## 776  361843 2019 Guadalajara        Belenes Suc. Belenes    2713  JOSE 
## 777  362345 2019 Guadalajara        Belenes Suc. Belenes    2749  ABARR
## 778  362414 2019 Guadalajara        Belenes Suc. Belenes    2755  ABARR
## 779  362521 2019 Guadalajara        Belenes Suc. Belenes    2764  ALBER
## 780  362574 2019 Guadalajara        Belenes Suc. Belenes    2780  ABARR
## 781  362862 2019 Guadalajara        Belenes Suc. Belenes    2803  MARIA
## 782  363079 2019 Guadalajara        Belenes Suc. Belenes    2822  DELIA
## 783  363401 2019 Guadalajara        Belenes Suc. Belenes    2857  CAROL
## 784  363472 2019 Guadalajara        Belenes Suc. Belenes    2863  CARLO
## 785  363652 2019 Guadalajara        Belenes Suc. Belenes    2882  SALVA
## 786  363801 2019 Guadalajara        Belenes Suc. Belenes    2895  ABARR
## 787  363977 2019 Guadalajara        Belenes Suc. Belenes    2920  LUIS 
## 788  364188 2019 Guadalajara        Belenes Suc. Belenes    2962  CARNI
## 789  364484 2019 Guadalajara        Belenes Suc. Belenes    2991  LA GL
## 790  364585 2019 Guadalajara        Belenes Suc. Belenes    3028  CREME
## 791  364668 2019 Guadalajara        Belenes Suc. Belenes    3040  ABARR
## 792  364815 2019 Guadalajara        Belenes Suc. Belenes    3059  ABARR
## 793  364910 2019 Guadalajara        Belenes Suc. Belenes    3087  CARME
## 794  365389 2019 Guadalajara        Belenes Suc. Belenes    3141  JOSE 
## 795  365598 2019 Guadalajara        Belenes Suc. Belenes    3192  JOSE 
## 796  365648 2019 Guadalajara        Belenes Suc. Belenes    3203  MARIA
## 797  365708 2019 Guadalajara        Belenes Suc. Belenes    3211  ROBER
## 798  365796 2019 Guadalajara        Belenes Suc. Belenes    3220  ABARR
## 799  366078 2019 Guadalajara        Belenes Suc. Belenes    3268  ABELI
## 800  366156 2019 Guadalajara        Belenes Suc. Belenes    3280  OLIVI
## 801  366421 2019 Guadalajara        Belenes Suc. Belenes      19  MARTH
## 802  366477 2019 Guadalajara        Belenes Suc. Belenes      26  ABARR
## 803  366630 2019 Guadalajara        Belenes Suc. Belenes     711  JORGE
## 804  366718 2019 Guadalajara        Belenes Suc. Belenes    1063  ABARR
## 805  367051 2019 Guadalajara        Belenes Suc. Belenes    9573  ABARR
## 806  367350 2019 Guadalajara        Belenes Suc. Belenes    6027  LETIC
## 807  367630 2019 Guadalajara        Belenes Suc. Belenes    2299  ABARR
## 808  367705 2019 Guadalajara        Belenes Suc. Belenes    2396  VENTA
## 809  367966 2019 Guadalajara        Belenes Suc. Belenes     412  ARMAN
## 810  368021 2019 Guadalajara        Belenes Suc. Belenes     692  HECTO
## 811  368236 2019 Guadalajara        Belenes Suc. Belenes    6674  LUZ E
## 812  368308 2019 Guadalajara        Belenes Suc. Belenes    2477  VINOS
## 813  368395 2019 Guadalajara        Belenes Suc. Belenes    2492  MARCO
## 814  368579 2019 Guadalajara        Belenes Suc. Belenes    2533  ENRIQ
## 815  368745 2019 Guadalajara        Belenes Suc. Belenes    2577  SILVI
## 816  368864 2019 Guadalajara        Belenes Suc. Belenes    2590  ETELV
## 817  368923 2019 Guadalajara        Belenes Suc. Belenes    2594  RUBEN
## 818  368986 2019 Guadalajara        Belenes Suc. Belenes    2600  ABARR
## 819  369335 2019 Guadalajara        Belenes Suc. Belenes    2644  ALICI
## 820  369675 2019 Guadalajara        Belenes Suc. Belenes    2710  USTEC
## 821  369781 2019 Guadalajara        Belenes Suc. Belenes    2741  ALMA 
## 822  369852 2019 Guadalajara        Belenes Suc. Belenes    2756  FAUST
## 823  370043 2019 Guadalajara        Belenes Suc. Belenes    2821  MARIA
## 824  370400 2019 Guadalajara        Belenes Suc. Belenes    2909  ANGEL
## 825  370453 2019 Guadalajara        Belenes Suc. Belenes    2919  VALEN
## 826  370484 2019 Guadalajara        Belenes Suc. Belenes    2938  ERNES
## 827  370599 2019 Guadalajara        Belenes Suc. Belenes    2989  BEATR
## 828  371034 2019 Guadalajara        Belenes Suc. Belenes    3071  EL PA
## 829  371137 2019 Guadalajara        Belenes Suc. Belenes    3080  J JES
## 830  371361 2019 Guadalajara        Belenes Suc. Belenes    3153  PACHE
## 831  371578 2019 Guadalajara        Belenes Suc. Belenes    3174  FRUTA
## 832  371630 2019 Guadalajara        Belenes Suc. Belenes    3209  ALMA 
## 833  371667 2019 Guadalajara        Belenes Suc. Belenes    3233  ABARR
## 834  372075 2019 Guadalajara        Belenes Suc. Belenes    8289  MARIA
## 835  372131 2019 Guadalajara        Belenes Suc. Belenes    8291  ANTON
## 836  372216 2019 Guadalajara        Belenes Suc. Belenes    8392  OSCAR
## 837  372283 2019 Guadalajara        Belenes Suc. Belenes    8395  ABARR
## 838  372466 2019 Guadalajara        Belenes Suc. Belenes     766  ABARR
## 839  372515 2019 Guadalajara        Belenes Suc. Belenes    1486  VERON
## 840  372650 2019 Guadalajara        Belenes Suc. Belenes    1759  MICEL
## 841  372879 2019 Guadalajara        Belenes Suc. Belenes    9410  MICEL
## 842  372938 2019 Guadalajara        Belenes Suc. Belenes    9423  MISCE
## 843  373307 2019 Guadalajara        Belenes Suc. Belenes    4647  MICEL
## 844  373450 2019 Guadalajara        Belenes Suc. Belenes    5143  DEPOS
## 845  373670 2019 Guadalajara        Belenes Suc. Belenes    3493  MISCE
## 846  373746 2019 Guadalajara        Belenes Suc. Belenes    8514  MISCE
## 847  373833 2019 Guadalajara        Belenes Suc. Belenes    8526  MISCE
## 848  373961 2019 Guadalajara        Belenes Suc. Belenes    5077  MISCE
## 849  374032 2019 Guadalajara        Belenes Suc. Belenes    5228  MICEL
## 850  374170 2019 Guadalajara        Belenes Suc. Belenes    3372  GERAR
## 851  374327 2019 Guadalajara        Belenes Suc. Belenes    8933  MISCE
## 852  374485 2019 Guadalajara        Belenes Suc. Belenes    8639  NORMA
## 853  374641 2019 Guadalajara        Belenes Suc. Belenes    9311  BERTH
## 854  374716 2019 Guadalajara        Belenes Suc. Belenes    1026  ABARR
## 855  374976 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 856  375146 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 857  375233 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 858  375391 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 859  375478 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 860  375614 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 861  375693 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 862  375784 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 863  375887 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 864  375996 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 865  376066 2019 Guadalajara        Belenes Suc. Belenes    7814  JOSEF
## 866  376141 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 867  376395 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 868  376490 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 869  376611 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 870  376695 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 871  376771 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 872  376849 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 873  376918 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 874  377044 2019 Guadalajara        Belenes Suc. Belenes    8124  CORON
## 875  377190 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 876  377294 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 877  377588 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 878  377658 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 879  377698 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 880  377774 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 881  377951 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 882  378043 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 883  378250 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 884  378343 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 885  378558 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 886  378732 2019 Guadalajara        Belenes Suc. Belenes    8884  SIX M
## 887  379009 2019 Guadalajara        Belenes Suc. Belenes    8907  RUBEN
## 888  379139 2019 Guadalajara        Belenes Suc. Belenes    8917  RAFAE
## 889  379224 2019 Guadalajara        Belenes Suc. Belenes    8920  LOREN
## 890  379322 2019 Guadalajara        Belenes Suc. Belenes    8921  ABARR
## 891  379437 2019 Guadalajara        Belenes Suc. Belenes    8991  ABARR
## 892  379637 2019 Guadalajara        Belenes Suc. Belenes    9011  GUSTA
## 893  379735 2019 Guadalajara        Belenes Suc. Belenes    9015  ABARR
## 894  379826 2019 Guadalajara        Belenes Suc. Belenes    9027  ABARR
## 895  379956 2019 Guadalajara        Belenes Suc. Belenes    9032  ABARR
## 896  380054 2019 Guadalajara        Belenes Suc. Belenes    9040  JUAN 
## 897  380150 2019 Guadalajara        Belenes Suc. Belenes    9045  FRANC
## 898  380242 2019 Guadalajara        Belenes Suc. Belenes    9067  ABARR
## 899  380346 2019 Guadalajara        Belenes Suc. Belenes    9070  MINIS
## 900  380430 2019 Guadalajara        Belenes Suc. Belenes    9083  ANA B
## 901  380509 2019 Guadalajara        Belenes Suc. Belenes    9085  GABRI
## 902  380671 2019 Guadalajara        Belenes Suc. Belenes    9143  JAVIE
## 903  380772 2019 Guadalajara        Belenes Suc. Belenes    9162  MARIA
## 904  380868 2019 Guadalajara        Belenes Suc. Belenes    9175  ABARR
## 905  380962 2019 Guadalajara        Belenes Suc. Belenes    9184  MINI 
## 906  381054 2019 Guadalajara        Belenes Suc. Belenes    9192  ABARR
## 907  381150 2019 Guadalajara        Belenes Suc. Belenes    9202  REINA
## 908  381224 2019 Guadalajara        Belenes Suc. Belenes    9227  ABARR
## 909  381320 2019 Guadalajara        Belenes Suc. Belenes    9236  TABY 
## 910  381433 2019 Guadalajara        Belenes Suc. Belenes    9243  MARIA
## 911  381579 2019 Guadalajara        Belenes Suc. Belenes    9256  ABARR
## 912  381666 2019 Guadalajara        Belenes Suc. Belenes    9284  ABARR
## 913  381770 2019 Guadalajara        Belenes Suc. Belenes    9311  MIGUE
## 914  381871 2019 Guadalajara        Belenes Suc. Belenes    9331  ABARR
## 915  381960 2019 Guadalajara        Belenes Suc. Belenes    9335  ABARR
## 916  382029 2019 Guadalajara        Belenes Suc. Belenes    9343  ABARR
## 917  382105 2019 Guadalajara        Belenes Suc. Belenes    9371  TERES
## 918  382161 2019 Guadalajara        Belenes Suc. Belenes    9377  ABARR
## 919  382243 2019 Guadalajara        Belenes Suc. Belenes    9379  ABARR
## 920  382325 2019 Guadalajara        Belenes Suc. Belenes    9387  MARIA
## 921  382432 2019 Guadalajara        Belenes Suc. Belenes    9390  ABARR
## 922  382524 2019 Guadalajara        Belenes Suc. Belenes    9397  JERON
## 923  382605 2019 Guadalajara        Belenes Suc. Belenes    9420  MARIA
## 924  382747 2019 Guadalajara        Belenes Suc. Belenes    9435  MISCE
## 925  382827 2019 Guadalajara        Belenes Suc. Belenes    9444  SONIA
## 926  382905 2019 Guadalajara        Belenes Suc. Belenes    9445  JOSE 
## 927  382974 2019 Guadalajara        Belenes Suc. Belenes    9456  MARIA
## 928  383033 2019 Guadalajara        Belenes Suc. Belenes    9457  CARLA
## 929  383142 2019 Guadalajara        Belenes Suc. Belenes    9481  GLORI
## 930  383236 2019 Guadalajara        Belenes Suc. Belenes    9482  MARTI
## 931  383803 2019 Guadalajara        Belenes Suc. Belenes    9560  MAGDA
## 932  384162 2019 Guadalajara        Belenes Suc. Belenes    9610  IVAN 
## 933  384255 2019 Guadalajara        Belenes Suc. Belenes    9624  VICTO
## 934  384331 2019 Guadalajara        Belenes Suc. Belenes    9648  MARIA
## 935  384411 2019 Guadalajara        Belenes Suc. Belenes    9664  ROMAN
## 936  384502 2019 Guadalajara        Belenes Suc. Belenes    9681  BERTH
## 937  384595 2019 Guadalajara        Belenes Suc. Belenes    9692  JOSE 
## 938  384751 2019 Guadalajara        Belenes Suc. Belenes    9744  JUANA
## 939  384818 2019 Guadalajara        Belenes Suc. Belenes    9747  MINI 
## 940  384879 2019 Guadalajara        Belenes Suc. Belenes    9748  SILVI
## 941  384962 2019 Guadalajara        Belenes Suc. Belenes    9752  ABARR
## 942  385049 2019 Guadalajara        Belenes Suc. Belenes    9754  OFELI
## 943  385133 2019 Guadalajara        Belenes Suc. Belenes    9759  ABARR
## 944  385280 2019 Guadalajara        Belenes Suc. Belenes    9769  JOSUE
## 945  385374 2019 Guadalajara        Belenes Suc. Belenes    9780  GILBE
## 946  385524 2019 Guadalajara        Belenes Suc. Belenes    9785  ANGEL
## 947  385615 2019 Guadalajara        Belenes Suc. Belenes    9809  BRAUL
## 948  385739 2019 Guadalajara        Belenes Suc. Belenes    9834  AGUST
## 949  385825 2019 Guadalajara        Belenes Suc. Belenes    9838  ABARR
## 950  385924 2019 Guadalajara        Belenes Suc. Belenes    9844  ABARR
## 951  386010 2019 Guadalajara        Belenes Suc. Belenes    9859  KRISH
## 952  386253 2019 Guadalajara        Belenes Suc. Belenes    9882  MARIO
## 953  386656 2019 Guadalajara        Belenes Suc. Belenes    9908  ABARR
## 954  386740 2019 Guadalajara        Belenes Suc. Belenes    9909  BENJA
## 955  387030 2019 Guadalajara        Belenes Suc. Belenes    9938  MARIA
## 956  387116 2019 Guadalajara        Belenes Suc. Belenes    9966  ABARR
## 957  387311 2019 Guadalajara        Belenes Suc. Belenes    9987  ABARR
## 958  387408 2019 Guadalajara        Belenes Suc. Belenes    9992  J GUA
## 959  387482 2019 Guadalajara        Belenes Suc. Belenes    9994  MARIA
## 960  387557 2019 Guadalajara        Belenes Suc. Belenes    9996  ABARR
## 961  387658 2019 Guadalajara        Belenes Suc. Belenes    9997  RICAR
## 962  387800 2019 Guadalajara        Belenes Suc. Belenes      31  SIMON
## 963  387874 2019 Guadalajara        Belenes Suc. Belenes      39  ABARR
## 964  387967 2019 Guadalajara        Belenes Suc. Belenes      42  ABARR
## 965  388151 2019 Guadalajara        Belenes Suc. Belenes      65  ABARR
## 966  388242 2019 Guadalajara        Belenes Suc. Belenes      66  MARIA
## 967  388394 2019 Guadalajara        Belenes Suc. Belenes      82  KARLA
## 968  388447 2019 Guadalajara        Belenes Suc. Belenes      84  ABARR
## 969  388541 2019 Guadalajara        Belenes Suc. Belenes      85  ABARR
## 970  388642 2019 Guadalajara        Belenes Suc. Belenes      86  ABARR
## 971  388710 2019 Guadalajara        Belenes Suc. Belenes      90  ABARR
## 972  388789 2019 Guadalajara        Belenes Suc. Belenes      92  RAMIR
## 973  388877 2019 Guadalajara        Belenes Suc. Belenes     103  MIGUE
## 974  389107 2019 Guadalajara        Belenes Suc. Belenes     122  BREND
## 975  389167 2019 Guadalajara        Belenes Suc. Belenes     124  AUROR
## 976  389246 2019 Guadalajara        Belenes Suc. Belenes     129  ABARR
## 977  389315 2019 Guadalajara        Belenes Suc. Belenes     142  MARIA
## 978  389495 2019 Guadalajara        Belenes Suc. Belenes     166  ABARR
## 979  389577 2019 Guadalajara        Belenes Suc. Belenes     188  MARIA
## 980  389819 2019 Guadalajara        Belenes Suc. Belenes     204  EL GR
## 981  389905 2019 Guadalajara        Belenes Suc. Belenes     207  ABARR
## 982  389976 2019 Guadalajara        Belenes Suc. Belenes     211  JOSE 
## 983  390075 2019 Guadalajara        Belenes Suc. Belenes     213  ALEJA
## 984  390190 2019 Guadalajara        Belenes Suc. Belenes     218  ABARR
## 985  390263 2019 Guadalajara        Belenes Suc. Belenes     237  ABARR
## 986  390524 2019 Guadalajara        Belenes Suc. Belenes     248  GABRI
## 987  390642 2019 Guadalajara        Belenes Suc. Belenes     303  ABARR
## 988  390738 2019 Guadalajara        Belenes Suc. Belenes     317  MINIS
## 989  390838 2019 Guadalajara        Belenes Suc. Belenes     326  MI BE
## 990  391172 2019 Guadalajara        Belenes Suc. Belenes     376  CESAR
## 991  391277 2019 Guadalajara        Belenes Suc. Belenes     390  EL RE
## 992  391369 2019 Guadalajara        Belenes Suc. Belenes     406  TENDE
## 993  391571 2019 Guadalajara        Belenes Suc. Belenes     442  ABARR
## 994  391666 2019 Guadalajara        Belenes Suc. Belenes     452  ABARR
## 995  391755 2019 Guadalajara        Belenes Suc. Belenes     458  SALVA
## 996  391832 2019 Guadalajara        Belenes Suc. Belenes     462  ABARR
## 997  392158 2019 Guadalajara        Belenes Suc. Belenes     475  MARIA
## 998  392227 2019 Guadalajara        Belenes Suc. Belenes     476  JUAN 
## 999  392464 2019 Guadalajara        Belenes Suc. Belenes     505  JUANA
## 1000 392546 2019 Guadalajara        Belenes Suc. Belenes     508  MARIA
## 1001 392708 2019 Guadalajara        Belenes Suc. Belenes     542  GONZA
## 1002 392813 2019 Guadalajara        Belenes Suc. Belenes     554  ABARR
## 1003 392960 2019 Guadalajara        Belenes Suc. Belenes     571  ABARR
## 1004 393054 2019 Guadalajara        Belenes Suc. Belenes     576  JOSE 
## 1005 393228 2019 Guadalajara        Belenes Suc. Belenes     582  ABARR
## 1006 393277 2019 Guadalajara        Belenes Suc. Belenes     594  RAFAE
## 1007 393455 2019 Guadalajara        Belenes Suc. Belenes     633  MARIA
## 1008 393524 2019 Guadalajara        Belenes Suc. Belenes     647  ABARR
## 1009 393589 2019 Guadalajara        Belenes Suc. Belenes     667  SUPER
## 1010 393769 2019 Guadalajara        Belenes Suc. Belenes     711  RAMIR
## 1011 393882 2019 Guadalajara        Belenes Suc. Belenes     712  ABARR
## 1012 393978 2019 Guadalajara        Belenes Suc. Belenes     803  ABARR
## 1013 394074 2019 Guadalajara        Belenes Suc. Belenes     815  PACHE
## 1014 394165 2019 Guadalajara        Belenes Suc. Belenes     834  ABARR
## 1015 394247 2019 Guadalajara        Belenes Suc. Belenes     841  ABARR
## 1016 394420 2019 Guadalajara        Belenes Suc. Belenes     876  LA MA
## 1017 394644 2019 Guadalajara        Belenes Suc. Belenes     915  ABARR
## 1018 394740 2019 Guadalajara        Belenes Suc. Belenes     941  ABARR
## 1019 394816 2019 Guadalajara        Belenes Suc. Belenes     943  ABARR
## 1020 394908 2019 Guadalajara        Belenes Suc. Belenes     953  JAIME
## 1021 395066 2019 Guadalajara        Belenes Suc. Belenes     997  JOSE 
## 1022 395169 2019 Guadalajara        Belenes Suc. Belenes    1002  FEDER
## 1023 395396 2019 Guadalajara        Belenes Suc. Belenes    1063  MARIC
## 1024 395559 2019 Guadalajara        Belenes Suc. Belenes    1088  JACIE
## 1025 395666 2019 Guadalajara        Belenes Suc. Belenes    1150  ABARR
## 1026 395755 2019 Guadalajara        Belenes Suc. Belenes    1163  LUIS 
## 1027 395844 2019 Guadalajara        Belenes Suc. Belenes    1164  EZEQU
## 1028 395930 2019 Guadalajara        Belenes Suc. Belenes    1184  ABARR
## 1029 396032 2019 Guadalajara        Belenes Suc. Belenes    1208  JONAT
## 1030 396126 2019 Guadalajara        Belenes Suc. Belenes    1228  EMMAN
## 1031 396213 2019 Guadalajara        Belenes Suc. Belenes    1232  ADRIA
## 1032 396495 2019 Guadalajara        Belenes Suc. Belenes    1312  ABARR
## 1033 396602 2019 Guadalajara        Belenes Suc. Belenes    1320  JOSE 
## 1034 396780 2019 Guadalajara        Belenes Suc. Belenes    1349  REYNA
## 1035 396866 2019 Guadalajara        Belenes Suc. Belenes    1355  LILIA
## 1036 396961 2019 Guadalajara        Belenes Suc. Belenes    1366  SIX P
## 1037 397044 2019 Guadalajara        Belenes Suc. Belenes    1379  DOLOR
## 1038 397130 2019 Guadalajara        Belenes Suc. Belenes    1384  ABARR
## 1039 397225 2019 Guadalajara        Belenes Suc. Belenes    1407  ABARR
## 1040 397292 2019 Guadalajara        Belenes Suc. Belenes    1436  ANTON
## 1041 397355 2019 Guadalajara        Belenes Suc. Belenes    1444  MARIA
## 1042 397435 2019 Guadalajara        Belenes Suc. Belenes    1447  ABARR
## 1043 397520 2019 Guadalajara        Belenes Suc. Belenes    1459  LA ES
## 1044 397598 2019 Guadalajara        Belenes Suc. Belenes    1460  MARIA
## 1045 397673 2019 Guadalajara        Belenes Suc. Belenes    1479  RAFAE
## 1046 397757 2019 Guadalajara        Belenes Suc. Belenes    1491  SERGI
## 1047 397830 2019 Guadalajara        Belenes Suc. Belenes    1506  ABARR
## 1048 397922 2019 Guadalajara        Belenes Suc. Belenes    1528  MARZO
## 1049 398000 2019 Guadalajara        Belenes Suc. Belenes    1529  ABARR
## 1050 398184 2019 Guadalajara        Belenes Suc. Belenes    1565  JUAN 
## 1051 398331 2019 Guadalajara        Belenes Suc. Belenes    1594  ABARR
## 1052 398432 2019 Guadalajara        Belenes Suc. Belenes    1603  LUIS 
## 1053 398513 2019 Guadalajara        Belenes Suc. Belenes    1610  ABARR
## 1054 398585 2019 Guadalajara        Belenes Suc. Belenes    1622  ABARR
## 1055 398688 2019 Guadalajara        Belenes Suc. Belenes    1630  ABARR
## 1056 398757 2019 Guadalajara        Belenes Suc. Belenes    1634  ABARR
## 1057 398835 2019 Guadalajara        Belenes Suc. Belenes    1644  RENE 
## 1058 398908 2019 Guadalajara        Belenes Suc. Belenes    1653  LINDA
## 1059 398989 2019 Guadalajara        Belenes Suc. Belenes    1711  REYES
## 1060 399049 2019 Guadalajara        Belenes Suc. Belenes    1715  ABARR
## 1061 399147 2019 Guadalajara        Belenes Suc. Belenes    1717  ABEL 
## 1062 399216 2019 Guadalajara        Belenes Suc. Belenes    1723  MINI 
## 1063 399322 2019 Guadalajara        Belenes Suc. Belenes    1725  ABARR
## 1064 399516 2019 Guadalajara        Belenes Suc. Belenes    1736  PABLO
## 1065 399755 2019 Guadalajara        Belenes Suc. Belenes    1799  JOSE 
## 1066 399922 2019 Guadalajara        Belenes Suc. Belenes    1814  ALBER
## 1067 400015 2019 Guadalajara        Belenes Suc. Belenes    1820  ROSA 
## 1068 400119 2019 Guadalajara        Belenes Suc. Belenes    1826  SUPER
## 1069 400210 2019 Guadalajara        Belenes Suc. Belenes    1831  RAFAE
## 1070 400297 2019 Guadalajara        Belenes Suc. Belenes    1834  CREME
## 1071 400404 2019 Guadalajara        Belenes Suc. Belenes    1835  MARIA
## 1072 400504 2019 Guadalajara        Belenes Suc. Belenes    1836  TERES
## 1073 400579 2019 Guadalajara        Belenes Suc. Belenes    1842  MARIA
## 1074 400661 2019 Guadalajara        Belenes Suc. Belenes    1843  CREME
## 1075 400759 2019 Guadalajara        Belenes Suc. Belenes    1847  ABARR
## 1076 400849 2019 Guadalajara        Belenes Suc. Belenes    1854  ABARR
## 1077 400936 2019 Guadalajara        Belenes Suc. Belenes    1857  MARIA
## 1078 401018 2019 Guadalajara        Belenes Suc. Belenes    1858  ABARR
## 1079 401126 2019 Guadalajara        Belenes Suc. Belenes    1860  DOS H
## 1080 401221 2019 Guadalajara        Belenes Suc. Belenes    1872  RUTH 
## 1081 401298 2019 Guadalajara        Belenes Suc. Belenes    1893  EL MA
## 1082 401368 2019 Guadalajara        Belenes Suc. Belenes    1917  MARIA
## 1083 401446 2019 Guadalajara        Belenes Suc. Belenes    1918  ABARR
## 1084 401535 2019 Guadalajara        Belenes Suc. Belenes    1944  ABARR
## 1085 401599 2019 Guadalajara        Belenes Suc. Belenes    1952  ABARR
## 1086 401694 2019 Guadalajara        Belenes Suc. Belenes    1971  ABARR
## 1087 401781 2019 Guadalajara        Belenes Suc. Belenes    1974  ABARR
## 1088 401962 2019 Guadalajara        Belenes Suc. Belenes    1993  ABARR
## 1089 402057 2019 Guadalajara        Belenes Suc. Belenes    2003  ABARR
## 1090 402161 2019 Guadalajara        Belenes Suc. Belenes    2006  ABARR
## 1091 402261 2019 Guadalajara        Belenes Suc. Belenes    2009  ABARR
## 1092 402370 2019 Guadalajara        Belenes Suc. Belenes    2033  ABARR
## 1093 402460 2019 Guadalajara        Belenes Suc. Belenes    2044  JAIME
## 1094 402540 2019 Guadalajara        Belenes Suc. Belenes    2049  MARIA
## 1095 402625 2019 Guadalajara        Belenes Suc. Belenes    2052  ABARR
## 1096 402708 2019 Guadalajara        Belenes Suc. Belenes    2054  MIGUE
## 1097 402768 2019 Guadalajara        Belenes Suc. Belenes    2060  GERAR
## 1098 402989 2019 Guadalajara        Belenes Suc. Belenes    2120  JUANA
## 1099 403191 2019 Guadalajara        Belenes Suc. Belenes    2136  SILVI
## 1100 403261 2019 Guadalajara        Belenes Suc. Belenes    2138  GUMEC
## 1101 403353 2019 Guadalajara        Belenes Suc. Belenes    2142  FELIP
## 1102 403541 2019 Guadalajara        Belenes Suc. Belenes    2179  JUAN 
## 1103 403622 2019 Guadalajara        Belenes Suc. Belenes    2195  JOSE 
## 1104 403828 2019 Guadalajara        Belenes Suc. Belenes    2229  ABARR
## 1105 403900 2019 Guadalajara        Belenes Suc. Belenes    2231  ELISA
## 1106 403983 2019 Guadalajara        Belenes Suc. Belenes    2248  VINOS
## 1107 404057 2019 Guadalajara        Belenes Suc. Belenes    2255  VERON
## 1108 404131 2019 Guadalajara        Belenes Suc. Belenes    2261  MARIA
## 1109 404268 2019 Guadalajara        Belenes Suc. Belenes    2278  AUDIE
## 1110 404366 2019 Guadalajara        Belenes Suc. Belenes    2302  JOSE 
## 1111 404451 2019 Guadalajara        Belenes Suc. Belenes    2313  ABARR
## 1112 404551 2019 Guadalajara        Belenes Suc. Belenes    2314  BLANC
## 1113 404651 2019 Guadalajara        Belenes Suc. Belenes    2319  SUPER
## 1114 404739 2019 Guadalajara        Belenes Suc. Belenes    2320  ADELA
## 1115 404882 2019 Guadalajara        Belenes Suc. Belenes    2328  ABARR
## 1116 404967 2019 Guadalajara        Belenes Suc. Belenes    2335  ANGEL
## 1117 405168 2019 Guadalajara        Belenes Suc. Belenes    2353  LA BO
## 1118 405248 2019 Guadalajara        Belenes Suc. Belenes    2377  PATRI
## 1119 405321 2019 Guadalajara        Belenes Suc. Belenes    2386  MINI 
## 1120 405420 2019 Guadalajara        Belenes Suc. Belenes    2394  ABARR
## 1121 405523 2019 Guadalajara        Belenes Suc. Belenes    2401  ROSA 
## 1122 405607 2019 Guadalajara        Belenes Suc. Belenes    2403  ALICI
## 1123 405712 2019 Guadalajara        Belenes Suc. Belenes    2471  MARIA
## 1124 405783 2019 Guadalajara        Belenes Suc. Belenes    2474  MARIA
## 1125 405857 2019 Guadalajara        Belenes Suc. Belenes    2475  MIRIA
## 1126 405925 2019 Guadalajara        Belenes Suc. Belenes    2497  ABARR
## 1127 406186 2019 Guadalajara        Belenes Suc. Belenes    2522  ABARR
## 1128 406254 2019 Guadalajara        Belenes Suc. Belenes    2536  ABARR
## 1129 406325 2019 Guadalajara        Belenes Suc. Belenes    2538  ABARR
## 1130 406371 2019 Guadalajara        Belenes Suc. Belenes    2540  ADRIA
## 1131 406535 2019 Guadalajara        Belenes Suc. Belenes    2586  EL DK
## 1132 406643 2019 Guadalajara        Belenes Suc. Belenes    2587  CARME
## 1133 406804 2019 Guadalajara        Belenes Suc. Belenes    2592  SIX M
## 1134 406892 2019 Guadalajara        Belenes Suc. Belenes    2607  BERTH
## 1135 406921 2019 Guadalajara        Belenes Suc. Belenes    2634  MARIA
## 1136 407013 2019 Guadalajara        Belenes Suc. Belenes    2654  RAFAE
## 1137 407272 2019 Guadalajara        Belenes Suc. Belenes    2716  JORGE
## 1138 407416 2019 Guadalajara        Belenes Suc. Belenes    2733  GUSTA
## 1139 407493 2019 Guadalajara        Belenes Suc. Belenes    2776  BEATR
## 1140 407574 2019 Guadalajara        Belenes Suc. Belenes    2779  ABARR
## 1141 407663 2019 Guadalajara        Belenes Suc. Belenes    2784  ABARR
## 1142 408105 2019 Guadalajara        Belenes Suc. Belenes    2866  DULCE
## 1143 408209 2019 Guadalajara        Belenes Suc. Belenes    2867  MINIS
## 1144 408318 2019 Guadalajara        Belenes Suc. Belenes    2877  ABARR
## 1145 408418 2019 Guadalajara        Belenes Suc. Belenes    2896  MI RA
## 1146 408615 2019 Guadalajara        Belenes Suc. Belenes    2910  BAUDE
## 1147 408743 2019 Guadalajara        Belenes Suc. Belenes    2944  ABARR
## 1148 408880 2019 Guadalajara        Belenes Suc. Belenes    2973  ABARR
## 1149 409037 2019 Guadalajara        Belenes Suc. Belenes    3010  MARTI
## 1150 409106 2019 Guadalajara        Belenes Suc. Belenes    3021  ABARR
## 1151 409203 2019 Guadalajara        Belenes Suc. Belenes    3027  MAYEL
## 1152 409300 2019 Guadalajara        Belenes Suc. Belenes    3035  RICAR
## 1153 409393 2019 Guadalajara        Belenes Suc. Belenes    3039  LA VA
## 1154 409630 2019 Guadalajara        Belenes Suc. Belenes    3067  ABARR
## 1155 409692 2019 Guadalajara        Belenes Suc. Belenes    3069  MODEL
## 1156 409763 2019 Guadalajara        Belenes Suc. Belenes    3071  MARIO
## 1157 409894 2019 Guadalajara        Belenes Suc. Belenes    3117  ABARR
## 1158 410285 2019 Guadalajara        Belenes Suc. Belenes    3165  ARON 
## 1159 410367 2019 Guadalajara        Belenes Suc. Belenes    3167  ABARR
## 1160 410469 2019 Guadalajara        Belenes Suc. Belenes    3168  ABARR
## 1161 410553 2019 Guadalajara        Belenes Suc. Belenes    3169  ANA L
## 1162 410620 2019 Guadalajara        Belenes Suc. Belenes    3182  ABARR
## 1163 410999 2019 Guadalajara        Belenes Suc. Belenes    3235  MARIA
## 1164 411174 2019 Guadalajara        Belenes Suc. Belenes    3256  DANIE
## 1165 411405 2019 Guadalajara        Belenes Suc. Belenes    3269  BALDO
## 1166 411560 2019 Guadalajara        Belenes Suc. Belenes     410  LUZ M
## 1167 411627 2019 Guadalajara        Belenes Suc. Belenes     712  OSVAL
## 1168 411789 2019 Guadalajara        Belenes Suc. Belenes    1769  ABARR
## 1169 411980 2019 Guadalajara        Belenes Suc. Belenes    2482  ABARR
## 1170 412079 2019 Guadalajara        Belenes Suc. Belenes    2483  NOE H
## 1171 412365 2019 Guadalajara        Belenes Suc. Belenes    2515  ANA R
## 1172 412431 2019 Guadalajara        Belenes Suc. Belenes    2517  MARIA
## 1173 412476 2019 Guadalajara        Belenes Suc. Belenes    2545  HECTO
## 1174 412541 2019 Guadalajara        Belenes Suc. Belenes    2548  CESAR
## 1175 412612 2019 Guadalajara        Belenes Suc. Belenes    2551  MARIA
## 1176 412670 2019 Guadalajara        Belenes Suc. Belenes    2561  ABARR
## 1177 412758 2019 Guadalajara        Belenes Suc. Belenes    2562  JAVIE
## 1178 412871 2019 Guadalajara        Belenes Suc. Belenes    2564  HERLI
## 1179 413004 2019 Guadalajara        Belenes Suc. Belenes    2570  TIEND
## 1180 413081 2019 Guadalajara        Belenes Suc. Belenes    2572  VINOS
## 1181 413156 2019 Guadalajara        Belenes Suc. Belenes    2584  ABARR
## 1182 413250 2019 Guadalajara        Belenes Suc. Belenes    2599  HECTO
## 1183 413328 2019 Guadalajara        Belenes Suc. Belenes    2601  ABARR
## 1184 413606 2019 Guadalajara        Belenes Suc. Belenes    2637  ABARR
## 1185 413659 2019 Guadalajara        Belenes Suc. Belenes    2702  ABARR
## 1186 413801 2019 Guadalajara        Belenes Suc. Belenes    2769  HUMBE
## 1187 413859 2019 Guadalajara        Belenes Suc. Belenes    2771  ABARR
## 1188 413978 2019 Guadalajara        Belenes Suc. Belenes    2897  MINIS
## 1189 414164 2019 Guadalajara        Belenes Suc. Belenes    2918  ABARR
## 1190 414254 2019 Guadalajara        Belenes Suc. Belenes    2923  EMILI
## 1191 414430 2019 Guadalajara        Belenes Suc. Belenes    2982  JOSE 
## 1192 414520 2019 Guadalajara        Belenes Suc. Belenes    2996  ABARR
## 1193 414647 2019 Guadalajara        Belenes Suc. Belenes    3017  OSCAR
## 1194 414775 2019 Guadalajara        Belenes Suc. Belenes    3033  CLAUD
## 1195 414849 2019 Guadalajara        Belenes Suc. Belenes    3060  ABARR
## 1196 415104 2019 Guadalajara        Belenes Suc. Belenes    3126  JOSE 
## 1197 415205 2019 Guadalajara        Belenes Suc. Belenes    3176  SANTI
## 1198 415295 2019 Guadalajara        Belenes Suc. Belenes    3185  MARIA
## 1199 415405 2019 Guadalajara        Belenes Suc. Belenes    3256  JOSE 
## 1200 415710 2019 Guadalajara        Belenes Suc. Belenes    3289  CREME
## 1201 415794 2019 Guadalajara        Belenes Suc. Belenes    3293  ABARR
## 1202 415908 2019 Guadalajara        Belenes Suc. Belenes    8300  JOSE 
## 1203 416063 2019 Guadalajara        Belenes Suc. Belenes    8318  MISCE
## 1204 416163 2019 Guadalajara        Belenes Suc. Belenes     763  JUAN 
## 1205 200111 2018 Guadalajara        Belenes Suc. Belenes    7800  SAN I
## 1206 200225 2018 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 1207 200462 2018 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 1208 200577 2018 Guadalajara        Belenes Suc. Belenes    8010  ABARR
## 1209 200683 2018 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 1210 200784 2018 Guadalajara        Belenes Suc. Belenes    8201  MIGUE
## 1211 200887 2018 Guadalajara        Belenes Suc. Belenes    8284  MINI 
## 1212 201314 2018 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 1213 201521 2018 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 1214 201626 2018 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 1215 201752 2018 Guadalajara        Belenes Suc. Belenes    9017  MINIS
## 1216 201986 2018 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 1217 202269 2018 Guadalajara        Belenes Suc. Belenes    9186  EMPOR
## 1218 202357 2018 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 1219 202609 2018 Guadalajara        Belenes Suc. Belenes    9462  MINI 
## 1220 202810 2018 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 1221 203104 2018 Guadalajara        Belenes Suc. Belenes    9603  ABARR
## 1222 203626 2018 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 1223 203729 2018 Guadalajara        Belenes Suc. Belenes    9742  ABARR
## 1224 204009 2018 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 1225 204839 2018 Guadalajara        Belenes Suc. Belenes     154  ABARR
## 1226 205582 2018 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 1227 205803 2018 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 1228 206112 2018 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 1229 206247 2018 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 1230 206348 2018 Guadalajara        Belenes Suc. Belenes     535  MINIS
## 1231 206792 2018 Guadalajara        Belenes Suc. Belenes     651  SUPER
## 1232 207305 2018 Guadalajara        Belenes Suc. Belenes     921  MOISE
## 1233 207992 2018 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 1234 208215 2018 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 1235 208410 2018 Guadalajara        Belenes Suc. Belenes    1388  OSVAL
## 1236 208518 2018 Guadalajara        Belenes Suc. Belenes    1393  SUPER
## 1237 208980 2018 Guadalajara        Belenes Suc. Belenes    1635  LA HI
## 1238 209684 2018 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 1239 210408 2018 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 1240 210906 2018 Guadalajara        Belenes Suc. Belenes    2075  MARTH
## 1241 211018 2018 Guadalajara        Belenes Suc. Belenes    2146  ABARR
## 1242 211223 2018 Guadalajara        Belenes Suc. Belenes    2294  JOSE 
## 1243 211745 2018 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 1244 212845 2018 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 1245 213425 2018 Guadalajara        Belenes Suc. Belenes    2486  ABARR
## 1246 213918 2018 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 1247 214117 2018 Guadalajara        Belenes Suc. Belenes    2912  ABARR
## 1248 214340 2018 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 1249 243732 2018 Guadalajara        Belenes Suc. Belenes    7802  ANTON
## 1250 245420 2018 Guadalajara        Belenes Suc. Belenes    9164  DANIE
## 1251 247456 2018 Guadalajara        Belenes Suc. Belenes      67  LA PR
## 1252 254854 2018 Guadalajara        Belenes Suc. Belenes    2777  CEREA
## 1253 259473 2018 Guadalajara        Belenes Suc. Belenes    2441  DEPOS
## 1254 259754 2018 Guadalajara        Belenes Suc. Belenes    3057  HOGAR
## 1255 260105 2018 Guadalajara        Belenes Suc. Belenes     335  FELIP
## 1256 261280 2018 Guadalajara        Belenes Suc. Belenes    9504  MARTH
## 1257 262238 2018 Guadalajara        Belenes Suc. Belenes    3925  JOSE 
## 1258 262480 2018 Guadalajara        Belenes Suc. Belenes    8784  ABARR
## 1259 304193 2019 Guadalajara        Belenes Suc. Belenes    7796  MARIA
## 1260 304279 2019 Guadalajara        Belenes Suc. Belenes    7800  SAN I
## 1261 304389 2019 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 1262 304489 2019 Guadalajara        Belenes Suc. Belenes    7884  ABARR
## 1263 304595 2019 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 1264 304695 2019 Guadalajara        Belenes Suc. Belenes    8010  ABARR
## 1265 304797 2019 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 1266 304892 2019 Guadalajara        Belenes Suc. Belenes    8201  MIGUE
## 1267 304989 2019 Guadalajara        Belenes Suc. Belenes    8284  MINI 
## 1268 305064 2019 Guadalajara        Belenes Suc. Belenes    8678  FERNA
## 1269 305125 2019 Guadalajara        Belenes Suc. Belenes    8689  ABARR
## 1270 305273 2019 Guadalajara        Belenes Suc. Belenes    8696  ABARR
## 1271 305346 2019 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 1272 305439 2019 Guadalajara        Belenes Suc. Belenes    8842  ABARR
## 1273 305531 2019 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 1274 305618 2019 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 1275 305732 2019 Guadalajara        Belenes Suc. Belenes    9017  MINIS
## 1276 305835 2019 Guadalajara        Belenes Suc. Belenes    9041  ABARR
## 1277 305951 2019 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 1278 306142 2019 Guadalajara        Belenes Suc. Belenes    9169  ISABE
## 1279 306210 2019 Guadalajara        Belenes Suc. Belenes    9186  EMPOR
## 1280 306287 2019 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 1281 306398 2019 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 1282 306524 2019 Guadalajara        Belenes Suc. Belenes    9462  MINI 
## 1283 306697 2019 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 1284 306804 2019 Guadalajara        Belenes Suc. Belenes    9574  ABARR
## 1285 306975 2019 Guadalajara        Belenes Suc. Belenes    9603  ABARR
## 1286 307069 2019 Guadalajara        Belenes Suc. Belenes    9615  TIEND
## 1287 307253 2019 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 1288 307367 2019 Guadalajara        Belenes Suc. Belenes    9671  ABARR
## 1289 307470 2019 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 1290 307572 2019 Guadalajara        Belenes Suc. Belenes    9742  ABARR
## 1291 307654 2019 Guadalajara        Belenes Suc. Belenes    9743  ABARR
## 1292 307739 2019 Guadalajara        Belenes Suc. Belenes    9767  ABARR
## 1293 307845 2019 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 1294 308039 2019 Guadalajara        Belenes Suc. Belenes    9884  ABARR
## 1295 308148 2019 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 1296 308244 2019 Guadalajara        Belenes Suc. Belenes    9915  ADAN 
## 1297 308482 2019 Guadalajara        Belenes Suc. Belenes     100  ABARR
## 1298 308582 2019 Guadalajara        Belenes Suc. Belenes     154  ABARR
## 1299 308969 2019 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 1300 309065 2019 Guadalajara        Belenes Suc. Belenes     280  MERCE
## 1301 309144 2019 Guadalajara        Belenes Suc. Belenes     286  SIX T
## 1302 309244 2019 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 1303 309439 2019 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 1304 309541 2019 Guadalajara        Belenes Suc. Belenes     407  LUIS 
## 1305 309622 2019 Guadalajara        Belenes Suc. Belenes     426  ANTON
## 1306 309709 2019 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 1307 309826 2019 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 1308 309929 2019 Guadalajara        Belenes Suc. Belenes     535  MINIS
## 1309 310124 2019 Guadalajara        Belenes Suc. Belenes     597  ALBIN
## 1310 310213 2019 Guadalajara        Belenes Suc. Belenes     623  MARIA
## 1311 310327 2019 Guadalajara        Belenes Suc. Belenes     651  SUPER
## 1312 310420 2019 Guadalajara        Belenes Suc. Belenes     652  ABARR
## 1313 310538 2019 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 1314 310645 2019 Guadalajara        Belenes Suc. Belenes     786  ABARR
## 1315 310727 2019 Guadalajara        Belenes Suc. Belenes     905  EDGAR
## 1316 310815 2019 Guadalajara        Belenes Suc. Belenes     921  MOISE
## 1317 310924 2019 Guadalajara        Belenes Suc. Belenes     932  MARIA
## 1318 311042 2019 Guadalajara        Belenes Suc. Belenes    1030  ABARR
## 1319 311221 2019 Guadalajara        Belenes Suc. Belenes    1116  ABARR
## 1320 311293 2019 Guadalajara        Belenes Suc. Belenes    1160  ABARR
## 1321 311384 2019 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 1322 311493 2019 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 1323 311602 2019 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 1324 311858 2019 Guadalajara        Belenes Suc. Belenes    1393  SUPER
## 1325 311968 2019 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 1326 312075 2019 Guadalajara        Belenes Suc. Belenes    1420  MARCE
## 1327 312204 2019 Guadalajara        Belenes Suc. Belenes    1543  EMMAN
## 1328 312303 2019 Guadalajara        Belenes Suc. Belenes    1635  LA HI
## 1329 312409 2019 Guadalajara        Belenes Suc. Belenes    1664  ABARR
## 1330 312511 2019 Guadalajara        Belenes Suc. Belenes    1713  MISCE
## 1331 312600 2019 Guadalajara        Belenes Suc. Belenes    1716  ABARR
## 1332 312708 2019 Guadalajara        Belenes Suc. Belenes    1731  NORBE
## 1333 312848 2019 Guadalajara        Belenes Suc. Belenes    1759  ELVA 
## 1334 312960 2019 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 1335 313059 2019 Guadalajara        Belenes Suc. Belenes    1791  ALICI
## 1336 313154 2019 Guadalajara        Belenes Suc. Belenes    1795  ABARR
## 1337 313245 2019 Guadalajara        Belenes Suc. Belenes    1812  ABARR
## 1338 313349 2019 Guadalajara        Belenes Suc. Belenes    1818  LA LO
## 1339 313429 2019 Guadalajara        Belenes Suc. Belenes    1859  MARIA
## 1340 313603 2019 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 1341 313783 2019 Guadalajara        Belenes Suc. Belenes    1956  ABARR
## 1342 313889 2019 Guadalajara        Belenes Suc. Belenes    2000  ABARR
## 1343 313981 2019 Guadalajara        Belenes Suc. Belenes    2047  LA ME
## 1344 314042 2019 Guadalajara        Belenes Suc. Belenes    2075  MARTH
## 1345 314240 2019 Guadalajara        Belenes Suc. Belenes    2242  ABARR
## 1346 314318 2019 Guadalajara        Belenes Suc. Belenes    2294  JOSE 
## 1347 314398 2019 Guadalajara        Belenes Suc. Belenes    2399  ABARR
## 1348 314498 2019 Guadalajara        Belenes Suc. Belenes    2413  LA CH
## 1349 314624 2019 Guadalajara        Belenes Suc. Belenes    2529  ABARR
## 1350 314804 2019 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 1351 314913 2019 Guadalajara        Belenes Suc. Belenes    2702  JOSE 
## 1352 314998 2019 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 1353 315199 2019 Guadalajara        Belenes Suc. Belenes    2795  ABARR
## 1354 315295 2019 Guadalajara        Belenes Suc. Belenes    2861  ABARR
## 1355 315380 2019 Guadalajara        Belenes Suc. Belenes    2912  BRAUL
## 1356 315485 2019 Guadalajara        Belenes Suc. Belenes    2926  J JES
## 1357 315560 2019 Guadalajara        Belenes Suc. Belenes    2993  MARTI
## 1358 315649 2019 Guadalajara        Belenes Suc. Belenes    3023  ABARR
## 1359 315733 2019 Guadalajara        Belenes Suc. Belenes    3060  MARIA
## 1360 315794 2019 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 1361 315892 2019 Guadalajara        Belenes Suc. Belenes    3085  SUPER
## 1362 316070 2019 Guadalajara        Belenes Suc. Belenes    3179  LA DU
## 1363 316150 2019 Guadalajara        Belenes Suc. Belenes    3189  FRANC
## 1364 316229 2019 Guadalajara        Belenes Suc. Belenes    6688  SALVA
## 1365 316295 2019 Guadalajara        Belenes Suc. Belenes    2486  ABARR
## 1366 316691 2019 Guadalajara        Belenes Suc. Belenes    2622  TORIB
## 1367 316726 2019 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 1368 316924 2019 Guadalajara        Belenes Suc. Belenes    2912  ABARR
## 1369 317124 2019 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 1370 317539 2019 Guadalajara        Belenes Suc. Belenes    7778  MARIA
## 1371 317588 2019 Guadalajara        Belenes Suc. Belenes    7802  ANTON
## 1372 317787 2019 Guadalajara        Belenes Suc. Belenes    8074  MIGUE
## 1373 317865 2019 Guadalajara        Belenes Suc. Belenes    8190  GUSTA
## 1374 317934 2019 Guadalajara        Belenes Suc. Belenes    8224  IRMA 
## 1375 318134 2019 Guadalajara        Belenes Suc. Belenes    8635  JOSE 
## 1376 318379 2019 Guadalajara        Belenes Suc. Belenes    8943  MARIA
## 1377 318458 2019 Guadalajara        Belenes Suc. Belenes    9003  SANDR
## 1378 318624 2019 Guadalajara        Belenes Suc. Belenes    9082  DULCE
## 1379 319205 2019 Guadalajara        Belenes Suc. Belenes    9407  ARACE
## 1380 319516 2019 Guadalajara        Belenes Suc. Belenes    9459  OBDUL
## 1381 319551 2019 Guadalajara        Belenes Suc. Belenes    9485  BENIL
## 1382 319730 2019 Guadalajara        Belenes Suc. Belenes    9577  MARIA
## 1383 319762 2019 Guadalajara        Belenes Suc. Belenes    9625  SILVI
## 1384 320141 2019 Guadalajara        Belenes Suc. Belenes    9804  CARME
## 1385 320448 2019 Guadalajara        Belenes Suc. Belenes      30  LAURA
## 1386 320534 2019 Guadalajara        Belenes Suc. Belenes      67  LA PR
## 1387 321013 2019 Guadalajara        Belenes Suc. Belenes     268  CIPRI
## 1388 321033 2019 Guadalajara        Belenes Suc. Belenes     285  ANA G
## 1389 321242 2019 Guadalajara        Belenes Suc. Belenes     464  SIX M
## 1390 321494 2019 Guadalajara        Belenes Suc. Belenes     521  CRIST
## 1391 321748 2019 Guadalajara        Belenes Suc. Belenes     659  ABARR
## 1392 321877 2019 Guadalajara        Belenes Suc. Belenes     702  ELPID
## 1393 321955 2019 Guadalajara        Belenes Suc. Belenes     730  ADALB
## 1394 322084 2019 Guadalajara        Belenes Suc. Belenes     766  ROSA 
## 1395 322132 2019 Guadalajara        Belenes Suc. Belenes     768  FARMA
## 1396 322264 2019 Guadalajara        Belenes Suc. Belenes     821  MONIC
## 1397 322329 2019 Guadalajara        Belenes Suc. Belenes     869  TERES
## 1398 322363 2019 Guadalajara        Belenes Suc. Belenes     910  MARTH
## 1399 322512 2019 Guadalajara        Belenes Suc. Belenes     952  LICON
## 1400 322652 2019 Guadalajara        Belenes Suc. Belenes     996  SIX L
## 1401 322750 2019 Guadalajara        Belenes Suc. Belenes    1058  FRANC
## 1402 322956 2019 Guadalajara        Belenes Suc. Belenes    1165  AMALI
## 1403 323041 2019 Guadalajara        Belenes Suc. Belenes    1175  CREME
## 1404 323274 2019 Guadalajara        Belenes Suc. Belenes    1273  PRIMI
## 1405 323742 2019 Guadalajara        Belenes Suc. Belenes    1462  FIDEL
## 1406 323946 2019 Guadalajara        Belenes Suc. Belenes    1721  RAMON
## 1407 324304 2019 Guadalajara        Belenes Suc. Belenes    1958  MARIA
## 1408 324385 2019 Guadalajara        Belenes Suc. Belenes    2007  CREME
## 1409 324613 2019 Guadalajara        Belenes Suc. Belenes    2078  RUBEN
## 1410 324671 2019 Guadalajara        Belenes Suc. Belenes    2080  MARTH
## 1411 324993 2019 Guadalajara        Belenes Suc. Belenes    2359  JUANA
## 1412 325065 2019 Guadalajara        Belenes Suc. Belenes    2364  LUCY 
## 1413 325097 2019 Guadalajara        Belenes Suc. Belenes    2385  SEMIL
## 1414 325618 2019 Guadalajara        Belenes Suc. Belenes    2639  SONIA
## 1415 325714 2019 Guadalajara        Belenes Suc. Belenes    2680  OFELI
## 1416 325730 2019 Guadalajara        Belenes Suc. Belenes    2700  MARIA
## 1417 325771 2019 Guadalajara        Belenes Suc. Belenes    2734  OSCAR
## 1418 325861 2019 Guadalajara        Belenes Suc. Belenes    2760  ABARR
## 1419 325927 2019 Guadalajara        Belenes Suc. Belenes    2777  CEREA
## 1420 326291 2019 Guadalajara        Belenes Suc. Belenes    2913  MARIA
## 1421 326625 2019 Guadalajara        Belenes Suc. Belenes    3017  MARIA
## 1422 326681 2019 Guadalajara        Belenes Suc. Belenes    3018  ABARR
## 1423 326896 2019 Guadalajara        Belenes Suc. Belenes    3175  MARIA
## 1424 327170 2019 Guadalajara        Belenes Suc. Belenes    1056  ABARR
## 1425 327419 2019 Guadalajara        Belenes Suc. Belenes    6647  DULCE
## 1426 327675 2019 Guadalajara        Belenes Suc. Belenes    7611  MARTI
## 1427 327943 2019 Guadalajara        Belenes Suc. Belenes    2612  TORIB
## 1428 328140 2019 Guadalajara        Belenes Suc. Belenes    2795  CELIA
## 1429 328454 2019 Guadalajara        Belenes Suc. Belenes    2983  MARIA
## 1430 328595 2019 Guadalajara        Belenes Suc. Belenes    3049  NORMA
## 1431 328652 2019 Guadalajara        Belenes Suc. Belenes    3109  RODOL
## 1432 329114 2019 Guadalajara        Belenes Suc. Belenes    9295  ABARR
## 1433 329199 2019 Guadalajara        Belenes Suc. Belenes    1719  MISCE
## 1434 329439 2019 Guadalajara        Belenes Suc. Belenes    3596  MISCE
## 1435 329481 2019 Guadalajara        Belenes Suc. Belenes    3598  MISCE
## 1436 329582 2019 Guadalajara        Belenes Suc. Belenes    4648  DESEC
## 1437 329822 2019 Guadalajara        Belenes Suc. Belenes     335  FELIP
## 1438 329893 2019 Guadalajara        Belenes Suc. Belenes     384  VERON
## 1439 330072 2019 Guadalajara        Belenes Suc. Belenes    1289  MISCE
## 1440 330105 2019 Guadalajara        Belenes Suc. Belenes    1298  SUPER
## 1441 330537 2019 Guadalajara        Belenes Suc. Belenes    7373  MISCE
## 1442 330792 2019 Guadalajara        Belenes Suc. Belenes    8516  MISCE
## 1443 330871 2019 Guadalajara        Belenes Suc. Belenes    8528  CREME
## 1444 330899 2019 Guadalajara        Belenes Suc. Belenes    8532  MISCE
## 1445 330944 2019 Guadalajara        Belenes Suc. Belenes    8534  CREME
## 1446 331126 2019 Guadalajara        Belenes Suc. Belenes    9500  REBEC
## 1447 331204 2019 Guadalajara        Belenes Suc. Belenes    9504  MARTH
## 1448 331322 2019 Guadalajara        Belenes Suc. Belenes    9510  MICEL
## 1449 331385 2019 Guadalajara        Belenes Suc. Belenes      17  DEPOS
## 1450 331746 2019 Guadalajara        Belenes Suc. Belenes    7437  MISCE
## 1451 331827 2019 Guadalajara        Belenes Suc. Belenes    1760  MISCE
## 1452 332006 2019 Guadalajara        Belenes Suc. Belenes    3377  MISCE
## 1453 332122 2019 Guadalajara        Belenes Suc. Belenes    3398  HOGAR
## 1454 332342 2019 Guadalajara        Belenes Suc. Belenes    6008  BERTH
## 1455 332541 2019 Guadalajara        Belenes Suc. Belenes    3917  ABARR
## 1456 332623 2019 Guadalajara        Belenes Suc. Belenes    3929  MISCE
## 1457 332702 2019 Guadalajara        Belenes Suc. Belenes    9296  BEATR
## 1458 332820 2019 Guadalajara        Belenes Suc. Belenes    5582  CARLO
## 1459 332968 2019 Guadalajara        Belenes Suc. Belenes    5592  MA DE
## 1460 333030 2019 Guadalajara        Belenes Suc. Belenes    8122  FRUTA
## 1461 333099 2019 Guadalajara        Belenes Suc. Belenes    8784  ABARR
## 1462 333303 2019 Guadalajara        Belenes Suc. Belenes    9132  JUAN 
## 1463 333319 2019 Guadalajara        Belenes Suc. Belenes    9352  KARLA
## 1464 333386 2019 Guadalajara        Belenes Suc. Belenes    9773  SILVI
## 1465 333443 2019 Guadalajara        Belenes Suc. Belenes    9774  ABARR
## 1466 333607 2019 Guadalajara        Belenes Suc. Belenes    5562  DAVID
## 1467 333665 2019 Guadalajara        Belenes Suc. Belenes    6101  MISCE
## 1468 333725 2019 Guadalajara        Belenes Suc. Belenes    6103  CREME
## 1469 333809 2019 Guadalajara        Belenes Suc. Belenes    6523  ABARR
## 1470 333901 2019 Guadalajara        Belenes Suc. Belenes    7208  MARGA
## 1471 334002 2019 Guadalajara        Belenes Suc. Belenes    5729  RUBEN
## 1472 334144 2019 Guadalajara        Belenes Suc. Belenes    7720  VINOS
## 1473 334195 2019 Guadalajara        Belenes Suc. Belenes    7743  ABIGA
## 1474 334250 2019 Guadalajara        Belenes Suc. Belenes    7772  VINOS
## 1475 334306 2019 Guadalajara        Belenes Suc. Belenes    7775  BERTH
## 1476 334542 2019 Guadalajara        Belenes Suc. Belenes    7794  ABARR
## 1477 334882 2019 Guadalajara        Belenes Suc. Belenes    7848  BERTH
## 1478 334932 2019 Guadalajara        Belenes Suc. Belenes    7849  FRANC
## 1479 334979 2019 Guadalajara        Belenes Suc. Belenes    7853  ABARR
## 1480 335036 2019 Guadalajara        Belenes Suc. Belenes    7854  FRANC
## 1481 335107 2019 Guadalajara        Belenes Suc. Belenes    7867  EL CO
## 1482 335167 2019 Guadalajara        Belenes Suc. Belenes    7883  MARTH
## 1483 335222 2019 Guadalajara        Belenes Suc. Belenes    7890  CARLO
## 1484 335286 2019 Guadalajara        Belenes Suc. Belenes    7893  MISCE
## 1485 335522 2019 Guadalajara        Belenes Suc. Belenes    8045  TERES
## 1486 335782 2019 Guadalajara        Belenes Suc. Belenes    8116  MIGUE
## 1487 335830 2019 Guadalajara        Belenes Suc. Belenes    8142  ABARR
## 1488 335890 2019 Guadalajara        Belenes Suc. Belenes    8144  MINI 
## 1489 336651 2019 Guadalajara        Belenes Suc. Belenes    8636  MARIA
## 1490 337070 2019 Guadalajara        Belenes Suc. Belenes    8937  MARIA
## 1491 337134 2019 Guadalajara        Belenes Suc. Belenes    8942  ANTON
## 1492 337221 2019 Guadalajara        Belenes Suc. Belenes    8949  ELISA
## 1493 337300 2019 Guadalajara        Belenes Suc. Belenes    8962  ELOIS
## 1494 337413 2019 Guadalajara        Belenes Suc. Belenes    8971  ANA M
## 1495 337492 2019 Guadalajara        Belenes Suc. Belenes    8987  MISCE
## 1496 337607 2019 Guadalajara        Belenes Suc. Belenes    8994  MISCE
## 1497 337651 2019 Guadalajara        Belenes Suc. Belenes    9037  VICTO
## 1498 338393 2019 Guadalajara        Belenes Suc. Belenes    9150  FELIZ
## 1499 338482 2019 Guadalajara        Belenes Suc. Belenes    9170  JORGE
## 1500 338572 2019 Guadalajara        Belenes Suc. Belenes    9191  ANGEL
## 1501 338842 2019 Guadalajara        Belenes Suc. Belenes    9263  BEATR
## 1502 338903 2019 Guadalajara        Belenes Suc. Belenes    9280  MISCE
## 1503 338961 2019 Guadalajara        Belenes Suc. Belenes    9285  GUILL
## 1504 339040 2019 Guadalajara        Belenes Suc. Belenes    9300  MISCE
## 1505 339108 2019 Guadalajara        Belenes Suc. Belenes    9302  ISAUR
## 1506 339240 2019 Guadalajara        Belenes Suc. Belenes    9346  ENRIQ
## 1507 339353 2019 Guadalajara        Belenes Suc. Belenes    9362  ANA M
## 1508 339421 2019 Guadalajara        Belenes Suc. Belenes    9363  TERES
## 1509 339484 2019 Guadalajara        Belenes Suc. Belenes    9372  CLARA
## 1510 339581 2019 Guadalajara        Belenes Suc. Belenes    9374  SALVA
## 1511 339627 2019 Guadalajara        Belenes Suc. Belenes    9380  AVELI
## 1512 340031 2019 Guadalajara        Belenes Suc. Belenes    9424  J JES
## 1513 340200 2019 Guadalajara        Belenes Suc. Belenes    9440  ROSA 
## 1514 340325 2019 Guadalajara        Belenes Suc. Belenes    9518  MARTH
## 1515 340442 2019 Guadalajara        Belenes Suc. Belenes    9540  ERIKA
## 1516 340556 2019 Guadalajara        Belenes Suc. Belenes    9546  RODOL
## 1517 340682 2019 Guadalajara        Belenes Suc. Belenes    9556  MARTH
## 1518 340926 2019 Guadalajara        Belenes Suc. Belenes    9586  DANIE
## 1519 340981 2019 Guadalajara        Belenes Suc. Belenes    9609  NOE G
## 1520 341179 2019 Guadalajara        Belenes Suc. Belenes    9639  MARTH
## 1521 341241 2019 Guadalajara        Belenes Suc. Belenes    9642  GUADA
## 1522 341316 2019 Guadalajara        Belenes Suc. Belenes    9644  JOSEF
## 1523 341435 2019 Guadalajara        Belenes Suc. Belenes    9650  MARIA
## 1524 341517 2019 Guadalajara        Belenes Suc. Belenes    9670  ABARR
## 1525 341581 2019 Guadalajara        Belenes Suc. Belenes    9673  ANGEL
## 1526 341840 2019 Guadalajara        Belenes Suc. Belenes    9723  MARIA
## 1527 341999 2019 Guadalajara        Belenes Suc. Belenes    9738  ABARR
## 1528 342079 2019 Guadalajara        Belenes Suc. Belenes    9757  MARIA
## 1529 342195 2019 Guadalajara        Belenes Suc. Belenes    9764  ABARR
## 1530 342392 2019 Guadalajara        Belenes Suc. Belenes    9787  FILIB
## 1531 342471 2019 Guadalajara        Belenes Suc. Belenes    9790  MARIA
## 1532 342711 2019 Guadalajara        Belenes Suc. Belenes    9817  MARIO
## 1533 342899 2019 Guadalajara        Belenes Suc. Belenes    9850  ABARR
## 1534 342959 2019 Guadalajara        Belenes Suc. Belenes    9852  DANIE
## 1535 343020 2019 Guadalajara        Belenes Suc. Belenes    9854  ROCIO
## 1536 343095 2019 Guadalajara        Belenes Suc. Belenes    9864  CIBER
## 1537 343250 2019 Guadalajara        Belenes Suc. Belenes    9899  GABRI
## 1538 343526 2019 Guadalajara        Belenes Suc. Belenes    9939  CLEME
## 1539 343655 2019 Guadalajara        Belenes Suc. Belenes    9941  ABARR
## 1540 344050 2019 Guadalajara        Belenes Suc. Belenes      24  MISCE
## 1541 344134 2019 Guadalajara        Belenes Suc. Belenes      28  JUAN 
## 1542 344633 2019 Guadalajara        Belenes Suc. Belenes      83  RAUL 
## 1543 344867 2019 Guadalajara        Belenes Suc. Belenes      99  ENEID
## 1544 345038 2019 Guadalajara        Belenes Suc. Belenes     108  ANACL
## 1545 345225 2019 Guadalajara        Belenes Suc. Belenes     153  ABARR
## 1546 345355 2019 Guadalajara        Belenes Suc. Belenes     158  ABARR
## 1547 345421 2019 Guadalajara        Belenes Suc. Belenes     161  MARIA
## 1548 345571 2019 Guadalajara        Belenes Suc. Belenes     176  ABARR
## 1549 345632 2019 Guadalajara        Belenes Suc. Belenes     178  ABARR
## 1550 345758 2019 Guadalajara        Belenes Suc. Belenes     205  ABARR
## 1551 345819 2019 Guadalajara        Belenes Suc. Belenes     208  MANUE
## 1552 345860 2019 Guadalajara        Belenes Suc. Belenes     210  MARIA
## 1553 345994 2019 Guadalajara        Belenes Suc. Belenes     260  MARIA
## 1554 346208 2019 Guadalajara        Belenes Suc. Belenes     277  MANUE
## 1555 346322 2019 Guadalajara        Belenes Suc. Belenes     308  GABRI
## 1556 346417 2019 Guadalajara        Belenes Suc. Belenes     369  PEDRO
## 1557 346569 2019 Guadalajara        Belenes Suc. Belenes     397  FRANC
## 1558 346637 2019 Guadalajara        Belenes Suc. Belenes     412  JUVEN
## 1559 346754 2019 Guadalajara        Belenes Suc. Belenes     446  MARIA
## 1560 346803 2019 Guadalajara        Belenes Suc. Belenes     447  VICTO
## 1561 347009 2019 Guadalajara        Belenes Suc. Belenes     457  MARIA
## 1562 347400 2019 Guadalajara        Belenes Suc. Belenes     552  CELIA
## 1563 348065 2019 Guadalajara        Belenes Suc. Belenes     649  MARTH
## 1564 348142 2019 Guadalajara        Belenes Suc. Belenes     653  MARIA
## 1565 348393 2019 Guadalajara        Belenes Suc. Belenes     729  JORGE
## 1566 348547 2019 Guadalajara        Belenes Suc. Belenes     736  MARIA
## 1567 348684 2019 Guadalajara        Belenes Suc. Belenes     774  ABARR
## 1568 348912 2019 Guadalajara        Belenes Suc. Belenes     825  CYNTH
## 1569 348987 2019 Guadalajara        Belenes Suc. Belenes     828  GABRI
## 1570 349164 2019 Guadalajara        Belenes Suc. Belenes     844  HERMI
## 1571 349218 2019 Guadalajara        Belenes Suc. Belenes     845  ABARR
## 1572 349467 2019 Guadalajara        Belenes Suc. Belenes     883  MARIA
## 1573 349595 2019 Guadalajara        Belenes Suc. Belenes     913  RAMON
## 1574 349815 2019 Guadalajara        Belenes Suc. Belenes     940  MANUE
## 1575 350173 2019 Guadalajara        Belenes Suc. Belenes     958  BERTH
## 1576 350241 2019 Guadalajara        Belenes Suc. Belenes     970  ABARR
## 1577 350346 2019 Guadalajara        Belenes Suc. Belenes     975  JOSE 
## 1578 350592 2019 Guadalajara        Belenes Suc. Belenes    1021  ROBER
## 1579 350841 2019 Guadalajara        Belenes Suc. Belenes    1034  MARIA
## 1580 351182 2019 Guadalajara        Belenes Suc. Belenes    1099  PABLO
## 1581 351506 2019 Guadalajara        Belenes Suc. Belenes    1149  ROSA 
## 1582 351569 2019 Guadalajara        Belenes Suc. Belenes    1162  OLGA 
## 1583 351639 2019 Guadalajara        Belenes Suc. Belenes    1167  EMERI
## 1584 351807 2019 Guadalajara        Belenes Suc. Belenes    1183  RAYIT
## 1585 351883 2019 Guadalajara        Belenes Suc. Belenes    1192  FELIP
## 1586 352328 2019 Guadalajara        Belenes Suc. Belenes    1288  ABARR
## 1587 352656 2019 Guadalajara        Belenes Suc. Belenes    1344  MA GU
## 1588 352725 2019 Guadalajara        Belenes Suc. Belenes    1347  JOSE 
## 1589 352789 2019 Guadalajara        Belenes Suc. Belenes    1350  MONIC
## 1590 352849 2019 Guadalajara        Belenes Suc. Belenes    1356  ANGEL
## 1591 352954 2019 Guadalajara        Belenes Suc. Belenes    1371  ABARR
## 1592 353143 2019 Guadalajara        Belenes Suc. Belenes    1385  MARIA
## 1593 353213 2019 Guadalajara        Belenes Suc. Belenes    1391  VICTO
## 1594 353488 2019 Guadalajara        Belenes Suc. Belenes    1470  AMPEL
## 1595 353559 2019 Guadalajara        Belenes Suc. Belenes    1477  ABARR
## 1596 353681 2019 Guadalajara        Belenes Suc. Belenes    1492  MARGA
## 1597 353920 2019 Guadalajara        Belenes Suc. Belenes    1536  ABARR
## 1598 354002 2019 Guadalajara        Belenes Suc. Belenes    1537  BALTA
## 1599 354441 2019 Guadalajara        Belenes Suc. Belenes    1609  KARIN
## 1600 354763 2019 Guadalajara        Belenes Suc. Belenes    1707  MIGUE
## 1601 354817 2019 Guadalajara        Belenes Suc. Belenes    1708  BREND
## 1602 354937 2019 Guadalajara        Belenes Suc. Belenes    1726  CARME
## 1603 355365 2019 Guadalajara        Belenes Suc. Belenes    1752  BEATR
## 1604 355435 2019 Guadalajara        Belenes Suc. Belenes    1753  MARIA
## 1605 355631 2019 Guadalajara        Belenes Suc. Belenes    1776  FERNA
## 1606 355750 2019 Guadalajara        Belenes Suc. Belenes    1796  NORMA
## 1607 355831 2019 Guadalajara        Belenes Suc. Belenes    1811  MARIA
## 1608 355905 2019 Guadalajara        Belenes Suc. Belenes    1813  JAIME
## 1609 355978 2019 Guadalajara        Belenes Suc. Belenes    1815  SERGI
## 1610 356101 2019 Guadalajara        Belenes Suc. Belenes    1861  ABARR
## 1611 356209 2019 Guadalajara        Belenes Suc. Belenes    1895  JOSE 
## 1612 356435 2019 Guadalajara        Belenes Suc. Belenes    1931  HUMBE
## 1613 356509 2019 Guadalajara        Belenes Suc. Belenes    1940  LILIA
## 1614 356664 2019 Guadalajara        Belenes Suc. Belenes    1950  AUREL
## 1615 356751 2019 Guadalajara        Belenes Suc. Belenes    1964  IVAN 
## 1616 356791 2019 Guadalajara        Belenes Suc. Belenes    1967  ABARR
## 1617 357332 2019 Guadalajara        Belenes Suc. Belenes    2046  CATAR
## 1618 357446 2019 Guadalajara        Belenes Suc. Belenes    2072  MARIA
## 1619 357576 2019 Guadalajara        Belenes Suc. Belenes    2104  LUZ R
## 1620 357601 2019 Guadalajara        Belenes Suc. Belenes    2105  FRANC
## 1621 357682 2019 Guadalajara        Belenes Suc. Belenes    2121  EFRAI
## 1622 357752 2019 Guadalajara        Belenes Suc. Belenes    2122  FER T
## 1623 358110 2019 Guadalajara        Belenes Suc. Belenes    2151  MONIC
## 1624 358317 2019 Guadalajara        Belenes Suc. Belenes    2204  ABARR
## 1625 358458 2019 Guadalajara        Belenes Suc. Belenes    2238  CECIL
## 1626 358500 2019 Guadalajara        Belenes Suc. Belenes    2241  MARIA
## 1627 358867 2019 Guadalajara        Belenes Suc. Belenes    2273  GLORI
## 1628 359341 2019 Guadalajara        Belenes Suc. Belenes    2391  MARIA
## 1629 359371 2019 Guadalajara        Belenes Suc. Belenes    2393  CARLO
## 1630 359429 2019 Guadalajara        Belenes Suc. Belenes    2402  ABARR
## 1631 359489 2019 Guadalajara        Belenes Suc. Belenes    2435  VINOS
## 1632 359963 2019 Guadalajara        Belenes Suc. Belenes    2487  MARIA
## 1633 360202 2019 Guadalajara        Belenes Suc. Belenes    2507  ALEJA
## 1634 360731 2019 Guadalajara        Belenes Suc. Belenes    2547  VIVIA
## 1635 360943 2019 Guadalajara        Belenes Suc. Belenes    2591  ABARR
## 1636 361152 2019 Guadalajara        Belenes Suc. Belenes    2633  ALFRE
## 1637 361418 2019 Guadalajara        Belenes Suc. Belenes    2678  SAMUE
## 1638 361488 2019 Guadalajara        Belenes Suc. Belenes    2685  ANA L
## 1639 361539 2019 Guadalajara        Belenes Suc. Belenes    2686  ABARR
## 1640 361626 2019 Guadalajara        Belenes Suc. Belenes    2704  JOSE 
## 1641 361768 2019 Guadalajara        Belenes Suc. Belenes    2710  MARTI
## 1642 361844 2019 Guadalajara        Belenes Suc. Belenes    2713  JOSE 
## 1643 361921 2019 Guadalajara        Belenes Suc. Belenes    2718  JOSE 
## 1644 362005 2019 Guadalajara        Belenes Suc. Belenes    2722  MARIA
## 1645 362029 2019 Guadalajara        Belenes Suc. Belenes    2725  ABARR
## 1646 362096 2019 Guadalajara        Belenes Suc. Belenes    2727  ABARR
## 1647 362277 2019 Guadalajara        Belenes Suc. Belenes    2736  AZUCE
## 1648 362346 2019 Guadalajara        Belenes Suc. Belenes    2749  ABARR
## 1649 362575 2019 Guadalajara        Belenes Suc. Belenes    2780  ABARR
## 1650 362863 2019 Guadalajara        Belenes Suc. Belenes    2803  MARIA
## 1651 363473 2019 Guadalajara        Belenes Suc. Belenes    2863  CARLO
## 1652 363583 2019 Guadalajara        Belenes Suc. Belenes    2874  ESPER
## 1653 363653 2019 Guadalajara        Belenes Suc. Belenes    2882  SALVA
## 1654 363978 2019 Guadalajara        Belenes Suc. Belenes    2920  LUIS 
## 1655 364124 2019 Guadalajara        Belenes Suc. Belenes    2928  CARME
## 1656 364189 2019 Guadalajara        Belenes Suc. Belenes    2962  CARNI
## 1657 364274 2019 Guadalajara        Belenes Suc. Belenes    2977  MARIA
## 1658 364409 2019 Guadalajara        Belenes Suc. Belenes    2983  MARIA
## 1659 364816 2019 Guadalajara        Belenes Suc. Belenes    3059  ABARR
## 1660 364911 2019 Guadalajara        Belenes Suc. Belenes    3087  CARME
## 1661 364965 2019 Guadalajara        Belenes Suc. Belenes    3090  ELVIR
## 1662 365097 2019 Guadalajara        Belenes Suc. Belenes    3100  IRMA 
## 1663 365390 2019 Guadalajara        Belenes Suc. Belenes    3141  JOSE 
## 1664 365500 2019 Guadalajara        Belenes Suc. Belenes    3155  MARGA
## 1665 365540 2019 Guadalajara        Belenes Suc. Belenes    3176  MANUE
## 1666 365649 2019 Guadalajara        Belenes Suc. Belenes    3203  MARIA
## 1667 365709 2019 Guadalajara        Belenes Suc. Belenes    3211  ROBER
## 1668 366192 2019 Guadalajara        Belenes Suc. Belenes       9  ALMA 
## 1669 366369 2019 Guadalajara        Belenes Suc. Belenes      18  ABARR
## 1670 366478 2019 Guadalajara        Belenes Suc. Belenes      26  ABARR
## 1671 366765 2019 Guadalajara        Belenes Suc. Belenes    1610  ABARR
## 1672 367001 2019 Guadalajara        Belenes Suc. Belenes    9397  EL CR
## 1673 367287 2019 Guadalajara        Belenes Suc. Belenes    6013  ABARR
## 1674 367419 2019 Guadalajara        Belenes Suc. Belenes    9641  CREME
## 1675 367631 2019 Guadalajara        Belenes Suc. Belenes    2299  ABARR
## 1676 367751 2019 Guadalajara        Belenes Suc. Belenes    3337  VINOS
## 1677 367811 2019 Guadalajara        Belenes Suc. Belenes    5630  FERNA
## 1678 367900 2019 Guadalajara        Belenes Suc. Belenes    6721  BALDE
## 1679 367967 2019 Guadalajara        Belenes Suc. Belenes     412  ARMAN
## 1680 368022 2019 Guadalajara        Belenes Suc. Belenes     692  HECTO
## 1681 368237 2019 Guadalajara        Belenes Suc. Belenes    6674  LUZ E
## 1682 368396 2019 Guadalajara        Belenes Suc. Belenes    2492  MARCO
## 1683 368617 2019 Guadalajara        Belenes Suc. Belenes    2534  FRANC
## 1684 368691 2019 Guadalajara        Belenes Suc. Belenes    2576  OSCAR
## 1685 368779 2019 Guadalajara        Belenes Suc. Belenes    2585  ADRIA
## 1686 368924 2019 Guadalajara        Belenes Suc. Belenes    2594  RUBEN
## 1687 368987 2019 Guadalajara        Belenes Suc. Belenes    2600  ABARR
## 1688 369383 2019 Guadalajara        Belenes Suc. Belenes    2658  AMPAR
## 1689 369425 2019 Guadalajara        Belenes Suc. Belenes    2671  MARIA
## 1690 369464 2019 Guadalajara        Belenes Suc. Belenes    2672  IRMA 
## 1691 369749 2019 Guadalajara        Belenes Suc. Belenes    2737  ARSEN
## 1692 369782 2019 Guadalajara        Belenes Suc. Belenes    2741  ALMA 
## 1693 369924 2019 Guadalajara        Belenes Suc. Belenes    2802  JUAN 
## 1694 370000 2019 Guadalajara        Belenes Suc. Belenes    2815  ABARR
## 1695 370044 2019 Guadalajara        Belenes Suc. Belenes    2821  MARIA
## 1696 370485 2019 Guadalajara        Belenes Suc. Belenes    2938  ERNES
## 1697 370600 2019 Guadalajara        Belenes Suc. Belenes    2989  BEATR
## 1698 370672 2019 Guadalajara        Belenes Suc. Belenes    3008  YOLAN
## 1699 370772 2019 Guadalajara        Belenes Suc. Belenes    3014  MISCE
## 1700 370969 2019 Guadalajara        Belenes Suc. Belenes    3068  FRANC
## 1701 371138 2019 Guadalajara        Belenes Suc. Belenes    3080  J JES
## 1702 371206 2019 Guadalajara        Belenes Suc. Belenes    3081  IGNAC
## 1703 371362 2019 Guadalajara        Belenes Suc. Belenes    3153  PACHE
## 1704 372186 2019 Guadalajara        Belenes Suc. Belenes    8321  ABARR
## 1705 372284 2019 Guadalajara        Belenes Suc. Belenes    8395  ABARR
## 1706 372516 2019 Guadalajara        Belenes Suc. Belenes    1486  VERON
## 1707 372580 2019 Guadalajara        Belenes Suc. Belenes    1526  MISCE
## 1708 372651 2019 Guadalajara        Belenes Suc. Belenes    1759  MICEL
## 1709 372705 2019 Guadalajara        Belenes Suc. Belenes    2356  CARNI
## 1710 372939 2019 Guadalajara        Belenes Suc. Belenes    9423  MISCE
## 1711 373000 2019 Guadalajara        Belenes Suc. Belenes    9427  HOGAR
## 1712 373089 2019 Guadalajara        Belenes Suc. Belenes     356  JOSE 
## 1713 373308 2019 Guadalajara        Belenes Suc. Belenes    4647  MICEL
## 1714 373451 2019 Guadalajara        Belenes Suc. Belenes    5143  DEPOS
## 1715 373561 2019 Guadalajara        Belenes Suc. Belenes    1291  MICEL
## 1716 373671 2019 Guadalajara        Belenes Suc. Belenes    3493  MISCE
## 1717 373747 2019 Guadalajara        Belenes Suc. Belenes    8514  MISCE
## 1718 373834 2019 Guadalajara        Belenes Suc. Belenes    8526  MISCE
## 1719 373962 2019 Guadalajara        Belenes Suc. Belenes    5077  MISCE
## 1720 374033 2019 Guadalajara        Belenes Suc. Belenes    5228  MICEL
## 1721 374100 2019 Guadalajara        Belenes Suc. Belenes    7439  MISCE
## 1722 374171 2019 Guadalajara        Belenes Suc. Belenes    3372  GERAR
## 1723 374404 2019 Guadalajara        Belenes Suc. Belenes    3933  ABARR
## 1724 374486 2019 Guadalajara        Belenes Suc. Belenes    8639  NORMA
## 1725 374555 2019 Guadalajara        Belenes Suc. Belenes    9303  ABARR
## 1726 374642 2019 Guadalajara        Belenes Suc. Belenes    9311  BERTH
## 1727 374847 2019 Guadalajara        Belenes Suc. Belenes    2023  MARIO
## 1728 374977 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 1729 375234 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 1730 375479 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 1731 375615 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 1732 375785 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 1733 375888 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 1734 376142 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 1735 376696 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 1736 376850 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 1737 376919 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 1738 376994 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 1739 377100 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 1740 377191 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 1741 377295 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 1742 377379 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 1743 377589 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 1744 377775 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 1745 377867 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 1746 377952 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 1747 378092 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 1748 378169 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 1749 378251 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 1750 378344 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 1751 378559 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 1752 378797 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 1753 379010 2019 Guadalajara        Belenes Suc. Belenes    8907  RUBEN
## 1754 379090 2019 Guadalajara        Belenes Suc. Belenes    8912  SERGI
## 1755 379225 2019 Guadalajara        Belenes Suc. Belenes    8920  LOREN
## 1756 379323 2019 Guadalajara        Belenes Suc. Belenes    8921  ABARR
## 1757 379438 2019 Guadalajara        Belenes Suc. Belenes    8991  ABARR
## 1758 379541 2019 Guadalajara        Belenes Suc. Belenes    8998  ABARR
## 1759 379638 2019 Guadalajara        Belenes Suc. Belenes    9011  GUSTA
## 1760 379736 2019 Guadalajara        Belenes Suc. Belenes    9015  ABARR
## 1761 379957 2019 Guadalajara        Belenes Suc. Belenes    9032  ABARR
## 1762 380151 2019 Guadalajara        Belenes Suc. Belenes    9045  FRANC
## 1763 380243 2019 Guadalajara        Belenes Suc. Belenes    9067  ABARR
## 1764 380347 2019 Guadalajara        Belenes Suc. Belenes    9070  MINIS
## 1765 380431 2019 Guadalajara        Belenes Suc. Belenes    9083  ANA B
## 1766 380510 2019 Guadalajara        Belenes Suc. Belenes    9085  GABRI
## 1767 380672 2019 Guadalajara        Belenes Suc. Belenes    9143  JAVIE
## 1768 380773 2019 Guadalajara        Belenes Suc. Belenes    9162  MARIA
## 1769 380869 2019 Guadalajara        Belenes Suc. Belenes    9175  ABARR
## 1770 380963 2019 Guadalajara        Belenes Suc. Belenes    9184  MINI 
## 1771 381055 2019 Guadalajara        Belenes Suc. Belenes    9192  ABARR
## 1772 381151 2019 Guadalajara        Belenes Suc. Belenes    9202  REINA
## 1773 381225 2019 Guadalajara        Belenes Suc. Belenes    9227  ABARR
## 1774 381321 2019 Guadalajara        Belenes Suc. Belenes    9236  TABY 
## 1775 381434 2019 Guadalajara        Belenes Suc. Belenes    9243  MARIA
## 1776 381667 2019 Guadalajara        Belenes Suc. Belenes    9284  ABARR
## 1777 381771 2019 Guadalajara        Belenes Suc. Belenes    9311  MIGUE
## 1778 382030 2019 Guadalajara        Belenes Suc. Belenes    9343  ABARR
## 1779 382106 2019 Guadalajara        Belenes Suc. Belenes    9371  TERES
## 1780 382162 2019 Guadalajara        Belenes Suc. Belenes    9377  ABARR
## 1781 382244 2019 Guadalajara        Belenes Suc. Belenes    9379  ABARR
## 1782 382326 2019 Guadalajara        Belenes Suc. Belenes    9387  MARIA
## 1783 382433 2019 Guadalajara        Belenes Suc. Belenes    9390  ABARR
## 1784 382606 2019 Guadalajara        Belenes Suc. Belenes    9420  MARIA
## 1785 382715 2019 Guadalajara        Belenes Suc. Belenes    9433  MARIA
## 1786 382748 2019 Guadalajara        Belenes Suc. Belenes    9435  MISCE
## 1787 382975 2019 Guadalajara        Belenes Suc. Belenes    9456  MARIA
## 1788 383034 2019 Guadalajara        Belenes Suc. Belenes    9457  CARLA
## 1789 383143 2019 Guadalajara        Belenes Suc. Belenes    9481  GLORI
## 1790 383237 2019 Guadalajara        Belenes Suc. Belenes    9482  MARTI
## 1791 383431 2019 Guadalajara        Belenes Suc. Belenes    9501  MARIA
## 1792 383533 2019 Guadalajara        Belenes Suc. Belenes    9516  MANUE
## 1793 383625 2019 Guadalajara        Belenes Suc. Belenes    9523  JOSE 
## 1794 383804 2019 Guadalajara        Belenes Suc. Belenes    9560  MAGDA
## 1795 384163 2019 Guadalajara        Belenes Suc. Belenes    9610  IVAN 
## 1796 384332 2019 Guadalajara        Belenes Suc. Belenes    9648  MARIA
## 1797 384412 2019 Guadalajara        Belenes Suc. Belenes    9664  ROMAN
## 1798 384503 2019 Guadalajara        Belenes Suc. Belenes    9681  BERTH
## 1799 384596 2019 Guadalajara        Belenes Suc. Belenes    9692  JOSE 
## 1800 384819 2019 Guadalajara        Belenes Suc. Belenes    9747  MINI 
## 1801 384880 2019 Guadalajara        Belenes Suc. Belenes    9748  SILVI
## 1802 385050 2019 Guadalajara        Belenes Suc. Belenes    9754  OFELI
## 1803 385134 2019 Guadalajara        Belenes Suc. Belenes    9759  ABARR
## 1804 385218 2019 Guadalajara        Belenes Suc. Belenes    9768  ABARR
## 1805 385281 2019 Guadalajara        Belenes Suc. Belenes    9769  JOSUE
## 1806 385375 2019 Guadalajara        Belenes Suc. Belenes    9780  GILBE
## 1807 385525 2019 Guadalajara        Belenes Suc. Belenes    9785  ANGEL
## 1808 385616 2019 Guadalajara        Belenes Suc. Belenes    9809  BRAUL
## 1809 385826 2019 Guadalajara        Belenes Suc. Belenes    9838  ABARR
## 1810 385925 2019 Guadalajara        Belenes Suc. Belenes    9844  ABARR
## 1811 386011 2019 Guadalajara        Belenes Suc. Belenes    9859  KRISH
## 1812 386093 2019 Guadalajara        Belenes Suc. Belenes    9867  ABARR
## 1813 386254 2019 Guadalajara        Belenes Suc. Belenes    9882  MARIO
## 1814 386407 2019 Guadalajara        Belenes Suc. Belenes    9886  MARTH
## 1815 386657 2019 Guadalajara        Belenes Suc. Belenes    9908  ABARR
## 1816 386741 2019 Guadalajara        Belenes Suc. Belenes    9909  BENJA
## 1817 387031 2019 Guadalajara        Belenes Suc. Belenes    9938  MARIA
## 1818 387117 2019 Guadalajara        Belenes Suc. Belenes    9966  ABARR
## 1819 387312 2019 Guadalajara        Belenes Suc. Belenes    9987  ABARR
## 1820 387409 2019 Guadalajara        Belenes Suc. Belenes    9992  J GUA
## 1821 387483 2019 Guadalajara        Belenes Suc. Belenes    9994  MARIA
## 1822 387558 2019 Guadalajara        Belenes Suc. Belenes    9996  ABARR
## 1823 387801 2019 Guadalajara        Belenes Suc. Belenes      31  SIMON
## 1824 387875 2019 Guadalajara        Belenes Suc. Belenes      39  ABARR
## 1825 387968 2019 Guadalajara        Belenes Suc. Belenes      42  ABARR
## 1826 388067 2019 Guadalajara        Belenes Suc. Belenes      49  ABARR
## 1827 388152 2019 Guadalajara        Belenes Suc. Belenes      65  ABARR
## 1828 388243 2019 Guadalajara        Belenes Suc. Belenes      66  MARIA
## 1829 388395 2019 Guadalajara        Belenes Suc. Belenes      82  KARLA
## 1830 388448 2019 Guadalajara        Belenes Suc. Belenes      84  ABARR
## 1831 388542 2019 Guadalajara        Belenes Suc. Belenes      85  ABARR
## 1832 388711 2019 Guadalajara        Belenes Suc. Belenes      90  ABARR
## 1833 388790 2019 Guadalajara        Belenes Suc. Belenes      92  RAMIR
## 1834 388878 2019 Guadalajara        Belenes Suc. Belenes     103  MIGUE
## 1835 388999 2019 Guadalajara        Belenes Suc. Belenes     114  LICOR
## 1836 389247 2019 Guadalajara        Belenes Suc. Belenes     129  ABARR
## 1837 389316 2019 Guadalajara        Belenes Suc. Belenes     142  MARIA
## 1838 389409 2019 Guadalajara        Belenes Suc. Belenes     144  KAREN
## 1839 389496 2019 Guadalajara        Belenes Suc. Belenes     166  ABARR
## 1840 389578 2019 Guadalajara        Belenes Suc. Belenes     188  MARIA
## 1841 389820 2019 Guadalajara        Belenes Suc. Belenes     204  EL GR
## 1842 389906 2019 Guadalajara        Belenes Suc. Belenes     207  ABARR
## 1843 389977 2019 Guadalajara        Belenes Suc. Belenes     211  JOSE 
## 1844 390137 2019 Guadalajara        Belenes Suc. Belenes     216  JOSE 
## 1845 390191 2019 Guadalajara        Belenes Suc. Belenes     218  ABARR
## 1846 390264 2019 Guadalajara        Belenes Suc. Belenes     237  ABARR
## 1847 390349 2019 Guadalajara        Belenes Suc. Belenes     238  LEONA
## 1848 390525 2019 Guadalajara        Belenes Suc. Belenes     248  GABRI
## 1849 390591 2019 Guadalajara        Belenes Suc. Belenes     279  EMILI
## 1850 390643 2019 Guadalajara        Belenes Suc. Belenes     303  ABARR
## 1851 390739 2019 Guadalajara        Belenes Suc. Belenes     317  MINIS
## 1852 390839 2019 Guadalajara        Belenes Suc. Belenes     326  MI BE
## 1853 391173 2019 Guadalajara        Belenes Suc. Belenes     376  CESAR
## 1854 391370 2019 Guadalajara        Belenes Suc. Belenes     406  TENDE
## 1855 391467 2019 Guadalajara        Belenes Suc. Belenes     429  NORMA
## 1856 391572 2019 Guadalajara        Belenes Suc. Belenes     442  ABARR
## 1857 391667 2019 Guadalajara        Belenes Suc. Belenes     452  ABARR
## 1858 391756 2019 Guadalajara        Belenes Suc. Belenes     458  SALVA
## 1859 391833 2019 Guadalajara        Belenes Suc. Belenes     462  ABARR
## 1860 392068 2019 Guadalajara        Belenes Suc. Belenes     471  JORGE
## 1861 392159 2019 Guadalajara        Belenes Suc. Belenes     475  MARIA
## 1862 392228 2019 Guadalajara        Belenes Suc. Belenes     476  JUAN 
## 1863 392372 2019 Guadalajara        Belenes Suc. Belenes     497  MARIA
## 1864 392547 2019 Guadalajara        Belenes Suc. Belenes     508  MARIA
## 1865 392709 2019 Guadalajara        Belenes Suc. Belenes     542  GONZA
## 1866 392814 2019 Guadalajara        Belenes Suc. Belenes     554  ABARR
## 1867 392961 2019 Guadalajara        Belenes Suc. Belenes     571  ABARR
## 1868 393055 2019 Guadalajara        Belenes Suc. Belenes     576  JOSE 
## 1869 393150 2019 Guadalajara        Belenes Suc. Belenes     581  EDGAR
## 1870 393229 2019 Guadalajara        Belenes Suc. Belenes     582  ABARR
## 1871 393278 2019 Guadalajara        Belenes Suc. Belenes     594  RAFAE
## 1872 393373 2019 Guadalajara        Belenes Suc. Belenes     607  ABARR
## 1873 393456 2019 Guadalajara        Belenes Suc. Belenes     633  MARIA
## 1874 393525 2019 Guadalajara        Belenes Suc. Belenes     647  ABARR
## 1875 393590 2019 Guadalajara        Belenes Suc. Belenes     667  SUPER
## 1876 393677 2019 Guadalajara        Belenes Suc. Belenes     707  RAFAE
## 1877 393770 2019 Guadalajara        Belenes Suc. Belenes     711  RAMIR
## 1878 393883 2019 Guadalajara        Belenes Suc. Belenes     712  ABARR
## 1879 393979 2019 Guadalajara        Belenes Suc. Belenes     803  ABARR
## 1880 394075 2019 Guadalajara        Belenes Suc. Belenes     815  PACHE
## 1881 394166 2019 Guadalajara        Belenes Suc. Belenes     834  ABARR
## 1882 394248 2019 Guadalajara        Belenes Suc. Belenes     841  ABARR
## 1883 394332 2019 Guadalajara        Belenes Suc. Belenes     847  ARTUR
## 1884 394421 2019 Guadalajara        Belenes Suc. Belenes     876  LA MA
## 1885 394570 2019 Guadalajara        Belenes Suc. Belenes     903  ABARR
## 1886 394645 2019 Guadalajara        Belenes Suc. Belenes     915  ABARR
## 1887 394741 2019 Guadalajara        Belenes Suc. Belenes     941  ABARR
## 1888 394817 2019 Guadalajara        Belenes Suc. Belenes     943  ABARR
## 1889 395067 2019 Guadalajara        Belenes Suc. Belenes     997  JOSE 
## 1890 395170 2019 Guadalajara        Belenes Suc. Belenes    1002  FEDER
## 1891 395241 2019 Guadalajara        Belenes Suc. Belenes    1004  MARIA
## 1892 395319 2019 Guadalajara        Belenes Suc. Belenes    1060  MARIA
## 1893 395464 2019 Guadalajara        Belenes Suc. Belenes    1067  MARTI
## 1894 395560 2019 Guadalajara        Belenes Suc. Belenes    1088  JACIE
## 1895 395667 2019 Guadalajara        Belenes Suc. Belenes    1150  ABARR
## 1896 395756 2019 Guadalajara        Belenes Suc. Belenes    1163  LUIS 
## 1897 395845 2019 Guadalajara        Belenes Suc. Belenes    1164  EZEQU
## 1898 395931 2019 Guadalajara        Belenes Suc. Belenes    1184  ABARR
## 1899 396214 2019 Guadalajara        Belenes Suc. Belenes    1232  ADRIA
## 1900 396411 2019 Guadalajara        Belenes Suc. Belenes    1306  ABARR
## 1901 396496 2019 Guadalajara        Belenes Suc. Belenes    1312  ABARR
## 1902 396603 2019 Guadalajara        Belenes Suc. Belenes    1320  JOSE 
## 1903 396668 2019 Guadalajara        Belenes Suc. Belenes    1332  ADRIA
## 1904 396781 2019 Guadalajara        Belenes Suc. Belenes    1349  REYNA
## 1905 396867 2019 Guadalajara        Belenes Suc. Belenes    1355  LILIA
## 1906 397045 2019 Guadalajara        Belenes Suc. Belenes    1379  DOLOR
## 1907 397131 2019 Guadalajara        Belenes Suc. Belenes    1384  ABARR
## 1908 397226 2019 Guadalajara        Belenes Suc. Belenes    1407  ABARR
## 1909 397293 2019 Guadalajara        Belenes Suc. Belenes    1436  ANTON
## 1910 397356 2019 Guadalajara        Belenes Suc. Belenes    1444  MARIA
## 1911 397436 2019 Guadalajara        Belenes Suc. Belenes    1447  ABARR
## 1912 397599 2019 Guadalajara        Belenes Suc. Belenes    1460  MARIA
## 1913 397674 2019 Guadalajara        Belenes Suc. Belenes    1479  RAFAE
## 1914 397758 2019 Guadalajara        Belenes Suc. Belenes    1491  SERGI
## 1915 397923 2019 Guadalajara        Belenes Suc. Belenes    1528  MARZO
## 1916 398001 2019 Guadalajara        Belenes Suc. Belenes    1529  ABARR
## 1917 398102 2019 Guadalajara        Belenes Suc. Belenes    1563  ROCIO
## 1918 398185 2019 Guadalajara        Belenes Suc. Belenes    1565  JUAN 
## 1919 398273 2019 Guadalajara        Belenes Suc. Belenes    1569  DENIS
## 1920 398332 2019 Guadalajara        Belenes Suc. Belenes    1594  ABARR
## 1921 398433 2019 Guadalajara        Belenes Suc. Belenes    1603  LUIS 
## 1922 398514 2019 Guadalajara        Belenes Suc. Belenes    1610  ABARR
## 1923 398586 2019 Guadalajara        Belenes Suc. Belenes    1622  ABARR
## 1924 398689 2019 Guadalajara        Belenes Suc. Belenes    1630  ABARR
## 1925 398909 2019 Guadalajara        Belenes Suc. Belenes    1653  LINDA
## 1926 398990 2019 Guadalajara        Belenes Suc. Belenes    1711  REYES
## 1927 399050 2019 Guadalajara        Belenes Suc. Belenes    1715  ABARR
## 1928 399148 2019 Guadalajara        Belenes Suc. Belenes    1717  ABEL 
## 1929 399217 2019 Guadalajara        Belenes Suc. Belenes    1723  MINI 
## 1930 399323 2019 Guadalajara        Belenes Suc. Belenes    1725  ABARR
## 1931 399517 2019 Guadalajara        Belenes Suc. Belenes    1736  PABLO
## 1932 399662 2019 Guadalajara        Belenes Suc. Belenes    1778  MOISE
## 1933 399756 2019 Guadalajara        Belenes Suc. Belenes    1799  JOSE 
## 1934 400016 2019 Guadalajara        Belenes Suc. Belenes    1820  ROSA 
## 1935 400120 2019 Guadalajara        Belenes Suc. Belenes    1826  SUPER
## 1936 400211 2019 Guadalajara        Belenes Suc. Belenes    1831  RAFAE
## 1937 400298 2019 Guadalajara        Belenes Suc. Belenes    1834  CREME
## 1938 400405 2019 Guadalajara        Belenes Suc. Belenes    1835  MARIA
## 1939 400505 2019 Guadalajara        Belenes Suc. Belenes    1836  TERES
## 1940 400580 2019 Guadalajara        Belenes Suc. Belenes    1842  MARIA
## 1941 400662 2019 Guadalajara        Belenes Suc. Belenes    1843  CREME
## 1942 400760 2019 Guadalajara        Belenes Suc. Belenes    1847  ABARR
## 1943 400850 2019 Guadalajara        Belenes Suc. Belenes    1854  ABARR
## 1944 400937 2019 Guadalajara        Belenes Suc. Belenes    1857  MARIA
## 1945 401019 2019 Guadalajara        Belenes Suc. Belenes    1858  ABARR
## 1946 401127 2019 Guadalajara        Belenes Suc. Belenes    1860  DOS H
## 1947 401222 2019 Guadalajara        Belenes Suc. Belenes    1872  RUTH 
## 1948 401299 2019 Guadalajara        Belenes Suc. Belenes    1893  EL MA
## 1949 401369 2019 Guadalajara        Belenes Suc. Belenes    1917  MARIA
## 1950 401447 2019 Guadalajara        Belenes Suc. Belenes    1918  ABARR
## 1951 401536 2019 Guadalajara        Belenes Suc. Belenes    1944  ABARR
## 1952 401600 2019 Guadalajara        Belenes Suc. Belenes    1952  ABARR
## 1953 401695 2019 Guadalajara        Belenes Suc. Belenes    1971  ABARR
## 1954 401782 2019 Guadalajara        Belenes Suc. Belenes    1974  ABARR
## 1955 401963 2019 Guadalajara        Belenes Suc. Belenes    1993  ABARR
## 1956 402058 2019 Guadalajara        Belenes Suc. Belenes    2003  ABARR
## 1957 402162 2019 Guadalajara        Belenes Suc. Belenes    2006  ABARR
## 1958 402262 2019 Guadalajara        Belenes Suc. Belenes    2009  ABARR
## 1959 402371 2019 Guadalajara        Belenes Suc. Belenes    2033  ABARR
## 1960 402541 2019 Guadalajara        Belenes Suc. Belenes    2049  MARIA
## 1961 402769 2019 Guadalajara        Belenes Suc. Belenes    2060  GERAR
## 1962 402857 2019 Guadalajara        Belenes Suc. Belenes    2064  ABARR
## 1963 403137 2019 Guadalajara        Belenes Suc. Belenes    2135  FRANC
## 1964 403262 2019 Guadalajara        Belenes Suc. Belenes    2138  GUMEC
## 1965 403354 2019 Guadalajara        Belenes Suc. Belenes    2142  FELIP
## 1966 403542 2019 Guadalajara        Belenes Suc. Belenes    2179  JUAN 
## 1967 403984 2019 Guadalajara        Belenes Suc. Belenes    2248  VINOS
## 1968 404058 2019 Guadalajara        Belenes Suc. Belenes    2255  VERON
## 1969 404269 2019 Guadalajara        Belenes Suc. Belenes    2278  AUDIE
## 1970 404367 2019 Guadalajara        Belenes Suc. Belenes    2302  JOSE 
## 1971 404452 2019 Guadalajara        Belenes Suc. Belenes    2313  ABARR
## 1972 404552 2019 Guadalajara        Belenes Suc. Belenes    2314  BLANC
## 1973 404652 2019 Guadalajara        Belenes Suc. Belenes    2319  SUPER
## 1974 404740 2019 Guadalajara        Belenes Suc. Belenes    2320  ADELA
## 1975 404794 2019 Guadalajara        Belenes Suc. Belenes    2321  ABARR
## 1976 404883 2019 Guadalajara        Belenes Suc. Belenes    2328  ABARR
## 1977 405035 2019 Guadalajara        Belenes Suc. Belenes    2350  SANDR
## 1978 405169 2019 Guadalajara        Belenes Suc. Belenes    2353  LA BO
## 1979 405249 2019 Guadalajara        Belenes Suc. Belenes    2377  PATRI
## 1980 405322 2019 Guadalajara        Belenes Suc. Belenes    2386  MINI 
## 1981 405421 2019 Guadalajara        Belenes Suc. Belenes    2394  ABARR
## 1982 405608 2019 Guadalajara        Belenes Suc. Belenes    2403  ALICI
## 1983 405926 2019 Guadalajara        Belenes Suc. Belenes    2497  ABARR
## 1984 406016 2019 Guadalajara        Belenes Suc. Belenes    2498  ADELI
## 1985 406255 2019 Guadalajara        Belenes Suc. Belenes    2536  ABARR
## 1986 406326 2019 Guadalajara        Belenes Suc. Belenes    2538  ABARR
## 1987 406372 2019 Guadalajara        Belenes Suc. Belenes    2540  ADRIA
## 1988 406536 2019 Guadalajara        Belenes Suc. Belenes    2586  EL DK
## 1989 406644 2019 Guadalajara        Belenes Suc. Belenes    2587  CARME
## 1990 406720 2019 Guadalajara        Belenes Suc. Belenes    2588  ABARR
## 1991 406805 2019 Guadalajara        Belenes Suc. Belenes    2592  SIX M
## 1992 406922 2019 Guadalajara        Belenes Suc. Belenes    2634  MARIA
## 1993 407014 2019 Guadalajara        Belenes Suc. Belenes    2654  RAFAE
## 1994 407273 2019 Guadalajara        Belenes Suc. Belenes    2716  JORGE
## 1995 407575 2019 Guadalajara        Belenes Suc. Belenes    2779  ABARR
## 1996 407664 2019 Guadalajara        Belenes Suc. Belenes    2784  ABARR
## 1997 407752 2019 Guadalajara        Belenes Suc. Belenes    2814  JORGE
## 1998 407887 2019 Guadalajara        Belenes Suc. Belenes    2824  MARIA
## 1999 408106 2019 Guadalajara        Belenes Suc. Belenes    2866  DULCE
## 2000 408210 2019 Guadalajara        Belenes Suc. Belenes    2867  MINIS
## 2001 408319 2019 Guadalajara        Belenes Suc. Belenes    2877  ABARR
## 2002 408419 2019 Guadalajara        Belenes Suc. Belenes    2896  MI RA
## 2003 408509 2019 Guadalajara        Belenes Suc. Belenes    2905  EL GR
## 2004 408616 2019 Guadalajara        Belenes Suc. Belenes    2910  BAUDE
## 2005 408744 2019 Guadalajara        Belenes Suc. Belenes    2944  ABARR
## 2006 408949 2019 Guadalajara        Belenes Suc. Belenes    2996  HERME
## 2007 409038 2019 Guadalajara        Belenes Suc. Belenes    3010  MARTI
## 2008 409107 2019 Guadalajara        Belenes Suc. Belenes    3021  ABARR
## 2009 409204 2019 Guadalajara        Belenes Suc. Belenes    3027  MAYEL
## 2010 409301 2019 Guadalajara        Belenes Suc. Belenes    3035  RICAR
## 2011 409394 2019 Guadalajara        Belenes Suc. Belenes    3039  LA VA
## 2012 409486 2019 Guadalajara        Belenes Suc. Belenes    3050  SUPER
## 2013 409631 2019 Guadalajara        Belenes Suc. Belenes    3067  ABARR
## 2014 409693 2019 Guadalajara        Belenes Suc. Belenes    3069  MODEL
## 2015 409895 2019 Guadalajara        Belenes Suc. Belenes    3117  ABARR
## 2016 410175 2019 Guadalajara        Belenes Suc. Belenes    3145  MARIA
## 2017 410470 2019 Guadalajara        Belenes Suc. Belenes    3168  ABARR
## 2018 410621 2019 Guadalajara        Belenes Suc. Belenes    3182  ABARR
## 2019 410719 2019 Guadalajara        Belenes Suc. Belenes    3185  INDAL
## 2020 410867 2019 Guadalajara        Belenes Suc. Belenes    3209  IRMA 
## 2021 411000 2019 Guadalajara        Belenes Suc. Belenes    3235  MARIA
## 2022 411175 2019 Guadalajara        Belenes Suc. Belenes    3256  DANIE
## 2023 411406 2019 Guadalajara        Belenes Suc. Belenes    3269  BALDO
## 2024 411628 2019 Guadalajara        Belenes Suc. Belenes     712  OSVAL
## 2025 411981 2019 Guadalajara        Belenes Suc. Belenes    2482  ABARR
## 2026 412080 2019 Guadalajara        Belenes Suc. Belenes    2483  NOE H
## 2027 412477 2019 Guadalajara        Belenes Suc. Belenes    2545  HECTO
## 2028 412542 2019 Guadalajara        Belenes Suc. Belenes    2548  CESAR
## 2029 412671 2019 Guadalajara        Belenes Suc. Belenes    2561  ABARR
## 2030 412759 2019 Guadalajara        Belenes Suc. Belenes    2562  JAVIE
## 2031 412820 2019 Guadalajara        Belenes Suc. Belenes    2563  LUCIO
## 2032 413005 2019 Guadalajara        Belenes Suc. Belenes    2570  TIEND
## 2033 413082 2019 Guadalajara        Belenes Suc. Belenes    2572  VINOS
## 2034 413157 2019 Guadalajara        Belenes Suc. Belenes    2584  ABARR
## 2035 413329 2019 Guadalajara        Belenes Suc. Belenes    2601  ABARR
## 2036 413802 2019 Guadalajara        Belenes Suc. Belenes    2769  HUMBE
## 2037 413979 2019 Guadalajara        Belenes Suc. Belenes    2897  MINIS
## 2038 414165 2019 Guadalajara        Belenes Suc. Belenes    2918  ABARR
## 2039 414255 2019 Guadalajara        Belenes Suc. Belenes    2923  EMILI
## 2040 414379 2019 Guadalajara        Belenes Suc. Belenes    2934  RICAR
## 2041 414431 2019 Guadalajara        Belenes Suc. Belenes    2982  JOSE 
## 2042 414521 2019 Guadalajara        Belenes Suc. Belenes    2996  ABARR
## 2043 414648 2019 Guadalajara        Belenes Suc. Belenes    3017  OSCAR
## 2044 414722 2019 Guadalajara        Belenes Suc. Belenes    3027  MARIA
## 2045 414776 2019 Guadalajara        Belenes Suc. Belenes    3033  CLAUD
## 2046 414850 2019 Guadalajara        Belenes Suc. Belenes    3060  ABARR
## 2047 414951 2019 Guadalajara        Belenes Suc. Belenes    3099  MAYRA
## 2048 415105 2019 Guadalajara        Belenes Suc. Belenes    3126  JOSE 
## 2049 415206 2019 Guadalajara        Belenes Suc. Belenes    3176  SANTI
## 2050 415296 2019 Guadalajara        Belenes Suc. Belenes    3185  MARIA
## 2051 415334 2019 Guadalajara        Belenes Suc. Belenes    3200  ABARR
## 2052 415406 2019 Guadalajara        Belenes Suc. Belenes    3256  JOSE 
## 2053 415563 2019 Guadalajara        Belenes Suc. Belenes    3277  GREGO
## 2054 415633 2019 Guadalajara        Belenes Suc. Belenes    3279  ABARR
## 2055 415711 2019 Guadalajara        Belenes Suc. Belenes    3289  CREME
## 2056 415909 2019 Guadalajara        Belenes Suc. Belenes    8300  JOSE 
## 2057 416064 2019 Guadalajara        Belenes Suc. Belenes    8318  MISCE
## 2058 416164 2019 Guadalajara        Belenes Suc. Belenes     763  JUAN 
## 2059 200226 2018 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 2060 200463 2018 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 2061 200684 2018 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 2062 201627 2018 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 2063 201866 2018 Guadalajara        Belenes Suc. Belenes    9041  ABARR
## 2064 202358 2018 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 2065 202610 2018 Guadalajara        Belenes Suc. Belenes    9462  MINI 
## 2066 202811 2018 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 2067 202924 2018 Guadalajara        Belenes Suc. Belenes    9574  ABARR
## 2068 203209 2018 Guadalajara        Belenes Suc. Belenes    9615  TIEND
## 2069 203409 2018 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 2070 203627 2018 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 2071 204010 2018 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 2072 204426 2018 Guadalajara        Belenes Suc. Belenes    9915  ADAN 
## 2073 204949 2018 Guadalajara        Belenes Suc. Belenes     183  CESAR
## 2074 205055 2018 Guadalajara        Belenes Suc. Belenes     184  AVELI
## 2075 205160 2018 Guadalajara        Belenes Suc. Belenes     242  ABARR
## 2076 205279 2018 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 2077 205583 2018 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 2078 205804 2018 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 2079 205914 2018 Guadalajara        Belenes Suc. Belenes     407  LUIS 
## 2080 206113 2018 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 2081 206349 2018 Guadalajara        Belenes Suc. Belenes     535  MINIS
## 2082 206569 2018 Guadalajara        Belenes Suc. Belenes     597  ALBIN
## 2083 207016 2018 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 2084 207429 2018 Guadalajara        Belenes Suc. Belenes     932  MARIA
## 2085 207800 2018 Guadalajara        Belenes Suc. Belenes    1116  ABARR
## 2086 207887 2018 Guadalajara        Belenes Suc. Belenes    1160  ABARR
## 2087 207993 2018 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 2088 208097 2018 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 2089 208216 2018 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 2090 208870 2018 Guadalajara        Belenes Suc. Belenes    1543  EMMAN
## 2091 209568 2018 Guadalajara        Belenes Suc. Belenes    1759  ELVA 
## 2092 209786 2018 Guadalajara        Belenes Suc. Belenes    1791  ALICI
## 2093 210002 2018 Guadalajara        Belenes Suc. Belenes    1812  ABARR
## 2094 210738 2018 Guadalajara        Belenes Suc. Belenes    2000  ABARR
## 2095 211019 2018 Guadalajara        Belenes Suc. Belenes    2146  ABARR
## 2096 211746 2018 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 2097 211949 2018 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 2098 212379 2018 Guadalajara        Belenes Suc. Belenes    2912  BRAUL
## 2099 212846 2018 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 2100 213092 2018 Guadalajara        Belenes Suc. Belenes    3142  ANA M
## 2101 213919 2018 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 2102 214341 2018 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 2103 245576 2018 Guadalajara        Belenes Suc. Belenes    9281  JUAN 
## 2104 246389 2018 Guadalajara        Belenes Suc. Belenes    9553  CARLO
## 2105 247457 2018 Guadalajara        Belenes Suc. Belenes      67  LA PR
## 2106 247797 2018 Guadalajara        Belenes Suc. Belenes     179  MINI 
## 2107 249747 2018 Guadalajara        Belenes Suc. Belenes     793  ABARR
## 2108 250622 2018 Guadalajara        Belenes Suc. Belenes    1064  SOCOR
## 2109 253284 2018 Guadalajara        Belenes Suc. Belenes    2252  ARTUR
## 2110 253373 2018 Guadalajara        Belenes Suc. Belenes    2322  JOSE 
## 2111 254855 2018 Guadalajara        Belenes Suc. Belenes    2777  CEREA
## 2112 254915 2018 Guadalajara        Belenes Suc. Belenes    2786  LETIC
## 2113 254966 2018 Guadalajara        Belenes Suc. Belenes    2787  JESUS
## 2114 255079 2018 Guadalajara        Belenes Suc. Belenes    2808  RAMIR
## 2115 255464 2018 Guadalajara        Belenes Suc. Belenes    2958  MARIA
## 2116 255735 2018 Guadalajara        Belenes Suc. Belenes    3017  MARIA
## 2117 255848 2018 Guadalajara        Belenes Suc. Belenes    3051  ERNES
## 2118 256316 2018 Guadalajara        Belenes Suc. Belenes    3236  OFELI
## 2119 257965 2018 Guadalajara        Belenes Suc. Belenes    2845  SEVER
## 2120 259304 2018 Guadalajara        Belenes Suc. Belenes    9295  ABARR
## 2121 259679 2018 Guadalajara        Belenes Suc. Belenes    3033  MISCE
## 2122 259969 2018 Guadalajara        Belenes Suc. Belenes    5141  HOGAR
## 2123 260416 2018 Guadalajara        Belenes Suc. Belenes    3233  MARIA
## 2124 260479 2018 Guadalajara        Belenes Suc. Belenes    3986  NOEMI
## 2125 260989 2018 Guadalajara        Belenes Suc. Belenes    8532  MISCE
## 2126 261224 2018 Guadalajara        Belenes Suc. Belenes    9500  REBEC
## 2127 261629 2018 Guadalajara        Belenes Suc. Belenes    5139  MISCE
## 2128 304798 2019 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 2129 305532 2019 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 2130 306698 2019 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 2131 306805 2019 Guadalajara        Belenes Suc. Belenes    9574  ABARR
## 2132 307471 2019 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 2133 307846 2019 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 2134 308483 2019 Guadalajara        Belenes Suc. Belenes     100  ABARR
## 2135 308970 2019 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 2136 309145 2019 Guadalajara        Belenes Suc. Belenes     286  SIX T
## 2137 309710 2019 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 2138 310125 2019 Guadalajara        Belenes Suc. Belenes     597  ALBIN
## 2139 310328 2019 Guadalajara        Belenes Suc. Belenes     651  SUPER
## 2140 310539 2019 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 2141 310925 2019 Guadalajara        Belenes Suc. Belenes     932  MARIA
## 2142 311385 2019 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 2143 311494 2019 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 2144 311603 2019 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 2145 311859 2019 Guadalajara        Belenes Suc. Belenes    1393  SUPER
## 2146 312601 2019 Guadalajara        Belenes Suc. Belenes    1716  ABARR
## 2147 312961 2019 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 2148 314319 2019 Guadalajara        Belenes Suc. Belenes    2294  JOSE 
## 2149 314399 2019 Guadalajara        Belenes Suc. Belenes    2399  ABARR
## 2150 314999 2019 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 2151 315296 2019 Guadalajara        Belenes Suc. Belenes    2861  ABARR
## 2152 317125 2019 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 2153 318856 2019 Guadalajara        Belenes Suc. Belenes    9120  MARIC
## 2154 319871 2019 Guadalajara        Belenes Suc. Belenes    9693  JAIME
## 2155 320958 2019 Guadalajara        Belenes Suc. Belenes     222  FLOR 
## 2156 322085 2019 Guadalajara        Belenes Suc. Belenes     766  ROSA 
## 2157 322460 2019 Guadalajara        Belenes Suc. Belenes     945  LUCIA
## 2158 325146 2019 Guadalajara        Belenes Suc. Belenes    2395  GLORI
## 2159 325928 2019 Guadalajara        Belenes Suc. Belenes    2777  CEREA
## 2160 326402 2019 Guadalajara        Belenes Suc. Belenes    2958  MARIA
## 2161 327031 2019 Guadalajara        Belenes Suc. Belenes    3230  ADOLF
## 2162 327345 2019 Guadalajara        Belenes Suc. Belenes    5488  DON M
## 2163 327745 2019 Guadalajara        Belenes Suc. Belenes     912  FARMA
## 2164 328203 2019 Guadalajara        Belenes Suc. Belenes    2829  LETIC
## 2165 328332 2019 Guadalajara        Belenes Suc. Belenes    2933  MARIA
## 2166 329115 2019 Guadalajara        Belenes Suc. Belenes    9295  ABARR
## 2167 329823 2019 Guadalajara        Belenes Suc. Belenes     335  FELIP
## 2168 329894 2019 Guadalajara        Belenes Suc. Belenes     384  VERON
## 2169 330106 2019 Guadalajara        Belenes Suc. Belenes    1298  SUPER
## 2170 331127 2019 Guadalajara        Belenes Suc. Belenes    9500  REBEC
## 2171 332286 2019 Guadalajara        Belenes Suc. Belenes    8927  GRACI
## 2172 332794 2019 Guadalajara        Belenes Suc. Belenes    9313  OFELI
## 2173 333051 2019 Guadalajara        Belenes Suc. Belenes    8130  MODEL
## 2174 335523 2019 Guadalajara        Belenes Suc. Belenes    8045  TERES
## 2175 337872 2019 Guadalajara        Belenes Suc. Belenes    9078  ISMAE
## 2176 338320 2019 Guadalajara        Belenes Suc. Belenes    9146  ABARR
## 2177 339109 2019 Guadalajara        Belenes Suc. Belenes    9302  ISAUR
## 2178 340201 2019 Guadalajara        Belenes Suc. Belenes    9440  ROSA 
## 2179 340683 2019 Guadalajara        Belenes Suc. Belenes    9556  MARTH
## 2180 341681 2019 Guadalajara        Belenes Suc. Belenes    9696  JOSE 
## 2181 341908 2019 Guadalajara        Belenes Suc. Belenes    9726  RICAR
## 2182 342413 2019 Guadalajara        Belenes Suc. Belenes    9788  ANTON
## 2183 342514 2019 Guadalajara        Belenes Suc. Belenes    9792  RAMON
## 2184 343143 2019 Guadalajara        Belenes Suc. Belenes    9871  ABARR
## 2185 343656 2019 Guadalajara        Belenes Suc. Belenes    9941  ABARR
## 2186 343754 2019 Guadalajara        Belenes Suc. Belenes    9971  JOSE 
## 2187 343883 2019 Guadalajara        Belenes Suc. Belenes    9999  ROSAL
## 2188 343938 2019 Guadalajara        Belenes Suc. Belenes      14  ELIZA
## 2189 343995 2019 Guadalajara        Belenes Suc. Belenes      20  MARIA
## 2190 344135 2019 Guadalajara        Belenes Suc. Belenes      28  JUAN 
## 2191 344185 2019 Guadalajara        Belenes Suc. Belenes      34  MARIA
## 2192 344345 2019 Guadalajara        Belenes Suc. Belenes      44  JOSE 
## 2193 344478 2019 Guadalajara        Belenes Suc. Belenes      71  ALEJA
## 2194 344711 2019 Guadalajara        Belenes Suc. Belenes      91  ANA M
## 2195 344920 2019 Guadalajara        Belenes Suc. Belenes     105  VERON
## 2196 345226 2019 Guadalajara        Belenes Suc. Belenes     153  ABARR
## 2197 347157 2019 Guadalajara        Belenes Suc. Belenes     506  NOEMI
## 2198 347330 2019 Guadalajara        Belenes Suc. Belenes     551  ABARR
## 2199 348774 2019 Guadalajara        Belenes Suc. Belenes     816  FELIP
## 2200 349687 2019 Guadalajara        Belenes Suc. Belenes     927  JORGE
## 2201 350347 2019 Guadalajara        Belenes Suc. Belenes     975  JOSE 
## 2202 350783 2019 Guadalajara        Belenes Suc. Belenes    1032  ABARR
## 2203 352435 2019 Guadalajara        Belenes Suc. Belenes    1297  HOGR 
## 2204 352552 2019 Guadalajara        Belenes Suc. Belenes    1304  DANIE
## 2205 353921 2019 Guadalajara        Belenes Suc. Belenes    1536  ABARR
## 2206 355436 2019 Guadalajara        Belenes Suc. Belenes    1753  MARIA
## 2207 355751 2019 Guadalajara        Belenes Suc. Belenes    1796  NORMA
## 2208 359964 2019 Guadalajara        Belenes Suc. Belenes    2487  MARIA
## 2209 360056 2019 Guadalajara        Belenes Suc. Belenes    2500  JOSE 
## 2210 360393 2019 Guadalajara        Belenes Suc. Belenes    2523  ROSA 
## 2211 362576 2019 Guadalajara        Belenes Suc. Belenes    2780  ABARR
## 2212 362691 2019 Guadalajara        Belenes Suc. Belenes    2791  MARIA
## 2213 363080 2019 Guadalajara        Belenes Suc. Belenes    2822  DELIA
## 2214 363654 2019 Guadalajara        Belenes Suc. Belenes    2882  SALVA
## 2215 363712 2019 Guadalajara        Belenes Suc. Belenes    2887  M HER
## 2216 363753 2019 Guadalajara        Belenes Suc. Belenes    2893  CUBET
## 2217 363802 2019 Guadalajara        Belenes Suc. Belenes    2895  ABARR
## 2218 363933 2019 Guadalajara        Belenes Suc. Belenes    2917  LEONA
## 2219 364275 2019 Guadalajara        Belenes Suc. Belenes    2977  MARIA
## 2220 364328 2019 Guadalajara        Belenes Suc. Belenes    2978  PATRI
## 2221 364912 2019 Guadalajara        Belenes Suc. Belenes    3087  CARME
## 2222 365888 2019 Guadalajara        Belenes Suc. Belenes    3232  RAMON
## 2223 365947 2019 Guadalajara        Belenes Suc. Belenes    3244  GENAR
## 2224 367217 2019 Guadalajara        Belenes Suc. Belenes    1733  LA CA
## 2225 367812 2019 Guadalajara        Belenes Suc. Belenes    5630  FERNA
## 2226 368023 2019 Guadalajara        Belenes Suc. Belenes     692  HECTO
## 2227 368988 2019 Guadalajara        Belenes Suc. Belenes    2600  ABARR
## 2228 369159 2019 Guadalajara        Belenes Suc. Belenes    2621  DANIE
## 2229 371139 2019 Guadalajara        Belenes Suc. Belenes    3080  J JES
## 2230 371773 2019 Guadalajara        Belenes Suc. Belenes    7821  MISCE
## 2231 372076 2019 Guadalajara        Belenes Suc. Belenes    8289  MARIA
## 2232 373452 2019 Guadalajara        Belenes Suc. Belenes    5143  DEPOS
## 2233 373963 2019 Guadalajara        Belenes Suc. Belenes    5077  MISCE
## 2234 374172 2019 Guadalajara        Belenes Suc. Belenes    3372  GERAR
## 2235 374643 2019 Guadalajara        Belenes Suc. Belenes    9311  BERTH
## 2236 374777 2019 Guadalajara        Belenes Suc. Belenes    1053  ABARR
## 2237 377440 2019 Guadalajara        Belenes Suc. Belenes    8166  FREDY
## 2238 379011 2019 Guadalajara        Belenes Suc. Belenes    8907  RUBEN
## 2239 379439 2019 Guadalajara        Belenes Suc. Belenes    8991  ABARR
## 2240 379737 2019 Guadalajara        Belenes Suc. Belenes    9015  ABARR
## 2241 381056 2019 Guadalajara        Belenes Suc. Belenes    9192  ABARR
## 2242 381668 2019 Guadalajara        Belenes Suc. Belenes    9284  ABARR
## 2243 382245 2019 Guadalajara        Belenes Suc. Belenes    9379  ABARR
## 2244 382327 2019 Guadalajara        Belenes Suc. Belenes    9387  MARIA
## 2245 382749 2019 Guadalajara        Belenes Suc. Belenes    9435  MISCE
## 2246 382906 2019 Guadalajara        Belenes Suc. Belenes    9445  JOSE 
## 2247 383035 2019 Guadalajara        Belenes Suc. Belenes    9457  CARLA
## 2248 383534 2019 Guadalajara        Belenes Suc. Belenes    9516  MANUE
## 2249 383805 2019 Guadalajara        Belenes Suc. Belenes    9560  MAGDA
## 2250 384597 2019 Guadalajara        Belenes Suc. Belenes    9692  JOSE 
## 2251 384881 2019 Guadalajara        Belenes Suc. Belenes    9748  SILVI
## 2252 385051 2019 Guadalajara        Belenes Suc. Belenes    9754  OFELI
## 2253 385135 2019 Guadalajara        Belenes Suc. Belenes    9759  ABARR
## 2254 385282 2019 Guadalajara        Belenes Suc. Belenes    9769  JOSUE
## 2255 385827 2019 Guadalajara        Belenes Suc. Belenes    9838  ABARR
## 2256 386255 2019 Guadalajara        Belenes Suc. Belenes    9882  MARIO
## 2257 387230 2019 Guadalajara        Belenes Suc. Belenes    9975  ALEJA
## 2258 387802 2019 Guadalajara        Belenes Suc. Belenes      31  SIMON
## 2259 387969 2019 Guadalajara        Belenes Suc. Belenes      42  ABARR
## 2260 388449 2019 Guadalajara        Belenes Suc. Belenes      84  ABARR
## 2261 388643 2019 Guadalajara        Belenes Suc. Belenes      86  ABARR
## 2262 389821 2019 Guadalajara        Belenes Suc. Belenes     204  EL GR
## 2263 389978 2019 Guadalajara        Belenes Suc. Belenes     211  JOSE 
## 2264 390740 2019 Guadalajara        Belenes Suc. Belenes     317  MINIS
## 2265 391174 2019 Guadalajara        Belenes Suc. Belenes     376  CESAR
## 2266 391757 2019 Guadalajara        Belenes Suc. Belenes     458  SALVA
## 2267 393591 2019 Guadalajara        Belenes Suc. Belenes     667  SUPER
## 2268 394422 2019 Guadalajara        Belenes Suc. Belenes     876  LA MA
## 2269 394646 2019 Guadalajara        Belenes Suc. Belenes     915  ABARR
## 2270 395068 2019 Guadalajara        Belenes Suc. Belenes     997  JOSE 
## 2271 395757 2019 Guadalajara        Belenes Suc. Belenes    1163  LUIS 
## 2272 396497 2019 Guadalajara        Belenes Suc. Belenes    1312  ABARR
## 2273 396868 2019 Guadalajara        Belenes Suc. Belenes    1355  LILIA
## 2274 398333 2019 Guadalajara        Belenes Suc. Belenes    1594  ABARR
## 2275 399218 2019 Guadalajara        Belenes Suc. Belenes    1723  MINI 
## 2276 400212 2019 Guadalajara        Belenes Suc. Belenes    1831  RAFAE
## 2277 401020 2019 Guadalajara        Belenes Suc. Belenes    1858  ABARR
## 2278 401601 2019 Guadalajara        Belenes Suc. Belenes    1952  ABARR
## 2279 402626 2019 Guadalajara        Belenes Suc. Belenes    2052  ABARR
## 2280 404884 2019 Guadalajara        Belenes Suc. Belenes    2328  ABARR
## 2281 406806 2019 Guadalajara        Belenes Suc. Belenes    2592  SIX M
## 2282 408211 2019 Guadalajara        Belenes Suc. Belenes    2867  MINIS
## 2283 408420 2019 Guadalajara        Belenes Suc. Belenes    2896  MI RA
## 2284 410368 2019 Guadalajara        Belenes Suc. Belenes    3167  ABARR
## 2285 411001 2019 Guadalajara        Belenes Suc. Belenes    3235  MARIA
## 2286 411176 2019 Guadalajara        Belenes Suc. Belenes    3256  DANIE
## 2287 411407 2019 Guadalajara        Belenes Suc. Belenes    3269  BALDO
## 2288 411629 2019 Guadalajara        Belenes Suc. Belenes     712  OSVAL
## 2289 412146 2019 Guadalajara        Belenes Suc. Belenes    2487  MARIA
## 2290 413553 2019 Guadalajara        Belenes Suc. Belenes    2630  GUILL
## 2291 413724 2019 Guadalajara        Belenes Suc. Belenes    2709  CATAL
## 2292 414256 2019 Guadalajara        Belenes Suc. Belenes    2923  EMILI
## 2293 414649 2019 Guadalajara        Belenes Suc. Belenes    3017  OSCAR
## 2294 414952 2019 Guadalajara        Belenes Suc. Belenes    3099  MAYRA
## 2295 415207 2019 Guadalajara        Belenes Suc. Belenes    3176  SANTI
## 2296 415297 2019 Guadalajara        Belenes Suc. Belenes    3185  MARIA
## 2297 415712 2019 Guadalajara        Belenes Suc. Belenes    3289  CREME
## 2298 416065 2019 Guadalajara        Belenes Suc. Belenes    8318  MISCE
## 2299 200112 2018 Guadalajara        Belenes Suc. Belenes    7800  SAN I
## 2300 200227 2018 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 2301 200339 2018 Guadalajara        Belenes Suc. Belenes    7884  ABARR
## 2302 200464 2018 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 2303 200578 2018 Guadalajara        Belenes Suc. Belenes    8010  ABARR
## 2304 200685 2018 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 2305 200785 2018 Guadalajara        Belenes Suc. Belenes    8201  MIGUE
## 2306 201315 2018 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 2307 201416 2018 Guadalajara        Belenes Suc. Belenes    8842  ABARR
## 2308 201628 2018 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 2309 201753 2018 Guadalajara        Belenes Suc. Belenes    9017  MINIS
## 2310 201987 2018 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 2311 202270 2018 Guadalajara        Belenes Suc. Belenes    9186  EMPOR
## 2312 202359 2018 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 2313 202611 2018 Guadalajara        Belenes Suc. Belenes    9462  MINI 
## 2314 202812 2018 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 2315 203105 2018 Guadalajara        Belenes Suc. Belenes    9603  ABARR
## 2316 203410 2018 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 2317 203628 2018 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 2318 203812 2018 Guadalajara        Belenes Suc. Belenes    9743  ABARR
## 2319 204011 2018 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 2320 204840 2018 Guadalajara        Belenes Suc. Belenes     154  ABARR
## 2321 205584 2018 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 2322 205805 2018 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 2323 206114 2018 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 2324 206248 2018 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 2325 206793 2018 Guadalajara        Belenes Suc. Belenes     651  SUPER
## 2326 207017 2018 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 2327 207684 2018 Guadalajara        Belenes Suc. Belenes    1090  ABARR
## 2328 208217 2018 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 2329 208411 2018 Guadalajara        Belenes Suc. Belenes    1388  OSVAL
## 2330 208519 2018 Guadalajara        Belenes Suc. Belenes    1393  SUPER
## 2331 208871 2018 Guadalajara        Belenes Suc. Belenes    1543  EMMAN
## 2332 209685 2018 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 2333 210210 2018 Guadalajara        Belenes Suc. Belenes    1859  MARIA
## 2334 210409 2018 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 2335 210907 2018 Guadalajara        Belenes Suc. Belenes    2075  MARTH
## 2336 211020 2018 Guadalajara        Belenes Suc. Belenes    2146  ABARR
## 2337 211224 2018 Guadalajara        Belenes Suc. Belenes    2294  JOSE 
## 2338 211747 2018 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 2339 211950 2018 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 2340 212847 2018 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 2341 213181 2018 Guadalajara        Belenes Suc. Belenes    3179  LA DU
## 2342 213426 2018 Guadalajara        Belenes Suc. Belenes    2486  ABARR
## 2343 213920 2018 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 2344 214118 2018 Guadalajara        Belenes Suc. Belenes    2912  ABARR
## 2345 214342 2018 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 2346 243733 2018 Guadalajara        Belenes Suc. Belenes    7802  ANTON
## 2347 243843 2018 Guadalajara        Belenes Suc. Belenes    7812  MARIA
## 2348 244648 2018 Guadalajara        Belenes Suc. Belenes    8896  DE GE
## 2349 252687 2018 Guadalajara        Belenes Suc. Belenes    2007  CREME
## 2350 254856 2018 Guadalajara        Belenes Suc. Belenes    2777  CEREA
## 2351 257737 2018 Guadalajara        Belenes Suc. Belenes    2685  RAUL 
## 2352 258882 2018 Guadalajara        Belenes Suc. Belenes    3235  CREME
## 2353 260106 2018 Guadalajara        Belenes Suc. Belenes     335  FELIP
## 2354 262178 2018 Guadalajara        Belenes Suc. Belenes    3917  ABARR
## 2355 304126 2019 Guadalajara        Belenes Suc. Belenes    7737  ABARR
## 2356 304194 2019 Guadalajara        Belenes Suc. Belenes    7796  MARIA
## 2357 304280 2019 Guadalajara        Belenes Suc. Belenes    7800  SAN I
## 2358 304390 2019 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 2359 304490 2019 Guadalajara        Belenes Suc. Belenes    7884  ABARR
## 2360 304596 2019 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 2361 304696 2019 Guadalajara        Belenes Suc. Belenes    8010  ABARR
## 2362 304799 2019 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 2363 304893 2019 Guadalajara        Belenes Suc. Belenes    8201  MIGUE
## 2364 304990 2019 Guadalajara        Belenes Suc. Belenes    8284  MINI 
## 2365 305065 2019 Guadalajara        Belenes Suc. Belenes    8678  FERNA
## 2366 305212 2019 Guadalajara        Belenes Suc. Belenes    8691  GUADA
## 2367 305274 2019 Guadalajara        Belenes Suc. Belenes    8696  ABARR
## 2368 305347 2019 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 2369 305533 2019 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 2370 305619 2019 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 2371 305733 2019 Guadalajara        Belenes Suc. Belenes    9017  MINIS
## 2372 305836 2019 Guadalajara        Belenes Suc. Belenes    9041  ABARR
## 2373 305952 2019 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 2374 306143 2019 Guadalajara        Belenes Suc. Belenes    9169  ISABE
## 2375 306211 2019 Guadalajara        Belenes Suc. Belenes    9186  EMPOR
## 2376 306288 2019 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 2377 306399 2019 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 2378 306525 2019 Guadalajara        Belenes Suc. Belenes    9462  MINI 
## 2379 306699 2019 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 2380 306806 2019 Guadalajara        Belenes Suc. Belenes    9574  ABARR
## 2381 306976 2019 Guadalajara        Belenes Suc. Belenes    9603  ABARR
## 2382 307070 2019 Guadalajara        Belenes Suc. Belenes    9615  TIEND
## 2383 307254 2019 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 2384 307368 2019 Guadalajara        Belenes Suc. Belenes    9671  ABARR
## 2385 307472 2019 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 2386 307655 2019 Guadalajara        Belenes Suc. Belenes    9743  ABARR
## 2387 307740 2019 Guadalajara        Belenes Suc. Belenes    9767  ABARR
## 2388 307847 2019 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 2389 308040 2019 Guadalajara        Belenes Suc. Belenes    9884  ABARR
## 2390 308149 2019 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 2391 308245 2019 Guadalajara        Belenes Suc. Belenes    9915  ADAN 
## 2392 308484 2019 Guadalajara        Belenes Suc. Belenes     100  ABARR
## 2393 308583 2019 Guadalajara        Belenes Suc. Belenes     154  ABARR
## 2394 308669 2019 Guadalajara        Belenes Suc. Belenes     183  CESAR
## 2395 308971 2019 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 2396 309146 2019 Guadalajara        Belenes Suc. Belenes     286  SIX T
## 2397 309245 2019 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 2398 309440 2019 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 2399 309542 2019 Guadalajara        Belenes Suc. Belenes     407  LUIS 
## 2400 309623 2019 Guadalajara        Belenes Suc. Belenes     426  ANTON
## 2401 309711 2019 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 2402 309827 2019 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 2403 309930 2019 Guadalajara        Belenes Suc. Belenes     535  MINIS
## 2404 310026 2019 Guadalajara        Belenes Suc. Belenes     578  ERIK 
## 2405 310126 2019 Guadalajara        Belenes Suc. Belenes     597  ALBIN
## 2406 310214 2019 Guadalajara        Belenes Suc. Belenes     623  MARIA
## 2407 310329 2019 Guadalajara        Belenes Suc. Belenes     651  SUPER
## 2408 310540 2019 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 2409 310816 2019 Guadalajara        Belenes Suc. Belenes     921  MOISE
## 2410 310926 2019 Guadalajara        Belenes Suc. Belenes     932  MARIA
## 2411 311043 2019 Guadalajara        Belenes Suc. Belenes    1030  ABARR
## 2412 311222 2019 Guadalajara        Belenes Suc. Belenes    1116  ABARR
## 2413 311294 2019 Guadalajara        Belenes Suc. Belenes    1160  ABARR
## 2414 311386 2019 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 2415 311495 2019 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 2416 311604 2019 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 2417 311674 2019 Guadalajara        Belenes Suc. Belenes    1317  DAVID
## 2418 311860 2019 Guadalajara        Belenes Suc. Belenes    1393  SUPER
## 2419 311969 2019 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 2420 312076 2019 Guadalajara        Belenes Suc. Belenes    1420  MARCE
## 2421 312205 2019 Guadalajara        Belenes Suc. Belenes    1543  EMMAN
## 2422 312304 2019 Guadalajara        Belenes Suc. Belenes    1635  LA HI
## 2423 312410 2019 Guadalajara        Belenes Suc. Belenes    1664  ABARR
## 2424 312512 2019 Guadalajara        Belenes Suc. Belenes    1713  MISCE
## 2425 312602 2019 Guadalajara        Belenes Suc. Belenes    1716  ABARR
## 2426 312849 2019 Guadalajara        Belenes Suc. Belenes    1759  ELVA 
## 2427 312962 2019 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 2428 313060 2019 Guadalajara        Belenes Suc. Belenes    1791  ALICI
## 2429 313155 2019 Guadalajara        Belenes Suc. Belenes    1795  ABARR
## 2430 313246 2019 Guadalajara        Belenes Suc. Belenes    1812  ABARR
## 2431 313430 2019 Guadalajara        Belenes Suc. Belenes    1859  MARIA
## 2432 313604 2019 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 2433 313784 2019 Guadalajara        Belenes Suc. Belenes    1956  ABARR
## 2434 313890 2019 Guadalajara        Belenes Suc. Belenes    2000  ABARR
## 2435 314043 2019 Guadalajara        Belenes Suc. Belenes    2075  MARTH
## 2436 314320 2019 Guadalajara        Belenes Suc. Belenes    2294  JOSE 
## 2437 314400 2019 Guadalajara        Belenes Suc. Belenes    2399  ABARR
## 2438 314499 2019 Guadalajara        Belenes Suc. Belenes    2413  LA CH
## 2439 314625 2019 Guadalajara        Belenes Suc. Belenes    2529  ABARR
## 2440 314805 2019 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 2441 314914 2019 Guadalajara        Belenes Suc. Belenes    2702  JOSE 
## 2442 315000 2019 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 2443 315115 2019 Guadalajara        Belenes Suc. Belenes    2759  JOSE 
## 2444 315200 2019 Guadalajara        Belenes Suc. Belenes    2795  ABARR
## 2445 315381 2019 Guadalajara        Belenes Suc. Belenes    2912  BRAUL
## 2446 315486 2019 Guadalajara        Belenes Suc. Belenes    2926  J JES
## 2447 315561 2019 Guadalajara        Belenes Suc. Belenes    2993  MARTI
## 2448 315650 2019 Guadalajara        Belenes Suc. Belenes    3023  ABARR
## 2449 315734 2019 Guadalajara        Belenes Suc. Belenes    3060  MARIA
## 2450 315795 2019 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 2451 315893 2019 Guadalajara        Belenes Suc. Belenes    3085  SUPER
## 2452 316071 2019 Guadalajara        Belenes Suc. Belenes    3179  LA DU
## 2453 316230 2019 Guadalajara        Belenes Suc. Belenes    6688  SALVA
## 2454 316296 2019 Guadalajara        Belenes Suc. Belenes    2486  ABARR
## 2455 316431 2019 Guadalajara        Belenes Suc. Belenes    2516  JOSE 
## 2456 316692 2019 Guadalajara        Belenes Suc. Belenes    2622  TORIB
## 2457 316727 2019 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 2458 316835 2019 Guadalajara        Belenes Suc. Belenes    2700  MARCO
## 2459 316925 2019 Guadalajara        Belenes Suc. Belenes    2912  ABARR
## 2460 317005 2019 Guadalajara        Belenes Suc. Belenes    3082  GERAR
## 2461 317066 2019 Guadalajara        Belenes Suc. Belenes    3087  JOSE 
## 2462 317126 2019 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 2463 317336 2019 Guadalajara        Belenes Suc. Belenes    7732  EL CH
## 2464 317589 2019 Guadalajara        Belenes Suc. Belenes    7802  ANTON
## 2465 317684 2019 Guadalajara        Belenes Suc. Belenes    7812  MARIA
## 2466 317761 2019 Guadalajara        Belenes Suc. Belenes    7987  PRIMI
## 2467 318135 2019 Guadalajara        Belenes Suc. Belenes    8635  JOSE 
## 2468 318291 2019 Guadalajara        Belenes Suc. Belenes    8896  DE GE
## 2469 318625 2019 Guadalajara        Belenes Suc. Belenes    9082  DULCE
## 2470 318935 2019 Guadalajara        Belenes Suc. Belenes    9164  DANIE
## 2471 319731 2019 Guadalajara        Belenes Suc. Belenes    9577  MARIA
## 2472 319872 2019 Guadalajara        Belenes Suc. Belenes    9693  JAIME
## 2473 320416 2019 Guadalajara        Belenes Suc. Belenes    9964  JOSE 
## 2474 320449 2019 Guadalajara        Belenes Suc. Belenes      30  LAURA
## 2475 320535 2019 Guadalajara        Belenes Suc. Belenes      67  LA PR
## 2476 320821 2019 Guadalajara        Belenes Suc. Belenes     181  ABARR
## 2477 320918 2019 Guadalajara        Belenes Suc. Belenes     209  MARTH
## 2478 320959 2019 Guadalajara        Belenes Suc. Belenes     222  FLOR 
## 2479 321014 2019 Guadalajara        Belenes Suc. Belenes     268  CIPRI
## 2480 321224 2019 Guadalajara        Belenes Suc. Belenes     453  JESUS
## 2481 321610 2019 Guadalajara        Belenes Suc. Belenes     579  ROSAR
## 2482 321749 2019 Guadalajara        Belenes Suc. Belenes     659  ABARR
## 2483 322086 2019 Guadalajara        Belenes Suc. Belenes     766  ROSA 
## 2484 322265 2019 Guadalajara        Belenes Suc. Belenes     821  MONIC
## 2485 322309 2019 Guadalajara        Belenes Suc. Belenes     837  JOSEF
## 2486 322364 2019 Guadalajara        Belenes Suc. Belenes     910  MARTH
## 2487 322513 2019 Guadalajara        Belenes Suc. Belenes     952  LICON
## 2488 322825 2019 Guadalajara        Belenes Suc. Belenes    1079  SANDR
## 2489 322957 2019 Guadalajara        Belenes Suc. Belenes    1165  AMALI
## 2490 323042 2019 Guadalajara        Belenes Suc. Belenes    1175  CREME
## 2491 323275 2019 Guadalajara        Belenes Suc. Belenes    1273  PRIMI
## 2492 323630 2019 Guadalajara        Belenes Suc. Belenes    1433  EVARI
## 2493 323782 2019 Guadalajara        Belenes Suc. Belenes    1501  SAN J
## 2494 324386 2019 Guadalajara        Belenes Suc. Belenes    2007  CREME
## 2495 324537 2019 Guadalajara        Belenes Suc. Belenes    2058  POLLE
## 2496 324614 2019 Guadalajara        Belenes Suc. Belenes    2078  RUBEN
## 2497 324717 2019 Guadalajara        Belenes Suc. Belenes    2112  INDAL
## 2498 325066 2019 Guadalajara        Belenes Suc. Belenes    2364  LUCY 
## 2499 325661 2019 Guadalajara        Belenes Suc. Belenes    2661  MARIA
## 2500 325731 2019 Guadalajara        Belenes Suc. Belenes    2700  MARIA
## 2501 325772 2019 Guadalajara        Belenes Suc. Belenes    2734  OSCAR
## 2502 325862 2019 Guadalajara        Belenes Suc. Belenes    2760  ABARR
## 2503 325897 2019 Guadalajara        Belenes Suc. Belenes    2765  KEBEL
## 2504 326166 2019 Guadalajara        Belenes Suc. Belenes    2826  MARIA
## 2505 326255 2019 Guadalajara        Belenes Suc. Belenes    2842  MARIA
## 2506 326292 2019 Guadalajara        Belenes Suc. Belenes    2913  MARIA
## 2507 326626 2019 Guadalajara        Belenes Suc. Belenes    3017  MARIA
## 2508 326682 2019 Guadalajara        Belenes Suc. Belenes    3018  ABARR
## 2509 326897 2019 Guadalajara        Belenes Suc. Belenes    3175  MARIA
## 2510 327217 2019 Guadalajara        Belenes Suc. Belenes    1059  EL PO
## 2511 327267 2019 Guadalajara        Belenes Suc. Belenes    8597  CERVE
## 2512 327603 2019 Guadalajara        Belenes Suc. Belenes    4835  FRANC
## 2513 327676 2019 Guadalajara        Belenes Suc. Belenes    7611  MARTI
## 2514 327857 2019 Guadalajara        Belenes Suc. Belenes    2566  ANTON
## 2515 328030 2019 Guadalajara        Belenes Suc. Belenes    2685  RAUL 
## 2516 328064 2019 Guadalajara        Belenes Suc. Belenes    2760  FRANC
## 2517 328248 2019 Guadalajara        Belenes Suc. Belenes    2845  SEVER
## 2518 328276 2019 Guadalajara        Belenes Suc. Belenes    2911  ELIGI
## 2519 328366 2019 Guadalajara        Belenes Suc. Belenes    2945  TOMAS
## 2520 328455 2019 Guadalajara        Belenes Suc. Belenes    2983  MARIA
## 2521 328653 2019 Guadalajara        Belenes Suc. Belenes    3109  RODOL
## 2522 328891 2019 Guadalajara        Belenes Suc. Belenes    3235  CREME
## 2523 329482 2019 Guadalajara        Belenes Suc. Belenes    3598  MISCE
## 2524 329824 2019 Guadalajara        Belenes Suc. Belenes     335  FELIP
## 2525 330107 2019 Guadalajara        Belenes Suc. Belenes    1298  SUPER
## 2526 330538 2019 Guadalajara        Belenes Suc. Belenes    7373  MISCE
## 2527 331128 2019 Guadalajara        Belenes Suc. Belenes    9500  REBEC
## 2528 331386 2019 Guadalajara        Belenes Suc. Belenes      17  DEPOS
## 2529 331828 2019 Guadalajara        Belenes Suc. Belenes    1760  MISCE
## 2530 332287 2019 Guadalajara        Belenes Suc. Belenes    8927  GRACI
## 2531 332542 2019 Guadalajara        Belenes Suc. Belenes    3917  ABARR
## 2532 332624 2019 Guadalajara        Belenes Suc. Belenes    3929  MISCE
## 2533 332795 2019 Guadalajara        Belenes Suc. Belenes    9313  OFELI
## 2534 333031 2019 Guadalajara        Belenes Suc. Belenes    8122  FRUTA
## 2535 333608 2019 Guadalajara        Belenes Suc. Belenes    5562  DAVID
## 2536 333666 2019 Guadalajara        Belenes Suc. Belenes    6101  MISCE
## 2537 333726 2019 Guadalajara        Belenes Suc. Belenes    6103  CREME
## 2538 334107 2019 Guadalajara        Belenes Suc. Belenes    7673  HUMBE
## 2539 334251 2019 Guadalajara        Belenes Suc. Belenes    7772  VINOS
## 2540 334543 2019 Guadalajara        Belenes Suc. Belenes    7794  ABARR
## 2541 334980 2019 Guadalajara        Belenes Suc. Belenes    7853  ABARR
## 2542 335108 2019 Guadalajara        Belenes Suc. Belenes    7867  EL CO
## 2543 335168 2019 Guadalajara        Belenes Suc. Belenes    7883  MARTH
## 2544 335287 2019 Guadalajara        Belenes Suc. Belenes    7893  MISCE
## 2545 335524 2019 Guadalajara        Belenes Suc. Belenes    8045  TERES
## 2546 335599 2019 Guadalajara        Belenes Suc. Belenes    8076  ABARR
## 2547 335783 2019 Guadalajara        Belenes Suc. Belenes    8116  MIGUE
## 2548 335831 2019 Guadalajara        Belenes Suc. Belenes    8142  ABARR
## 2549 335891 2019 Guadalajara        Belenes Suc. Belenes    8144  MINI 
## 2550 336008 2019 Guadalajara        Belenes Suc. Belenes    8164  ABARR
## 2551 336312 2019 Guadalajara        Belenes Suc. Belenes    8387  FRANC
## 2552 336363 2019 Guadalajara        Belenes Suc. Belenes    8457  JORGE
## 2553 336433 2019 Guadalajara        Belenes Suc. Belenes    8477  SUPER
## 2554 337135 2019 Guadalajara        Belenes Suc. Belenes    8942  ANTON
## 2555 337222 2019 Guadalajara        Belenes Suc. Belenes    8949  ELISA
## 2556 337301 2019 Guadalajara        Belenes Suc. Belenes    8962  ELOIS
## 2557 337368 2019 Guadalajara        Belenes Suc. Belenes    8969  HILAR
## 2558 337455 2019 Guadalajara        Belenes Suc. Belenes    8986  JOSE 
## 2559 337493 2019 Guadalajara        Belenes Suc. Belenes    8987  MISCE
## 2560 337694 2019 Guadalajara        Belenes Suc. Belenes    9056  MARTH
## 2561 337799 2019 Guadalajara        Belenes Suc. Belenes    9065  ADRI 
## 2562 337873 2019 Guadalajara        Belenes Suc. Belenes    9078  ISMAE
## 2563 338237 2019 Guadalajara        Belenes Suc. Belenes    9122  MARIA
## 2564 338321 2019 Guadalajara        Belenes Suc. Belenes    9146  ABARR
## 2565 338394 2019 Guadalajara        Belenes Suc. Belenes    9150  FELIZ
## 2566 338483 2019 Guadalajara        Belenes Suc. Belenes    9170  JORGE
## 2567 338573 2019 Guadalajara        Belenes Suc. Belenes    9191  ANGEL
## 2568 338778 2019 Guadalajara        Belenes Suc. Belenes    9257  BERTH
## 2569 338843 2019 Guadalajara        Belenes Suc. Belenes    9263  BEATR
## 2570 338904 2019 Guadalajara        Belenes Suc. Belenes    9280  MISCE
## 2571 339041 2019 Guadalajara        Belenes Suc. Belenes    9300  MISCE
## 2572 339171 2019 Guadalajara        Belenes Suc. Belenes    9304  TORIB
## 2573 339354 2019 Guadalajara        Belenes Suc. Belenes    9362  ANA M
## 2574 339485 2019 Guadalajara        Belenes Suc. Belenes    9372  CLARA
## 2575 339666 2019 Guadalajara        Belenes Suc. Belenes    9386  MARIA
## 2576 339769 2019 Guadalajara        Belenes Suc. Belenes    9392  ESPER
## 2577 340081 2019 Guadalajara        Belenes Suc. Belenes    9427  MARGA
## 2578 340202 2019 Guadalajara        Belenes Suc. Belenes    9440  ROSA 
## 2579 340326 2019 Guadalajara        Belenes Suc. Belenes    9518  MARTH
## 2580 340494 2019 Guadalajara        Belenes Suc. Belenes    9544  INOCE
## 2581 340763 2019 Guadalajara        Belenes Suc. Belenes    9558  MARIA
## 2582 340868 2019 Guadalajara        Belenes Suc. Belenes    9581  SILVI
## 2583 340927 2019 Guadalajara        Belenes Suc. Belenes    9586  DANIE
## 2584 341180 2019 Guadalajara        Belenes Suc. Belenes    9639  MARTH
## 2585 341317 2019 Guadalajara        Belenes Suc. Belenes    9644  JOSEF
## 2586 341436 2019 Guadalajara        Belenes Suc. Belenes    9650  MARIA
## 2587 341518 2019 Guadalajara        Belenes Suc. Belenes    9670  ABARR
## 2588 341682 2019 Guadalajara        Belenes Suc. Belenes    9696  JOSE 
## 2589 341742 2019 Guadalajara        Belenes Suc. Belenes    9712  MARIA
## 2590 342032 2019 Guadalajara        Belenes Suc. Belenes    9753  ABARR
## 2591 342196 2019 Guadalajara        Belenes Suc. Belenes    9764  ABARR
## 2592 342255 2019 Guadalajara        Belenes Suc. Belenes    9773  JUAN 
## 2593 342344 2019 Guadalajara        Belenes Suc. Belenes    9782  MARIA
## 2594 342414 2019 Guadalajara        Belenes Suc. Belenes    9788  ANTON
## 2595 342812 2019 Guadalajara        Belenes Suc. Belenes    9833  APOLI
## 2596 342960 2019 Guadalajara        Belenes Suc. Belenes    9852  DANIE
## 2597 343021 2019 Guadalajara        Belenes Suc. Belenes    9854  ROCIO
## 2598 343096 2019 Guadalajara        Belenes Suc. Belenes    9864  CIBER
## 2599 343300 2019 Guadalajara        Belenes Suc. Belenes    9900  MARIA
## 2600 343576 2019 Guadalajara        Belenes Suc. Belenes    9940  SMART
## 2601 343657 2019 Guadalajara        Belenes Suc. Belenes    9941  ABARR
## 2602 343700 2019 Guadalajara        Belenes Suc. Belenes    9970  ESTHE
## 2603 343755 2019 Guadalajara        Belenes Suc. Belenes    9971  JOSE 
## 2604 344010 2019 Guadalajara        Belenes Suc. Belenes      21  TERES
## 2605 344136 2019 Guadalajara        Belenes Suc. Belenes      28  JUAN 
## 2606 345039 2019 Guadalajara        Belenes Suc. Belenes     108  ANACL
## 2607 345127 2019 Guadalajara        Belenes Suc. Belenes     125  ABARR
## 2608 345227 2019 Guadalajara        Belenes Suc. Belenes     153  ABARR
## 2609 345288 2019 Guadalajara        Belenes Suc. Belenes     156  MARTH
## 2610 345356 2019 Guadalajara        Belenes Suc. Belenes     158  ABARR
## 2611 345422 2019 Guadalajara        Belenes Suc. Belenes     161  MARIA
## 2612 345484 2019 Guadalajara        Belenes Suc. Belenes     162  ALICI
## 2613 345533 2019 Guadalajara        Belenes Suc. Belenes     165  JOSE 
## 2614 345572 2019 Guadalajara        Belenes Suc. Belenes     176  ABARR
## 2615 345633 2019 Guadalajara        Belenes Suc. Belenes     178  ABARR
## 2616 345759 2019 Guadalajara        Belenes Suc. Belenes     205  ABARR
## 2617 345861 2019 Guadalajara        Belenes Suc. Belenes     210  MARIA
## 2618 345939 2019 Guadalajara        Belenes Suc. Belenes     259  MARIA
## 2619 346209 2019 Guadalajara        Belenes Suc. Belenes     277  MANUE
## 2620 346378 2019 Guadalajara        Belenes Suc. Belenes     360  ANITA
## 2621 346418 2019 Guadalajara        Belenes Suc. Belenes     369  PEDRO
## 2622 346570 2019 Guadalajara        Belenes Suc. Belenes     397  FRANC
## 2623 346706 2019 Guadalajara        Belenes Suc. Belenes     441  ALICI
## 2624 346755 2019 Guadalajara        Belenes Suc. Belenes     446  MARIA
## 2625 346873 2019 Guadalajara        Belenes Suc. Belenes     448  EL DK
## 2626 346950 2019 Guadalajara        Belenes Suc. Belenes     455  IRMA 
## 2627 347010 2019 Guadalajara        Belenes Suc. Belenes     457  MARIA
## 2628 347331 2019 Guadalajara        Belenes Suc. Belenes     551  ABARR
## 2629 347611 2019 Guadalajara        Belenes Suc. Belenes     587  YENI 
## 2630 347671 2019 Guadalajara        Belenes Suc. Belenes     604  J ROS
## 2631 348002 2019 Guadalajara        Belenes Suc. Belenes     646  ADALB
## 2632 348143 2019 Guadalajara        Belenes Suc. Belenes     653  MARIA
## 2633 348333 2019 Guadalajara        Belenes Suc. Belenes     713  SOFIA
## 2634 348394 2019 Guadalajara        Belenes Suc. Belenes     729  JORGE
## 2635 348482 2019 Guadalajara        Belenes Suc. Belenes     733  JUANA
## 2636 348548 2019 Guadalajara        Belenes Suc. Belenes     736  MARIA
## 2637 348647 2019 Guadalajara        Belenes Suc. Belenes     770  FERNA
## 2638 348825 2019 Guadalajara        Belenes Suc. Belenes     823  SEBAS
## 2639 348913 2019 Guadalajara        Belenes Suc. Belenes     825  CYNTH
## 2640 348988 2019 Guadalajara        Belenes Suc. Belenes     828  GABRI
## 2641 349165 2019 Guadalajara        Belenes Suc. Belenes     844  HERMI
## 2642 349426 2019 Guadalajara        Belenes Suc. Belenes     871  GUSTA
## 2643 349468 2019 Guadalajara        Belenes Suc. Belenes     883  MARIA
## 2644 349688 2019 Guadalajara        Belenes Suc. Belenes     927  JORGE
## 2645 349816 2019 Guadalajara        Belenes Suc. Belenes     940  MANUE
## 2646 350242 2019 Guadalajara        Belenes Suc. Belenes     970  ABARR
## 2647 350348 2019 Guadalajara        Belenes Suc. Belenes     975  JOSE 
## 2648 350593 2019 Guadalajara        Belenes Suc. Belenes    1021  ROBER
## 2649 350784 2019 Guadalajara        Belenes Suc. Belenes    1032  ABARR
## 2650 351246 2019 Guadalajara        Belenes Suc. Belenes    1100  ROSA 
## 2651 351741 2019 Guadalajara        Belenes Suc. Belenes    1177  OLIVI
## 2652 351808 2019 Guadalajara        Belenes Suc. Belenes    1183  RAYIT
## 2653 351884 2019 Guadalajara        Belenes Suc. Belenes    1192  FELIP
## 2654 352436 2019 Guadalajara        Belenes Suc. Belenes    1297  HOGR 
## 2655 352657 2019 Guadalajara        Belenes Suc. Belenes    1344  MA GU
## 2656 352726 2019 Guadalajara        Belenes Suc. Belenes    1347  JOSE 
## 2657 352911 2019 Guadalajara        Belenes Suc. Belenes    1358  JUAN 
## 2658 353001 2019 Guadalajara        Belenes Suc. Belenes    1375  BEATR
## 2659 353333 2019 Guadalajara        Belenes Suc. Belenes    1432  VINOS
## 2660 353560 2019 Guadalajara        Belenes Suc. Belenes    1477  ABARR
## 2661 353682 2019 Guadalajara        Belenes Suc. Belenes    1492  MARGA
## 2662 353736 2019 Guadalajara        Belenes Suc. Belenes    1499  IVAN 
## 2663 353922 2019 Guadalajara        Belenes Suc. Belenes    1536  ABARR
## 2664 354442 2019 Guadalajara        Belenes Suc. Belenes    1609  KARIN
## 2665 354764 2019 Guadalajara        Belenes Suc. Belenes    1707  MIGUE
## 2666 354869 2019 Guadalajara        Belenes Suc. Belenes    1722  LAGRO
## 2667 355366 2019 Guadalajara        Belenes Suc. Belenes    1752  BEATR
## 2668 355437 2019 Guadalajara        Belenes Suc. Belenes    1753  MARIA
## 2669 355632 2019 Guadalajara        Belenes Suc. Belenes    1776  FERNA
## 2670 355752 2019 Guadalajara        Belenes Suc. Belenes    1796  NORMA
## 2671 355832 2019 Guadalajara        Belenes Suc. Belenes    1811  MARIA
## 2672 355906 2019 Guadalajara        Belenes Suc. Belenes    1813  JAIME
## 2673 355979 2019 Guadalajara        Belenes Suc. Belenes    1815  SERGI
## 2674 356102 2019 Guadalajara        Belenes Suc. Belenes    1861  ABARR
## 2675 356286 2019 Guadalajara        Belenes Suc. Belenes    1915  CELIA
## 2676 356365 2019 Guadalajara        Belenes Suc. Belenes    1926  MARIA
## 2677 356510 2019 Guadalajara        Belenes Suc. Belenes    1940  LILIA
## 2678 356665 2019 Guadalajara        Belenes Suc. Belenes    1950  AUREL
## 2679 356752 2019 Guadalajara        Belenes Suc. Belenes    1964  IVAN 
## 2680 356792 2019 Guadalajara        Belenes Suc. Belenes    1967  ABARR
## 2681 356956 2019 Guadalajara        Belenes Suc. Belenes    1992  VINOS
## 2682 357010 2019 Guadalajara        Belenes Suc. Belenes    1999  ABARR
## 2683 357333 2019 Guadalajara        Belenes Suc. Belenes    2046  CATAR
## 2684 357474 2019 Guadalajara        Belenes Suc. Belenes    2073  ABARR
## 2685 357533 2019 Guadalajara        Belenes Suc. Belenes    2076  CELIA
## 2686 357577 2019 Guadalajara        Belenes Suc. Belenes    2104  LUZ R
## 2687 357602 2019 Guadalajara        Belenes Suc. Belenes    2105  FRANC
## 2688 357683 2019 Guadalajara        Belenes Suc. Belenes    2121  EFRAI
## 2689 357753 2019 Guadalajara        Belenes Suc. Belenes    2122  FER T
## 2690 357837 2019 Guadalajara        Belenes Suc. Belenes    2126  JOSE 
## 2691 358398 2019 Guadalajara        Belenes Suc. Belenes    2232  ABARR
## 2692 358501 2019 Guadalajara        Belenes Suc. Belenes    2241  MARIA
## 2693 358608 2019 Guadalajara        Belenes Suc. Belenes    2245  JOSE 
## 2694 358663 2019 Guadalajara        Belenes Suc. Belenes    2246  RAUL 
## 2695 358733 2019 Guadalajara        Belenes Suc. Belenes    2260  MISCE
## 2696 358806 2019 Guadalajara        Belenes Suc. Belenes    2272  ALFRE
## 2697 358868 2019 Guadalajara        Belenes Suc. Belenes    2273  GLORI
## 2698 359342 2019 Guadalajara        Belenes Suc. Belenes    2391  MARIA
## 2699 359372 2019 Guadalajara        Belenes Suc. Belenes    2393  CARLO
## 2700 359430 2019 Guadalajara        Belenes Suc. Belenes    2402  ABARR
## 2701 359490 2019 Guadalajara        Belenes Suc. Belenes    2435  VINOS
## 2702 359655 2019 Guadalajara        Belenes Suc. Belenes    2466  FELIC
## 2703 359729 2019 Guadalajara        Belenes Suc. Belenes    2467  ABARR
## 2704 359965 2019 Guadalajara        Belenes Suc. Belenes    2487  MARIA
## 2705 360057 2019 Guadalajara        Belenes Suc. Belenes    2500  JOSE 
## 2706 360246 2019 Guadalajara        Belenes Suc. Belenes    2509  ANA R
## 2707 360516 2019 Guadalajara        Belenes Suc. Belenes    2528  OBSEB
## 2708 360655 2019 Guadalajara        Belenes Suc. Belenes    2543  ABARR
## 2709 360802 2019 Guadalajara        Belenes Suc. Belenes    2551  ABARR
## 2710 360880 2019 Guadalajara        Belenes Suc. Belenes    2567  MARTH
## 2711 360944 2019 Guadalajara        Belenes Suc. Belenes    2591  ABARR
## 2712 361540 2019 Guadalajara        Belenes Suc. Belenes    2686  ABARR
## 2713 361627 2019 Guadalajara        Belenes Suc. Belenes    2704  JOSE 
## 2714 361707 2019 Guadalajara        Belenes Suc. Belenes    2709  JOSEF
## 2715 361845 2019 Guadalajara        Belenes Suc. Belenes    2713  JOSE 
## 2716 361922 2019 Guadalajara        Belenes Suc. Belenes    2718  JOSE 
## 2717 362006 2019 Guadalajara        Belenes Suc. Belenes    2722  MARIA
## 2718 362030 2019 Guadalajara        Belenes Suc. Belenes    2725  ABARR
## 2719 362097 2019 Guadalajara        Belenes Suc. Belenes    2727  ABARR
## 2720 362173 2019 Guadalajara        Belenes Suc. Belenes    2729  FRANC
## 2721 362278 2019 Guadalajara        Belenes Suc. Belenes    2736  AZUCE
## 2722 362522 2019 Guadalajara        Belenes Suc. Belenes    2764  ALBER
## 2723 362577 2019 Guadalajara        Belenes Suc. Belenes    2780  ABARR
## 2724 362692 2019 Guadalajara        Belenes Suc. Belenes    2791  MARIA
## 2725 362864 2019 Guadalajara        Belenes Suc. Belenes    2803  MARIA
## 2726 363180 2019 Guadalajara        Belenes Suc. Belenes    2827  MARIA
## 2727 363223 2019 Guadalajara        Belenes Suc. Belenes    2841  GILBE
## 2728 363474 2019 Guadalajara        Belenes Suc. Belenes    2863  CARLO
## 2729 363979 2019 Guadalajara        Belenes Suc. Belenes    2920  LUIS 
## 2730 364329 2019 Guadalajara        Belenes Suc. Belenes    2978  PATRI
## 2731 364586 2019 Guadalajara        Belenes Suc. Belenes    3028  CREME
## 2732 365301 2019 Guadalajara        Belenes Suc. Belenes    3133  MARIA
## 2733 365433 2019 Guadalajara        Belenes Suc. Belenes    3148  GLORI
## 2734 365541 2019 Guadalajara        Belenes Suc. Belenes    3176  MANUE
## 2735 365599 2019 Guadalajara        Belenes Suc. Belenes    3192  JOSE 
## 2736 365710 2019 Guadalajara        Belenes Suc. Belenes    3211  ROBER
## 2737 366079 2019 Guadalajara        Belenes Suc. Belenes    3268  ABELI
## 2738 366265 2019 Guadalajara        Belenes Suc. Belenes      11  MARIA
## 2739 366422 2019 Guadalajara        Belenes Suc. Belenes      19  MARTH
## 2740 366688 2019 Guadalajara        Belenes Suc. Belenes    1040  ABARR
## 2741 367002 2019 Guadalajara        Belenes Suc. Belenes    9397  EL CR
## 2742 367234 2019 Guadalajara        Belenes Suc. Belenes    5493  ABARR
## 2743 367420 2019 Guadalajara        Belenes Suc. Belenes    9641  CREME
## 2744 367531 2019 Guadalajara        Belenes Suc. Belenes    2252  ABARR
## 2745 367901 2019 Guadalajara        Belenes Suc. Belenes    6721  BALDE
## 2746 368024 2019 Guadalajara        Belenes Suc. Belenes     692  HECTO
## 2747 368238 2019 Guadalajara        Belenes Suc. Belenes    6674  LUZ E
## 2748 368397 2019 Guadalajara        Belenes Suc. Belenes    2492  MARCO
## 2749 368463 2019 Guadalajara        Belenes Suc. Belenes    2498  TADEO
## 2750 368692 2019 Guadalajara        Belenes Suc. Belenes    2576  OSCAR
## 2751 368925 2019 Guadalajara        Belenes Suc. Belenes    2594  RUBEN
## 2752 368989 2019 Guadalajara        Belenes Suc. Belenes    2600  ABARR
## 2753 369085 2019 Guadalajara        Belenes Suc. Belenes    2615  ABARR
## 2754 369160 2019 Guadalajara        Belenes Suc. Belenes    2621  DANIE
## 2755 369384 2019 Guadalajara        Belenes Suc. Belenes    2658  AMPAR
## 2756 369465 2019 Guadalajara        Belenes Suc. Belenes    2672  IRMA 
## 2757 369853 2019 Guadalajara        Belenes Suc. Belenes    2756  FAUST
## 2758 369925 2019 Guadalajara        Belenes Suc. Belenes    2802  JUAN 
## 2759 370045 2019 Guadalajara        Belenes Suc. Belenes    2821  MARIA
## 2760 370401 2019 Guadalajara        Belenes Suc. Belenes    2909  ANGEL
## 2761 370548 2019 Guadalajara        Belenes Suc. Belenes    2944  ANGEL
## 2762 370601 2019 Guadalajara        Belenes Suc. Belenes    2989  BEATR
## 2763 370717 2019 Guadalajara        Belenes Suc. Belenes    3012  DOLOR
## 2764 370773 2019 Guadalajara        Belenes Suc. Belenes    3014  MISCE
## 2765 370892 2019 Guadalajara        Belenes Suc. Belenes    3043  ALSA 
## 2766 371083 2019 Guadalajara        Belenes Suc. Belenes    3077  RODRI
## 2767 371140 2019 Guadalajara        Belenes Suc. Belenes    3080  J JES
## 2768 371306 2019 Guadalajara        Belenes Suc. Belenes    3128  FERNA
## 2769 371363 2019 Guadalajara        Belenes Suc. Belenes    3153  PACHE
## 2770 371450 2019 Guadalajara        Belenes Suc. Belenes    3161  NORMA
## 2771 371579 2019 Guadalajara        Belenes Suc. Belenes    3174  FRUTA
## 2772 371774 2019 Guadalajara        Belenes Suc. Belenes    7821  MISCE
## 2773 372187 2019 Guadalajara        Belenes Suc. Belenes    8321  ABARR
## 2774 372285 2019 Guadalajara        Belenes Suc. Belenes    8395  ABARR
## 2775 372581 2019 Guadalajara        Belenes Suc. Belenes    1526  MISCE
## 2776 372706 2019 Guadalajara        Belenes Suc. Belenes    2356  CARNI
## 2777 372752 2019 Guadalajara        Belenes Suc. Belenes    2736  ABARR
## 2778 372822 2019 Guadalajara        Belenes Suc. Belenes    9398  MISCE
## 2779 372940 2019 Guadalajara        Belenes Suc. Belenes    9423  MISCE
## 2780 373090 2019 Guadalajara        Belenes Suc. Belenes     356  JOSE 
## 2781 373382 2019 Guadalajara        Belenes Suc. Belenes    5139  VINOS
## 2782 373453 2019 Guadalajara        Belenes Suc. Belenes    5143  DEPOS
## 2783 373562 2019 Guadalajara        Belenes Suc. Belenes    1291  MICEL
## 2784 373672 2019 Guadalajara        Belenes Suc. Belenes    3493  MISCE
## 2785 373748 2019 Guadalajara        Belenes Suc. Belenes    8514  MISCE
## 2786 374101 2019 Guadalajara        Belenes Suc. Belenes    7439  MISCE
## 2787 374173 2019 Guadalajara        Belenes Suc. Belenes    3372  GERAR
## 2788 374328 2019 Guadalajara        Belenes Suc. Belenes    8933  MISCE
## 2789 374405 2019 Guadalajara        Belenes Suc. Belenes    3933  ABARR
## 2790 374487 2019 Guadalajara        Belenes Suc. Belenes    8639  NORMA
## 2791 374556 2019 Guadalajara        Belenes Suc. Belenes    9303  ABARR
## 2792 374644 2019 Guadalajara        Belenes Suc. Belenes    9311  BERTH
## 2793 374848 2019 Guadalajara        Belenes Suc. Belenes    2023  MARIO
## 2794 374909 2019 Guadalajara        Belenes Suc. Belenes    1518  MA EL
## 2795 374978 2019 Guadalajara        Belenes Suc. Belenes    7657  FROYL
## 2796 375058 2019 Guadalajara        Belenes Suc. Belenes    7662  ABARR
## 2797 375147 2019 Guadalajara        Belenes Suc. Belenes    7677  ABARR
## 2798 375235 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 2799 375392 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 2800 375480 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 2801 375694 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 2802 375786 2019 Guadalajara        Belenes Suc. Belenes    7782  EL AL
## 2803 375889 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 2804 375997 2019 Guadalajara        Belenes Suc. Belenes    7799  HIPOL
## 2805 376143 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 2806 376396 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 2807 376697 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 2808 376772 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 2809 376851 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 2810 376920 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 2811 376995 2019 Guadalajara        Belenes Suc. Belenes    8123  FRANC
## 2812 377101 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 2813 377192 2019 Guadalajara        Belenes Suc. Belenes    8135  EL AB
## 2814 377380 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 2815 377510 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 2816 377590 2019 Guadalajara        Belenes Suc. Belenes    8219  ABARR
## 2817 377659 2019 Guadalajara        Belenes Suc. Belenes    8223  SALVA
## 2818 377699 2019 Guadalajara        Belenes Suc. Belenes    8283  ABARR
## 2819 377776 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 2820 377868 2019 Guadalajara        Belenes Suc. Belenes    8395  EMILI
## 2821 377897 2019 Guadalajara        Belenes Suc. Belenes    8686  ABARR
## 2822 378044 2019 Guadalajara        Belenes Suc. Belenes    8747  JUANA
## 2823 378093 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 2824 378170 2019 Guadalajara        Belenes Suc. Belenes    8788  ABARR
## 2825 378252 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 2826 378345 2019 Guadalajara        Belenes Suc. Belenes    8833  LA CO
## 2827 378405 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 2828 378560 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 2829 378798 2019 Guadalajara        Belenes Suc. Belenes    8893  MARIA
## 2830 378913 2019 Guadalajara        Belenes Suc. Belenes    8902  ABARR
## 2831 379012 2019 Guadalajara        Belenes Suc. Belenes    8907  RUBEN
## 2832 379140 2019 Guadalajara        Belenes Suc. Belenes    8917  RAFAE
## 2833 379324 2019 Guadalajara        Belenes Suc. Belenes    8921  ABARR
## 2834 379440 2019 Guadalajara        Belenes Suc. Belenes    8991  ABARR
## 2835 379542 2019 Guadalajara        Belenes Suc. Belenes    8998  ABARR
## 2836 379639 2019 Guadalajara        Belenes Suc. Belenes    9011  GUSTA
## 2837 379738 2019 Guadalajara        Belenes Suc. Belenes    9015  ABARR
## 2838 379890 2019 Guadalajara        Belenes Suc. Belenes    9029  JOSE 
## 2839 379958 2019 Guadalajara        Belenes Suc. Belenes    9032  ABARR
## 2840 380244 2019 Guadalajara        Belenes Suc. Belenes    9067  ABARR
## 2841 380348 2019 Guadalajara        Belenes Suc. Belenes    9070  MINIS
## 2842 380673 2019 Guadalajara        Belenes Suc. Belenes    9143  JAVIE
## 2843 380774 2019 Guadalajara        Belenes Suc. Belenes    9162  MARIA
## 2844 380870 2019 Guadalajara        Belenes Suc. Belenes    9175  ABARR
## 2845 380964 2019 Guadalajara        Belenes Suc. Belenes    9184  MINI 
## 2846 381057 2019 Guadalajara        Belenes Suc. Belenes    9192  ABARR
## 2847 381152 2019 Guadalajara        Belenes Suc. Belenes    9202  REINA
## 2848 381226 2019 Guadalajara        Belenes Suc. Belenes    9227  ABARR
## 2849 381322 2019 Guadalajara        Belenes Suc. Belenes    9236  TABY 
## 2850 381435 2019 Guadalajara        Belenes Suc. Belenes    9243  MARIA
## 2851 381504 2019 Guadalajara        Belenes Suc. Belenes    9250  ABARR
## 2852 381669 2019 Guadalajara        Belenes Suc. Belenes    9284  ABARR
## 2853 381772 2019 Guadalajara        Belenes Suc. Belenes    9311  MIGUE
## 2854 382163 2019 Guadalajara        Belenes Suc. Belenes    9377  ABARR
## 2855 382246 2019 Guadalajara        Belenes Suc. Belenes    9379  ABARR
## 2856 382328 2019 Guadalajara        Belenes Suc. Belenes    9387  MARIA
## 2857 382434 2019 Guadalajara        Belenes Suc. Belenes    9390  ABARR
## 2858 382525 2019 Guadalajara        Belenes Suc. Belenes    9397  JERON
## 2859 382607 2019 Guadalajara        Belenes Suc. Belenes    9420  MARIA
## 2860 382750 2019 Guadalajara        Belenes Suc. Belenes    9435  MISCE
## 2861 382907 2019 Guadalajara        Belenes Suc. Belenes    9445  JOSE 
## 2862 383036 2019 Guadalajara        Belenes Suc. Belenes    9457  CARLA
## 2863 383238 2019 Guadalajara        Belenes Suc. Belenes    9482  MARTI
## 2864 383464 2019 Guadalajara        Belenes Suc. Belenes    9505  FAUST
## 2865 383535 2019 Guadalajara        Belenes Suc. Belenes    9516  MANUE
## 2866 383626 2019 Guadalajara        Belenes Suc. Belenes    9523  JOSE 
## 2867 383721 2019 Guadalajara        Belenes Suc. Belenes    9549  DONOV
## 2868 383893 2019 Guadalajara        Belenes Suc. Belenes    9578  MARIA
## 2869 384164 2019 Guadalajara        Belenes Suc. Belenes    9610  IVAN 
## 2870 384413 2019 Guadalajara        Belenes Suc. Belenes    9664  ROMAN
## 2871 384504 2019 Guadalajara        Belenes Suc. Belenes    9681  BERTH
## 2872 384598 2019 Guadalajara        Belenes Suc. Belenes    9692  JOSE 
## 2873 384752 2019 Guadalajara        Belenes Suc. Belenes    9744  JUANA
## 2874 384820 2019 Guadalajara        Belenes Suc. Belenes    9747  MINI 
## 2875 384882 2019 Guadalajara        Belenes Suc. Belenes    9748  SILVI
## 2876 385136 2019 Guadalajara        Belenes Suc. Belenes    9759  ABARR
## 2877 385283 2019 Guadalajara        Belenes Suc. Belenes    9769  JOSUE
## 2878 385617 2019 Guadalajara        Belenes Suc. Belenes    9809  BRAUL
## 2879 385828 2019 Guadalajara        Belenes Suc. Belenes    9838  ABARR
## 2880 386094 2019 Guadalajara        Belenes Suc. Belenes    9867  ABARR
## 2881 386256 2019 Guadalajara        Belenes Suc. Belenes    9882  MARIO
## 2882 386350 2019 Guadalajara        Belenes Suc. Belenes    9885  SIX S
## 2883 386475 2019 Guadalajara        Belenes Suc. Belenes    9889  ABARR
## 2884 386742 2019 Guadalajara        Belenes Suc. Belenes    9909  BENJA
## 2885 387118 2019 Guadalajara        Belenes Suc. Belenes    9966  ABARR
## 2886 387231 2019 Guadalajara        Belenes Suc. Belenes    9975  ALEJA
## 2887 387313 2019 Guadalajara        Belenes Suc. Belenes    9987  ABARR
## 2888 387410 2019 Guadalajara        Belenes Suc. Belenes    9992  J GUA
## 2889 387484 2019 Guadalajara        Belenes Suc. Belenes    9994  MARIA
## 2890 387559 2019 Guadalajara        Belenes Suc. Belenes    9996  ABARR
## 2891 387659 2019 Guadalajara        Belenes Suc. Belenes    9997  RICAR
## 2892 387876 2019 Guadalajara        Belenes Suc. Belenes      39  ABARR
## 2893 387970 2019 Guadalajara        Belenes Suc. Belenes      42  ABARR
## 2894 388068 2019 Guadalajara        Belenes Suc. Belenes      49  ABARR
## 2895 388153 2019 Guadalajara        Belenes Suc. Belenes      65  ABARR
## 2896 388450 2019 Guadalajara        Belenes Suc. Belenes      84  ABARR
## 2897 388543 2019 Guadalajara        Belenes Suc. Belenes      85  ABARR
## 2898 388644 2019 Guadalajara        Belenes Suc. Belenes      86  ABARR
## 2899 388712 2019 Guadalajara        Belenes Suc. Belenes      90  ABARR
## 2900 388791 2019 Guadalajara        Belenes Suc. Belenes      92  RAMIR
## 2901 388879 2019 Guadalajara        Belenes Suc. Belenes     103  MIGUE
## 2902 389000 2019 Guadalajara        Belenes Suc. Belenes     114  LICOR
## 2903 389317 2019 Guadalajara        Belenes Suc. Belenes     142  MARIA
## 2904 389410 2019 Guadalajara        Belenes Suc. Belenes     144  KAREN
## 2905 389497 2019 Guadalajara        Belenes Suc. Belenes     166  ABARR
## 2906 389579 2019 Guadalajara        Belenes Suc. Belenes     188  MARIA
## 2907 389657 2019 Guadalajara        Belenes Suc. Belenes     189  ARNUL
## 2908 389735 2019 Guadalajara        Belenes Suc. Belenes     200  ABARR
## 2909 389822 2019 Guadalajara        Belenes Suc. Belenes     204  EL GR
## 2910 389907 2019 Guadalajara        Belenes Suc. Belenes     207  ABARR
## 2911 389979 2019 Guadalajara        Belenes Suc. Belenes     211  JOSE 
## 2912 390192 2019 Guadalajara        Belenes Suc. Belenes     218  ABARR
## 2913 390265 2019 Guadalajara        Belenes Suc. Belenes     237  ABARR
## 2914 390350 2019 Guadalajara        Belenes Suc. Belenes     238  LEONA
## 2915 390438 2019 Guadalajara        Belenes Suc. Belenes     240  FELIP
## 2916 390644 2019 Guadalajara        Belenes Suc. Belenes     303  ABARR
## 2917 390741 2019 Guadalajara        Belenes Suc. Belenes     317  MINIS
## 2918 390840 2019 Guadalajara        Belenes Suc. Belenes     326  MI BE
## 2919 391106 2019 Guadalajara        Belenes Suc. Belenes     364  JOSE 
## 2920 391175 2019 Guadalajara        Belenes Suc. Belenes     376  CESAR
## 2921 391278 2019 Guadalajara        Belenes Suc. Belenes     390  EL RE
## 2922 391371 2019 Guadalajara        Belenes Suc. Belenes     406  TENDE
## 2923 391468 2019 Guadalajara        Belenes Suc. Belenes     429  NORMA
## 2924 391573 2019 Guadalajara        Belenes Suc. Belenes     442  ABARR
## 2925 391668 2019 Guadalajara        Belenes Suc. Belenes     452  ABARR
## 2926 391758 2019 Guadalajara        Belenes Suc. Belenes     458  SALVA
## 2927 391834 2019 Guadalajara        Belenes Suc. Belenes     462  ABARR
## 2928 392069 2019 Guadalajara        Belenes Suc. Belenes     471  JORGE
## 2929 392229 2019 Guadalajara        Belenes Suc. Belenes     476  JUAN 
## 2930 392373 2019 Guadalajara        Belenes Suc. Belenes     497  MARIA
## 2931 392548 2019 Guadalajara        Belenes Suc. Belenes     508  MARIA
## 2932 392626 2019 Guadalajara        Belenes Suc. Belenes     511  ANDRE
## 2933 392710 2019 Guadalajara        Belenes Suc. Belenes     542  GONZA
## 2934 392815 2019 Guadalajara        Belenes Suc. Belenes     554  ABARR
## 2935 392893 2019 Guadalajara        Belenes Suc. Belenes     564  JUANA
## 2936 392962 2019 Guadalajara        Belenes Suc. Belenes     571  ABARR
## 2937 393056 2019 Guadalajara        Belenes Suc. Belenes     576  JOSE 
## 2938 393230 2019 Guadalajara        Belenes Suc. Belenes     582  ABARR
## 2939 393279 2019 Guadalajara        Belenes Suc. Belenes     594  RAFAE
## 2940 393374 2019 Guadalajara        Belenes Suc. Belenes     607  ABARR
## 2941 393457 2019 Guadalajara        Belenes Suc. Belenes     633  MARIA
## 2942 393526 2019 Guadalajara        Belenes Suc. Belenes     647  ABARR
## 2943 393592 2019 Guadalajara        Belenes Suc. Belenes     667  SUPER
## 2944 393678 2019 Guadalajara        Belenes Suc. Belenes     707  RAFAE
## 2945 393884 2019 Guadalajara        Belenes Suc. Belenes     712  ABARR
## 2946 393980 2019 Guadalajara        Belenes Suc. Belenes     803  ABARR
## 2947 394076 2019 Guadalajara        Belenes Suc. Belenes     815  PACHE
## 2948 394249 2019 Guadalajara        Belenes Suc. Belenes     841  ABARR
## 2949 394333 2019 Guadalajara        Belenes Suc. Belenes     847  ARTUR
## 2950 394423 2019 Guadalajara        Belenes Suc. Belenes     876  LA MA
## 2951 394647 2019 Guadalajara        Belenes Suc. Belenes     915  ABARR
## 2952 394742 2019 Guadalajara        Belenes Suc. Belenes     941  ABARR
## 2953 395069 2019 Guadalajara        Belenes Suc. Belenes     997  JOSE 
## 2954 395171 2019 Guadalajara        Belenes Suc. Belenes    1002  FEDER
## 2955 395465 2019 Guadalajara        Belenes Suc. Belenes    1067  MARTI
## 2956 395561 2019 Guadalajara        Belenes Suc. Belenes    1088  JACIE
## 2957 395668 2019 Guadalajara        Belenes Suc. Belenes    1150  ABARR
## 2958 395758 2019 Guadalajara        Belenes Suc. Belenes    1163  LUIS 
## 2959 395846 2019 Guadalajara        Belenes Suc. Belenes    1164  EZEQU
## 2960 395932 2019 Guadalajara        Belenes Suc. Belenes    1184  ABARR
## 2961 396033 2019 Guadalajara        Belenes Suc. Belenes    1208  JONAT
## 2962 396412 2019 Guadalajara        Belenes Suc. Belenes    1306  ABARR
## 2963 396498 2019 Guadalajara        Belenes Suc. Belenes    1312  ABARR
## 2964 396604 2019 Guadalajara        Belenes Suc. Belenes    1320  JOSE 
## 2965 396745 2019 Guadalajara        Belenes Suc. Belenes    1341  ABARR
## 2966 396782 2019 Guadalajara        Belenes Suc. Belenes    1349  REYNA
## 2967 396869 2019 Guadalajara        Belenes Suc. Belenes    1355  LILIA
## 2968 396962 2019 Guadalajara        Belenes Suc. Belenes    1366  SIX P
## 2969 397046 2019 Guadalajara        Belenes Suc. Belenes    1379  DOLOR
## 2970 397132 2019 Guadalajara        Belenes Suc. Belenes    1384  ABARR
## 2971 397227 2019 Guadalajara        Belenes Suc. Belenes    1407  ABARR
## 2972 397294 2019 Guadalajara        Belenes Suc. Belenes    1436  ANTON
## 2973 397357 2019 Guadalajara        Belenes Suc. Belenes    1444  MARIA
## 2974 397437 2019 Guadalajara        Belenes Suc. Belenes    1447  ABARR
## 2975 397675 2019 Guadalajara        Belenes Suc. Belenes    1479  RAFAE
## 2976 397759 2019 Guadalajara        Belenes Suc. Belenes    1491  SERGI
## 2977 397831 2019 Guadalajara        Belenes Suc. Belenes    1506  ABARR
## 2978 397924 2019 Guadalajara        Belenes Suc. Belenes    1528  MARZO
## 2979 398103 2019 Guadalajara        Belenes Suc. Belenes    1563  ROCIO
## 2980 398186 2019 Guadalajara        Belenes Suc. Belenes    1565  JUAN 
## 2981 398334 2019 Guadalajara        Belenes Suc. Belenes    1594  ABARR
## 2982 398434 2019 Guadalajara        Belenes Suc. Belenes    1603  LUIS 
## 2983 398587 2019 Guadalajara        Belenes Suc. Belenes    1622  ABARR
## 2984 398690 2019 Guadalajara        Belenes Suc. Belenes    1630  ABARR
## 2985 398758 2019 Guadalajara        Belenes Suc. Belenes    1634  ABARR
## 2986 398836 2019 Guadalajara        Belenes Suc. Belenes    1644  RENE 
## 2987 398910 2019 Guadalajara        Belenes Suc. Belenes    1653  LINDA
## 2988 398946 2019 Guadalajara        Belenes Suc. Belenes    1704  MARIO
## 2989 399051 2019 Guadalajara        Belenes Suc. Belenes    1715  ABARR
## 2990 399149 2019 Guadalajara        Belenes Suc. Belenes    1717  ABEL 
## 2991 399219 2019 Guadalajara        Belenes Suc. Belenes    1723  MINI 
## 2992 399324 2019 Guadalajara        Belenes Suc. Belenes    1725  ABARR
## 2993 399429 2019 Guadalajara        Belenes Suc. Belenes    1734  HILDA
## 2994 399518 2019 Guadalajara        Belenes Suc. Belenes    1736  PABLO
## 2995 399663 2019 Guadalajara        Belenes Suc. Belenes    1778  MOISE
## 2996 399757 2019 Guadalajara        Belenes Suc. Belenes    1799  JOSE 
## 2997 399923 2019 Guadalajara        Belenes Suc. Belenes    1814  ALBER
## 2998 400017 2019 Guadalajara        Belenes Suc. Belenes    1820  ROSA 
## 2999 400121 2019 Guadalajara        Belenes Suc. Belenes    1826  SUPER
## 3000 400213 2019 Guadalajara        Belenes Suc. Belenes    1831  RAFAE
## 3001 400299 2019 Guadalajara        Belenes Suc. Belenes    1834  CREME
## 3002 400406 2019 Guadalajara        Belenes Suc. Belenes    1835  MARIA
## 3003 400506 2019 Guadalajara        Belenes Suc. Belenes    1836  TERES
## 3004 400581 2019 Guadalajara        Belenes Suc. Belenes    1842  MARIA
## 3005 400663 2019 Guadalajara        Belenes Suc. Belenes    1843  CREME
## 3006 400761 2019 Guadalajara        Belenes Suc. Belenes    1847  ABARR
## 3007 400851 2019 Guadalajara        Belenes Suc. Belenes    1854  ABARR
## 3008 400938 2019 Guadalajara        Belenes Suc. Belenes    1857  MARIA
## 3009 401021 2019 Guadalajara        Belenes Suc. Belenes    1858  ABARR
## 3010 401128 2019 Guadalajara        Belenes Suc. Belenes    1860  DOS H
## 3011 401223 2019 Guadalajara        Belenes Suc. Belenes    1872  RUTH 
## 3012 401300 2019 Guadalajara        Belenes Suc. Belenes    1893  EL MA
## 3013 401370 2019 Guadalajara        Belenes Suc. Belenes    1917  MARIA
## 3014 401448 2019 Guadalajara        Belenes Suc. Belenes    1918  ABARR
## 3015 401602 2019 Guadalajara        Belenes Suc. Belenes    1952  ABARR
## 3016 401783 2019 Guadalajara        Belenes Suc. Belenes    1974  ABARR
## 3017 401964 2019 Guadalajara        Belenes Suc. Belenes    1993  ABARR
## 3018 402059 2019 Guadalajara        Belenes Suc. Belenes    2003  ABARR
## 3019 402163 2019 Guadalajara        Belenes Suc. Belenes    2006  ABARR
## 3020 402263 2019 Guadalajara        Belenes Suc. Belenes    2009  ABARR
## 3021 402372 2019 Guadalajara        Belenes Suc. Belenes    2033  ABARR
## 3022 402627 2019 Guadalajara        Belenes Suc. Belenes    2052  ABARR
## 3023 402770 2019 Guadalajara        Belenes Suc. Belenes    2060  GERAR
## 3024 402858 2019 Guadalajara        Belenes Suc. Belenes    2064  ABARR
## 3025 402930 2019 Guadalajara        Belenes Suc. Belenes    2068  LETIC
## 3026 403138 2019 Guadalajara        Belenes Suc. Belenes    2135  FRANC
## 3027 403263 2019 Guadalajara        Belenes Suc. Belenes    2138  GUMEC
## 3028 403355 2019 Guadalajara        Belenes Suc. Belenes    2142  FELIP
## 3029 403543 2019 Guadalajara        Belenes Suc. Belenes    2179  JUAN 
## 3030 403829 2019 Guadalajara        Belenes Suc. Belenes    2229  ABARR
## 3031 403901 2019 Guadalajara        Belenes Suc. Belenes    2231  ELISA
## 3032 403985 2019 Guadalajara        Belenes Suc. Belenes    2248  VINOS
## 3033 404059 2019 Guadalajara        Belenes Suc. Belenes    2255  VERON
## 3034 404270 2019 Guadalajara        Belenes Suc. Belenes    2278  AUDIE
## 3035 404368 2019 Guadalajara        Belenes Suc. Belenes    2302  JOSE 
## 3036 404453 2019 Guadalajara        Belenes Suc. Belenes    2313  ABARR
## 3037 404653 2019 Guadalajara        Belenes Suc. Belenes    2319  SUPER
## 3038 404741 2019 Guadalajara        Belenes Suc. Belenes    2320  ADELA
## 3039 404885 2019 Guadalajara        Belenes Suc. Belenes    2328  ABARR
## 3040 404968 2019 Guadalajara        Belenes Suc. Belenes    2335  ANGEL
## 3041 405036 2019 Guadalajara        Belenes Suc. Belenes    2350  SANDR
## 3042 405170 2019 Guadalajara        Belenes Suc. Belenes    2353  LA BO
## 3043 405250 2019 Guadalajara        Belenes Suc. Belenes    2377  PATRI
## 3044 405323 2019 Guadalajara        Belenes Suc. Belenes    2386  MINI 
## 3045 405422 2019 Guadalajara        Belenes Suc. Belenes    2394  ABARR
## 3046 405609 2019 Guadalajara        Belenes Suc. Belenes    2403  ALICI
## 3047 405713 2019 Guadalajara        Belenes Suc. Belenes    2471  MARIA
## 3048 406017 2019 Guadalajara        Belenes Suc. Belenes    2498  ADELI
## 3049 406095 2019 Guadalajara        Belenes Suc. Belenes    2501  ERNES
## 3050 406256 2019 Guadalajara        Belenes Suc. Belenes    2536  ABARR
## 3051 406450 2019 Guadalajara        Belenes Suc. Belenes    2576  SILVI
## 3052 406537 2019 Guadalajara        Belenes Suc. Belenes    2586  EL DK
## 3053 406645 2019 Guadalajara        Belenes Suc. Belenes    2587  CARME
## 3054 406721 2019 Guadalajara        Belenes Suc. Belenes    2588  ABARR
## 3055 406807 2019 Guadalajara        Belenes Suc. Belenes    2592  SIX M
## 3056 406923 2019 Guadalajara        Belenes Suc. Belenes    2634  MARIA
## 3057 407015 2019 Guadalajara        Belenes Suc. Belenes    2654  RAFAE
## 3058 407224 2019 Guadalajara        Belenes Suc. Belenes    2671  MIGUE
## 3059 407274 2019 Guadalajara        Belenes Suc. Belenes    2716  JORGE
## 3060 407345 2019 Guadalajara        Belenes Suc. Belenes    2728  ABARR
## 3061 407576 2019 Guadalajara        Belenes Suc. Belenes    2779  ABARR
## 3062 407665 2019 Guadalajara        Belenes Suc. Belenes    2784  ABARR
## 3063 407753 2019 Guadalajara        Belenes Suc. Belenes    2814  JORGE
## 3064 408107 2019 Guadalajara        Belenes Suc. Belenes    2866  DULCE
## 3065 408212 2019 Guadalajara        Belenes Suc. Belenes    2867  MINIS
## 3066 408320 2019 Guadalajara        Belenes Suc. Belenes    2877  ABARR
## 3067 408421 2019 Guadalajara        Belenes Suc. Belenes    2896  MI RA
## 3068 408510 2019 Guadalajara        Belenes Suc. Belenes    2905  EL GR
## 3069 408745 2019 Guadalajara        Belenes Suc. Belenes    2944  ABARR
## 3070 408881 2019 Guadalajara        Belenes Suc. Belenes    2973  ABARR
## 3071 408950 2019 Guadalajara        Belenes Suc. Belenes    2996  HERME
## 3072 409039 2019 Guadalajara        Belenes Suc. Belenes    3010  MARTI
## 3073 409108 2019 Guadalajara        Belenes Suc. Belenes    3021  ABARR
## 3074 409302 2019 Guadalajara        Belenes Suc. Belenes    3035  RICAR
## 3075 409395 2019 Guadalajara        Belenes Suc. Belenes    3039  LA VA
## 3076 409487 2019 Guadalajara        Belenes Suc. Belenes    3050  SUPER
## 3077 409632 2019 Guadalajara        Belenes Suc. Belenes    3067  ABARR
## 3078 409896 2019 Guadalajara        Belenes Suc. Belenes    3117  ABARR
## 3079 410009 2019 Guadalajara        Belenes Suc. Belenes    3125  ABARR
## 3080 410241 2019 Guadalajara        Belenes Suc. Belenes    3154  SOFIA
## 3081 410369 2019 Guadalajara        Belenes Suc. Belenes    3167  ABARR
## 3082 410471 2019 Guadalajara        Belenes Suc. Belenes    3168  ABARR
## 3083 410554 2019 Guadalajara        Belenes Suc. Belenes    3169  ANA L
## 3084 410622 2019 Guadalajara        Belenes Suc. Belenes    3182  ABARR
## 3085 410720 2019 Guadalajara        Belenes Suc. Belenes    3185  INDAL
## 3086 410792 2019 Guadalajara        Belenes Suc. Belenes    3186  RAMIR
## 3087 410868 2019 Guadalajara        Belenes Suc. Belenes    3209  IRMA 
## 3088 411002 2019 Guadalajara        Belenes Suc. Belenes    3235  MARIA
## 3089 411177 2019 Guadalajara        Belenes Suc. Belenes    3256  DANIE
## 3090 411294 2019 Guadalajara        Belenes Suc. Belenes    3260  EL CA
## 3091 411408 2019 Guadalajara        Belenes Suc. Belenes    3269  BALDO
## 3092 411561 2019 Guadalajara        Belenes Suc. Belenes     410  LUZ M
## 3093 411790 2019 Guadalajara        Belenes Suc. Belenes    1769  ABARR
## 3094 411982 2019 Guadalajara        Belenes Suc. Belenes    2482  ABARR
## 3095 412271 2019 Guadalajara        Belenes Suc. Belenes    2494  SALVA
## 3096 412478 2019 Guadalajara        Belenes Suc. Belenes    2545  HECTO
## 3097 412543 2019 Guadalajara        Belenes Suc. Belenes    2548  CESAR
## 3098 412613 2019 Guadalajara        Belenes Suc. Belenes    2551  MARIA
## 3099 412672 2019 Guadalajara        Belenes Suc. Belenes    2561  ABARR
## 3100 413006 2019 Guadalajara        Belenes Suc. Belenes    2570  TIEND
## 3101 413083 2019 Guadalajara        Belenes Suc. Belenes    2572  VINOS
## 3102 413158 2019 Guadalajara        Belenes Suc. Belenes    2584  ABARR
## 3103 413251 2019 Guadalajara        Belenes Suc. Belenes    2599  HECTO
## 3104 413330 2019 Guadalajara        Belenes Suc. Belenes    2601  ABARR
## 3105 413404 2019 Guadalajara        Belenes Suc. Belenes    2605  ELVIR
## 3106 413607 2019 Guadalajara        Belenes Suc. Belenes    2637  ABARR
## 3107 413660 2019 Guadalajara        Belenes Suc. Belenes    2702  ABARR
## 3108 413747 2019 Guadalajara        Belenes Suc. Belenes    2719  MARTI
## 3109 413803 2019 Guadalajara        Belenes Suc. Belenes    2769  HUMBE
## 3110 413926 2019 Guadalajara        Belenes Suc. Belenes    2817  SALVA
## 3111 413980 2019 Guadalajara        Belenes Suc. Belenes    2897  MINIS
## 3112 414056 2019 Guadalajara        Belenes Suc. Belenes    2903  ABARR
## 3113 414116 2019 Guadalajara        Belenes Suc. Belenes    2908  ANTON
## 3114 414166 2019 Guadalajara        Belenes Suc. Belenes    2918  ABARR
## 3115 414257 2019 Guadalajara        Belenes Suc. Belenes    2923  EMILI
## 3116 414380 2019 Guadalajara        Belenes Suc. Belenes    2934  RICAR
## 3117 414432 2019 Guadalajara        Belenes Suc. Belenes    2982  JOSE 
## 3118 414488 2019 Guadalajara        Belenes Suc. Belenes    2994  JOSE 
## 3119 414522 2019 Guadalajara        Belenes Suc. Belenes    2996  ABARR
## 3120 414650 2019 Guadalajara        Belenes Suc. Belenes    3017  OSCAR
## 3121 414723 2019 Guadalajara        Belenes Suc. Belenes    3027  MARIA
## 3122 414851 2019 Guadalajara        Belenes Suc. Belenes    3060  ABARR
## 3123 414953 2019 Guadalajara        Belenes Suc. Belenes    3099  MAYRA
## 3124 415106 2019 Guadalajara        Belenes Suc. Belenes    3126  JOSE 
## 3125 415208 2019 Guadalajara        Belenes Suc. Belenes    3176  SANTI
## 3126 415298 2019 Guadalajara        Belenes Suc. Belenes    3185  MARIA
## 3127 415564 2019 Guadalajara        Belenes Suc. Belenes    3277  GREGO
## 3128 415713 2019 Guadalajara        Belenes Suc. Belenes    3289  CREME
## 3129 415910 2019 Guadalajara        Belenes Suc. Belenes    8300  JOSE 
## 3130 416066 2019 Guadalajara        Belenes Suc. Belenes    8318  MISCE
## 3131 416165 2019 Guadalajara        Belenes Suc. Belenes     763  JUAN 
## 3132 199948 2018 Guadalajara        Belenes Suc. Belenes    7737  ABARR
## 3133 200230 2018 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 3134 200344 2018 Guadalajara        Belenes Suc. Belenes    7884  ABARR
## 3135 200469 2018 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 3136 201318 2018 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 3137 201525 2018 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 3138 201632 2018 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 3139 201871 2018 Guadalajara        Belenes Suc. Belenes    9041  ABARR
## 3140 201992 2018 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 3141 202364 2018 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 3142 202479 2018 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 3143 202817 2018 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 3144 203212 2018 Guadalajara        Belenes Suc. Belenes    9615  TIEND
## 3145 203414 2018 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 3146 203816 2018 Guadalajara        Belenes Suc. Belenes    9743  ABARR
## 3147 204016 2018 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 3148 204225 2018 Guadalajara        Belenes Suc. Belenes    9884  ABARR
## 3149 204328 2018 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 3150 204431 2018 Guadalajara        Belenes Suc. Belenes    9915  ADAN 
## 3151 204728 2018 Guadalajara        Belenes Suc. Belenes     100  ABARR
## 3152 204953 2018 Guadalajara        Belenes Suc. Belenes     183  CESAR
## 3153 205060 2018 Guadalajara        Belenes Suc. Belenes     184  AVELI
## 3154 205165 2018 Guadalajara        Belenes Suc. Belenes     242  ABARR
## 3155 205283 2018 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 3156 205479 2018 Guadalajara        Belenes Suc. Belenes     286  SIX T
## 3157 205588 2018 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 3158 205709 2018 Guadalajara        Belenes Suc. Belenes     337  MARIA
## 3159 205809 2018 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 3160 205917 2018 Guadalajara        Belenes Suc. Belenes     407  LUIS 
## 3161 206119 2018 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 3162 206251 2018 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 3163 206456 2018 Guadalajara        Belenes Suc. Belenes     578  ERIK 
## 3164 206902 2018 Guadalajara        Belenes Suc. Belenes     652  ABARR
## 3165 207022 2018 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 3166 207125 2018 Guadalajara        Belenes Suc. Belenes     786  ABARR
## 3167 207309 2018 Guadalajara        Belenes Suc. Belenes     921  MOISE
## 3168 207432 2018 Guadalajara        Belenes Suc. Belenes     932  MARIA
## 3169 207687 2018 Guadalajara        Belenes Suc. Belenes    1090  ABARR
## 3170 207803 2018 Guadalajara        Belenes Suc. Belenes    1116  ABARR
## 3171 207891 2018 Guadalajara        Belenes Suc. Belenes    1160  ABARR
## 3172 207998 2018 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 3173 208102 2018 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 3174 208220 2018 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 3175 208308 2018 Guadalajara        Belenes Suc. Belenes    1317  DAVID
## 3176 208637 2018 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 3177 208738 2018 Guadalajara        Belenes Suc. Belenes    1420  MARCE
## 3178 208875 2018 Guadalajara        Belenes Suc. Belenes    1543  EMMAN
## 3179 208985 2018 Guadalajara        Belenes Suc. Belenes    1635  LA HI
## 3180 209100 2018 Guadalajara        Belenes Suc. Belenes    1664  ABARR
## 3181 209202 2018 Guadalajara        Belenes Suc. Belenes    1713  MISCE
## 3182 209411 2018 Guadalajara        Belenes Suc. Belenes    1731  NORBE
## 3183 209573 2018 Guadalajara        Belenes Suc. Belenes    1759  ELVA 
## 3184 209790 2018 Guadalajara        Belenes Suc. Belenes    1791  ALICI
## 3185 210005 2018 Guadalajara        Belenes Suc. Belenes    1812  ABARR
## 3186 210412 2018 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 3187 210628 2018 Guadalajara        Belenes Suc. Belenes    1956  ABARR
## 3188 210742 2018 Guadalajara        Belenes Suc. Belenes    2000  ABARR
## 3189 211025 2018 Guadalajara        Belenes Suc. Belenes    2146  ABARR
## 3190 211319 2018 Guadalajara        Belenes Suc. Belenes    2399  ABARR
## 3191 211751 2018 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 3192 211955 2018 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 3193 212384 2018 Guadalajara        Belenes Suc. Belenes    2912  BRAUL
## 3194 212491 2018 Guadalajara        Belenes Suc. Belenes    2926  J JES
## 3195 212665 2018 Guadalajara        Belenes Suc. Belenes    3023  ABARR
## 3196 212852 2018 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 3197 213095 2018 Guadalajara        Belenes Suc. Belenes    3142  ANA M
## 3198 213287 2018 Guadalajara        Belenes Suc. Belenes    3189  FRANC
## 3199 213923 2018 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 3200 214204 2018 Guadalajara        Belenes Suc. Belenes    3082  GERAR
## 3201 214347 2018 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 3202 244161 2018 Guadalajara        Belenes Suc. Belenes    8224  IRMA 
## 3203 246654 2018 Guadalajara        Belenes Suc. Belenes    9693  JAIME
## 3204 248561 2018 Guadalajara        Belenes Suc. Belenes     464  SIX M
## 3205 250014 2018 Guadalajara        Belenes Suc. Belenes     869  TERES
## 3206 250251 2018 Guadalajara        Belenes Suc. Belenes     952  LICON
## 3207 250838 2018 Guadalajara        Belenes Suc. Belenes    1156  TEODU
## 3208 253692 2018 Guadalajara        Belenes Suc. Belenes    2395  GLORI
## 3209 254663 2018 Guadalajara        Belenes Suc. Belenes    2752  RAMIR
## 3210 256755 2018 Guadalajara        Belenes Suc. Belenes    6241  ABARR
## 3211 258609 2018 Guadalajara        Belenes Suc. Belenes    3158  JOAQU
## 3212 259267 2018 Guadalajara        Belenes Suc. Belenes    8621  ROSAL
## 3213 259414 2018 Guadalajara        Belenes Suc. Belenes    1719  MISCE
## 3214 259898 2018 Guadalajara        Belenes Suc. Belenes    4640  MISCE
## 3215 260343 2018 Guadalajara        Belenes Suc. Belenes    1298  SUPER
## 3216 261282 2018 Guadalajara        Belenes Suc. Belenes    9504  MARTH
## 3217 261366 2018 Guadalajara        Belenes Suc. Belenes    9510  MICEL
## 3218 261687 2018 Guadalajara        Belenes Suc. Belenes    5271  MISCE
## 3219 304283 2019 Guadalajara        Belenes Suc. Belenes    7800  SAN I
## 3220 304392 2019 Guadalajara        Belenes Suc. Belenes    7875  ABARR
## 3221 304599 2019 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 3222 304699 2019 Guadalajara        Belenes Suc. Belenes    8010  ABARR
## 3223 304802 2019 Guadalajara        Belenes Suc. Belenes    8186  SUPER
## 3224 304896 2019 Guadalajara        Belenes Suc. Belenes    8201  MIGUE
## 3225 304992 2019 Guadalajara        Belenes Suc. Belenes    8284  MINI 
## 3226 305128 2019 Guadalajara        Belenes Suc. Belenes    8689  ABARR
## 3227 305276 2019 Guadalajara        Belenes Suc. Belenes    8696  ABARR
## 3228 305349 2019 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 3229 305442 2019 Guadalajara        Belenes Suc. Belenes    8842  ABARR
## 3230 305535 2019 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 3231 305623 2019 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 3232 305841 2019 Guadalajara        Belenes Suc. Belenes    9041  ABARR
## 3233 305957 2019 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 3234 306060 2019 Guadalajara        Belenes Suc. Belenes    9140  CERVE
## 3235 306213 2019 Guadalajara        Belenes Suc. Belenes    9186  EMPOR
## 3236 306291 2019 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 3237 306402 2019 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 3238 306527 2019 Guadalajara        Belenes Suc. Belenes    9462  MINI 
## 3239 306811 2019 Guadalajara        Belenes Suc. Belenes    9574  ABARR
## 3240 307072 2019 Guadalajara        Belenes Suc. Belenes    9615  TIEND
## 3241 307259 2019 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 3242 307371 2019 Guadalajara        Belenes Suc. Belenes    9671  ABARR
## 3243 307575 2019 Guadalajara        Belenes Suc. Belenes    9742  ABARR
## 3244 307659 2019 Guadalajara        Belenes Suc. Belenes    9743  ABARR
## 3245 307743 2019 Guadalajara        Belenes Suc. Belenes    9767  ABARR
## 3246 307852 2019 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 3247 308248 2019 Guadalajara        Belenes Suc. Belenes    9915  ADAN 
## 3248 308489 2019 Guadalajara        Belenes Suc. Belenes     100  ABARR
## 3249 308673 2019 Guadalajara        Belenes Suc. Belenes     183  CESAR
## 3250 308868 2019 Guadalajara        Belenes Suc. Belenes     242  ABARR
## 3251 308974 2019 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 3252 309067 2019 Guadalajara        Belenes Suc. Belenes     280  MERCE
## 3253 309148 2019 Guadalajara        Belenes Suc. Belenes     286  SIX T
## 3254 309247 2019 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 3255 309443 2019 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 3256 309716 2019 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 3257 309830 2019 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 3258 309933 2019 Guadalajara        Belenes Suc. Belenes     535  MINIS
## 3259 310029 2019 Guadalajara        Belenes Suc. Belenes     578  ERIK 
## 3260 310128 2019 Guadalajara        Belenes Suc. Belenes     597  ALBIN
## 3261 310219 2019 Guadalajara        Belenes Suc. Belenes     623  MARIA
## 3262 310422 2019 Guadalajara        Belenes Suc. Belenes     652  ABARR
## 3263 310544 2019 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 3264 310729 2019 Guadalajara        Belenes Suc. Belenes     905  EDGAR
## 3265 310819 2019 Guadalajara        Belenes Suc. Belenes     921  MOISE
## 3266 310929 2019 Guadalajara        Belenes Suc. Belenes     932  MARIA
## 3267 311045 2019 Guadalajara        Belenes Suc. Belenes    1030  ABARR
## 3268 311224 2019 Guadalajara        Belenes Suc. Belenes    1116  ABARR
## 3269 311296 2019 Guadalajara        Belenes Suc. Belenes    1160  ABARR
## 3270 311391 2019 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 3271 311498 2019 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 3272 311606 2019 Guadalajara        Belenes Suc. Belenes    1286  ALICI
## 3273 311973 2019 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 3274 312309 2019 Guadalajara        Belenes Suc. Belenes    1635  LA HI
## 3275 312415 2019 Guadalajara        Belenes Suc. Belenes    1664  ABARR
## 3276 312514 2019 Guadalajara        Belenes Suc. Belenes    1713  MISCE
## 3277 312605 2019 Guadalajara        Belenes Suc. Belenes    1716  ABARR
## 3278 312854 2019 Guadalajara        Belenes Suc. Belenes    1759  ELVA 
## 3279 313062 2019 Guadalajara        Belenes Suc. Belenes    1791  ALICI
## 3280 313160 2019 Guadalajara        Belenes Suc. Belenes    1795  ABARR
## 3281 313251 2019 Guadalajara        Belenes Suc. Belenes    1812  ABARR
## 3282 313607 2019 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 3283 313789 2019 Guadalajara        Belenes Suc. Belenes    1956  ABARR
## 3284 313893 2019 Guadalajara        Belenes Suc. Belenes    2000  ABARR
## 3285 314243 2019 Guadalajara        Belenes Suc. Belenes    2242  ABARR
## 3286 314402 2019 Guadalajara        Belenes Suc. Belenes    2399  ABARR
## 3287 314503 2019 Guadalajara        Belenes Suc. Belenes    2413  LA CH
## 3288 314566 2019 Guadalajara        Belenes Suc. Belenes    2456  ABARR
## 3289 314627 2019 Guadalajara        Belenes Suc. Belenes    2529  ABARR
## 3290 314810 2019 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 3291 315005 2019 Guadalajara        Belenes Suc. Belenes    2706  ABARR
## 3292 315205 2019 Guadalajara        Belenes Suc. Belenes    2795  ABARR
## 3293 315385 2019 Guadalajara        Belenes Suc. Belenes    2912  BRAUL
## 3294 315488 2019 Guadalajara        Belenes Suc. Belenes    2926  J JES
## 3295 315563 2019 Guadalajara        Belenes Suc. Belenes    2993  MARTI
## 3296 315736 2019 Guadalajara        Belenes Suc. Belenes    3060  MARIA
## 3297 315800 2019 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 3298 316152 2019 Guadalajara        Belenes Suc. Belenes    3189  FRANC
## 3299 316232 2019 Guadalajara        Belenes Suc. Belenes    6688  SALVA
## 3300 316298 2019 Guadalajara        Belenes Suc. Belenes    2486  ABARR
## 3301 316730 2019 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 3302 316927 2019 Guadalajara        Belenes Suc. Belenes    2912  ABARR
## 3303 317131 2019 Guadalajara        Belenes Suc. Belenes    3308  MINIS
## 3304 317338 2019 Guadalajara        Belenes Suc. Belenes    7732  EL CH
## 3305 317590 2019 Guadalajara        Belenes Suc. Belenes    7802  ANTON
## 3306 318137 2019 Guadalajara        Belenes Suc. Belenes    8635  JOSE 
## 3307 319669 2019 Guadalajara        Belenes Suc. Belenes    9553  CARLO
## 3308 319733 2019 Guadalajara        Belenes Suc. Belenes    9577  MARIA
## 3309 319827 2019 Guadalajara        Belenes Suc. Belenes    9653  SIX P
## 3310 320342 2019 Guadalajara        Belenes Suc. Belenes    9922  ARTUR
## 3311 320372 2019 Guadalajara        Belenes Suc. Belenes    9944  EMILI
## 3312 320622 2019 Guadalajara        Belenes Suc. Belenes     123  ABARR
## 3313 321568 2019 Guadalajara        Belenes Suc. Belenes     553  LILIA
## 3314 321612 2019 Guadalajara        Belenes Suc. Belenes     579  ROSAR
## 3315 321753 2019 Guadalajara        Belenes Suc. Belenes     659  ABARR
## 3316 322196 2019 Guadalajara        Belenes Suc. Belenes     793  ABARR
## 3317 322515 2019 Guadalajara        Belenes Suc. Belenes     952  LICON
## 3318 323503 2019 Guadalajara        Belenes Suc. Belenes    1401  MARIA
## 3319 325733 2019 Guadalajara        Belenes Suc. Belenes    2700  MARIA
## 3320 327364 2019 Guadalajara        Belenes Suc. Belenes    6241  ABARR
## 3321 327678 2019 Guadalajara        Belenes Suc. Belenes    7611  MARTI
## 3322 328736 2019 Guadalajara        Belenes Suc. Belenes    3177  TERES
## 3323 329825 2019 Guadalajara        Belenes Suc. Belenes     335  FELIP
## 3324 330583 2019 Guadalajara        Belenes Suc. Belenes    7703  MISCE
## 3325 330794 2019 Guadalajara        Belenes Suc. Belenes    8516  MISCE
## 3326 330946 2019 Guadalajara        Belenes Suc. Belenes    8534  CREME
## 3327 331508 2019 Guadalajara        Belenes Suc. Belenes     839  MISCE
## 3328 332796 2019 Guadalajara        Belenes Suc. Belenes    9313  OFELI
## 3329 332971 2019 Guadalajara        Belenes Suc. Belenes    5592  MA DE
## 3330 333240 2019 Guadalajara        Belenes Suc. Belenes    8882  FRANC
## 3331 334309 2019 Guadalajara        Belenes Suc. Belenes    7775  BERTH
## 3332 334933 2019 Guadalajara        Belenes Suc. Belenes    7849  FRANC
## 3333 334981 2019 Guadalajara        Belenes Suc. Belenes    7853  ABARR
## 3334 335390 2019 Guadalajara        Belenes Suc. Belenes    8009  MARTH
## 3335 335892 2019 Guadalajara        Belenes Suc. Belenes    8144  MINI 
## 3336 336366 2019 Guadalajara        Belenes Suc. Belenes    8457  JORGE
## 3337 336827 2019 Guadalajara        Belenes Suc. Belenes    8897  MARIA
## 3338 336867 2019 Guadalajara        Belenes Suc. Belenes    8898  ABARR
## 3339 337224 2019 Guadalajara        Belenes Suc. Belenes    8949  ELISA
## 3340 337345 2019 Guadalajara        Belenes Suc. Belenes    8968  ANDRE
## 3341 337370 2019 Guadalajara        Belenes Suc. Belenes    8969  HILAR
## 3342 337696 2019 Guadalajara        Belenes Suc. Belenes    9056  MARTH
## 3343 337755 2019 Guadalajara        Belenes Suc. Belenes    9060  ELIA 
## 3344 338047 2019 Guadalajara        Belenes Suc. Belenes    9104  ALICI
## 3345 338322 2019 Guadalajara        Belenes Suc. Belenes    9146  ABARR
## 3346 338396 2019 Guadalajara        Belenes Suc. Belenes    9150  FELIZ
## 3347 338737 2019 Guadalajara        Belenes Suc. Belenes    9221  CESAR
## 3348 339043 2019 Guadalajara        Belenes Suc. Belenes    9300  MISCE
## 3349 339356 2019 Guadalajara        Belenes Suc. Belenes    9362  ANA M
## 3350 339966 2019 Guadalajara        Belenes Suc. Belenes    9421  CESAR
## 3351 340204 2019 Guadalajara        Belenes Suc. Belenes    9440  ROSA 
## 3352 340821 2019 Guadalajara        Belenes Suc. Belenes    9567  ROBER
## 3353 341182 2019 Guadalajara        Belenes Suc. Belenes    9639  MARTH
## 3354 341320 2019 Guadalajara        Belenes Suc. Belenes    9644  JOSEF
## 3355 341686 2019 Guadalajara        Belenes Suc. Belenes    9696  JOSE 
## 3356 342715 2019 Guadalajara        Belenes Suc. Belenes    9817  MARIO
## 3357 342901 2019 Guadalajara        Belenes Suc. Belenes    9850  ABARR
## 3358 342962 2019 Guadalajara        Belenes Suc. Belenes    9852  DANIE
## 3359 343023 2019 Guadalajara        Belenes Suc. Belenes    9854  ROCIO
## 3360 343097 2019 Guadalajara        Belenes Suc. Belenes    9864  CIBER
## 3361 343302 2019 Guadalajara        Belenes Suc. Belenes    9900  MARIA
## 3362 343367 2019 Guadalajara        Belenes Suc. Belenes    9919  ALFRE
## 3363 343580 2019 Guadalajara        Belenes Suc. Belenes    9940  SMART
## 3364 344235 2019 Guadalajara        Belenes Suc. Belenes      37  JUAN 
## 3365 344637 2019 Guadalajara        Belenes Suc. Belenes      83  RAUL 
## 3366 345040 2019 Guadalajara        Belenes Suc. Belenes     108  ANACL
## 3367 345289 2019 Guadalajara        Belenes Suc. Belenes     156  MARTH
## 3368 345358 2019 Guadalajara        Belenes Suc. Belenes     158  ABARR
## 3369 345424 2019 Guadalajara        Belenes Suc. Belenes     161  MARIA
## 3370 345534 2019 Guadalajara        Belenes Suc. Belenes     165  JOSE 
## 3371 345820 2019 Guadalajara        Belenes Suc. Belenes     208  MANUE
## 3372 346210 2019 Guadalajara        Belenes Suc. Belenes     277  MANUE
## 3373 346423 2019 Guadalajara        Belenes Suc. Belenes     369  PEDRO
## 3374 346640 2019 Guadalajara        Belenes Suc. Belenes     412  JUVEN
## 3375 346756 2019 Guadalajara        Belenes Suc. Belenes     446  MARIA
## 3376 347160 2019 Guadalajara        Belenes Suc. Belenes     506  NOEMI
## 3377 347403 2019 Guadalajara        Belenes Suc. Belenes     552  CELIA
## 3378 347825 2019 Guadalajara        Belenes Suc. Belenes     630  SIX T
## 3379 347904 2019 Guadalajara        Belenes Suc. Belenes     631  ERIKA
## 3380 348144 2019 Guadalajara        Belenes Suc. Belenes     653  MARIA
## 3381 348228 2019 Guadalajara        Belenes Suc. Belenes     671  ABARR
## 3382 348397 2019 Guadalajara        Belenes Suc. Belenes     729  JORGE
## 3383 348726 2019 Guadalajara        Belenes Suc. Belenes     796  MARIA
## 3384 348827 2019 Guadalajara        Belenes Suc. Belenes     823  SEBAS
## 3385 348915 2019 Guadalajara        Belenes Suc. Belenes     825  CYNTH
## 3386 348992 2019 Guadalajara        Belenes Suc. Belenes     828  GABRI
## 3387 349102 2019 Guadalajara        Belenes Suc. Belenes     840  LAURA
## 3388 349167 2019 Guadalajara        Belenes Suc. Belenes     844  HERMI
## 3389 349503 2019 Guadalajara        Belenes Suc. Belenes     888  VINOS
## 3390 349818 2019 Guadalajara        Belenes Suc. Belenes     940  MANUE
## 3391 350244 2019 Guadalajara        Belenes Suc. Belenes     970  ABARR
## 3392 350594 2019 Guadalajara        Belenes Suc. Belenes    1021  ROBER
## 3393 350705 2019 Guadalajara        Belenes Suc. Belenes    1026  ABARR
## 3394 350842 2019 Guadalajara        Belenes Suc. Belenes    1034  MARIA
## 3395 351812 2019 Guadalajara        Belenes Suc. Belenes    1183  RAYIT
## 3396 352135 2019 Guadalajara        Belenes Suc. Belenes    1254  ABARR
## 3397 352330 2019 Guadalajara        Belenes Suc. Belenes    1288  ABARR
## 3398 352660 2019 Guadalajara        Belenes Suc. Belenes    1344  MA GU
## 3399 352791 2019 Guadalajara        Belenes Suc. Belenes    1350  MONIC
## 3400 352851 2019 Guadalajara        Belenes Suc. Belenes    1356  ANGEL
## 3401 353215 2019 Guadalajara        Belenes Suc. Belenes    1391  VICTO
## 3402 353563 2019 Guadalajara        Belenes Suc. Belenes    1477  ABARR
## 3403 354005 2019 Guadalajara        Belenes Suc. Belenes    1537  BALTA
## 3404 354319 2019 Guadalajara        Belenes Suc. Belenes    1595  CECIL
## 3405 354766 2019 Guadalajara        Belenes Suc. Belenes    1707  MIGUE
## 3406 354993 2019 Guadalajara        Belenes Suc. Belenes    1728  ABARR
## 3407 355368 2019 Guadalajara        Belenes Suc. Belenes    1752  BEATR
## 3408 355692 2019 Guadalajara        Belenes Suc. Belenes    1788  ESTHE
## 3409 355834 2019 Guadalajara        Belenes Suc. Belenes    1811  MARIA
## 3410 355909 2019 Guadalajara        Belenes Suc. Belenes    1813  JAIME
## 3411 356287 2019 Guadalajara        Belenes Suc. Belenes    1915  CELIA
## 3412 356705 2019 Guadalajara        Belenes Suc. Belenes    1957  FARMA
## 3413 356883 2019 Guadalajara        Belenes Suc. Belenes    1973  EMIDI
## 3414 357756 2019 Guadalajara        Belenes Suc. Belenes    2122  FER T
## 3415 357905 2019 Guadalajara        Belenes Suc. Belenes    2129  ABARR
## 3416 358318 2019 Guadalajara        Belenes Suc. Belenes    2204  ABARR
## 3417 358502 2019 Guadalajara        Belenes Suc. Belenes    2241  MARIA
## 3418 359894 2019 Guadalajara        Belenes Suc. Belenes    2483  ALFON
## 3419 359968 2019 Guadalajara        Belenes Suc. Belenes    2487  MARIA
## 3420 360248 2019 Guadalajara        Belenes Suc. Belenes    2509  ANA R
## 3421 360585 2019 Guadalajara        Belenes Suc. Belenes    2530  ABARR
## 3422 361157 2019 Guadalajara        Belenes Suc. Belenes    2633  ALFRE
## 3423 361346 2019 Guadalajara        Belenes Suc. Belenes    2667  VENTA
## 3424 361542 2019 Guadalajara        Belenes Suc. Belenes    2686  ABARR
## 3425 361629 2019 Guadalajara        Belenes Suc. Belenes    2704  JOSE 
## 3426 361848 2019 Guadalajara        Belenes Suc. Belenes    2713  JOSE 
## 3427 361926 2019 Guadalajara        Belenes Suc. Belenes    2718  JOSE 
## 3428 362032 2019 Guadalajara        Belenes Suc. Belenes    2725  ABARR
## 3429 362099 2019 Guadalajara        Belenes Suc. Belenes    2727  ABARR
## 3430 362279 2019 Guadalajara        Belenes Suc. Belenes    2736  AZUCE
## 3431 362314 2019 Guadalajara        Belenes Suc. Belenes    2739  ANDRE
## 3432 362579 2019 Guadalajara        Belenes Suc. Belenes    2780  ABARR
## 3433 362694 2019 Guadalajara        Belenes Suc. Belenes    2791  MARIA
## 3434 363477 2019 Guadalajara        Belenes Suc. Belenes    2863  CARLO
## 3435 363657 2019 Guadalajara        Belenes Suc. Belenes    2882  SALVA
## 3436 363803 2019 Guadalajara        Belenes Suc. Belenes    2895  ABARR
## 3437 363889 2019 Guadalajara        Belenes Suc. Belenes    2916  HECTO
## 3438 364190 2019 Guadalajara        Belenes Suc. Belenes    2962  CARNI
## 3439 364277 2019 Guadalajara        Belenes Suc. Belenes    2977  MARIA
## 3440 364410 2019 Guadalajara        Belenes Suc. Belenes    2983  MARIA
## 3441 364672 2019 Guadalajara        Belenes Suc. Belenes    3040  ABARR
## 3442 364745 2019 Guadalajara        Belenes Suc. Belenes    3052  DEPOS
## 3443 364967 2019 Guadalajara        Belenes Suc. Belenes    3090  ELVIR
## 3444 365051 2019 Guadalajara        Belenes Suc. Belenes    3094  MARIA
## 3445 365303 2019 Guadalajara        Belenes Suc. Belenes    3133  MARIA
## 3446 365392 2019 Guadalajara        Belenes Suc. Belenes    3141  JOSE 
## 3447 365712 2019 Guadalajara        Belenes Suc. Belenes    3211  ROBER
## 3448 366632 2019 Guadalajara        Belenes Suc. Belenes     711  JORGE
## 3449 366807 2019 Guadalajara        Belenes Suc. Belenes    1774  RAMON
## 3450 367813 2019 Guadalajara        Belenes Suc. Belenes    5630  FERNA
## 3451 368465 2019 Guadalajara        Belenes Suc. Belenes    2498  TADEO
## 3452 368694 2019 Guadalajara        Belenes Suc. Belenes    2576  OSCAR
## 3453 369088 2019 Guadalajara        Belenes Suc. Belenes    2615  ABARR
## 3454 369519 2019 Guadalajara        Belenes Suc. Belenes    2689  ESPER
## 3455 369784 2019 Guadalajara        Belenes Suc. Belenes    2741  ALMA 
## 3456 369927 2019 Guadalajara        Belenes Suc. Belenes    2802  JUAN 
## 3457 370047 2019 Guadalajara        Belenes Suc. Belenes    2821  MARIA
## 3458 370971 2019 Guadalajara        Belenes Suc. Belenes    3068  FRANC
## 3459 371084 2019 Guadalajara        Belenes Suc. Belenes    3077  RODRI
## 3460 371366 2019 Guadalajara        Belenes Suc. Belenes    3153  PACHE
## 3461 371491 2019 Guadalajara        Belenes Suc. Belenes    3164  EL PO
## 3462 371958 2019 Guadalajara        Belenes Suc. Belenes    8276  VINOS
## 3463 372287 2019 Guadalajara        Belenes Suc. Belenes    8395  ABARR
## 3464 373001 2019 Guadalajara        Belenes Suc. Belenes    9427  HOGAR
## 3465 373092 2019 Guadalajara        Belenes Suc. Belenes     356  JOSE 
## 3466 373456 2019 Guadalajara        Belenes Suc. Belenes    5143  DEPOS
## 3467 374330 2019 Guadalajara        Belenes Suc. Belenes    8933  MISCE
## 3468 374407 2019 Guadalajara        Belenes Suc. Belenes    3933  ABARR
## 3469 374557 2019 Guadalajara        Belenes Suc. Belenes    9303  ABARR
## 3470 374851 2019 Guadalajara        Belenes Suc. Belenes    2023  MARIO
## 3471 374913 2019 Guadalajara        Belenes Suc. Belenes    1518  MA EL
## 3472 375237 2019 Guadalajara        Belenes Suc. Belenes    7694  ABARR
## 3473 375394 2019 Guadalajara        Belenes Suc. Belenes    7719  ABARR
## 3474 375481 2019 Guadalajara        Belenes Suc. Belenes    7736  ABARR
## 3475 375618 2019 Guadalajara        Belenes Suc. Belenes    7741  ABARR
## 3476 375696 2019 Guadalajara        Belenes Suc. Belenes    7770  ABARR
## 3477 375892 2019 Guadalajara        Belenes Suc. Belenes    7788  ABARR
## 3478 376146 2019 Guadalajara        Belenes Suc. Belenes    7828  ABARR
## 3479 376245 2019 Guadalajara        Belenes Suc. Belenes    7878  ABARR
## 3480 376322 2019 Guadalajara        Belenes Suc. Belenes    7899  ABARR
## 3481 376399 2019 Guadalajara        Belenes Suc. Belenes    8019  SAMUE
## 3482 376492 2019 Guadalajara        Belenes Suc. Belenes    8057  ABARR
## 3483 376613 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 3484 376699 2019 Guadalajara        Belenes Suc. Belenes    8104  ABARR
## 3485 376775 2019 Guadalajara        Belenes Suc. Belenes    8106  JOSE 
## 3486 376853 2019 Guadalajara        Belenes Suc. Belenes    8115  ABARR
## 3487 376922 2019 Guadalajara        Belenes Suc. Belenes    8118  ZOILA
## 3488 377103 2019 Guadalajara        Belenes Suc. Belenes    8131  FABIA
## 3489 377299 2019 Guadalajara        Belenes Suc. Belenes    8145  ABARR
## 3490 377382 2019 Guadalajara        Belenes Suc. Belenes    8146  HILAR
## 3491 377512 2019 Guadalajara        Belenes Suc. Belenes    8208  LA TI
## 3492 377781 2019 Guadalajara        Belenes Suc. Belenes    8331  ABARR
## 3493 377954 2019 Guadalajara        Belenes Suc. Belenes    8740  ISRAE
## 3494 378096 2019 Guadalajara        Belenes Suc. Belenes    8786  MARGA
## 3495 378255 2019 Guadalajara        Belenes Suc. Belenes    8798  RAMIR
## 3496 378407 2019 Guadalajara        Belenes Suc. Belenes    8837  JUAN 
## 3497 378563 2019 Guadalajara        Belenes Suc. Belenes    8868  GABRI
## 3498 378653 2019 Guadalajara        Belenes Suc. Belenes    8871  ABARR
## 3499 379014 2019 Guadalajara        Belenes Suc. Belenes    8907  RUBEN
## 3500 379228 2019 Guadalajara        Belenes Suc. Belenes    8920  LOREN
## 3501 379328 2019 Guadalajara        Belenes Suc. Belenes    8921  ABARR
## 3502 379443 2019 Guadalajara        Belenes Suc. Belenes    8991  ABARR
## 3503 379547 2019 Guadalajara        Belenes Suc. Belenes    8998  ABARR
## 3504 379642 2019 Guadalajara        Belenes Suc. Belenes    9011  GUSTA
## 3505 379740 2019 Guadalajara        Belenes Suc. Belenes    9015  ABARR
## 3506 379961 2019 Guadalajara        Belenes Suc. Belenes    9032  ABARR
## 3507 380057 2019 Guadalajara        Belenes Suc. Belenes    9040  JUAN 
## 3508 380153 2019 Guadalajara        Belenes Suc. Belenes    9045  FRANC
## 3509 380247 2019 Guadalajara        Belenes Suc. Belenes    9067  ABARR
## 3510 380350 2019 Guadalajara        Belenes Suc. Belenes    9070  MINIS
## 3511 380433 2019 Guadalajara        Belenes Suc. Belenes    9083  ANA B
## 3512 380512 2019 Guadalajara        Belenes Suc. Belenes    9085  GABRI
## 3513 380777 2019 Guadalajara        Belenes Suc. Belenes    9162  MARIA
## 3514 380967 2019 Guadalajara        Belenes Suc. Belenes    9184  MINI 
## 3515 381061 2019 Guadalajara        Belenes Suc. Belenes    9192  ABARR
## 3516 381230 2019 Guadalajara        Belenes Suc. Belenes    9227  ABARR
## 3517 381327 2019 Guadalajara        Belenes Suc. Belenes    9236  TABY 
## 3518 381507 2019 Guadalajara        Belenes Suc. Belenes    9250  ABARR
## 3519 381581 2019 Guadalajara        Belenes Suc. Belenes    9256  ABARR
## 3520 381674 2019 Guadalajara        Belenes Suc. Belenes    9284  ABARR
## 3521 381776 2019 Guadalajara        Belenes Suc. Belenes    9311  MIGUE
## 3522 381963 2019 Guadalajara        Belenes Suc. Belenes    9335  ABARR
## 3523 382032 2019 Guadalajara        Belenes Suc. Belenes    9343  ABARR
## 3524 382165 2019 Guadalajara        Belenes Suc. Belenes    9377  ABARR
## 3525 382331 2019 Guadalajara        Belenes Suc. Belenes    9387  MARIA
## 3526 382438 2019 Guadalajara        Belenes Suc. Belenes    9390  ABARR
## 3527 382526 2019 Guadalajara        Belenes Suc. Belenes    9397  JERON
## 3528 382612 2019 Guadalajara        Belenes Suc. Belenes    9420  MARIA
## 3529 382753 2019 Guadalajara        Belenes Suc. Belenes    9435  MISCE
## 3530 382829 2019 Guadalajara        Belenes Suc. Belenes    9444  SONIA
## 3531 383041 2019 Guadalajara        Belenes Suc. Belenes    9457  CARLA
## 3532 383539 2019 Guadalajara        Belenes Suc. Belenes    9516  MANUE
## 3533 383629 2019 Guadalajara        Belenes Suc. Belenes    9523  JOSE 
## 3534 383895 2019 Guadalajara        Belenes Suc. Belenes    9578  MARIA
## 3535 384416 2019 Guadalajara        Belenes Suc. Belenes    9664  ROMAN
## 3536 384506 2019 Guadalajara        Belenes Suc. Belenes    9681  BERTH
## 3537 385528 2019 Guadalajara        Belenes Suc. Belenes    9785  ANGEL
## 3538 385621 2019 Guadalajara        Belenes Suc. Belenes    9809  BRAUL
## 3539 385831 2019 Guadalajara        Belenes Suc. Belenes    9838  ABARR
## 3540 386259 2019 Guadalajara        Belenes Suc. Belenes    9882  MARIO
## 3541 386898 2019 Guadalajara        Belenes Suc. Belenes    9923  JOSE 
## 3542 387035 2019 Guadalajara        Belenes Suc. Belenes    9938  MARIA
## 3543 387879 2019 Guadalajara        Belenes Suc. Belenes      39  ABARR
## 3544 387974 2019 Guadalajara        Belenes Suc. Belenes      42  ABARR
## 3545 388547 2019 Guadalajara        Belenes Suc. Belenes      85  ABARR
## 3546 388645 2019 Guadalajara        Belenes Suc. Belenes      86  ABARR
## 3547 388794 2019 Guadalajara        Belenes Suc. Belenes      92  RAMIR
## 3548 388884 2019 Guadalajara        Belenes Suc. Belenes     103  MIGUE
## 3549 389320 2019 Guadalajara        Belenes Suc. Belenes     142  MARIA
## 3550 389412 2019 Guadalajara        Belenes Suc. Belenes     144  KAREN
## 3551 389500 2019 Guadalajara        Belenes Suc. Belenes     166  ABARR
## 3552 389581 2019 Guadalajara        Belenes Suc. Belenes     188  MARIA
## 3553 389659 2019 Guadalajara        Belenes Suc. Belenes     189  ARNUL
## 3554 389737 2019 Guadalajara        Belenes Suc. Belenes     200  ABARR
## 3555 389825 2019 Guadalajara        Belenes Suc. Belenes     204  EL GR
## 3556 389982 2019 Guadalajara        Belenes Suc. Belenes     211  JOSE 
## 3557 390352 2019 Guadalajara        Belenes Suc. Belenes     238  LEONA
## 3558 390528 2019 Guadalajara        Belenes Suc. Belenes     248  GABRI
## 3559 390649 2019 Guadalajara        Belenes Suc. Belenes     303  ABARR
## 3560 390745 2019 Guadalajara        Belenes Suc. Belenes     317  MINIS
## 3561 390844 2019 Guadalajara        Belenes Suc. Belenes     326  MI BE
## 3562 391180 2019 Guadalajara        Belenes Suc. Belenes     376  CESAR
## 3563 391281 2019 Guadalajara        Belenes Suc. Belenes     390  EL RE
## 3564 391376 2019 Guadalajara        Belenes Suc. Belenes     406  TENDE
## 3565 391576 2019 Guadalajara        Belenes Suc. Belenes     442  ABARR
## 3566 391762 2019 Guadalajara        Belenes Suc. Belenes     458  SALVA
## 3567 391836 2019 Guadalajara        Belenes Suc. Belenes     462  ABARR
## 3568 391909 2019 Guadalajara        Belenes Suc. Belenes     466  ABARR
## 3569 392162 2019 Guadalajara        Belenes Suc. Belenes     475  MARIA
## 3570 392232 2019 Guadalajara        Belenes Suc. Belenes     476  JUAN 
## 3571 392465 2019 Guadalajara        Belenes Suc. Belenes     505  JUANA
## 3572 392550 2019 Guadalajara        Belenes Suc. Belenes     508  MARIA
## 3573 392712 2019 Guadalajara        Belenes Suc. Belenes     542  GONZA
## 3574 392817 2019 Guadalajara        Belenes Suc. Belenes     554  ABARR
## 3575 393059 2019 Guadalajara        Belenes Suc. Belenes     576  JOSE 
## 3576 393153 2019 Guadalajara        Belenes Suc. Belenes     581  EDGAR
## 3577 393283 2019 Guadalajara        Belenes Suc. Belenes     594  RAFAE
## 3578 393377 2019 Guadalajara        Belenes Suc. Belenes     607  ABARR
## 3579 393680 2019 Guadalajara        Belenes Suc. Belenes     707  RAFAE
## 3580 393774 2019 Guadalajara        Belenes Suc. Belenes     711  RAMIR
## 3581 393889 2019 Guadalajara        Belenes Suc. Belenes     712  ABARR
## 3582 394080 2019 Guadalajara        Belenes Suc. Belenes     815  PACHE
## 3583 394168 2019 Guadalajara        Belenes Suc. Belenes     834  ABARR
## 3584 394251 2019 Guadalajara        Belenes Suc. Belenes     841  ABARR
## 3585 394337 2019 Guadalajara        Belenes Suc. Belenes     847  ARTUR
## 3586 394574 2019 Guadalajara        Belenes Suc. Belenes     903  ABARR
## 3587 394651 2019 Guadalajara        Belenes Suc. Belenes     915  ABARR
## 3588 394744 2019 Guadalajara        Belenes Suc. Belenes     941  ABARR
## 3589 395073 2019 Guadalajara        Belenes Suc. Belenes     997  JOSE 
## 3590 395173 2019 Guadalajara        Belenes Suc. Belenes    1002  FEDER
## 3591 395321 2019 Guadalajara        Belenes Suc. Belenes    1060  MARIA
## 3592 395563 2019 Guadalajara        Belenes Suc. Belenes    1088  JACIE
## 3593 395670 2019 Guadalajara        Belenes Suc. Belenes    1150  ABARR
## 3594 395761 2019 Guadalajara        Belenes Suc. Belenes    1163  LUIS 
## 3595 395935 2019 Guadalajara        Belenes Suc. Belenes    1184  ABARR
## 3596 396036 2019 Guadalajara        Belenes Suc. Belenes    1208  JONAT
## 3597 396216 2019 Guadalajara        Belenes Suc. Belenes    1232  ADRIA
## 3598 396503 2019 Guadalajara        Belenes Suc. Belenes    1312  ABARR
## 3599 396965 2019 Guadalajara        Belenes Suc. Belenes    1366  SIX P
## 3600 397135 2019 Guadalajara        Belenes Suc. Belenes    1384  ABARR
## 3601 397230 2019 Guadalajara        Belenes Suc. Belenes    1407  ABARR
## 3602 397359 2019 Guadalajara        Belenes Suc. Belenes    1444  MARIA
## 3603 397440 2019 Guadalajara        Belenes Suc. Belenes    1447  ABARR
## 3604 397677 2019 Guadalajara        Belenes Suc. Belenes    1479  RAFAE
## 3605 397926 2019 Guadalajara        Belenes Suc. Belenes    1528  MARZO
## 3606 398006 2019 Guadalajara        Belenes Suc. Belenes    1529  ABARR
## 3607 398191 2019 Guadalajara        Belenes Suc. Belenes    1565  JUAN 
## 3608 398337 2019 Guadalajara        Belenes Suc. Belenes    1594  ABARR
## 3609 398589 2019 Guadalajara        Belenes Suc. Belenes    1622  ABARR
## 3610 398838 2019 Guadalajara        Belenes Suc. Belenes    1644  RENE 
## 3611 398913 2019 Guadalajara        Belenes Suc. Belenes    1653  LINDA
## 3612 399152 2019 Guadalajara        Belenes Suc. Belenes    1717  ABEL 
## 3613 399221 2019 Guadalajara        Belenes Suc. Belenes    1723  MINI 
## 3614 399327 2019 Guadalajara        Belenes Suc. Belenes    1725  ABARR
## 3615 399522 2019 Guadalajara        Belenes Suc. Belenes    1736  PABLO
## 3616 399761 2019 Guadalajara        Belenes Suc. Belenes    1799  JOSE 
## 3617 399926 2019 Guadalajara        Belenes Suc. Belenes    1814  ALBER
## 3618 400022 2019 Guadalajara        Belenes Suc. Belenes    1820  ROSA 
## 3619 400216 2019 Guadalajara        Belenes Suc. Belenes    1831  RAFAE
## 3620 400304 2019 Guadalajara        Belenes Suc. Belenes    1834  CREME
## 3621 400410 2019 Guadalajara        Belenes Suc. Belenes    1835  MARIA
## 3622 400508 2019 Guadalajara        Belenes Suc. Belenes    1836  TERES
## 3623 400583 2019 Guadalajara        Belenes Suc. Belenes    1842  MARIA
## 3624 400764 2019 Guadalajara        Belenes Suc. Belenes    1847  ABARR
## 3625 400854 2019 Guadalajara        Belenes Suc. Belenes    1854  ABARR
## 3626 401132 2019 Guadalajara        Belenes Suc. Belenes    1860  DOS H
## 3627 401226 2019 Guadalajara        Belenes Suc. Belenes    1872  RUTH 
## 3628 401302 2019 Guadalajara        Belenes Suc. Belenes    1893  EL MA
## 3629 401450 2019 Guadalajara        Belenes Suc. Belenes    1918  ABARR
## 3630 401604 2019 Guadalajara        Belenes Suc. Belenes    1952  ABARR
## 3631 401698 2019 Guadalajara        Belenes Suc. Belenes    1971  ABARR
## 3632 401786 2019 Guadalajara        Belenes Suc. Belenes    1974  ABARR
## 3633 401966 2019 Guadalajara        Belenes Suc. Belenes    1993  ABARR
## 3634 402061 2019 Guadalajara        Belenes Suc. Belenes    2003  ABARR
## 3635 402168 2019 Guadalajara        Belenes Suc. Belenes    2006  ABARR
## 3636 402376 2019 Guadalajara        Belenes Suc. Belenes    2033  ABARR
## 3637 402462 2019 Guadalajara        Belenes Suc. Belenes    2044  JAIME
## 3638 402544 2019 Guadalajara        Belenes Suc. Belenes    2049  MARIA
## 3639 402630 2019 Guadalajara        Belenes Suc. Belenes    2052  ABARR
## 3640 402773 2019 Guadalajara        Belenes Suc. Belenes    2060  GERAR
## 3641 402860 2019 Guadalajara        Belenes Suc. Belenes    2064  ABARR
## 3642 403268 2019 Guadalajara        Belenes Suc. Belenes    2138  GUMEC
## 3643 403357 2019 Guadalajara        Belenes Suc. Belenes    2142  FELIP
## 3644 403546 2019 Guadalajara        Belenes Suc. Belenes    2179  JUAN 
## 3645 403746 2019 Guadalajara        Belenes Suc. Belenes    2203  ABARR
## 3646 403905 2019 Guadalajara        Belenes Suc. Belenes    2231  ELISA
## 3647 403990 2019 Guadalajara        Belenes Suc. Belenes    2248  VINOS
## 3648 404063 2019 Guadalajara        Belenes Suc. Belenes    2255  VERON
## 3649 404203 2019 Guadalajara        Belenes Suc. Belenes    2274  JUAN 
## 3650 404273 2019 Guadalajara        Belenes Suc. Belenes    2278  AUDIE
## 3651 404458 2019 Guadalajara        Belenes Suc. Belenes    2313  ABARR
## 3652 404555 2019 Guadalajara        Belenes Suc. Belenes    2314  BLANC
## 3653 404658 2019 Guadalajara        Belenes Suc. Belenes    2319  SUPER
## 3654 405173 2019 Guadalajara        Belenes Suc. Belenes    2353  LA BO
## 3655 405251 2019 Guadalajara        Belenes Suc. Belenes    2377  PATRI
## 3656 405327 2019 Guadalajara        Belenes Suc. Belenes    2386  MINI 
## 3657 405425 2019 Guadalajara        Belenes Suc. Belenes    2394  ABARR
## 3658 405612 2019 Guadalajara        Belenes Suc. Belenes    2403  ALICI
## 3659 405861 2019 Guadalajara        Belenes Suc. Belenes    2475  MIRIA
## 3660 405928 2019 Guadalajara        Belenes Suc. Belenes    2497  ABARR
## 3661 406019 2019 Guadalajara        Belenes Suc. Belenes    2498  ADELI
## 3662 406098 2019 Guadalajara        Belenes Suc. Belenes    2501  ERNES
## 3663 406188 2019 Guadalajara        Belenes Suc. Belenes    2522  ABARR
## 3664 406258 2019 Guadalajara        Belenes Suc. Belenes    2536  ABARR
## 3665 406328 2019 Guadalajara        Belenes Suc. Belenes    2538  ABARR
## 3666 406454 2019 Guadalajara        Belenes Suc. Belenes    2576  SILVI
## 3667 406541 2019 Guadalajara        Belenes Suc. Belenes    2586  EL DK
## 3668 406647 2019 Guadalajara        Belenes Suc. Belenes    2587  CARME
## 3669 406723 2019 Guadalajara        Belenes Suc. Belenes    2588  ABARR
## 3670 407018 2019 Guadalajara        Belenes Suc. Belenes    2654  RAFAE
## 3671 407755 2019 Guadalajara        Belenes Suc. Belenes    2814  JORGE
## 3672 408112 2019 Guadalajara        Belenes Suc. Belenes    2866  DULCE
## 3673 408217 2019 Guadalajara        Belenes Suc. Belenes    2867  MINIS
## 3674 408325 2019 Guadalajara        Belenes Suc. Belenes    2877  ABARR
## 3675 408513 2019 Guadalajara        Belenes Suc. Belenes    2905  EL GR
## 3676 408618 2019 Guadalajara        Belenes Suc. Belenes    2910  BAUDE
## 3677 408883 2019 Guadalajara        Belenes Suc. Belenes    2973  ABARR
## 3678 408954 2019 Guadalajara        Belenes Suc. Belenes    2996  HERME
## 3679 409111 2019 Guadalajara        Belenes Suc. Belenes    3021  ABARR
## 3680 409207 2019 Guadalajara        Belenes Suc. Belenes    3027  MAYEL
## 3681 409304 2019 Guadalajara        Belenes Suc. Belenes    3035  RICAR
## 3682 409400 2019 Guadalajara        Belenes Suc. Belenes    3039  LA VA
## 3683 409551 2019 Guadalajara        Belenes Suc. Belenes    3056  VICEN
## 3684 409635 2019 Guadalajara        Belenes Suc. Belenes    3067  ABARR
## 3685 409765 2019 Guadalajara        Belenes Suc. Belenes    3071  MARIO
## 3686 409898 2019 Guadalajara        Belenes Suc. Belenes    3117  ABARR
## 3687 410178 2019 Guadalajara        Belenes Suc. Belenes    3145  MARIA
## 3688 410287 2019 Guadalajara        Belenes Suc. Belenes    3165  ARON 
## 3689 410374 2019 Guadalajara        Belenes Suc. Belenes    3167  ABARR
## 3690 410626 2019 Guadalajara        Belenes Suc. Belenes    3182  ABARR
## 3691 411004 2019 Guadalajara        Belenes Suc. Belenes    3235  MARIA
## 3692 411411 2019 Guadalajara        Belenes Suc. Belenes    3269  BALDO
## 3693 411985 2019 Guadalajara        Belenes Suc. Belenes    2482  ABARR
## 3694 412082 2019 Guadalajara        Belenes Suc. Belenes    2483  NOE H
## 3695 412615 2019 Guadalajara        Belenes Suc. Belenes    2551  MARIA
## 3696 412676 2019 Guadalajara        Belenes Suc. Belenes    2561  ABARR
## 3697 412873 2019 Guadalajara        Belenes Suc. Belenes    2564  HERLI
## 3698 413160 2019 Guadalajara        Belenes Suc. Belenes    2584  ABARR
## 3699 413254 2019 Guadalajara        Belenes Suc. Belenes    2599  HECTO
## 3700 413861 2019 Guadalajara        Belenes Suc. Belenes    2771  ABARR
## 3701 414118 2019 Guadalajara        Belenes Suc. Belenes    2908  ANTON
## 3702 414168 2019 Guadalajara        Belenes Suc. Belenes    2918  ABARR
## 3703 414259 2019 Guadalajara        Belenes Suc. Belenes    2923  EMILI
## 3704 414653 2019 Guadalajara        Belenes Suc. Belenes    3017  OSCAR
## 3705 414725 2019 Guadalajara        Belenes Suc. Belenes    3027  MARIA
## 3706 414778 2019 Guadalajara        Belenes Suc. Belenes    3033  CLAUD
## 3707 414856 2019 Guadalajara        Belenes Suc. Belenes    3060  ABARR
## 3708 414956 2019 Guadalajara        Belenes Suc. Belenes    3099  MAYRA
## 3709 415111 2019 Guadalajara        Belenes Suc. Belenes    3126  JOSE 
## 3710 415566 2019 Guadalajara        Belenes Suc. Belenes    3277  GREGO
## 3711 415715 2019 Guadalajara        Belenes Suc. Belenes    3289  CREME
## 3712 416168 2019 Guadalajara        Belenes Suc. Belenes     763  JUAN 
## 3713    735 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 3714   1492 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 3715   1592 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 3716   1708 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 3717   2036 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 3718   2312 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 3719   3902 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3720   4318 2016 Guadalajara        Belenes Suc. Belenes   79913  GUILL
## 3721   7093 2016 Guadalajara        Belenes Suc. Belenes   81030  ABARR
## 3722   7481 2016 Guadalajara        Belenes Suc. Belenes   81180  DON B
## 3723   8068 2016 Guadalajara        Belenes Suc. Belenes   81395  ABARR
## 3724   8668 2016 Guadalajara        Belenes Suc. Belenes   81713  MISCE
## 3725   8900 2016 Guadalajara        Belenes Suc. Belenes   81731  NORBE
## 3726   9096 2016 Guadalajara        Belenes Suc. Belenes   81759  ELVA 
## 3727   9952 2016 Guadalajara        Belenes Suc. Belenes   81956  ABARR
## 3728  10072 2016 Guadalajara        Belenes Suc. Belenes   82000  ABARR
## 3729  10373 2016 Guadalajara        Belenes Suc. Belenes   82146  ABARR
## 3730  11067 2016 Guadalajara        Belenes Suc. Belenes   82647  JUNIO
## 3731  12089 2016 Guadalajara        Belenes Suc. Belenes   83072  ABARR
## 3732  12720 2016 Guadalajara        Belenes Suc. Belenes   42516  JOSE 
## 3733 107444 2017 Guadalajara        Belenes Suc. Belenes    8842  ABARR
## 3734 110059 2017 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 3735 110381 2017 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 3736 111303 2017 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 3737 113876 2017 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 3738 114479 2017 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 3739 116481 2017 Guadalajara        Belenes Suc. Belenes    1956  ABARR
## 3740 116605 2017 Guadalajara        Belenes Suc. Belenes    2000  ABARR
## 3741 116909 2017 Guadalajara        Belenes Suc. Belenes    2146  ABARR
## 3742 118727 2017 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 3743 155950 2017 Guadalajara        Belenes Suc. Belenes    9761  CANDE
## 3744 162118 2017 Guadalajara        Belenes Suc. Belenes     946  AMPAR
## 3745 166381 2017 Guadalajara        Belenes Suc. Belenes    1958  MARIA
## 3746 166994 2017 Guadalajara        Belenes Suc. Belenes    2078  RUBEN
## 3747 169264 2017 Guadalajara        Belenes Suc. Belenes    2550  VINOS
## 3748 169518 2017 Guadalajara        Belenes Suc. Belenes    2605  JULIA
## 3749 170648 2017 Guadalajara        Belenes Suc. Belenes    2786  LETIC
## 3750 177081 2017 Guadalajara        Belenes Suc. Belenes    5735  Julio
## 3751 200451 2018 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 3752 201408 2018 Guadalajara        Belenes Suc. Belenes    8842  ABARR
## 3753 202464 2018 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 3754 203617 2018 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 3755 203999 2018 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 3756 204315 2018 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 3757 207983 2018 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 3758 208087 2018 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 3759 208622 2018 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 3760 209675 2018 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 3761 211009 2018 Guadalajara        Belenes Suc. Belenes    2146  ABARR
## 3762 211735 2018 Guadalajara        Belenes Suc. Belenes    2647  JUNIO
## 3763 212835 2018 Guadalajara        Belenes Suc. Belenes    3072  ABARR
## 3764 213909 2018 Guadalajara        Belenes Suc. Belenes    2651  ABARR
## 3765 252928 2018 Guadalajara        Belenes Suc. Belenes    2078  RUBEN
## 3766 254118 2018 Guadalajara        Belenes Suc. Belenes    2550  VINOS
## 3767 259501 2018 Guadalajara        Belenes Suc. Belenes    2702  OCTAV
## 3768 261222 2018 Guadalajara        Belenes Suc. Belenes    9500  REBEC
## 3769 262067 2018 Guadalajara        Belenes Suc. Belenes    6008  BERTH
## 3770 305119 2019 Guadalajara        Belenes Suc. Belenes    8689  ABARR
## 3771 305432 2019 Guadalajara        Belenes Suc. Belenes    8842  ABARR
## 3772 305523 2019 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 3773 306388 2019 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 3774 307461 2019 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 3775 308138 2019 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 3776 308962 2019 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 3777 311957 2019 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 3778 312296 2019 Guadalajara        Belenes Suc. Belenes    1635  LA HI
## 3779 325430 2019 Guadalajara        Belenes Suc. Belenes    2550  VINOS
## 3780 330671 2019 Guadalajara        Belenes Suc. Belenes    7720  MICEL
## 3781 337750 2019 Guadalajara        Belenes Suc. Belenes    9060  ELIA 
## 3782 340489 2019 Guadalajara        Belenes Suc. Belenes    9544  INOCE
## 3783 341511 2019 Guadalajara        Belenes Suc. Belenes    9670  ABARR
## 3784 357285 2019 Guadalajara        Belenes Suc. Belenes    2022  JUANA
## 3785 363707 2019 Guadalajara        Belenes Suc. Belenes    2887  M HER
## 3786 365271 2019 Guadalajara        Belenes Suc. Belenes    3130  ROSA 
## 3787 376603 2019 Guadalajara        Belenes Suc. Belenes    8093  ESPER
## 3788 378475 2019 Guadalajara        Belenes Suc. Belenes    8866  MARIA
## 3789 380763 2019 Guadalajara        Belenes Suc. Belenes    9162  MARIA
## 3790 382596 2019 Guadalajara        Belenes Suc. Belenes    9420  MARIA
## 3791 385819 2019 Guadalajara        Belenes Suc. Belenes    9838  ABARR
## 3792 388868 2019 Guadalajara        Belenes Suc. Belenes     103  MIGUE
## 3793 389727 2019 Guadalajara        Belenes Suc. Belenes     200  ABARR
## 3794 392150 2019 Guadalajara        Belenes Suc. Belenes     475  MARIA
## 3795 393143 2019 Guadalajara        Belenes Suc. Belenes     581  EDGAR
## 3796 393224 2019 Guadalajara        Belenes Suc. Belenes     582  ABARR
## 3797 397122 2019 Guadalajara        Belenes Suc. Belenes    1384  ABARR
## 3798 397820 2019 Guadalajara        Belenes Suc. Belenes    1506  ABARR
## 3799 397992 2019 Guadalajara        Belenes Suc. Belenes    1529  ABARR
## 3800 399313 2019 Guadalajara        Belenes Suc. Belenes    1725  ABARR
## 3801 400112 2019 Guadalajara        Belenes Suc. Belenes    1826  SUPER
## 3802 400840 2019 Guadalajara        Belenes Suc. Belenes    1854  ABARR
## 3803 401774 2019 Guadalajara        Belenes Suc. Belenes    1974  ABARR
## 3804 406912 2019 Guadalajara        Belenes Suc. Belenes    2634  MARIA
## 3805 408309 2019 Guadalajara        Belenes Suc. Belenes    2877  ABARR
## 3806 410461 2019 Guadalajara        Belenes Suc. Belenes    3168  ABARR
## 3807     97 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 3808    190 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 3809    304 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 3810    421 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 3811    535 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 3812    640 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 3813    745 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 3814    849 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 3815   1058 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 3816   1148 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 3817   1395 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 3818   1500 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 3819   1603 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 3820   1719 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 3821   1941 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 3822   2046 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 3823   2167 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 3824   2407 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 3825   2525 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 3826   2765 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 3827   2846 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 3828   2956 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3829   3060 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3830   3247 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3831   3356 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3832   3428 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3833   3620 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3834   3714 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3835   3815 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3836   3912 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3837   4013 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3838   4225 2016 Guadalajara        Belenes Suc. Belenes   79884  ABARR
## 3839   4400 2016 Guadalajara        Belenes Suc. Belenes   79915  ADAN 
## 3840   4491 2016 Guadalajara        Belenes Suc. Belenes   80004  MARIA
## 3841   4580 2016 Guadalajara        Belenes Suc. Belenes   80100  ABARR
## 3842   4688 2016 Guadalajara        Belenes Suc. Belenes   80154  ABARR
## 3843   4781 2016 Guadalajara        Belenes Suc. Belenes   80183  CESAR
## 3844   4893 2016 Guadalajara        Belenes Suc. Belenes   80184  AVELI
## 3845   4967 2016 Guadalajara        Belenes Suc. Belenes   80242  ABARR
## 3846   5083 2016 Guadalajara        Belenes Suc. Belenes   80247  DULCE
## 3847   5171 2016 Guadalajara        Belenes Suc. Belenes   80280  MERCE
## 3848   5354 2016 Guadalajara        Belenes Suc. Belenes   80335  SAL Y
## 3849   5560 2016 Guadalajara        Belenes Suc. Belenes   80396  ABARR
## 3850   5662 2016 Guadalajara        Belenes Suc. Belenes   80407  LUIS 
## 3851   5748 2016 Guadalajara        Belenes Suc. Belenes   80426  ANTON
## 3852   5844 2016 Guadalajara        Belenes Suc. Belenes   80438  EL GR
## 3853   5970 2016 Guadalajara        Belenes Suc. Belenes   80485  ABARR
## 3854   6276 2016 Guadalajara        Belenes Suc. Belenes   80597  ALBIN
## 3855   6370 2016 Guadalajara        Belenes Suc. Belenes   80651  SUPER
## 3856   6466 2016 Guadalajara        Belenes Suc. Belenes   80652  ABARR
## 3857   6663 2016 Guadalajara        Belenes Suc. Belenes   80786  ABARR
## 3858   6829 2016 Guadalajara        Belenes Suc. Belenes   80921  MOISE
## 3859   7102 2016 Guadalajara        Belenes Suc. Belenes   81030  ABARR
## 3860   7205 2016 Guadalajara        Belenes Suc. Belenes   81090  ABARR
## 3861   7302 2016 Guadalajara        Belenes Suc. Belenes   81116  ABARR
## 3862   7388 2016 Guadalajara        Belenes Suc. Belenes   81160  ABARR
## 3863   7490 2016 Guadalajara        Belenes Suc. Belenes   81180  DON B
## 3864   7585 2016 Guadalajara        Belenes Suc. Belenes   81182  JOSE 
## 3865   7687 2016 Guadalajara        Belenes Suc. Belenes   81286  ALICI
## 3866   7964 2016 Guadalajara        Belenes Suc. Belenes   81393  SUPER
## 3867   8077 2016 Guadalajara        Belenes Suc. Belenes   81395  ABARR
## 3868   8284 2016 Guadalajara        Belenes Suc. Belenes   81428  VINOS
## 3869   8355 2016 Guadalajara        Belenes Suc. Belenes   81543  EMMAN
## 3870   8466 2016 Guadalajara        Belenes Suc. Belenes   81635  LA HI
## 3871   8572 2016 Guadalajara        Belenes Suc. Belenes   81664  ABARR
## 3872   8676 2016 Guadalajara        Belenes Suc. Belenes   81713  MISCE
## 3873   8784 2016 Guadalajara        Belenes Suc. Belenes   81716  ABARR
## 3874   8912 2016 Guadalajara        Belenes Suc. Belenes   81731  NORBE
## 3875   9019 2016 Guadalajara        Belenes Suc. Belenes   81746  INBOX
## 3876   9105 2016 Guadalajara        Belenes Suc. Belenes   81759  ELVA 
## 3877   9224 2016 Guadalajara        Belenes Suc. Belenes   81785  ABARR
## 3878   9315 2016 Guadalajara        Belenes Suc. Belenes   81795  ABARR
## 3879   9418 2016 Guadalajara        Belenes Suc. Belenes   81812  ABARR
## 3880   9525 2016 Guadalajara        Belenes Suc. Belenes   81818  LA LO
## 3881   9779 2016 Guadalajara        Belenes Suc. Belenes   81916  MARIA
## 3882   9881 2016 Guadalajara        Belenes Suc. Belenes   81927  ISMAE
## 3883   9961 2016 Guadalajara        Belenes Suc. Belenes   81956  ABARR
## 3884  10083 2016 Guadalajara        Belenes Suc. Belenes   82000  ABARR
## 3885  10186 2016 Guadalajara        Belenes Suc. Belenes   82047  LA ME
## 3886  10260 2016 Guadalajara        Belenes Suc. Belenes   82075  MARTH
## 3887  10382 2016 Guadalajara        Belenes Suc. Belenes   82146  ABARR
## 3888  10479 2016 Guadalajara        Belenes Suc. Belenes   82242  ABARR
## 3889  10571 2016 Guadalajara        Belenes Suc. Belenes   82294  JOSE 
## 3890  10654 2016 Guadalajara        Belenes Suc. Belenes   82399  ABARR
## 3891  10832 2016 Guadalajara        Belenes Suc. Belenes   82456  ABARR
## 3892  10906 2016 Guadalajara        Belenes Suc. Belenes   82529  ABARR
## 3893  10982 2016 Guadalajara        Belenes Suc. Belenes   82531  JOSE 
## 3894  11076 2016 Guadalajara        Belenes Suc. Belenes   82647  JUNIO
## 3895  11201 2016 Guadalajara        Belenes Suc. Belenes   82702  JOSE 
## 3896  11282 2016 Guadalajara        Belenes Suc. Belenes   82706  ABARR
## 3897  11401 2016 Guadalajara        Belenes Suc. Belenes   82759  JOSE 
## 3898  11492 2016 Guadalajara        Belenes Suc. Belenes   82795  ABARR
## 3899  11584 2016 Guadalajara        Belenes Suc. Belenes   82861  ABARR
## 3900  11666 2016 Guadalajara        Belenes Suc. Belenes   82912  BRAUL
## 3901  11921 2016 Guadalajara        Belenes Suc. Belenes   83023  ABARR
## 3902  12009 2016 Guadalajara        Belenes Suc. Belenes   83060  MARIA
## 3903  12101 2016 Guadalajara        Belenes Suc. Belenes   83072  ABARR
## 3904  12225 2016 Guadalajara        Belenes Suc. Belenes   83085  SUPER
## 3905  12728 2016 Guadalajara        Belenes Suc. Belenes   42516  JOSE 
## 3906  12910 2016 Guadalajara        Belenes Suc. Belenes   42611  JESUS
## 3907  13000 2016 Guadalajara        Belenes Suc. Belenes   42622  TORIB
## 3908  13095 2016 Guadalajara        Belenes Suc. Belenes   42651  ABARR
## 3909  13296 2016 Guadalajara        Belenes Suc. Belenes   42912  ABARR
## 3910  13469 2016 Guadalajara        Belenes Suc. Belenes   43087  JOSE 
## 3911  13551 2016 Guadalajara        Belenes Suc. Belenes   24997  Hugo 
## 3912  13685 2016 Guadalajara        Belenes Suc. Belenes   27373  Salva
## 3913 106036 2017 Guadalajara        Belenes Suc. Belenes    7796  MARIA
## 3914 106132 2017 Guadalajara        Belenes Suc. Belenes    7800  SAN I
## 3915 106361 2017 Guadalajara        Belenes Suc. Belenes    7884  ABARR
## 3916 106481 2017 Guadalajara        Belenes Suc. Belenes    7917  ABARR
## 3917 106587 2017 Guadalajara        Belenes Suc. Belenes    8010  ABARR
## 3918 106801 2017 Guadalajara        Belenes Suc. Belenes    8201  MIGUE
## 3919 106906 2017 Guadalajara        Belenes Suc. Belenes    8284  MINI 
## 3920 106998 2017 Guadalajara        Belenes Suc. Belenes    8678  FERNA
## 3921 107080 2017 Guadalajara        Belenes Suc. Belenes    8689  ABARR
## 3922 107256 2017 Guadalajara        Belenes Suc. Belenes    8696  ABARR
## 3923 107342 2017 Guadalajara        Belenes Suc. Belenes    8795  ABARR
## 3924 107452 2017 Guadalajara        Belenes Suc. Belenes    8842  ABARR
## 3925 107554 2017 Guadalajara        Belenes Suc. Belenes    8946  ABARR
## 3926 107674 2017 Guadalajara        Belenes Suc. Belenes    9010  ABARR
## 3927 107794 2017 Guadalajara        Belenes Suc. Belenes    9017  MINIS
## 3928 107908 2017 Guadalajara        Belenes Suc. Belenes    9041  ABARR
## 3929 108031 2017 Guadalajara        Belenes Suc. Belenes    9139  ABARR
## 3930 108145 2017 Guadalajara        Belenes Suc. Belenes    9140  CERVE
## 3931 108235 2017 Guadalajara        Belenes Suc. Belenes    9169  ISABE
## 3932 108309 2017 Guadalajara        Belenes Suc. Belenes    9186  EMPOR
## 3933 108402 2017 Guadalajara        Belenes Suc. Belenes    9275  ABARR
## 3934 108505 2017 Guadalajara        Belenes Suc. Belenes    9455  JOSE 
## 3935 108766 2017 Guadalajara        Belenes Suc. Belenes    9492  JOEL 
## 3936 108857 2017 Guadalajara        Belenes Suc. Belenes    9506  ABARR
## 3937 108973 2017 Guadalajara        Belenes Suc. Belenes    9574  ABARR
## 3938 109171 2017 Guadalajara        Belenes Suc. Belenes    9603  ABARR
## 3939 109283 2017 Guadalajara        Belenes Suc. Belenes    9615  TIEND
## 3940 109405 2017 Guadalajara        Belenes Suc. Belenes    9632  SUSAN
## 3941 109490 2017 Guadalajara        Belenes Suc. Belenes    9646  SUPER
## 3942 109609 2017 Guadalajara        Belenes Suc. Belenes    9671  ABARR
## 3943 109705 2017 Guadalajara        Belenes Suc. Belenes    9677  ANDRE
## 3944 109798 2017 Guadalajara        Belenes Suc. Belenes    9742  ABARR
## 3945 109889 2017 Guadalajara        Belenes Suc. Belenes    9743  ABARR
## 3946 109977 2017 Guadalajara        Belenes Suc. Belenes    9767  ABARR
## 3947 110069 2017 Guadalajara        Belenes Suc. Belenes    9872  CENTR
## 3948 110216 2017 Guadalajara        Belenes Suc. Belenes    9873  VINOS
## 3949 110298 2017 Guadalajara        Belenes Suc. Belenes    9884  ABARR
## 3950 110391 2017 Guadalajara        Belenes Suc. Belenes    9913  GUILL
## 3951 110487 2017 Guadalajara        Belenes Suc. Belenes    9915  ADAN 
## 3952 110572 2017 Guadalajara        Belenes Suc. Belenes    9961  FRANC
## 3953 110662 2017 Guadalajara        Belenes Suc. Belenes       4  MARIA
## 3954 110775 2017 Guadalajara        Belenes Suc. Belenes     100  ABARR
## 3955 110879 2017 Guadalajara        Belenes Suc. Belenes     154  ABARR
## 3956 110972 2017 Guadalajara        Belenes Suc. Belenes     183  CESAR
## 3957 111089 2017 Guadalajara        Belenes Suc. Belenes     184  AVELI
## 3958 111194 2017 Guadalajara        Belenes Suc. Belenes     242  ABARR
## 3959 111313 2017 Guadalajara        Belenes Suc. Belenes     247  DULCE
## 3960 111497 2017 Guadalajara        Belenes Suc. Belenes     286  SIX T
## 3961 111600 2017 Guadalajara        Belenes Suc. Belenes     335  SAL Y
## 3962 111713 2017 Guadalajara        Belenes Suc. Belenes     337  MARIA
## 3963 111793 2017 Guadalajara        Belenes Suc. Belenes     396  ABARR
## 3964 111898 2017 Guadalajara        Belenes Suc. Belenes     407  LUIS 
## 3965 112087 2017 Guadalajara        Belenes Suc. Belenes     438  EL GR
## 3966 112206 2017 Guadalajara        Belenes Suc. Belenes     485  ABARR
## 3967 112390 2017 Guadalajara        Belenes Suc. Belenes     578  ERIK 
## 3968 112500 2017 Guadalajara        Belenes Suc. Belenes     597  ALBIN
## 3969 112593 2017 Guadalajara        Belenes Suc. Belenes     623  MARIA
## 3970 112712 2017 Guadalajara        Belenes Suc. Belenes     651  SUPER
## 3971 112804 2017 Guadalajara        Belenes Suc. Belenes     652  ABARR
## 3972 112918 2017 Guadalajara        Belenes Suc. Belenes     664  ABARR
## 3973 113025 2017 Guadalajara        Belenes Suc. Belenes     786  ABARR
## 3974 113204 2017 Guadalajara        Belenes Suc. Belenes     921  MOISE
## 3975 113475 2017 Guadalajara        Belenes Suc. Belenes    1030  ABARR
## 3976 113578 2017 Guadalajara        Belenes Suc. Belenes    1090  ABARR
## 3977 113693 2017 Guadalajara        Belenes Suc. Belenes    1116  ABARR
## 3978 113776 2017 Guadalajara        Belenes Suc. Belenes    1160  ABARR
## 3979 113886 2017 Guadalajara        Belenes Suc. Belenes    1180  DON B
## 3980 113990 2017 Guadalajara        Belenes Suc. Belenes    1182  JOSE 
## 3981 114165 2017 Guadalajara        Belenes Suc. Belenes    1317  DAVID
## 3982 114373 2017 Guadalajara        Belenes Suc. Belenes    1393  SUPER
## 3983 114488 2017 Guadalajara        Belenes Suc. Belenes    1395  ABARR
## 3984 114732 2017 Guadalajara        Belenes Suc. Belenes    1543  EMMAN
## 3985 114832 2017 Guadalajara        Belenes Suc. Belenes    1635  LA HI
## 3986 114940 2017 Guadalajara        Belenes Suc. Belenes    1664  ABARR
## 3987 115049 2017 Guadalajara        Belenes Suc. Belenes    1713  MISCE
## 3988 115149 2017 Guadalajara        Belenes Suc. Belenes    1716  ABARR
## 3989 115276 2017 Guadalajara        Belenes Suc. Belenes    1731  NORBE
## 3990 115434 2017 Guadalajara        Belenes Suc. Belenes    1759  ELVA 
## 3991 115555 2017 Guadalajara        Belenes Suc. Belenes    1785  ABARR
## 3992 115660 2017 Guadalajara        Belenes Suc. Belenes    1791  ALICI
## 3993 115772 2017 Guadalajara        Belenes Suc. Belenes    1795  ABARR
## 3994 115877 2017 Guadalajara        Belenes Suc. Belenes    1812  ABARR
## 3995 115995 2017 Guadalajara        Belenes Suc. Belenes    1818  LA LO
## 3996 116278 2017 Guadalajara        Belenes Suc. Belenes    1916  MARIA
## 3997 116386 2017 Guadalajara        Belenes Suc. Belenes    1927  ISMAE
## 3998 116490 2017 Guadalajara        Belenes Suc. Belenes    1956  ABARR
## 3999 116614 2017 Guadalajara        Belenes Suc. Belenes    2000  ABARR
##      Tamaño.Cte.Industria         Segmento.Det        Marca    Presentacion
## 1    Tamaño Cte Industria         Segmento Det        Marca    Presentacion
## 2            Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 3            Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 4            Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 5            Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 6            Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 7            Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 8            Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 9            Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 10           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 11           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 12           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 13           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 14           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 15           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 16           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 17           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 18           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 19           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 20           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 21           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 22           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 23           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 24           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 25           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 26           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 27           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 28           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 29           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 30           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 31           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 32           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 33           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 34           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 35           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 36           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 37           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 38           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 39           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 40           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 41           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 42           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 43           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 44           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 45           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 46           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 47           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 48           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 49           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 50           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 51           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 52           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 53           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 54           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 55           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 56           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 57           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 58           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 59           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 60           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 61           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 62           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 63           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 64           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 65           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 66           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 67           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 68           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 69           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 70           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 71           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 72           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 73           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 74           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 75           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 76           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 77           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 78           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 79           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 80           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 81           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 82           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 83           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 84           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 85           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 86           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 87           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 88           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 89           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 90           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 91           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 92           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 93           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 94           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 95           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 96           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 97           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 98           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 99           Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 100          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 101          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 102          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 103          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 104          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 105          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 106          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 107          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 108          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 109          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 110          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 111          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 112          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 113          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 114          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 115                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 116                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 117                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 118                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 119                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 120                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 121                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 122                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 123                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 124                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 125                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 126                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 127                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 128                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 129                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 130                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 131                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 132                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 133                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 134                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 135                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 136                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 137                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 138                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 139                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 140                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 141                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 142                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 143                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 144                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 145                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 146                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 147                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 148                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 149                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 150                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 151                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 152                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 153                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 154                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 155                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 156                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 157                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 158                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 159                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 160                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 161                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 162                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 163                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 164                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 165                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 166                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 167                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 168                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 169                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 170                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 171                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 172                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 173                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 174                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 175                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 176                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 177                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 178                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 179                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 180                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 181                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 182                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 183                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 184                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 185                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 186                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 187                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 188                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 189                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 190                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 191                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 192                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 193                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 194                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 195                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 196                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 197                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 198                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 199                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 200                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 201                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 202                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 203                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 204                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 205                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 206                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 207                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 208                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 209                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 210                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 211                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 212                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 213                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 214                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 215                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 216                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 217                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 218                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 219                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 220                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 221                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 222                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 223                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 224                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 225                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 226                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 227                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 228                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 229                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 230                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 231                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 232                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 233                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 234                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 235                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 236                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 237                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 238                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 239                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 240                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 241                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 242                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 243                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 244                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 245                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 246                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 247                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 248                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 249                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 250                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 251                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 252                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 253                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 254                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 255                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 256                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 257                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 258                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 259                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 260                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 261                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 262                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 263                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 264                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 265                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 266                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 267                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 268                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 269                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 270                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 271                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 272                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 273                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 274                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 275                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 276                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 277                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 278                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 279                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 280                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 281                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 282                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 283                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 284                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 285                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 286                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 287                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 288                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 289                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 290                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 291                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 292                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 293                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 294                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 295                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 296                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 297                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 298                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 299                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 300                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 301                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 302                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 303                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 304                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 305                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 306                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 307                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 308                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 309                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 310                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 311                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 312                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 313                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 314                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 315                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 316                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 317                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 318                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 319                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 320                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 321                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 322                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 323                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 324                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 325                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 326                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 327                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 328                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 329                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 330                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 331                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 332                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 333                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 334                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 335                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 336                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 337                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 338                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 339                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 340                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 341                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 342                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 343                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 344                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 345                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 346                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 347                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 348                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 349                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 350                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 351                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 352                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 353                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 354                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 355                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 356                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 357                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 358                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 359                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 360                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 361                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 362                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 363                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 364                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 365                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 366          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 367          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 368          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 369          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 370          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 371          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 372          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 373          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 374          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 375          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 376          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 377          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 378          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 379          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 380          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 381          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 382          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 383          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 384          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 385          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 386          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 387          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 388          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 389          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 390          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 391          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 392          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 393          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 394          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 395          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 396          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 397          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 398          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 399          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 400          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 401          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 402          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 403          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 404          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 405          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 406          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 407          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 408          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 409          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 410          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 411          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 412          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 413          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 414          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 415          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 416          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 417          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 418          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 419          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 420          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 421          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 422          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 423          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 424          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 425          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 426          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 427          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 428          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 429          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 430          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 431          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 432          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 433          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 434          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 435          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 436          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 437          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 438          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 439          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 440          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 441          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 442          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 443          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 444          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 445          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 446          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 447          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 448          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 449          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 450          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 451          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 452          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 453          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 454          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 455          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 456          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 457          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 458          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 459          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 460          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 461          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 462          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 463          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 464          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 465          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 466          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 467          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 468          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 469          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 470          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 471          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 472          Extra Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 473                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 474                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 475                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 476                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 477                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 478                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 479                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 480                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 481                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 482                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 483                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 484                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 485                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 486                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 487                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 488                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 489                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 490                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 491                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 492                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 493                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 494                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 495                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 496                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 497                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 498                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 499                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 500                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 501                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 502                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 503                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 504                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 505                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 506                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 507                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 508                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 509                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 510                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 511                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 512                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 513                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 514                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 515                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 516                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 517                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 518                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 519                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 520                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 521                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 522                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 523                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 524                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 525                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 526                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 527                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 528                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 529                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 530                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 531                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 532                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 533                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 534                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 535                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 536                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 537                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 538                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 539                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 540                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 541                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 542                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 543                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 544                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 545                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 546                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 547                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 548                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 549                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 550                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 551                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 552                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 553                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 554                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 555                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 556                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 557                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 558                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 559                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 560                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 561                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 562                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 563                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 564                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 565                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 566                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 567                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 568                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 569                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 570                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 571                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 572                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 573                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 574                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 575                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 576                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 577                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 578                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 579                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 580                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 581                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 582                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 583                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 584                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 585                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 586                 Micro      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 587               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 588               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 589               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 590               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 591               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 592               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 593               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 594               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 595               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 596               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 597               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 598               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 599               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 600               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 601               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 602               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 603               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 604               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 605               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 606               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 607               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 608               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 609               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 610               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 611               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 612               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 613               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 614               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 615               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 616               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 617               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 618               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 619               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 620               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 621               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 622               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 623               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 624               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 625               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 626               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 627               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 628               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 629               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 630               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 631               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 632               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 633               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 634               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 635               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 636               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 637               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 638               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 639               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 640               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 641               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 642               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 643               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 644               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 645               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 646               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 647               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 648               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 649               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 650               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 651               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 652               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 653               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 654               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 655               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 656               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 657               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 658               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 659               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 660               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 661               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 662               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 663               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 664               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 665               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 666               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 667               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 668               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 669               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 670               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 671               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 672               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 673               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 674               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 675               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 676               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 677               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 678               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 679               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 680               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 681               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 682               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 683               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 684               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 685               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 686               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 687               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 688               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 689               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 690               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 691               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 692               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 693               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 694               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 695               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 696               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 697               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 698               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 699               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 700               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 701               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 702               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 703               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 704               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 705               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 706               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 707               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 708               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 709               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 710               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 711               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 712               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 713               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 714               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 715               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 716               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 717               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 718               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 719               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 720               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 721               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 722               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 723               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 724               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 725               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 726               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 727               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 728               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 729               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 730               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 731               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 732               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 733               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 734               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 735               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 736               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 737               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 738               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 739               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 740               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 741               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 742               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 743               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 744               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 745               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 746               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 747               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 748               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 749               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 750               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 751               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 752               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 753               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 754               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 755               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 756               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 757               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 758               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 759               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 760               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 761               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 762               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 763               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 764               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 765               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 766               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 767               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 768               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 769               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 770               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 771               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 772               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 773               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 774               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 775               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 776               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 777               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 778               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 779               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 780               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 781               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 782               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 783               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 784               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 785               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 786               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 787               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 788               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 789               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 790               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 791               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 792               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 793               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 794               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 795               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 796               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 797               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 798               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 799               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 800               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 801               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 802               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 803               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 804               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 805               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 806               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 807               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 808               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 809               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 810               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 811               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 812               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 813               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 814               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 815               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 816               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 817               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 818               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 819               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 820               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 821               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 822               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 823               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 824               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 825               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 826               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 827               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 828               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 829               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 830               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 831               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 832               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 833               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 834               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 835               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 836               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 837               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 838               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 839               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 840               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 841               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 842               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 843               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 844               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 845               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 846               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 847               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 848               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 849               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 850               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 851               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 852               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 853               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 854               Pequeño      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 855                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 856                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 857                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 858                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 859                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 860                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 861                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 862                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 863                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 864                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 865                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 866                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 867                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 868                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 869                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 870                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 871                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 872                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 873                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 874                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 875                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 876                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 877                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 878                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 879                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 880                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 881                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 882                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 883                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 884                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 885                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 886                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 887                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 888                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 889                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 890                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 891                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 892                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 893                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 894                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 895                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 896                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 897                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 898                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 899                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 900                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 901                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 902                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 903                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 904                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 905                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 906                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 907                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 908                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 909                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 910                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 911                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 912                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 913                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 914                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 915                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 916                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 917                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 918                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 919                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 920                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 921                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 922                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 923                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 924                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 925                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 926                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 927                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 928                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 929                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 930                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 931                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 932                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 933                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 934                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 935                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 936                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 937                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 938                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 939                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 940                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 941                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 942                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 943                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 944                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 945                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 946                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 947                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 948                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 949                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 950                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 951                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 952                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 953                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 954                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 955                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 956                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 957                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 958                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 959                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 960                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 961                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 962                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 963                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 964                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 965                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 966                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 967                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 968                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 969                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 970                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 971                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 972                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 973                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 974                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 975                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 976                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 977                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 978                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 979                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 980                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 981                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 982                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 983                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 984                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 985                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 986                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 987                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 988                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 989                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 990                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 991                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 992                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 993                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 994                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 995                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 996                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 997                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 998                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 999                Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1000               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1001               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1002               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1003               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1004               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1005               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1006               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1007               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1008               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1009               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1010               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1011               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1012               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1013               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1014               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1015               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1016               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1017               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1018               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1019               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1020               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1021               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1022               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1023               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1024               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1025               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1026               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1027               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1028               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1029               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1030               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1031               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1032               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1033               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1034               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1035               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1036               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1037               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1038               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1039               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1040               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1041               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1042               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1043               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1044               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1045               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1046               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1047               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1048               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1049               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1050               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1051               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1052               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1053               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1054               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1055               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1056               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1057               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1058               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1059               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1060               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1061               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1062               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1063               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1064               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1065               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1066               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1067               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1068               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1069               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1070               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1071               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1072               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1073               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1074               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1075               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1076               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1077               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1078               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1079               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1080               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1081               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1082               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1083               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1084               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1085               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1086               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1087               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1088               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1089               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1090               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1091               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1092               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1093               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1094               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1095               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1096               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1097               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1098               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1099               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1100               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1101               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1102               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1103               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1104               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1105               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1106               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1107               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1108               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1109               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1110               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1111               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1112               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1113               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1114               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1115               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1116               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1117               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1118               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1119               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1120               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1121               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1122               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1123               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1124               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1125               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1126               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1127               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1128               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1129               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1130               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1131               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1132               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1133               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1134               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1135               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1136               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1137               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1138               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1139               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1140               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1141               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1142               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1143               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1144               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1145               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1146               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1147               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1148               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1149               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1150               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1151               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1152               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1153               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1154               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1155               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1156               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1157               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1158               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1159               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1160               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1161               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1162               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1163               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1164               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1165               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1166               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1167               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1168               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1169               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1170               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1171               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1172               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1173               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1174               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1175               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1176               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1177               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1178               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1179               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1180               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1181               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1182               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1183               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1184               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1185               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1186               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1187               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1188               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1189               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1190               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1191               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1192               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1193               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1194               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1195               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1196               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1197               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1198               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1199               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1200               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1201               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1202               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1203               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1204               Grande      Bebidas de Soya  AdeS Frutal    200 ml Tetra
## 1205         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1206         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1207         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1208         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1209         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1210         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1211         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1212         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1213         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1214         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1215         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1216         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1217         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1218         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1219         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1220         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1221         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1222         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1223         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1224         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1225         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1226         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1227         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1228         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1229         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1230         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1231         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1232         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1233         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1234         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1235         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1236         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1237         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1238         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1239         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1240         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1241         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1242         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1243         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1244         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1245         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1246         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1247         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1248         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1249                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1250                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1251                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1252                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1253                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1254                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1255                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1256                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1257                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1258                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1259         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1260         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1261         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1262         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1263         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1264         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1265         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1266         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1267         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1268         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1269         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1270         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1271         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1272         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1273         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1274         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1275         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1276         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1277         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1278         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1279         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1280         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1281         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1282         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1283         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1284         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1285         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1286         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1287         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1288         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1289         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1290         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1291         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1292         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1293         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1294         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1295         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1296         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1297         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1298         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1299         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1300         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1301         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1302         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1303         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1304         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1305         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1306         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1307         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1308         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1309         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1310         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1311         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1312         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1313         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1314         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1315         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1316         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1317         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1318         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1319         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1320         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1321         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1322         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1323         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1324         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1325         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1326         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1327         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1328         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1329         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1330         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1331         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1332         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1333         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1334         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1335         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1336         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1337         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1338         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1339         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1340         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1341         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1342         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1343         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1344         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1345         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1346         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1347         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1348         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1349         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1350         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1351         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1352         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1353         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1354         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1355         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1356         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1357         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1358         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1359         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1360         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1361         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1362         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1363         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1364         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1365         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1366         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1367         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1368         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1369         Extra Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1370                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1371                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1372                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1373                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1374                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1375                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1376                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1377                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1378                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1379                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1380                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1381                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1382                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1383                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1384                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1385                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1386                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1387                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1388                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1389                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1390                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1391                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1392                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1393                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1394                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1395                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1396                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1397                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1398                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1399                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1400                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1401                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1402                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1403                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1404                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1405                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1406                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1407                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1408                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1409                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1410                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1411                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1412                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1413                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1414                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1415                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1416                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1417                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1418                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1419                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1420                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1421                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1422                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1423                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1424                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1425                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1426                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1427                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1428                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1429                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1430                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1431                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1432                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1433                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1434                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1435                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1436                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1437                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1438                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1439                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1440                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1441                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1442                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1443                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1444                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1445                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1446                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1447                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1448                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1449                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1450                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1451                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1452                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1453                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1454                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1455                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1456                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1457                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1458                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1459                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1460                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1461                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1462                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1463                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1464                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1465                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1466                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1467                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1468                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1469                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1470                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1471                Micro      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1472              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1473              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1474              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1475              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1476              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1477              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1478              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1479              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1480              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1481              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1482              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1483              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1484              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1485              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1486              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1487              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1488              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1489              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1490              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1491              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1492              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1493              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1494              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1495              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1496              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1497              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1498              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1499              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1500              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1501              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1502              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1503              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1504              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1505              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1506              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1507              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1508              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1509              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1510              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1511              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1512              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1513              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1514              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1515              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1516              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1517              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1518              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1519              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1520              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1521              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1522              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1523              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1524              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1525              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1526              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1527              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1528              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1529              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1530              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1531              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1532              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1533              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1534              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1535              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1536              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1537              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1538              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1539              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1540              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1541              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1542              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1543              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1544              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1545              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1546              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1547              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1548              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1549              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1550              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1551              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1552              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1553              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1554              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1555              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1556              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1557              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1558              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1559              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1560              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1561              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1562              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1563              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1564              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1565              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1566              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1567              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1568              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1569              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1570              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1571              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1572              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1573              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1574              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1575              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1576              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1577              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1578              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1579              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1580              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1581              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1582              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1583              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1584              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1585              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1586              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1587              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1588              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1589              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1590              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1591              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1592              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1593              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1594              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1595              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1596              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1597              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1598              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1599              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1600              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1601              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1602              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1603              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1604              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1605              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1606              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1607              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1608              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1609              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1610              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1611              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1612              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1613              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1614              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1615              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1616              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1617              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1618              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1619              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1620              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1621              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1622              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1623              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1624              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1625              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1626              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1627              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1628              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1629              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1630              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1631              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1632              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1633              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1634              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1635              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1636              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1637              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1638              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1639              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1640              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1641              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1642              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1643              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1644              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1645              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1646              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1647              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1648              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1649              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1650              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1651              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1652              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1653              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1654              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1655              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1656              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1657              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1658              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1659              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1660              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1661              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1662              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1663              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1664              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1665              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1666              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1667              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1668              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1669              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1670              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1671              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1672              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1673              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1674              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1675              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1676              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1677              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1678              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1679              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1680              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1681              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1682              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1683              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1684              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1685              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1686              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1687              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1688              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1689              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1690              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1691              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1692              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1693              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1694              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1695              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1696              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1697              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1698              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1699              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1700              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1701              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1702              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1703              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1704              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1705              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1706              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1707              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1708              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1709              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1710              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1711              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1712              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1713              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1714              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1715              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1716              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1717              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1718              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1719              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1720              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1721              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1722              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1723              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1724              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1725              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1726              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1727              Pequeño      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1728               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1729               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1730               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1731               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1732               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1733               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1734               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1735               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1736               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1737               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1738               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1739               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1740               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1741               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1742               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1743               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1744               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1745               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1746               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1747               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1748               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1749               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1750               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1751               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1752               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1753               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1754               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1755               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1756               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1757               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1758               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1759               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1760               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1761               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1762               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1763               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1764               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1765               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1766               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1767               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1768               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1769               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1770               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1771               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1772               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1773               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1774               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1775               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1776               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1777               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1778               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1779               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1780               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1781               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1782               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1783               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1784               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1785               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1786               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1787               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1788               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1789               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1790               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1791               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1792               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1793               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1794               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1795               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1796               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1797               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1798               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1799               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1800               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1801               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1802               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1803               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1804               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1805               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1806               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1807               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1808               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1809               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1810               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1811               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1812               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1813               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1814               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1815               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1816               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1817               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1818               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1819               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1820               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1821               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1822               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1823               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1824               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1825               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1826               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1827               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1828               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1829               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1830               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1831               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1832               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1833               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1834               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1835               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1836               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1837               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1838               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1839               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1840               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1841               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1842               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1843               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1844               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1845               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1846               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1847               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1848               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1849               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1850               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1851               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1852               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1853               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1854               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1855               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1856               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1857               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1858               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1859               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1860               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1861               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1862               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1863               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1864               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1865               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1866               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1867               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1868               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1869               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1870               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1871               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1872               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1873               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1874               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1875               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1876               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1877               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1878               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1879               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1880               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1881               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1882               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1883               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1884               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1885               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1886               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1887               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1888               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1889               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1890               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1891               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1892               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1893               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1894               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1895               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1896               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1897               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1898               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1899               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1900               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1901               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1902               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1903               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1904               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1905               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1906               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1907               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1908               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1909               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1910               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1911               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1912               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1913               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1914               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1915               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1916               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1917               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1918               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1919               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1920               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1921               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1922               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1923               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1924               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1925               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1926               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1927               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1928               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1929               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1930               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1931               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1932               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1933               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1934               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1935               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1936               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1937               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1938               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1939               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1940               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1941               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1942               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1943               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1944               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1945               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1946               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1947               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1948               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1949               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1950               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1951               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1952               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1953               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1954               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1955               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1956               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1957               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1958               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1959               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1960               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1961               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1962               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1963               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1964               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1965               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1966               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1967               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1968               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1969               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1970               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1971               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1972               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1973               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1974               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1975               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1976               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1977               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1978               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1979               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1980               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1981               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1982               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1983               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1984               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1985               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1986               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1987               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1988               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1989               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1990               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1991               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1992               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1993               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1994               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1995               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1996               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1997               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1998               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 1999               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2000               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2001               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2002               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2003               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2004               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2005               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2006               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2007               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2008               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2009               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2010               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2011               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2012               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2013               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2014               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2015               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2016               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2017               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2018               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2019               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2020               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2021               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2022               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2023               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2024               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2025               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2026               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2027               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2028               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2029               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2030               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2031               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2032               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2033               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2034               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2035               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2036               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2037               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2038               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2039               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2040               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2041               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2042               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2043               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2044               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2045               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2046               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2047               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2048               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2049               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2050               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2051               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2052               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2053               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2054               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2055               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2056               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2057               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2058               Grande      Bebidas de Soya  AdeS Frutal 946 ml NR Tetra
## 2059         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2060         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2061         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2062         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2063         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2064         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2065         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2066         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2067         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2068         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2069         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2070         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2071         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2072         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2073         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2074         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2075         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2076         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2077         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2078         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2079         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2080         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2081         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2082         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2083         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2084         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2085         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2086         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2087         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2088         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2089         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2090         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2091         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2092         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2093         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2094         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2095         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2096         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2097         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2098         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2099         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2100         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2101         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2102         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2103                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2104                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2105                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2106                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2107                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2108                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2109                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2110                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2111                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2112                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2113                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2114                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2115                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2116                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2117                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2118                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2119                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2120                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2121                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2122                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2123                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2124                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2125                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2126                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2127                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2128         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2129         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2130         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2131         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2132         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2133         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2134         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2135         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2136         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2137         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2138         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2139         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2140         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2141         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2142         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2143         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2144         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2145         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2146         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2147         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2148         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2149         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2150         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2151         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2152         Extra Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2153                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2154                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2155                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2156                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2157                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2158                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2159                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2160                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2161                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2162                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2163                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2164                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2165                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2166                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2167                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2168                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2169                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2170                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2171                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2172                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2173                Micro      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2174              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2175              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2176              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2177              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2178              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2179              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2180              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2181              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2182              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2183              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2184              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2185              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2186              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2187              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2188              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2189              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2190              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2191              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2192              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2193              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2194              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2195              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2196              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2197              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2198              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2199              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2200              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2201              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2202              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2203              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2204              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2205              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2206              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2207              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2208              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2209              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2210              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2211              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2212              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2213              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2214              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2215              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2216              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2217              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2218              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2219              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2220              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2221              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2222              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2223              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2224              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2225              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2226              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2227              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2228              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2229              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2230              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2231              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2232              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2233              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2234              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2235              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2236              Pequeño      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2237               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2238               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2239               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2240               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2241               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2242               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2243               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2244               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2245               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2246               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2247               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2248               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2249               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2250               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2251               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2252               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2253               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2254               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2255               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2256               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2257               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2258               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2259               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2260               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2261               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2262               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2263               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2264               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2265               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2266               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2267               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2268               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2269               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2270               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2271               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2272               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2273               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2274               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2275               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2276               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2277               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2278               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2279               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2280               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2281               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2282               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2283               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2284               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2285               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2286               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2287               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2288               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2289               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2290               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2291               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2292               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2293               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2294               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2295               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2296               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2297               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2298               Grande      Bebidas de Soya  AdeS Lácteo    200 ml Tetra
## 2299         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2300         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2301         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2302         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2303         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2304         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2305         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2306         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2307         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2308         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2309         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2310         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2311         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2312         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2313         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2314         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2315         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2316         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2317         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2318         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2319         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2320         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2321         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2322         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2323         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2324         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2325         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2326         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2327         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2328         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2329         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2330         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2331         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2332         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2333         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2334         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2335         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2336         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2337         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2338         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2339         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2340         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2341         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2342         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2343         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2344         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2345         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2346                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2347                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2348                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2349                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2350                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2351                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2352                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2353                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2354                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2355         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2356         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2357         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2358         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2359         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2360         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2361         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2362         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2363         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2364         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2365         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2366         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2367         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2368         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2369         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2370         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2371         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2372         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2373         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2374         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2375         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2376         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2377         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2378         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2379         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2380         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2381         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2382         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2383         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2384         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2385         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2386         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2387         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2388         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2389         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2390         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2391         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2392         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2393         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2394         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2395         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2396         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2397         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2398         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2399         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2400         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2401         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2402         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2403         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2404         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2405         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2406         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2407         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2408         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2409         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2410         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2411         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2412         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2413         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2414         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2415         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2416         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2417         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2418         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2419         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2420         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2421         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2422         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2423         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2424         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2425         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2426         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2427         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2428         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2429         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2430         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2431         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2432         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2433         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2434         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2435         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2436         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2437         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2438         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2439         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2440         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2441         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2442         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2443         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2444         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2445         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2446         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2447         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2448         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2449         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2450         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2451         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2452         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2453         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2454         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2455         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2456         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2457         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2458         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2459         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2460         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2461         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2462         Extra Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2463                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2464                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2465                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2466                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2467                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2468                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2469                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2470                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2471                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2472                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2473                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2474                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2475                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2476                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2477                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2478                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2479                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2480                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2481                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2482                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2483                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2484                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2485                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2486                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2487                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2488                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2489                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2490                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2491                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2492                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2493                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2494                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2495                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2496                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2497                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2498                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2499                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2500                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2501                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2502                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2503                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2504                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2505                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2506                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2507                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2508                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2509                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2510                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2511                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2512                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2513                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2514                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2515                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2516                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2517                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2518                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2519                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2520                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2521                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2522                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2523                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2524                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2525                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2526                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2527                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2528                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2529                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2530                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2531                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2532                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2533                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2534                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2535                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2536                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2537                Micro      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2538              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2539              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2540              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2541              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2542              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2543              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2544              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2545              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2546              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2547              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2548              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2549              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2550              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2551              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2552              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2553              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2554              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2555              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2556              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2557              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2558              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2559              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2560              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2561              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2562              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2563              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2564              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2565              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2566              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2567              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2568              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2569              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2570              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2571              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2572              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2573              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2574              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2575              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2576              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2577              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2578              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2579              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2580              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2581              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2582              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2583              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2584              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2585              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2586              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2587              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2588              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2589              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2590              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2591              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2592              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2593              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2594              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2595              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2596              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2597              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2598              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2599              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2600              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2601              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2602              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2603              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2604              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2605              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2606              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2607              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2608              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2609              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2610              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2611              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2612              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2613              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2614              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2615              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2616              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2617              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2618              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2619              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2620              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2621              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2622              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2623              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2624              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2625              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2626              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2627              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2628              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2629              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2630              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2631              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2632              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2633              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2634              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2635              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2636              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2637              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2638              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2639              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2640              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2641              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2642              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2643              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2644              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2645              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2646              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2647              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2648              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2649              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2650              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2651              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2652              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2653              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2654              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2655              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2656              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2657              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2658              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2659              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2660              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2661              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2662              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2663              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2664              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2665              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2666              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2667              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2668              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2669              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2670              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2671              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2672              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2673              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2674              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2675              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2676              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2677              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2678              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2679              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2680              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2681              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2682              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2683              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2684              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2685              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2686              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2687              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2688              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2689              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2690              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2691              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2692              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2693              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2694              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2695              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2696              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2697              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2698              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2699              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2700              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2701              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2702              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2703              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2704              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2705              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2706              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2707              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2708              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2709              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2710              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2711              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2712              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2713              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2714              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2715              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2716              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2717              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2718              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2719              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2720              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2721              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2722              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2723              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2724              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2725              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2726              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2727              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2728              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2729              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2730              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2731              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2732              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2733              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2734              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2735              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2736              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2737              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2738              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2739              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2740              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2741              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2742              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2743              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2744              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2745              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2746              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2747              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2748              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2749              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2750              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2751              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2752              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2753              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2754              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2755              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2756              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2757              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2758              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2759              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2760              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2761              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2762              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2763              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2764              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2765              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2766              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2767              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2768              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2769              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2770              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2771              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2772              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2773              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2774              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2775              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2776              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2777              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2778              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2779              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2780              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2781              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2782              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2783              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2784              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2785              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2786              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2787              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2788              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2789              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2790              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2791              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2792              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2793              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2794              Pequeño      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2795               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2796               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2797               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2798               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2799               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2800               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2801               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2802               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2803               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2804               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2805               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2806               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2807               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2808               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2809               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2810               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2811               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2812               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2813               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2814               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2815               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2816               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2817               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2818               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2819               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2820               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2821               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2822               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2823               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2824               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2825               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2826               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2827               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2828               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2829               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2830               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2831               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2832               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2833               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2834               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2835               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2836               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2837               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2838               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2839               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2840               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2841               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2842               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2843               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2844               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2845               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2846               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2847               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2848               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2849               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2850               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2851               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2852               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2853               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2854               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2855               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2856               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2857               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2858               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2859               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2860               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2861               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2862               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2863               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2864               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2865               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2866               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2867               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2868               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2869               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2870               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2871               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2872               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2873               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2874               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2875               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2876               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2877               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2878               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2879               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2880               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2881               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2882               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2883               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2884               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2885               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2886               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2887               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2888               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2889               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2890               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2891               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2892               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2893               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2894               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2895               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2896               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2897               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2898               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2899               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2900               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2901               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2902               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2903               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2904               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2905               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2906               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2907               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2908               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2909               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2910               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2911               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2912               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2913               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2914               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2915               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2916               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2917               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2918               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2919               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2920               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2921               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2922               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2923               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2924               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2925               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2926               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2927               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2928               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2929               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2930               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2931               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2932               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2933               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2934               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2935               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2936               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2937               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2938               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2939               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2940               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2941               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2942               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2943               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2944               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2945               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2946               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2947               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2948               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2949               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2950               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2951               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2952               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2953               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2954               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2955               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2956               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2957               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2958               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2959               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2960               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2961               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2962               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2963               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2964               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2965               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2966               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2967               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2968               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2969               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2970               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2971               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2972               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2973               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2974               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2975               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2976               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2977               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2978               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2979               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2980               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2981               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2982               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2983               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2984               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2985               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2986               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2987               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2988               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2989               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2990               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2991               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2992               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2993               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2994               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2995               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2996               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2997               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2998               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 2999               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3000               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3001               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3002               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3003               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3004               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3005               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3006               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3007               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3008               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3009               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3010               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3011               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3012               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3013               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3014               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3015               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3016               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3017               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3018               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3019               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3020               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3021               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3022               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3023               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3024               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3025               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3026               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3027               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3028               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3029               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3030               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3031               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3032               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3033               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3034               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3035               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3036               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3037               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3038               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3039               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3040               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3041               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3042               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3043               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3044               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3045               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3046               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3047               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3048               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3049               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3050               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3051               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3052               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3053               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3054               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3055               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3056               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3057               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3058               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3059               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3060               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3061               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3062               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3063               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3064               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3065               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3066               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3067               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3068               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3069               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3070               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3071               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3072               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3073               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3074               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3075               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3076               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3077               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3078               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3079               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3080               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3081               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3082               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3083               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3084               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3085               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3086               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3087               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3088               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3089               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3090               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3091               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3092               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3093               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3094               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3095               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3096               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3097               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3098               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3099               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3100               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3101               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3102               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3103               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3104               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3105               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3106               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3107               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3108               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3109               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3110               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3111               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3112               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3113               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3114               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3115               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3116               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3117               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3118               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3119               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3120               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3121               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3122               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3123               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3124               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3125               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3126               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3127               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3128               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3129               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3130               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3131               Grande      Bebidas de Soya  AdeS Lácteo 946 ml NR Tetra
## 3132         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3133         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3134         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3135         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3136         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3137         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3138         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3139         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3140         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3141         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3142         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3143         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3144         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3145         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3146         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3147         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3148         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3149         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3150         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3151         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3152         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3153         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3154         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3155         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3156         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3157         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3158         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3159         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3160         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3161         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3162         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3163         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3164         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3165         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3166         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3167         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3168         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3169         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3170         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3171         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3172         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3173         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3174         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3175         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3176         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3177         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3178         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3179         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3180         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3181         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3182         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3183         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3184         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3185         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3186         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3187         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3188         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3189         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3190         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3191         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3192         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3193         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3194         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3195         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3196         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3197         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3198         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3199         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3200         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3201         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3202                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3203                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3204                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3205                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3206                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3207                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3208                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3209                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3210                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3211                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3212                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3213                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3214                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3215                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3216                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3217                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3218                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3219         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3220         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3221         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3222         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3223         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3224         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3225         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3226         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3227         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3228         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3229         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3230         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3231         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3232         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3233         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3234         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3235         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3236         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3237         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3238         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3239         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3240         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3241         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3242         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3243         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3244         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3245         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3246         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3247         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3248         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3249         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3250         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3251         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3252         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3253         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3254         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3255         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3256         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3257         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3258         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3259         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3260         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3261         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3262         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3263         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3264         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3265         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3266         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3267         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3268         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3269         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3270         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3271         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3272         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3273         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3274         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3275         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3276         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3277         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3278         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3279         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3280         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3281         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3282         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3283         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3284         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3285         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3286         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3287         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3288         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3289         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3290         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3291         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3292         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3293         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3294         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3295         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3296         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3297         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3298         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3299         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3300         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3301         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3302         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3303         Extra Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3304                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3305                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3306                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3307                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3308                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3309                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3310                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3311                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3312                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3313                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3314                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3315                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3316                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3317                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3318                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3319                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3320                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3321                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3322                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3323                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3324                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3325                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3326                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3327                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3328                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3329                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3330                Micro Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3331              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3332              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3333              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3334              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3335              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3336              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3337              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3338              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3339              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3340              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3341              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3342              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3343              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3344              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3345              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3346              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3347              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3348              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3349              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3350              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3351              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3352              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3353              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3354              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3355              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3356              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3357              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3358              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3359              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3360              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3361              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3362              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3363              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3364              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3365              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3366              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3367              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3368              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3369              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3370              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3371              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3372              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3373              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3374              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3375              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3376              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3377              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3378              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3379              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3380              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3381              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3382              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3383              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3384              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3385              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3386              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3387              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3388              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3389              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3390              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3391              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3392              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3393              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3394              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3395              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3396              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3397              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3398              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3399              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3400              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3401              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3402              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3403              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3404              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3405              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3406              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3407              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3408              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3409              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3410              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3411              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3412              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3413              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3414              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3415              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3416              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3417              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3418              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3419              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3420              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3421              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3422              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3423              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3424              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3425              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3426              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3427              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3428              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3429              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3430              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3431              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3432              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3433              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3434              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3435              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3436              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3437              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3438              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3439              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3440              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3441              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3442              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3443              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3444              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3445              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3446              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3447              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3448              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3449              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3450              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3451              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3452              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3453              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3454              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3455              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3456              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3457              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3458              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3459              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3460              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3461              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3462              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3463              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3464              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3465              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3466              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3467              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3468              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3469              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3470              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3471              Pequeño Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3472               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3473               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3474               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3475               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3476               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3477               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3478               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3479               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3480               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3481               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3482               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3483               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3484               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3485               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3486               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3487               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3488               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3489               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3490               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3491               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3492               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3493               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3494               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3495               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3496               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3497               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3498               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3499               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3500               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3501               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3502               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3503               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3504               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3505               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3506               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3507               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3508               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3509               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3510               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3511               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3512               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3513               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3514               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3515               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3516               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3517               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3518               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3519               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3520               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3521               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3522               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3523               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3524               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3525               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3526               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3527               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3528               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3529               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3530               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3531               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3532               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3533               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3534               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3535               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3536               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3537               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3538               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3539               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3540               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3541               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3542               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3543               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3544               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3545               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3546               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3547               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3548               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3549               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3550               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3551               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3552               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3553               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3554               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3555               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3556               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3557               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3558               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3559               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3560               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3561               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3562               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3563               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3564               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3565               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3566               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3567               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3568               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3569               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3570               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3571               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3572               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3573               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3574               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3575               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3576               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3577               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3578               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3579               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3580               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3581               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3582               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3583               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3584               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3585               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3586               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3587               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3588               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3589               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3590               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3591               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3592               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3593               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3594               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3595               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3596               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3597               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3598               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3599               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3600               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3601               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3602               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3603               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3604               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3605               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3606               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3607               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3608               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3609               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3610               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3611               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3612               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3613               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3614               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3615               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3616               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3617               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3618               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3619               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3620               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3621               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3622               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3623               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3624               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3625               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3626               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3627               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3628               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3629               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3630               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3631               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3632               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3633               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3634               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3635               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3636               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3637               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3638               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3639               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3640               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3641               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3642               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3643               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3644               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3645               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3646               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3647               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3648               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3649               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3650               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3651               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3652               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3653               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3654               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3655               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3656               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3657               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3658               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3659               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3660               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3661               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3662               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3663               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3664               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3665               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3666               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3667               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3668               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3669               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3670               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3671               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3672               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3673               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3674               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3675               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3676               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3677               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3678               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3679               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3680               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3681               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3682               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3683               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3684               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3685               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3686               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3687               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3688               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3689               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3690               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3691               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3692               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3693               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3694               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3695               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3696               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3697               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3698               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3699               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3700               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3701               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3702               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3703               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3704               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3705               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3706               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3707               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3708               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3709               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3710               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3711               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3712               Grande Cafe Listo Para Bebe Barista Bros  250 ml. NR PET
## 3713         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3714         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3715         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3716         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3717         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3718         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3719         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3720         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3721         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3722         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3723         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3724         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3725         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3726         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3727         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3728         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3729         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3730         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3731         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3732         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3733         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3734         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3735         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3736         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3737         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3738         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3739         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3740         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3741         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3742         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3743                Micro     Bebidas de Fruta       Bebere       473 ml NR
## 3744                Micro     Bebidas de Fruta       Bebere       473 ml NR
## 3745                Micro     Bebidas de Fruta       Bebere       473 ml NR
## 3746                Micro     Bebidas de Fruta       Bebere       473 ml NR
## 3747                Micro     Bebidas de Fruta       Bebere       473 ml NR
## 3748                Micro     Bebidas de Fruta       Bebere       473 ml NR
## 3749                Micro     Bebidas de Fruta       Bebere       473 ml NR
## 3750                Micro     Bebidas de Fruta       Bebere       473 ml NR
## 3751         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3752         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3753         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3754         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3755         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3756         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3757         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3758         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3759         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3760         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3761         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3762         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3763         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3764         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3765                Micro     Bebidas de Fruta       Bebere       473 ml NR
## 3766                Micro     Bebidas de Fruta       Bebere       473 ml NR
## 3767                Micro     Bebidas de Fruta       Bebere       473 ml NR
## 3768                Micro     Bebidas de Fruta       Bebere       473 ml NR
## 3769                Micro     Bebidas de Fruta       Bebere       473 ml NR
## 3770         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3771         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3772         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3773         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3774         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3775         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3776         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3777         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3778         Extra Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3779                Micro     Bebidas de Fruta       Bebere       473 ml NR
## 3780                Micro     Bebidas de Fruta       Bebere       473 ml NR
## 3781              Pequeño     Bebidas de Fruta       Bebere       473 ml NR
## 3782              Pequeño     Bebidas de Fruta       Bebere       473 ml NR
## 3783              Pequeño     Bebidas de Fruta       Bebere       473 ml NR
## 3784              Pequeño     Bebidas de Fruta       Bebere       473 ml NR
## 3785              Pequeño     Bebidas de Fruta       Bebere       473 ml NR
## 3786              Pequeño     Bebidas de Fruta       Bebere       473 ml NR
## 3787               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3788               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3789               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3790               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3791               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3792               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3793               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3794               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3795               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3796               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3797               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3798               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3799               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3800               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3801               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3802               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3803               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3804               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3805               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3806               Grande     Bebidas de Fruta       Bebere       473 ml NR
## 3807         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3808         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3809         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3810         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3811         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3812         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3813         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3814         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3815         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3816         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3817         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3818         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3819         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3820         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3821         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3822         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3823         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3824         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3825         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3826         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3827         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3828         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3829         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3830         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3831         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3832         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3833         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3834         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3835         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3836         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3837         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3838         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3839         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3840         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3841         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3842         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3843         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3844         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3845         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3846         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3847         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3848         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3849         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3850         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3851         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3852         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3853         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3854         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3855         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3856         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3857         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3858         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3859         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3860         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3861         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3862         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3863         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3864         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3865         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3866         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3867         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3868         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3869         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3870         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3871         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3872         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3873         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3874         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3875         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3876         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3877         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3878         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3879         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3880         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3881         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3882         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3883         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3884         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3885         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3886         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3887         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3888         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3889         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3890         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3891         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3892         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3893         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3894         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3895         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3896         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3897         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3898         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3899         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3900         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3901         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3902         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3903         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3904         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3905         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3906         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3907         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3908         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3909         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3910         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3911         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3912         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3913         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3914         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3915         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3916         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3917         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3918         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3919         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3920         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3921         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3922         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3923         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3924         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3925         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3926         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3927         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3928         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3929         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3930         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3931         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3932         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3933         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3934         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3935         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3936         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3937         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3938         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3939         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3940         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3941         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3942         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3943         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3944         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3945         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3946         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3947         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3948         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3949         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3950         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3951         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3952         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3953         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3954         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3955         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3956         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3957         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3958         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3959         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3960         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3961         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3962         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3963         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3964         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3965         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3966         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3967         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3968         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3969         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3970         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3971         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3972         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3973         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3974         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3975         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3976         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3977         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3978         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3979         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3980         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3981         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3982         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3983         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3984         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3985         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3986         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3987         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3988         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3989         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3990         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3991         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3992         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3993         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3994         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3995         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3996         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3997         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3998         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
## 3999         Extra Grande  Bebidas Energeticas         Burn     Lata 235 ml
##          Tamaño Retornable_NR Enero Febrero Marzo Abril Mayo Junio Julio Agosto
## 1        Tamaño Retornable_NR    NA      NA    NA    NA   NA    NA    NA     NA
## 2    Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3    Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 4    Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 5    Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 6    Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 7    Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 8    Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 9    Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 10   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 11   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 12   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 13   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 14   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 15   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 16   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 17   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 18   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 19   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 20   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 21   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 22   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 23   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 24   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 25   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 26   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 27   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 28   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 29   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 30   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 31   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 32   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 33   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 34   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 35   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 36   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 37   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 38   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 39   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 40   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 41   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 42   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 43   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 44   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 45   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 46   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 47   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 48   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 49   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 50   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 51   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 52   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 53   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 54   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 55   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 56   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 57   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 58   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 59   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 60   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 61   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 62   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 63   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 64   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 65   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 66   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 67   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 68   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 69   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 70   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 71   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 72   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 73   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 74   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 75   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 76   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 77   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 78   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 79   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 80   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 81   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 82   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 83   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 84   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 85   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 86   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 87   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 88   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 89   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 90   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 91   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 92   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 93   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 94   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 95   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 96   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 97   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 98   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 99   Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 100  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 101  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 102  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 103  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 104  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 105  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 106  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 107  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 108  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 109  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 110  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 111  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 112  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 113  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 114  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 115  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 116  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 117  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 118  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 119  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 120  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 121  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 122  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 123  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 124  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 125  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 126  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 127  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 128  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 129  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 130  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 131  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 132  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 133  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 134  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 135  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 136  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 137  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 138  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 139  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 140  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 141  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 142  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 143  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 144  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 145  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 146  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 147  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 148  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 149  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 150  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 151  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 152  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 153  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 154  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 155  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 156  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 157  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 158  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 159  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 160  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 161  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 162  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 163  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 164  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 165  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 166  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 167  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 168  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 169  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 170  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 171  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 172  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 173  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 174  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 175  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 176  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 177  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 178  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 179  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 180  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 181  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 182  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 183  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 184  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 185  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 186  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 187  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 188  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 189  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 190  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 191  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 192  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 193  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 194  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 195  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 196  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 197  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 198  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 199  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 200  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 201  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 202  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 203  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 204  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 205  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 206  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 207  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 208  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 209  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 210  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 211  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 212  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 213  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 214  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 215  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 216  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 217  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 218  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 219  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 220  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 221  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 222  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 223  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 224  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 225  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 226  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 227  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 228  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 229  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 230  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 231  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 232  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 233  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 234  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 235  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 236  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 237  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 238  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 239  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 240  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 241  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 242  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 243  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 244  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 245  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 246  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 247  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 248  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 249  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 250  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 251  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 252  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 253  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 254  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 255  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 256  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 257  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 258  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 259  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 260  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 261  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 262  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 263  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 264  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 265  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 266  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 267  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 268  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 269  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 270  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 271  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 272  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 273  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 274  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 275  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 276  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 277  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 278  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 279  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 280  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 281  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 282  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 283  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 284  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 285  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 286  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 287  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 288  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 289  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 290  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 291  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 292  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 293  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 294  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 295  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 296  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 297  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 298  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 299  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 300  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 301  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 302  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 303  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 304  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 305  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 306  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 307  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 308  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 309  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 310  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 311  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 312  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 313  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 314  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 315  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 316  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 317  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 318  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 319  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 320  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 321  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 322  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 323  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 324  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 325  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 326  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 327  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 328  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 329  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 330  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 331  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 332  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 333  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 334  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 335  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 336  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 337  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 338  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 339  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 340  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 341  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 342  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 343  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 344  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 345  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 346  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 347  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 348  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 349  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 350  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 351  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 352  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 353  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 354  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 355  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 356  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 357  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 358  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 359  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 360  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 361  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 362  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 363  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 364  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 365  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 366  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 367  Individual No Retornable     1       1    NA     1   NA     2    NA      0
## 368  Individual No Retornable     1      NA    NA    NA   NA     1     1     NA
## 369  Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 370  Individual No Retornable     0       1    NA    NA   NA    NA    NA     NA
## 371  Individual No Retornable     6       3     4     3    6     5     2      4
## 372  Individual No Retornable     4       1     2     4    4     5     6      1
## 373  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 374  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 375  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 376  Individual No Retornable    NA       1     1     1   NA    NA    NA      0
## 377  Individual No Retornable     1       4    NA    11   NA    NA     0      3
## 378  Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 379  Individual No Retornable    NA       3     1    NA    1     4    NA      3
## 380  Individual No Retornable    NA      NA     0     1   NA     2     1      0
## 381  Individual No Retornable    NA       0     0     0   NA     0     1     NA
## 382  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 383  Individual No Retornable    NA       1     1    NA    3     3     0      2
## 384  Individual No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 385  Individual No Retornable    NA      NA     1     1    1    NA    NA      1
## 386  Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 387  Individual No Retornable     1      NA    NA    14    3     3     3      7
## 388  Individual No Retornable     7       1    NA     3    6    NA     2      3
## 389  Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 390  Individual No Retornable    NA       0    NA    NA    1     1    NA     NA
## 391  Individual No Retornable     1       0     1     1    1     2     1      2
## 392  Individual No Retornable     2       1     1     1    3     1    NA      1
## 393  Individual No Retornable     0       0     0     0    1     0    NA     NA
## 394  Individual No Retornable     4       4     4     3    4     4     1      3
## 395  Individual No Retornable     2       3     1     2   NA     1     1      4
## 396  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 397  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      2
## 398  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 399  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 400  Individual No Retornable     1       1    NA    NA   NA    NA    NA     NA
## 401  Individual No Retornable     1       2     2     3    1     1    NA     NA
## 402  Individual No Retornable    NA      NA     1     1   NA    NA     0     NA
## 403  Individual No Retornable    NA       0     0     0    0     0     0      2
## 404  Individual No Retornable     0       0     0    NA    1    NA    NA      0
## 405  Individual No Retornable     0       1     0    NA    1     2     1      1
## 406  Individual No Retornable     3       1     2     2    1    NA     1      1
## 407  Individual No Retornable    NA      NA    NA    NA   NA    NA    21     28
## 408  Individual No Retornable     1       0     4     4    0    NA     0     NA
## 409  Individual No Retornable    NA       1     1     1    1    NA    NA      0
## 410  Individual No Retornable     1       1    NA     1   NA    NA    NA     NA
## 411  Individual No Retornable     1       1     1     0   NA    NA    NA     NA
## 412  Individual No Retornable     1      NA    NA    NA   NA    NA    NA      0
## 413  Individual No Retornable     3       2     3     1    4     4    NA      1
## 414  Individual No Retornable     0      NA    NA    NA   NA    NA     0     NA
## 415  Individual No Retornable     2       1     1     1   NA    NA    NA      2
## 416  Individual No Retornable    NA       1    NA    NA   NA    NA    NA      0
## 417  Individual No Retornable    NA       0     1    NA   NA    NA    NA      1
## 418  Individual No Retornable     0      NA    NA     1    2     3     1      2
## 419  Individual No Retornable     1       0     1     1    0     1     1      1
## 420  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 421  Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 422  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 423  Individual No Retornable    NA      NA    NA    NA    1     0     0     NA
## 424  Individual No Retornable    NA      NA     0    NA    0    NA    NA     NA
## 425  Individual No Retornable     1       0     1     0    1     1     1      1
## 426  Individual No Retornable    NA       0    NA    NA   NA    NA     3     NA
## 427  Individual No Retornable    NA       1     1    NA    1    NA    NA      1
## 428  Individual No Retornable    NA      NA    NA    NA   NA     1    NA      1
## 429  Individual No Retornable    NA       0     0     1   NA    NA     1      1
## 430  Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 431  Individual No Retornable     1       0     0    NA   NA    NA     0      1
## 432  Individual No Retornable    NA      NA    NA    NA    4    NA    NA      1
## 433  Individual No Retornable    NA      NA    NA     0   NA     1    NA     NA
## 434  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 435  Individual No Retornable     1       3     2     2    3     2    NA      3
## 436  Individual No Retornable    NA      NA     1    NA   NA     0     0     NA
## 437  Individual No Retornable    NA      NA     0    NA    1     0    NA     NA
## 438  Individual No Retornable     1      NA    NA    NA   NA     0    NA      1
## 439  Individual No Retornable     0      NA     0    NA   NA     0     0      1
## 440  Individual No Retornable    NA      NA    NA    NA    1     1    NA     NA
## 441  Individual No Retornable     0       0     0     0    2     0     0     NA
## 442  Individual No Retornable     0       0     0     0    1    NA     2     NA
## 443  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      6
## 444  Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 445  Individual No Retornable    NA      NA     1     1    0     1     0      1
## 446  Individual No Retornable     0       1     0     1    1     1     1      3
## 447  Individual No Retornable     1      NA     1     1    0     3    NA      0
## 448  Individual No Retornable     1      NA    NA     1   NA    NA     0     NA
## 449  Individual No Retornable    NA       0    NA     1   NA    NA     0     NA
## 450  Individual No Retornable    NA      NA    NA     0   NA     1    NA     NA
## 451  Individual No Retornable    NA       0     1     1   NA     1    NA      1
## 452  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 453  Individual No Retornable     1      NA    NA     0    0    NA     0     NA
## 454  Individual No Retornable    NA       1     1     1   NA     4    NA      1
## 455  Individual No Retornable     0       1    NA    NA   NA     0    NA     NA
## 456  Individual No Retornable     0       3     1     3   NA     4     1      2
## 457  Individual No Retornable    NA       0     0    NA   NA    NA     0      0
## 458  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      2
## 459  Individual No Retornable    NA       0    NA     0   NA     0     0      0
## 460  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 461  Individual No Retornable     3       4     2     1    4     2    NA      2
## 462  Individual No Retornable    NA       2    NA    NA    0     0    NA     NA
## 463  Individual No Retornable     0       0    NA     0    0     0     0     NA
## 464  Individual No Retornable    NA       1     1     0    0    NA     0      1
## 465  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 466  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 467  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      3
## 468  Individual No Retornable    NA      NA    NA    NA   NA    NA     1      1
## 469  Individual No Retornable     4       1     3     1    1     3     3      5
## 470  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 471  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 472  Individual No Retornable     0       2    NA     1    3    NA     0     NA
## 473  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 474  Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 475  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 476  Individual No Retornable     0      NA    NA    NA    0    NA    NA     NA
## 477  Individual No Retornable    NA       0     1     1    0    NA    NA     NA
## 478  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 479  Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 480  Individual No Retornable    NA      NA    NA    NA    0    NA    NA      0
## 481  Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 482  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 483  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 484  Individual No Retornable    NA      NA    NA     0    0    NA    NA     NA
## 485  Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 486  Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 487  Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 488  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 489  Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 490  Individual No Retornable    NA       0    NA    NA    1    NA    NA     NA
## 491  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 492  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 493  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 494  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 495  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 496  Individual No Retornable    NA       0     1     0   NA    NA    NA      0
## 497  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 498  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 499  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 500  Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 501  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 502  Individual No Retornable    NA      NA     0     0   NA     1    NA     NA
## 503  Individual No Retornable     0      NA     0     1   NA     0    NA     NA
## 504  Individual No Retornable    NA      NA     0     1   NA    NA     0     NA
## 505  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 506  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 507  Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 508  Individual No Retornable    NA      NA    NA    NA   NA    NA     1      0
## 509  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 510  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 511  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 512  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 513  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 514  Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 515  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 516  Individual No Retornable     0       1     1     2    1    NA    NA      0
## 517  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 518  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 519  Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 520  Individual No Retornable     0      NA     0    NA   NA    NA    NA     NA
## 521  Individual No Retornable     0       0    NA    NA   NA     0     0      0
## 522  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 523  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 524  Individual No Retornable    NA       0    NA     0   NA     0     0      0
## 525  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 526  Individual No Retornable    NA      NA    NA     0    0    NA    NA     NA
## 527  Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 528  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 529  Individual No Retornable     1       0    NA    NA    0     0    NA     NA
## 530  Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 531  Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 532  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 533  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 534  Individual No Retornable    NA       0    NA     0   NA    NA    NA      0
## 535  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 536  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 537  Individual No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 538  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 539  Individual No Retornable    NA      NA     1    NA    0    NA    NA      1
## 540  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 541  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 542  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 543  Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 544  Individual No Retornable    NA       0    NA    NA    0     0    NA     NA
## 545  Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 546  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 547  Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 548  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 549  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 550  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 551  Individual No Retornable     1       0     1    NA    0     0     0     NA
## 552  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 553  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 554  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 555  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 556  Individual No Retornable    NA      NA    NA     1    3    NA    NA     NA
## 557  Individual No Retornable    NA      NA    NA    NA    0    NA     1      1
## 558  Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 559  Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 560  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 561  Individual No Retornable     1       1     0    NA   NA    NA    NA     NA
## 562  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 563  Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 564  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      1
## 565  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 566  Individual No Retornable    NA      NA    NA     0   NA    NA     0     NA
## 567  Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 568  Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 569  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 570  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 571  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 572  Individual No Retornable     0       1    NA    NA   NA    NA     0      0
## 573  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 574  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 575  Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 576  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 577  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 578  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 579  Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 580  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 581  Individual No Retornable     1       0     0     1   NA    NA    NA      1
## 582  Individual No Retornable    NA      NA    NA    NA    0     0     0      0
## 583  Individual No Retornable    NA      NA    NA     4   NA    NA    NA     NA
## 584  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 585  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      1
## 586  Individual No Retornable    NA      NA     0    NA   NA     1    NA     NA
## 587  Individual No Retornable    NA      NA    NA    NA    0    NA    NA      0
## 588  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 589  Individual No Retornable    NA       1     0     0   NA    NA    NA     NA
## 590  Individual No Retornable     1       1     0     2    1     1     1     NA
## 591  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 592  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 593  Individual No Retornable     1       0    NA    NA    0     0    NA     NA
## 594  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 595  Individual No Retornable    NA      NA    NA    NA    0    NA     0      0
## 596  Individual No Retornable     0       0     1    NA    1     1     0      1
## 597  Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 598  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 599  Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 600  Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 601  Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 602  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 603  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 604  Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 605  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 606  Individual No Retornable    NA      NA     0    NA   NA    NA    NA      0
## 607  Individual No Retornable    NA      NA    NA    NA   NA     0     1      0
## 608  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 609  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 610  Individual No Retornable     0       1     1     1    0     3     1      1
## 611  Individual No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 612  Individual No Retornable    NA       0    NA    NA   NA    NA    NA      0
## 613  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 614  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 615  Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 616  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 617  Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 618  Individual No Retornable     0       1    NA     1    0    NA     1      2
## 619  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 620  Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 621  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 622  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 623  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 624  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 625  Individual No Retornable     1      NA    NA    NA   NA    NA     0     NA
## 626  Individual No Retornable     0       1     1     1    0     1     1      1
## 627  Individual No Retornable     0       0     2     1    2     2     1      3
## 628  Individual No Retornable    NA       0    NA    NA   NA    NA    NA      0
## 629  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 630  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 631  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 632  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 633  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 634  Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 635  Individual No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 636  Individual No Retornable     0       0    NA    NA    0    NA    NA     NA
## 637  Individual No Retornable     1       1    NA    NA   NA    NA    NA     NA
## 638  Individual No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 639  Individual No Retornable     0       0     1    NA    1     0     0     NA
## 640  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 641  Individual No Retornable    NA       0     0     0    0    NA    NA     NA
## 642  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 643  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 644  Individual No Retornable    NA      NA     0     0   NA     1    NA      1
## 645  Individual No Retornable     0       1    NA    NA   NA    NA    NA     NA
## 646  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 647  Individual No Retornable    NA      NA     1     1   NA    NA     0     NA
## 648  Individual No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 649  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 650  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      1
## 651  Individual No Retornable    NA       0    NA    NA   NA    NA    NA      0
## 652  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 653  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 654  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 655  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 656  Individual No Retornable     0       1    NA     2   NA    NA     1      1
## 657  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 658  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 659  Individual No Retornable     0       1    NA    NA   NA    NA    NA     NA
## 660  Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 661  Individual No Retornable     1      NA    NA    NA    1    NA    NA     NA
## 662  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 663  Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 664  Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 665  Individual No Retornable    NA       0    NA    NA   NA     0    NA     NA
## 666  Individual No Retornable     0      NA    NA    NA   NA    NA     0     NA
## 667  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 668  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 669  Individual No Retornable    NA      NA    NA    NA    0     1    NA     NA
## 670  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 671  Individual No Retornable     0      NA    NA    NA   NA    NA    NA      1
## 672  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 673  Individual No Retornable     0       1     0     0   NA    NA    NA     NA
## 674  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 675  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 676  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 677  Individual No Retornable     1       1     1     2    1     1     0      1
## 678  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 679  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 680  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      1
## 681  Individual No Retornable    NA       0    NA    NA   NA     0     0     NA
## 682  Individual No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 683  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 684  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 685  Individual No Retornable    NA       0    NA     0    1     1     0     NA
## 686  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 687  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 688  Individual No Retornable     0       1    NA    NA   NA    NA     0      2
## 689  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 690  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 691  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 692  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 693  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 694  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 695  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 696  Individual No Retornable     0      NA    NA    NA    0     0    NA      0
## 697  Individual No Retornable     0       0     0     0   NA     0     0      0
## 698  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 699  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 700  Individual No Retornable    NA       5     1    NA   NA    NA    NA     NA
## 701  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 702  Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 703  Individual No Retornable     0      NA     1    NA   NA    NA    NA     NA
## 704  Individual No Retornable    NA       0     0     0    1    NA     0      1
## 705  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 706  Individual No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 707  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 708  Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 709  Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 710  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 711  Individual No Retornable    NA      NA     0    NA   NA    NA     0      0
## 712  Individual No Retornable    NA      NA    NA    NA    0     1     0      0
## 713  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 714  Individual No Retornable    NA      NA     0    NA   NA    NA     0      0
## 715  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 716  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 717  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 718  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 719  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 720  Individual No Retornable     0       0     0     0   NA     1    NA      0
## 721  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 722  Individual No Retornable    NA      NA     1     0   NA    NA     1      0
## 723  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 724  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 725  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 726  Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 727  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 728  Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 729  Individual No Retornable    NA       1     1     0    1     1     0      0
## 730  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 731  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 732  Individual No Retornable     1       0     1     1    1     2     1      1
## 733  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 734  Individual No Retornable     0       1    NA    NA    0    NA     0      0
## 735  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 736  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 737  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 738  Individual No Retornable    NA      NA    NA    NA   NA     1     0      0
## 739  Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 740  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 741  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 742  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 743  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 744  Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 745  Individual No Retornable    NA      NA     1     0   NA    NA     0     NA
## 746  Individual No Retornable    NA       0     0    NA   NA    NA    NA     NA
## 747  Individual No Retornable    NA       0     0     0    0    NA    NA     NA
## 748  Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 749  Individual No Retornable    NA       1    NA    NA   NA    NA    NA      1
## 750  Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 751  Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 752  Individual No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 753  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 754  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 755  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 756  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 757  Individual No Retornable     1       1     0     0    0     1    NA      1
## 758  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 759  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 760  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 761  Individual No Retornable    NA       0    NA    NA    0    NA    NA     NA
## 762  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 763  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 764  Individual No Retornable     1      NA    NA     0    1    NA    NA      0
## 765  Individual No Retornable    NA      NA    NA     0   NA     0    NA     NA
## 766  Individual No Retornable    NA       1     1     1   NA     0     0     NA
## 767  Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 768  Individual No Retornable    NA      NA    NA     1    0    NA     0     NA
## 769  Individual No Retornable     0      NA     1    NA    0     0    NA     NA
## 770  Individual No Retornable     0       1    NA    NA   NA     0     0     NA
## 771  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 772  Individual No Retornable     0      NA    NA     0   NA    NA    NA     NA
## 773  Individual No Retornable    NA      NA     0     0   NA    NA    NA     NA
## 774  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 775  Individual No Retornable     1      NA     0     0   NA    NA    NA     NA
## 776  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 777  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 778  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 779  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 780  Individual No Retornable    NA       1     0     0    0     0     0      0
## 781  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 782  Individual No Retornable     1      NA    NA     1   NA    NA    NA     NA
## 783  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 784  Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 785  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 786  Individual No Retornable    NA      NA     1    NA   NA    NA     0      0
## 787  Individual No Retornable     0      NA    NA     0    0     0     0     NA
## 788  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 789  Individual No Retornable    NA       0    NA    NA   NA    NA    NA      2
## 790  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 791  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 792  Individual No Retornable     0      NA     0    NA   NA    NA     0      1
## 793  Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 794  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 795  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 796  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 797  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 798  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 799  Individual No Retornable    NA      NA     0     0    0     0    NA     NA
## 800  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 801  Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 802  Individual No Retornable    NA      NA    NA    NA    0    NA     0     NA
## 803  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 804  Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 805  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 806  Individual No Retornable    NA      NA    NA    NA   NA    NA     1      2
## 807  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 808  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 809  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 810  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 811  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 812  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 813  Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 814  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 815  Individual No Retornable    NA      NA    NA     1   NA    NA     0     NA
## 816  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 817  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 818  Individual No Retornable    NA       0    NA    NA    1     0     0     NA
## 819  Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 820  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 821  Individual No Retornable    NA       1     0     1    1    NA     0      1
## 822  Individual No Retornable    NA       0    NA     0   NA    NA     0     NA
## 823  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 824  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 825  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 826  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 827  Individual No Retornable    NA      NA    NA     0    0     0    NA      1
## 828  Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 829  Individual No Retornable     1       1     2     2    1     1     0     NA
## 830  Individual No Retornable     0       2    NA    NA   NA     0     0      2
## 831  Individual No Retornable    NA      NA     0     0   NA    NA    NA     NA
## 832  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 833  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 834  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 835  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 836  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 837  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 838  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 839  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 840  Individual No Retornable     1      NA    NA     0   NA    NA     0     NA
## 841  Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 842  Individual No Retornable     0       0     0     1    1     1     1      0
## 843  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 844  Individual No Retornable     0      NA     0    NA   NA    NA     1      1
## 845  Individual No Retornable     1       1     1     1    1     1     1      0
## 846  Individual No Retornable     0       0     1    NA    0     1     0      0
## 847  Individual No Retornable    NA      NA     0     0   NA     0    NA     NA
## 848  Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 849  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 850  Individual No Retornable     0      NA    NA    NA   NA    NA    NA      0
## 851  Individual No Retornable    NA       0    NA    NA   NA    NA     2     NA
## 852  Individual No Retornable    NA      NA     1    NA   NA    NA     0     NA
## 853  Individual No Retornable    NA       0     1     2    3    NA     1      2
## 854  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 855  Individual No Retornable     1       1     1     3    1     1    NA      2
## 856  Individual No Retornable     1       1     2     1    1     2     1      2
## 857  Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 858  Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 859  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 860  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 861  Individual No Retornable    NA      NA     0    NA   NA    NA    NA      0
## 862  Individual No Retornable     1       2     1     4    1     2     1      2
## 863  Individual No Retornable     3       3     3     2    4     3     1      3
## 864  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 865  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 866  Individual No Retornable    NA      NA    NA    NA   NA     2    NA      1
## 867  Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 868  Individual No Retornable    NA      NA    NA    NA    0     1    NA     NA
## 869  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      2
## 870  Individual No Retornable     0       1    NA    NA    0     0    NA      0
## 871  Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 872  Individual No Retornable    NA      NA    NA    NA    0    NA    NA      0
## 873  Individual No Retornable    NA      NA    NA    NA    0    NA     0      0
## 874  Individual No Retornable    NA      NA    NA    NA    0    NA    NA      0
## 875  Individual No Retornable     1      NA     0    NA   NA    NA    NA     NA
## 876  Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 877  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 878  Individual No Retornable    NA       0    NA     1   NA    NA    NA      0
## 879  Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 880  Individual No Retornable    NA       1    NA    NA   NA     1    NA     NA
## 881  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 882  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 883  Individual No Retornable     1       1    NA    NA   NA     1    NA      1
## 884  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 885  Individual No Retornable    NA       0    NA    NA   NA     0     0     NA
## 886  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 887  Individual No Retornable     1       2     2     2    2     2     1      1
## 888  Individual No Retornable     4       6     6     4    6     4     2      3
## 889  Individual No Retornable    NA       1    NA    NA   NA     1    NA      1
## 890  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 891  Individual No Retornable     0      NA    NA    NA    0    NA     1      1
## 892  Individual No Retornable     0      NA    NA     1   NA    NA    NA     NA
## 893  Individual No Retornable     0      NA    NA     0    1     0     1      1
## 894  Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 895  Individual No Retornable     1      NA     1    NA   NA    NA    NA      4
## 896  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      3
## 897  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 898  Individual No Retornable    NA       1    NA    NA   NA     1    NA      1
## 899  Individual No Retornable    NA      NA    NA    NA    0    NA    NA      3
## 900  Individual No Retornable    NA       0    NA    NA   NA    NA    NA      0
## 901  Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 902  Individual No Retornable     0      NA    NA    NA   NA    NA    NA      1
## 903  Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 904  Individual No Retornable     0      NA    NA    NA    1     0     0      0
## 905  Individual No Retornable     1       0     0     0    1     0     0      1
## 906  Individual No Retornable    NA       0     1     0   NA     1     1      2
## 907  Individual No Retornable    NA       0    NA    NA    0    NA     0      1
## 908  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 909  Individual No Retornable     0       1     1     1    1     2     1      0
## 910  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 911  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 912  Individual No Retornable    NA       2    NA     0   NA     0    NA     NA
## 913  Individual No Retornable     0      NA    NA    NA   NA     0     0     NA
## 914  Individual No Retornable     2      NA    NA    NA   NA    NA    NA     NA
## 915  Individual No Retornable    NA       0     0    NA   NA    NA    NA     NA
## 916  Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 917  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 918  Individual No Retornable     1       0    NA     0    2     1     0      2
## 919  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 920  Individual No Retornable     0       2     1    NA    3     2     4      2
## 921  Individual No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 922  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 923  Individual No Retornable    NA       4    NA     4    0     2     1      3
## 924  Individual No Retornable     0      NA    NA    NA    0    NA     0     NA
## 925  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 926  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 927  Individual No Retornable    NA       0     0     0    0     0    NA      0
## 928  Individual No Retornable     1       1     2     2    2     1     1      2
## 929  Individual No Retornable     0       1    NA     1    0     1     1     NA
## 930  Individual No Retornable     0       0     0    NA    0    NA    NA      0
## 931  Individual No Retornable     1       0     1     1    1     1     1      0
## 932  Individual No Retornable     1      NA     0     0   NA    NA    NA     NA
## 933  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 934  Individual No Retornable    NA       0     0    NA    1     0     0      2
## 935  Individual No Retornable     0      NA    NA    NA   NA    NA     1      1
## 936  Individual No Retornable     1       0     1     1    0     1     0      1
## 937  Individual No Retornable     1      NA    NA     0   NA    NA    NA     NA
## 938  Individual No Retornable     1       0     1    NA    1     1     1      1
## 939  Individual No Retornable     1       0    NA    NA   NA    NA    NA     NA
## 940  Individual No Retornable    NA      NA     1    NA   NA    NA     0      0
## 941  Individual No Retornable     0      NA    NA    NA    1    NA    NA      0
## 942  Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 943  Individual No Retornable    NA      NA    NA    NA   NA    NA     1      2
## 944  Individual No Retornable    NA       0     0    NA    0    NA    NA     NA
## 945  Individual No Retornable     0       1    NA     1   NA    NA    NA      0
## 946  Individual No Retornable     0       0    NA    NA   NA     0     0      2
## 947  Individual No Retornable    NA       2    NA     1   NA     2     0      2
## 948  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 949  Individual No Retornable     1       2     1     1   NA     1     3      2
## 950  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 951  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 952  Individual No Retornable    NA       3     1     1   NA    NA     0     NA
## 953  Individual No Retornable    NA       0     0    NA   NA    NA     1      0
## 954  Individual No Retornable    NA       0    NA     0   NA     1     1      0
## 955  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 956  Individual No Retornable     0       0    NA    NA   NA    NA    NA      0
## 957  Individual No Retornable    NA       5    NA     8    8    NA     0      4
## 958  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 959  Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 960  Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 961  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 962  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 963  Individual No Retornable     1       0     1    NA    1     1     1      1
## 964  Individual No Retornable     0       1     1     1    0     0    NA     NA
## 965  Individual No Retornable    NA       1    NA    NA   NA    NA     0     NA
## 966  Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 967  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 968  Individual No Retornable    NA       0     0    NA   NA     0     0     NA
## 969  Individual No Retornable     0       5     0     3    0     1     3      4
## 970  Individual No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 971  Individual No Retornable    NA      NA    NA    NA    0    NA    NA      0
## 972  Individual No Retornable     0       0     1     2    1     2     1      2
## 973  Individual No Retornable     0       2     1     7   NA    NA     1      5
## 974  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 975  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 976  Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 977  Individual No Retornable    NA      NA     0    NA   NA    NA     0      0
## 978  Individual No Retornable     1       2     2     1    2     2     1      3
## 979  Individual No Retornable    NA      NA    NA    NA    0    NA     0     NA
## 980  Individual No Retornable     1       1     0     1    1     1     1      0
## 981  Individual No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 982  Individual No Retornable    NA      NA    NA    NA    0     0     1      1
## 983  Individual No Retornable    NA      NA     0    NA   NA    NA     0      0
## 984  Individual No Retornable    NA      NA    NA     0   NA     0    NA      0
## 985  Individual No Retornable     0       0    NA     0   NA    NA    NA     NA
## 986  Individual No Retornable     1       1     1     0    1     1     1      0
## 987  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 988  Individual No Retornable     0      NA    NA     1   NA    NA    NA     NA
## 989  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 990  Individual No Retornable     0       1    NA     0    1     1     0      2
## 991  Individual No Retornable     1       0     0     0   NA     1     0     NA
## 992  Individual No Retornable     0       1    NA     1   NA     1     0      1
## 993  Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 994  Individual No Retornable     3       3     2     3    1     0    NA     NA
## 995  Individual No Retornable     0      NA    NA    NA   NA    NA     0      0
## 996  Individual No Retornable     1      NA    NA     0   NA    NA     1      0
## 997  Individual No Retornable     0       0    NA     0    0     0     0      1
## 998  Individual No Retornable     0      NA    NA    NA   NA     1    NA     NA
## 999  Individual No Retornable    NA      NA    NA    NA   NA    NA     0      1
## 1000 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1001 Individual No Retornable    NA       2     0    NA    1    NA     1     NA
## 1002 Individual No Retornable     1      NA    NA    NA   NA    NA    NA      1
## 1003 Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 1004 Individual No Retornable    NA      NA    NA    NA    0    NA     0      0
## 1005 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1006 Individual No Retornable     0      NA    NA    NA    1     1    NA     NA
## 1007 Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 1008 Individual No Retornable    NA      NA    NA    NA   NA     1     1     NA
## 1009 Individual No Retornable    NA       1    NA     0   NA     1     0     NA
## 1010 Individual No Retornable     2       1     0    NA   NA    NA    NA      1
## 1011 Individual No Retornable    NA       2     1     1    0     2     2      2
## 1012 Individual No Retornable    NA       0     0    NA   NA    NA     1      1
## 1013 Individual No Retornable     0       1    NA    NA    0     0     1      0
## 1014 Individual No Retornable    NA       0    NA     0   NA     1    NA     NA
## 1015 Individual No Retornable     0       1    NA    NA   NA    NA    NA     NA
## 1016 Individual No Retornable     1       1     1     1    1     3    NA      2
## 1017 Individual No Retornable     1      NA    NA    NA   NA    NA    NA      0
## 1018 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 1019 Individual No Retornable    NA       1     0    NA   NA    NA    NA     NA
## 1020 Individual No Retornable    NA      NA    NA    NA   NA    NA     1      0
## 1021 Individual No Retornable     1       1     1     1    1    NA     1      1
## 1022 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1023 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1024 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1025 Individual No Retornable     0       1    NA     0   NA    NA    NA     NA
## 1026 Individual No Retornable     1      NA    NA     1   NA     1     0      0
## 1027 Individual No Retornable     1       3     3    NA   NA    NA    NA     NA
## 1028 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 1029 Individual No Retornable    NA       0    NA    NA   NA     0     0     NA
## 1030 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1031 Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1032 Individual No Retornable     0       0     0     0    1    NA    NA      0
## 1033 Individual No Retornable    NA       1    NA    NA   NA    NA     0     NA
## 1034 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1035 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1036 Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1037 Individual No Retornable    NA      NA    NA     0   NA    NA     1      0
## 1038 Individual No Retornable    NA       0     0    NA    1    NA     1     NA
## 1039 Individual No Retornable    NA       0     0    NA   NA     0    NA      0
## 1040 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1041 Individual No Retornable     0      NA    NA    NA   NA     1    NA     NA
## 1042 Individual No Retornable    NA       0     0    NA   NA     0    NA     NA
## 1043 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1044 Individual No Retornable     0      NA    NA     0   NA     0    NA     NA
## 1045 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1046 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1047 Individual No Retornable    NA       1     1    NA    1     2    NA      4
## 1048 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1049 Individual No Retornable     1      NA     0    NA   NA     0    NA     NA
## 1050 Individual No Retornable    NA       0     0     0   NA    NA    NA     NA
## 1051 Individual No Retornable    NA      NA    NA    NA    0    NA     0     NA
## 1052 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1053 Individual No Retornable     0       0     0     0    0     0     0      0
## 1054 Individual No Retornable    NA       0    NA    NA   NA     0     0     NA
## 1055 Individual No Retornable     0       0     0     0    0    NA    NA     NA
## 1056 Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 1057 Individual No Retornable    NA       1    NA    NA   NA    NA     0     NA
## 1058 Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 1059 Individual No Retornable     0       1     0     0    1     0     0     NA
## 1060 Individual No Retornable    NA      NA     0     0   NA     1    NA     NA
## 1061 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1062 Individual No Retornable     2       1    NA     1    1     1     1      3
## 1063 Individual No Retornable    NA       0     0    NA   NA    NA    NA     NA
## 1064 Individual No Retornable    NA       0    NA     0    0    NA    NA      0
## 1065 Individual No Retornable     1       2     0     0    2     1     2     NA
## 1066 Individual No Retornable     0       0     0    NA    0     0     0     NA
## 1067 Individual No Retornable     1       1     1     0    1     1    NA      1
## 1068 Individual No Retornable    NA       0    NA     0   NA    NA    NA      0
## 1069 Individual No Retornable     1       1     0     1    1     1     0      0
## 1070 Individual No Retornable    NA      NA     0    NA    0    NA     0     NA
## 1071 Individual No Retornable    NA       0     0    NA   NA     0    NA      0
## 1072 Individual No Retornable     1      NA    NA    NA    0     1    NA      0
## 1073 Individual No Retornable    NA       0     0    NA   NA     0    NA     NA
## 1074 Individual No Retornable     2      NA     1     0   NA     1     1      1
## 1075 Individual No Retornable    NA       1     0    NA   NA    NA     0     NA
## 1076 Individual No Retornable     0      NA    NA    NA   NA    NA     0      0
## 1077 Individual No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 1078 Individual No Retornable     0       1    NA     2   NA     1     0      0
## 1079 Individual No Retornable     1       0     1     2    1    NA     1      1
## 1080 Individual No Retornable    NA      NA    NA     0    0    NA     1     NA
## 1081 Individual No Retornable     0       0    NA    NA   NA     0    NA      0
## 1082 Individual No Retornable     2      NA     1    NA    2     1     1      1
## 1083 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1084 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1085 Individual No Retornable     0      NA     0    NA    0    NA    NA     NA
## 1086 Individual No Retornable    NA      NA     0    NA   NA     0     0      0
## 1087 Individual No Retornable     1       1    NA     0   NA     0    NA     NA
## 1088 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1089 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1090 Individual No Retornable    NA       1     0     1    1     1     0      0
## 1091 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 1092 Individual No Retornable    NA       2    NA    NA   NA     0    NA     NA
## 1093 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1094 Individual No Retornable    NA      NA     0     0    1    NA    NA     NA
## 1095 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 1096 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1097 Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1098 Individual No Retornable     1      NA     0     0   NA    NA    NA     NA
## 1099 Individual No Retornable     2       1     1     1    0     1     1      1
## 1100 Individual No Retornable    NA       2    NA    NA   NA     1    NA      0
## 1101 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 1102 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1103 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1104 Individual No Retornable    NA      NA    NA     1   NA    NA     0      1
## 1105 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1106 Individual No Retornable     0      NA    NA    NA    1    NA     0     NA
## 1107 Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 1108 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1109 Individual No Retornable    NA      NA     1    NA   NA     1     1     NA
## 1110 Individual No Retornable     0      NA     0    NA   NA    NA    NA     NA
## 1111 Individual No Retornable     0      NA    NA    NA   NA     0     0     NA
## 1112 Individual No Retornable     0      NA     0    NA   NA     0    NA      0
## 1113 Individual No Retornable    NA      NA    NA    NA   NA    NA     1      0
## 1114 Individual No Retornable     0      NA    NA     1   NA    NA     0      0
## 1115 Individual No Retornable     2      NA     1     1    3     1     2      3
## 1116 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1117 Individual No Retornable     0      NA    NA    NA   NA    NA     0      0
## 1118 Individual No Retornable     1       3    NA    NA   NA    NA    NA     NA
## 1119 Individual No Retornable     1      NA    NA    NA    1    NA    NA     NA
## 1120 Individual No Retornable     1       1    NA    NA    0     1     0      1
## 1121 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1122 Individual No Retornable     0       1    NA    NA   NA    NA     0      0
## 1123 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1124 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1125 Individual No Retornable    NA      NA     1     0    0    NA     0     NA
## 1126 Individual No Retornable    NA      NA     1    NA   NA    NA     0     NA
## 1127 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1128 Individual No Retornable    NA       0    NA     0    0     0     0     NA
## 1129 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 1130 Individual No Retornable     0       0     0     0    0     0     0     NA
## 1131 Individual No Retornable     1       1    NA     1    0     1     0      0
## 1132 Individual No Retornable     1       1     1     0   NA     1     0      1
## 1133 Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 1134 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1135 Individual No Retornable    NA      NA     0    NA   NA     1    NA      1
## 1136 Individual No Retornable     0       1     0    NA    1     0     0      1
## 1137 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1138 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1139 Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 1140 Individual No Retornable     0      NA    NA    NA    1    NA    NA     NA
## 1141 Individual No Retornable     1       0    NA     1    0    NA    NA     NA
## 1142 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1143 Individual No Retornable    NA      NA     2     2    2     2     2      4
## 1144 Individual No Retornable    NA      NA    NA     0    0     0    NA      1
## 1145 Individual No Retornable     3      NA    NA    NA   NA    NA     1     NA
## 1146 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1147 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1148 Individual No Retornable     0       2    NA    NA   NA    NA     0      0
## 1149 Individual No Retornable     1      NA    NA    NA   NA    NA     0      1
## 1150 Individual No Retornable     0      NA    NA     1   NA     0    NA     NA
## 1151 Individual No Retornable    NA       2     1     1   NA     1     0      1
## 1152 Individual No Retornable     0       0    NA    NA   NA    NA     0      1
## 1153 Individual No Retornable     0      NA     1    NA    1     1     1      0
## 1154 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1155 Individual No Retornable    NA       0    NA    NA   NA    NA    NA      0
## 1156 Individual No Retornable    NA       0    NA    NA   NA    NA     0      0
## 1157 Individual No Retornable     1      NA     1     1   NA    NA    NA     NA
## 1158 Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 1159 Individual No Retornable     1      NA    NA    NA   NA    NA     0     NA
## 1160 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1161 Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 1162 Individual No Retornable     0       0    NA    NA   NA     1    NA      1
## 1163 Individual No Retornable     4      NA    NA    NA    4    NA    NA     NA
## 1164 Individual No Retornable     2       2     1     0    1     0     1     NA
## 1165 Individual No Retornable    NA      NA     3    NA   NA    NA    NA     NA
## 1166 Individual No Retornable     0      NA    NA    NA   NA    NA     0      0
## 1167 Individual No Retornable     0       0     0     0   NA    NA    NA      1
## 1168 Individual No Retornable     2       1     1     1    1     1    NA      1
## 1169 Individual No Retornable    NA       2    NA     3   NA     4     1     NA
## 1170 Individual No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 1171 Individual No Retornable    NA       1     1     1    1     1    NA     NA
## 1172 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1173 Individual No Retornable     4      NA    NA    NA    4     1     7      6
## 1174 Individual No Retornable     0      NA    NA    NA    1     0     1      1
## 1175 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1176 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1177 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1178 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1179 Individual No Retornable     3       1     3     3    0     3     2      2
## 1180 Individual No Retornable     2      NA     1    NA   NA    NA    NA     NA
## 1181 Individual No Retornable     1       1     2     2    1     0     1      2
## 1182 Individual No Retornable     1       1     1     1    3     1     1      4
## 1183 Individual No Retornable     1       2     3     4   NA     2     1      1
## 1184 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1185 Individual No Retornable     0      NA    NA    NA   NA    NA    NA      0
## 1186 Individual No Retornable     3      NA    NA    NA   NA    NA    NA     NA
## 1187 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1188 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1189 Individual No Retornable     1       3     1    NA    1    NA    NA      1
## 1190 Individual No Retornable    NA      NA     4    NA   NA    NA    NA     NA
## 1191 Individual No Retornable     0      NA    NA    NA   NA     1     0     NA
## 1192 Individual No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 1193 Individual No Retornable    NA       1     0     0    1     0     1      1
## 1194 Individual No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 1195 Individual No Retornable    NA      NA    NA    NA    0     1    NA     NA
## 1196 Individual No Retornable    NA       1    NA    NA   NA    NA     0     NA
## 1197 Individual No Retornable     3       1     1     3    3     1     1      3
## 1198 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1199 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1200 Individual No Retornable    NA      NA    NA    NA   NA     1     0      1
## 1201 Individual No Retornable    NA      NA    NA    NA   NA     1    NA      0
## 1202 Individual No Retornable     5       1     3     3   NA     4     0      1
## 1203 Individual No Retornable    NA       1     0     0    0    NA    NA     NA
## 1204 Individual No Retornable    NA      NA     0    NA    1     0     1      1
## 1205   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1206   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1207   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1208   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1209   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1210   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1211   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1212   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1213   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1214   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1215   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1216   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1217   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1218   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1219   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1220   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1221   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1222   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1223   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1224   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1225   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1226   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1227   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1228   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1229   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1230   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1231   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1232   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1233   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1234   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1235   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1236   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1237   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1238   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1239   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1240   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1241   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1242   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1243   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1244   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1245   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1246   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1247   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1248   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1249   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1250   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1251   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1252   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1253   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1254   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1255   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1256   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1257   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1258   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 1259   Familiar No Retornable    NA       1    NA    NA   NA     1    NA     NA
## 1260   Familiar No Retornable    NA       2    NA    NA   NA     2    NA      0
## 1261   Familiar No Retornable     3      NA    NA    NA    2     1    NA     NA
## 1262   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1263   Familiar No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 1264   Familiar No Retornable     5       4     5     3    5     6     6      6
## 1265   Familiar No Retornable     6       7     2     5    5     4    12      2
## 1266   Familiar No Retornable    NA       4    NA     2    2     6    NA      1
## 1267   Familiar No Retornable     1       1     0     2    1     2     1      0
## 1268   Familiar No Retornable    NA       1    NA    NA   NA     2    NA     NA
## 1269   Familiar No Retornable    NA      NA    NA    NA    2    NA    NA     NA
## 1270   Familiar No Retornable     0       1    NA    NA   NA     0    NA      0
## 1271   Familiar No Retornable    NA       1     1    NA    2    NA     1      3
## 1272   Familiar No Retornable    NA      NA    NA    NA    2    NA    NA     NA
## 1273   Familiar No Retornable     6      NA    NA     2   NA     2    NA     NA
## 1274   Familiar No Retornable     7      NA    NA    NA    4     6    NA     NA
## 1275   Familiar No Retornable     1       2     2     1    2     2     2      1
## 1276   Familiar No Retornable     2       1     1    NA    5    NA    NA      1
## 1277   Familiar No Retornable     0       1     0    NA   NA    NA    NA     NA
## 1278   Familiar No Retornable    NA       3    NA    NA   NA    NA    NA     NA
## 1279   Familiar No Retornable     4       1     6     4    3     2    NA      9
## 1280   Familiar No Retornable     1       4     2     6   NA     3     4     NA
## 1281   Familiar No Retornable     0       1     1    39    6     4     8      8
## 1282   Familiar No Retornable     5       4    NA     5   NA     1     1      4
## 1283   Familiar No Retornable     3       2    NA    20   NA    NA    NA      2
## 1284   Familiar No Retornable    12      22    NA    18   NA    NA     4      8
## 1285   Familiar No Retornable    NA       0     1     1   NA    NA    NA      1
## 1286   Familiar No Retornable    11      NA    NA    NA   NA    NA    NA     NA
## 1287   Familiar No Retornable     5       2     1     2    8     1     5     13
## 1288   Familiar No Retornable     3       1     1    NA    2     1     3      0
## 1289   Familiar No Retornable     1       0     2     1    1     0     1      3
## 1290   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1291   Familiar No Retornable     1       0     0    NA   NA    NA    NA     NA
## 1292   Familiar No Retornable    NA      11    NA    NA    2    NA    NA      2
## 1293   Familiar No Retornable     2      NA     2     2    0     1     2      6
## 1294   Familiar No Retornable    NA      NA    NA    NA    1    NA     2     NA
## 1295   Familiar No Retornable    NA      NA    NA    15    2    NA     2     NA
## 1296   Familiar No Retornable    NA       1    NA    NA    1    NA    NA     NA
## 1297   Familiar No Retornable    NA       2    NA    NA   NA    NA     1      4
## 1298   Familiar No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 1299   Familiar No Retornable    NA       3     1    NA    2    NA    16      3
## 1300   Familiar No Retornable    NA      NA    NA    NA    0     4    NA      0
## 1301   Familiar No Retornable    NA       3    NA    NA   NA    NA     4     NA
## 1302   Familiar No Retornable     3      NA    NA    NA    2     4     2      8
## 1303   Familiar No Retornable     2       1     2     2    7    20     7      4
## 1304   Familiar No Retornable    NA       4     0    NA   NA    NA    NA     NA
## 1305   Familiar No Retornable    NA      NA    NA    NA   NA    NA     8     NA
## 1306   Familiar No Retornable     0       1     4     0    5    NA     0      2
## 1307   Familiar No Retornable     2       4     4     2   NA    NA    NA      2
## 1308   Familiar No Retornable     2       1     1     2   NA     1     3      5
## 1309   Familiar No Retornable    NA       2     2    NA   NA     1     1      0
## 1310   Familiar No Retornable     5       5    NA    NA    4    NA    NA     NA
## 1311   Familiar No Retornable     1       2     1     0   NA    NA    NA      3
## 1312   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1313   Familiar No Retornable    NA       0    NA    NA   NA     1     4     NA
## 1314   Familiar No Retornable    NA       2     0    NA   NA    NA    NA     NA
## 1315   Familiar No Retornable     2       1     1     1    2    NA     0      2
## 1316   Familiar No Retornable     2       3    NA    NA   NA     5     3      3
## 1317   Familiar No Retornable     2      NA    NA     1   NA    NA     0      1
## 1318   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1319   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      1
## 1320   Familiar No Retornable    NA      NA     1    NA   NA     1    NA      4
## 1321   Familiar No Retornable    NA      NA    NA    NA    0     0     0     NA
## 1322   Familiar No Retornable    NA       2     5     1    0    NA     2      4
## 1323   Familiar No Retornable     6       4     1    NA   NA     2     2      1
## 1324   Familiar No Retornable     1       1     1     1   NA     0    NA      1
## 1325   Familiar No Retornable     1       1    NA    NA   NA    NA    NA     NA
## 1326   Familiar No Retornable    NA      NA     1    NA    0    NA    NA     NA
## 1327   Familiar No Retornable     1       1     1     5    2    NA    NA     NA
## 1328   Familiar No Retornable    NA      NA    NA    NA    2     1    NA     NA
## 1329   Familiar No Retornable     2      NA     1     1    3     1     1      3
## 1330   Familiar No Retornable    NA       1    NA    10   40    NA    60     80
## 1331   Familiar No Retornable    NA       0     1     2    0    NA     0      3
## 1332   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      2
## 1333   Familiar No Retornable     4       1    NA     1   NA    20    NA     NA
## 1334   Familiar No Retornable     3       4    NA     3    4     3     4      3
## 1335   Familiar No Retornable    NA       0    NA    NA   NA     2    NA     NA
## 1336   Familiar No Retornable    NA      NA     1     1    3     3     4      1
## 1337   Familiar No Retornable     0       3    NA    NA   NA     1     1     NA
## 1338   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1339   Familiar No Retornable    NA       1    NA    NA    5    NA    NA     NA
## 1340   Familiar No Retornable     1       2    NA     3    2     7     1      5
## 1341   Familiar No Retornable    NA      NA    NA    NA   NA     2    NA      1
## 1342   Familiar No Retornable     3      NA     1     1    1     1     1      1
## 1343   Familiar No Retornable    NA      NA    NA    NA   NA     0     2      8
## 1344   Familiar No Retornable     1      NA     1     0    1    NA    NA     NA
## 1345   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1346   Familiar No Retornable     7       5     2     5    0     2    NA      2
## 1347   Familiar No Retornable     1       2     3     1    3    NA    NA      0
## 1348   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1349   Familiar No Retornable    NA      NA    NA    NA   NA    20    28     NA
## 1350   Familiar No Retornable     2       1    NA    NA   NA    NA    NA     10
## 1351   Familiar No Retornable     2       1     4     2    1     2     0      1
## 1352   Familiar No Retornable     1      NA     0    NA    0    14    NA     NA
## 1353   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1354   Familiar No Retornable     0       1    NA     1   NA    NA    NA     NA
## 1355   Familiar No Retornable     0       1    50     1   NA     1    NA     NA
## 1356   Familiar No Retornable     0       0    NA    NA    0     0    NA     NA
## 1357   Familiar No Retornable    NA      10    NA    NA   NA    NA    NA     NA
## 1358   Familiar No Retornable    NA      NA     1    NA    1     0     2      1
## 1359   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1360   Familiar No Retornable     7      NA    50    NA   NA    NA    NA     NA
## 1361   Familiar No Retornable    NA      NA    NA    NA    1     1    NA      1
## 1362   Familiar No Retornable    NA       2     1    NA   NA     0    NA      1
## 1363   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      6
## 1364   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1365   Familiar No Retornable     2      NA    NA    NA   NA    NA    NA      2
## 1366   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1367   Familiar No Retornable     3       4    NA     5   NA     8    NA      2
## 1368   Familiar No Retornable     1      NA     0    NA    1    NA     0      1
## 1369   Familiar No Retornable     1       3     1    NA    7    NA     5      6
## 1370   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1371   Familiar No Retornable    NA       6    NA    NA   NA    NA    NA      2
## 1372   Familiar No Retornable    NA       6    NA    NA   NA    NA    NA     NA
## 1373   Familiar No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 1374   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1375   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      5
## 1376   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 1377   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1378   Familiar No Retornable     0      NA    NA    NA   NA     0    NA     NA
## 1379   Familiar No Retornable    NA      NA    NA    NA   NA     3    NA     NA
## 1380   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1381   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1382   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1383   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1384   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1385   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 1386   Familiar No Retornable     2      NA     1     2   NA    NA    NA     NA
## 1387   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1388   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1389   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 1390   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1391   Familiar No Retornable     0       1     0     2   NA    NA     0     NA
## 1392   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1393   Familiar No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 1394   Familiar No Retornable    NA       1     1     2   NA    NA     0     NA
## 1395   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1396   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1397   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1398   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1399   Familiar No Retornable    NA      NA    NA     1    1    NA    NA     NA
## 1400   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1401   Familiar No Retornable     2      NA    NA    NA   NA    NA    NA     NA
## 1402   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1403   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 1404   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1405   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1406   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1407   Familiar No Retornable     2       1     2     1    0    NA    NA     NA
## 1408   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA      0
## 1409   Familiar No Retornable    NA       0    NA    NA   NA    NA     1     NA
## 1410   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1411   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1412   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1413   Familiar No Retornable     0       0    NA    NA   NA    NA    NA      0
## 1414   Familiar No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 1415   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1416   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 1417   Familiar No Retornable     0      NA    NA    NA    0    NA    NA     NA
## 1418   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1419   Familiar No Retornable    NA      NA     1     3    0     2     2      2
## 1420   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 1421   Familiar No Retornable    NA      NA    NA    NA    0    NA    12     NA
## 1422   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1423   Familiar No Retornable    NA       1    NA    NA   NA     0    NA     NA
## 1424   Familiar No Retornable    NA      NA    NA    NA    0     0     2     NA
## 1425   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1426   Familiar No Retornable    NA      NA    NA    NA    2     2    NA      2
## 1427   Familiar No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 1428   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1429   Familiar No Retornable     1      NA     0    NA    1    NA    NA     NA
## 1430   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1431   Familiar No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 1432   Familiar No Retornable     2      NA    NA    NA   NA     0    NA     NA
## 1433   Familiar No Retornable     0      NA     7    NA   NA     1    NA     NA
## 1434   Familiar No Retornable    NA      NA    NA    NA   10    NA    NA     NA
## 1435   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1436   Familiar No Retornable    NA       3    NA    NA   NA    NA    NA     NA
## 1437   Familiar No Retornable     1       2     1     1    1    NA    NA     NA
## 1438   Familiar No Retornable    NA       1    NA    NA    0    NA    NA     NA
## 1439   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1440   Familiar No Retornable    NA       0     3    NA   NA    NA    NA     NA
## 1441   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1442   Familiar No Retornable    NA       0     0     0    0     0    NA      0
## 1443   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 1444   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1445   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1446   Familiar No Retornable    NA      NA    NA     2   NA    NA    NA     NA
## 1447   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1448   Familiar No Retornable    NA       1     2     0   NA     1    NA      1
## 1449   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 1450   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1451   Familiar No Retornable     1       1     1     1    3     2     2      1
## 1452   Familiar No Retornable    NA      NA    NA    NA    0    NA     1     NA
## 1453   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1454   Familiar No Retornable    NA      NA    NA    NA   10    NA    NA     NA
## 1455   Familiar No Retornable    NA      NA    NA    NA    0    NA     0     NA
## 1456   Familiar No Retornable    NA       2     0    NA   NA    NA    NA     NA
## 1457   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1458   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1459   Familiar No Retornable    NA       1    NA     0    1     1    NA      0
## 1460   Familiar No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 1461   Familiar No Retornable     1       3     0     2    1     3     2     NA
## 1462   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1463   Familiar No Retornable    NA      NA     2    NA   NA     1    NA     NA
## 1464   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1465   Familiar No Retornable    NA      NA    NA    NA    0    NA     0      0
## 1466   Familiar No Retornable    NA       0    NA     3   NA    NA    NA     NA
## 1467   Familiar No Retornable    NA      NA    NA    NA    0    NA     1      1
## 1468   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 1469   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1470   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1471   Familiar No Retornable    NA      NA     1     2    0     0     1     NA
## 1472   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1473   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1474   Familiar No Retornable     3       1     4     4    3     2     1      0
## 1475   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 1476   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      6
## 1477   Familiar No Retornable    NA       6    NA    NA   10    NA    NA     NA
## 1478   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1479   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 1480   Familiar No Retornable    NA      NA     4    NA   NA    NA    NA     NA
## 1481   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 1482   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      2
## 1483   Familiar No Retornable     0      NA    NA    NA   NA     1    NA     NA
## 1484   Familiar No Retornable    NA      NA    NA    NA    1    NA    NA      1
## 1485   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1486   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1487   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1488   Familiar No Retornable     1      NA     1     1    1    NA     2      1
## 1489   Familiar No Retornable    NA       4    NA    NA   NA    NA    NA     NA
## 1490   Familiar No Retornable    NA      NA     1     1   NA    NA    NA      0
## 1491   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 1492   Familiar No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 1493   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1494   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1495   Familiar No Retornable    NA      NA    NA     0    1     1     1      1
## 1496   Familiar No Retornable    NA       3    NA    NA    0    NA    NA     NA
## 1497   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1498   Familiar No Retornable     7      NA    NA    NA    0     2    NA      0
## 1499   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1500   Familiar No Retornable     0       0    NA     0   NA    NA    NA      1
## 1501   Familiar No Retornable     0       0     1     0    0     1    NA      1
## 1502   Familiar No Retornable    NA       1    NA     0    1     1    NA     NA
## 1503   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1504   Familiar No Retornable    NA       0    NA    NA   NA    NA     1     NA
## 1505   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1506   Familiar No Retornable    NA      NA    NA    NA   NA    NA     2     NA
## 1507   Familiar No Retornable    NA      NA    NA    NA    0    NA     1     NA
## 1508   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 1509   Familiar No Retornable    NA       6    NA    NA    1     2     3     NA
## 1510   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 1511   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1512   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1513   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1514   Familiar No Retornable    NA       0    NA    NA   NA     1    NA      1
## 1515   Familiar No Retornable    NA      NA    NA    NA    2    NA    NA     NA
## 1516   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1517   Familiar No Retornable     1      NA     1    NA    0     1     0     NA
## 1518   Familiar No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 1519   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1520   Familiar No Retornable     2       5     2     4   NA    NA    NA     NA
## 1521   Familiar No Retornable    NA      NA    NA    NA    0     1    NA     NA
## 1522   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1523   Familiar No Retornable    NA       3    NA    NA   NA    NA    NA     NA
## 1524   Familiar No Retornable    NA       0     0    NA   NA    NA    NA     NA
## 1525   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1526   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1527   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1528   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 1529   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0      1
## 1530   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1531   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1532   Familiar No Retornable    NA       0    NA    NA    0    NA    NA     NA
## 1533   Familiar No Retornable     0       4    NA    NA   NA    NA    NA     NA
## 1534   Familiar No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 1535   Familiar No Retornable    NA      NA    NA    NA   NA     1     0     NA
## 1536   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1537   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1538   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1539   Familiar No Retornable    NA      NA    NA     2   NA    NA    NA     NA
## 1540   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1541   Familiar No Retornable    NA      NA    NA    NA   10    NA    NA     NA
## 1542   Familiar No Retornable    NA       0    NA    NA   NA     1     1     NA
## 1543   Familiar No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 1544   Familiar No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 1545   Familiar No Retornable     0       1    NA    NA   NA    NA    NA     NA
## 1546   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1547   Familiar No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 1548   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1549   Familiar No Retornable    NA       0     1    NA   NA    NA    NA     NA
## 1550   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1551   Familiar No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 1552   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 1553   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1554   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1555   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1556   Familiar No Retornable     0       0     1     0   NA     3     2      1
## 1557   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1558   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1559   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1560   Familiar No Retornable    NA      NA    NA    NA    0     1     0      2
## 1561   Familiar No Retornable     3      NA     0     0   NA     1     3      1
## 1562   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1563   Familiar No Retornable     0      NA    NA    NA   NA     0     1     NA
## 1564   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1565   Familiar No Retornable    NA       1    NA     1   NA    NA    NA     NA
## 1566   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 1567   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1568   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1569   Familiar No Retornable    NA       2     1     2    2     0    NA     NA
## 1570   Familiar No Retornable    NA      NA     4    NA    0    NA    NA     NA
## 1571   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1572   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1573   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1574   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1575   Familiar No Retornable     1      NA    NA    NA   NA     0    NA     NA
## 1576   Familiar No Retornable    NA      NA    NA    NA   NA    NA     6     NA
## 1577   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1578   Familiar No Retornable    NA       1     4    NA   NA    NA    NA     NA
## 1579   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1580   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1581   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1582   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1583   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1584   Familiar No Retornable    NA       8    NA    NA   10     2    NA     NA
## 1585   Familiar No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 1586   Familiar No Retornable    NA       0     2    NA   NA    NA    NA     NA
## 1587   Familiar No Retornable    NA       0    NA    NA    5    NA    NA      1
## 1588   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1589   Familiar No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 1590   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1591   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1592   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1593   Familiar No Retornable    NA      NA     1    NA   NA    NA     0      1
## 1594   Familiar No Retornable    NA      NA     2     0   NA    NA    NA      1
## 1595   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      2
## 1596   Familiar No Retornable    NA      NA    NA    NA    2    NA    NA      0
## 1597   Familiar No Retornable    NA       1     0    NA    0     0     0      0
## 1598   Familiar No Retornable     1      NA     0     0   NA     0    NA     NA
## 1599   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1600   Familiar No Retornable    NA      NA    NA     2   NA    NA    NA     NA
## 1601   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1602   Familiar No Retornable    NA      NA    NA    NA    1    NA     0      0
## 1603   Familiar No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 1604   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1605   Familiar No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 1606   Familiar No Retornable    NA       0     2    NA    2     1     3      2
## 1607   Familiar No Retornable    NA       1     2     1    0     0     1     NA
## 1608   Familiar No Retornable     4       0     1     1   NA     1     1      1
## 1609   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1610   Familiar No Retornable    NA       1    NA    NA   NA     1    NA      0
## 1611   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1612   Familiar No Retornable    NA      NA    NA    NA   NA     0     0      1
## 1613   Familiar No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 1614   Familiar No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 1615   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1616   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 1617   Familiar No Retornable    NA      NA    NA     0   NA     1    NA      2
## 1618   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1619   Familiar No Retornable     0      NA    NA    NA    0    NA    NA     NA
## 1620   Familiar No Retornable     0      NA    NA    NA    0    NA    NA     NA
## 1621   Familiar No Retornable    NA      NA    NA    NA    1     1     1     NA
## 1622   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1623   Familiar No Retornable    NA       1    NA    NA    1    NA    NA     NA
## 1624   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1625   Familiar No Retornable    NA      NA    NA    NA    0    NA     0     NA
## 1626   Familiar No Retornable     1      NA     2    NA    1    NA     1     NA
## 1627   Familiar No Retornable    NA      NA    NA     4   NA    NA    NA     NA
## 1628   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 1629   Familiar No Retornable     4       6     1     0    2     2     0      2
## 1630   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1631   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 1632   Familiar No Retornable    NA       2     0     1   NA     0    NA     NA
## 1633   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1634   Familiar No Retornable    NA      NA    NA     1   NA    NA     0      1
## 1635   Familiar No Retornable    NA      NA    NA     1    0     2    NA     NA
## 1636   Familiar No Retornable    NA      NA    NA     0   NA     0    NA     NA
## 1637   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA      1
## 1638   Familiar No Retornable    NA      NA    NA    NA   10    NA    NA     NA
## 1639   Familiar No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 1640   Familiar No Retornable    NA       1     1    NA   NA    NA    NA     NA
## 1641   Familiar No Retornable    NA      NA    NA     4   NA    NA    NA     NA
## 1642   Familiar No Retornable    NA      NA    NA    NA    2    NA    NA     NA
## 1643   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1644   Familiar No Retornable     0      NA    NA    NA    0    NA    NA     NA
## 1645   Familiar No Retornable    NA      NA    NA    NA    2     1    NA     NA
## 1646   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1647   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1648   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1649   Familiar No Retornable    NA      NA     1    NA    0    NA     0      1
## 1650   Familiar No Retornable    NA       1    NA    NA   NA     0    NA     NA
## 1651   Familiar No Retornable     1       1    NA     2    0     2    NA     NA
## 1652   Familiar No Retornable    NA      NA    NA     1   NA     0     0     NA
## 1653   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 1654   Familiar No Retornable     2       0    NA     0   NA     0     1      1
## 1655   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1656   Familiar No Retornable    NA      NA    NA    NA   NA     3    NA     NA
## 1657   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA      0
## 1658   Familiar No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 1659   Familiar No Retornable     1       1    NA    NA   NA    NA     0     NA
## 1660   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1661   Familiar No Retornable    NA      NA    NA    NA    0     1     1      2
## 1662   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA      0
## 1663   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1664   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1665   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1666   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1667   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1668   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 1669   Familiar No Retornable    NA       0    NA    NA   NA     0    NA     NA
## 1670   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 1671   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1672   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1673   Familiar No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 1674   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 1675   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA      1
## 1676   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1677   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1678   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1679   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1680   Familiar No Retornable    NA      NA    NA    NA   NA     2    NA      1
## 1681   Familiar No Retornable     1       3    NA    NA   NA    NA    NA     NA
## 1682   Familiar No Retornable    NA       0    NA     0   NA    NA    NA      1
## 1683   Familiar No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 1684   Familiar No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 1685   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1686   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      6
## 1687   Familiar No Retornable    NA      NA    NA    NA   NA     0     1      1
## 1688   Familiar No Retornable    NA      NA    NA     2   NA    NA    NA     NA
## 1689   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1690   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1691   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1692   Familiar No Retornable    NA      NA     2    NA   NA     0    NA     NA
## 1693   Familiar No Retornable     1      NA    NA    NA   NA     0    NA     NA
## 1694   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 1695   Familiar No Retornable    NA      NA    NA    NA   12    NA     6     NA
## 1696   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 1697   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1698   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1699   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1700   Familiar No Retornable    NA       0     0    NA   NA    NA    NA     NA
## 1701   Familiar No Retornable     2       0     1     1    0     1     0     NA
## 1702   Familiar No Retornable    NA      NA     4    NA   NA    NA    NA     NA
## 1703   Familiar No Retornable     0      NA    NA    NA    0     1    NA     NA
## 1704   Familiar No Retornable    NA       0    NA    NA   NA     0     1      0
## 1705   Familiar No Retornable    NA       0    NA     0    0     1    NA     NA
## 1706   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 1707   Familiar No Retornable    NA       1    NA    NA   NA    NA     0     NA
## 1708   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1709   Familiar No Retornable    NA      NA    NA    NA    2     0    NA     NA
## 1710   Familiar No Retornable    NA      NA    NA    NA    1    NA     0     NA
## 1711   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1712   Familiar No Retornable    NA      NA    NA    NA   NA     0     1      1
## 1713   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1      0
## 1714   Familiar No Retornable     6       3    NA    NA   NA    NA    16     NA
## 1715   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 1716   Familiar No Retornable     1       0    NA     0   NA     0     1     NA
## 1717   Familiar No Retornable     1       0     2     1    0     4     3      7
## 1718   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 1719   Familiar No Retornable    NA      NA    NA     1   NA     3    NA      1
## 1720   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0      1
## 1721   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1722   Familiar No Retornable     1       3    NA    NA    1     1     2     NA
## 1723   Familiar No Retornable     3      NA    NA    NA   12     2    NA     22
## 1724   Familiar No Retornable     0      NA     1    NA   NA     2     2     NA
## 1725   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1726   Familiar No Retornable    NA      NA    NA     1   NA     2    NA     NA
## 1727   Familiar No Retornable    NA      NA    NA    NA   NA     0     0      1
## 1728   Familiar No Retornable    NA      NA    NA    NA    2     4    NA      4
## 1729   Familiar No Retornable    NA       0     1    NA   NA     1    NA     NA
## 1730   Familiar No Retornable    NA      NA    NA    NA   NA    19    NA     NA
## 1731   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1732   Familiar No Retornable     2       3    NA     2    3     1     1      0
## 1733   Familiar No Retornable     4       0    NA     1    1     6    NA      4
## 1734   Familiar No Retornable    NA      NA    NA    NA    4     6    NA     NA
## 1735   Familiar No Retornable     1      NA    NA    NA   NA     1     2     NA
## 1736   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1737   Familiar No Retornable    NA      NA    NA    NA   NA    NA     2     NA
## 1738   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1739   Familiar No Retornable     1      NA    NA    NA   NA     2    NA      1
## 1740   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1741   Familiar No Retornable    NA      NA    NA    NA   NA     2    NA     NA
## 1742   Familiar No Retornable    NA      NA    NA    NA    7    NA    NA     NA
## 1743   Familiar No Retornable    NA      NA    NA     2   NA     1    NA     NA
## 1744   Familiar No Retornable     1       1     2     1   NA     1    NA      1
## 1745   Familiar No Retornable    NA      NA    NA    NA   11    NA    NA     NA
## 1746   Familiar No Retornable    NA      NA    NA     4    2    NA    NA     NA
## 1747   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1748   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1749   Familiar No Retornable    NA       0    NA    NA    2    NA     1      4
## 1750   Familiar No Retornable     1       0     1    NA   NA     2     2      2
## 1751   Familiar No Retornable    NA      NA    NA    NA    1     0    10      0
## 1752   Familiar No Retornable    NA      NA     2    NA    0    NA    NA     NA
## 1753   Familiar No Retornable     1       0    NA    NA   NA    NA    NA     NA
## 1754   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1755   Familiar No Retornable    NA      NA    NA    NA    2    NA    NA      2
## 1756   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1757   Familiar No Retornable    NA      NA    NA    NA   NA     3     1      0
## 1758   Familiar No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 1759   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 1760   Familiar No Retornable     1       0     1     1    2     1     3      0
## 1761   Familiar No Retornable    NA      NA     2     0    2    NA    NA      1
## 1762   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1763   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      2
## 1764   Familiar No Retornable    NA      NA    NA    NA    1    NA    NA      1
## 1765   Familiar No Retornable     0       2    NA    NA    2     1    NA      2
## 1766   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 1767   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      2
## 1768   Familiar No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 1769   Familiar No Retornable     1       2     1     1    1     1     2      4
## 1770   Familiar No Retornable     1       1    NA    NA    2     1     1      1
## 1771   Familiar No Retornable     1       2     1    NA   NA     1     0     NA
## 1772   Familiar No Retornable     1       1     2    NA    0    NA     1      0
## 1773   Familiar No Retornable    NA      NA     1    NA    1     1    NA     NA
## 1774   Familiar No Retornable     1      16    50    NA    4    NA    NA     46
## 1775   Familiar No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 1776   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1777   Familiar No Retornable    NA       2     1     1    1     1    NA     NA
## 1778   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1779   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0      6
## 1780   Familiar No Retornable    NA       0    NA    NA   NA     1    NA      1
## 1781   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      2
## 1782   Familiar No Retornable     2       2    NA    NA   NA     2     0     10
## 1783   Familiar No Retornable    NA       0    NA    NA    7    NA     3      2
## 1784   Familiar No Retornable     0       0     1     8    1     4    NA      1
## 1785   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 1786   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1787   Familiar No Retornable    NA       1    NA    NA    0    NA    NA     NA
## 1788   Familiar No Retornable     2       2     1     1    7     7     5      3
## 1789   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1790   Familiar No Retornable    13       8    12    12    8    10    10     NA
## 1791   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1792   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1793   Familiar No Retornable     0       1    NA    NA    0    NA    NA      1
## 1794   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1795   Familiar No Retornable     2      NA    NA     0   NA    NA     1     NA
## 1796   Familiar No Retornable    NA       1     0    NA   NA    NA    NA     NA
## 1797   Familiar No Retornable    NA      NA    NA    NA   NA     2    NA      1
## 1798   Familiar No Retornable     1      NA    NA     0   NA     1    NA     NA
## 1799   Familiar No Retornable     1       2    NA    NA   NA    NA    NA      0
## 1800   Familiar No Retornable     2       1    NA    NA   NA    NA    NA      0
## 1801   Familiar No Retornable    NA       0    NA    NA    0    NA    NA     NA
## 1802   Familiar No Retornable    NA      NA    NA    NA   NA    NA     3      2
## 1803   Familiar No Retornable    NA      NA     0     1    1     1     2     NA
## 1804   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 1805   Familiar No Retornable    NA       0    NA     0   NA    NA    NA     NA
## 1806   Familiar No Retornable     1       0     1    NA   NA    NA    NA      2
## 1807   Familiar No Retornable    NA       0    NA    NA   NA    NA     1      0
## 1808   Familiar No Retornable     1       1    NA     2    0     5    NA      0
## 1809   Familiar No Retornable     0       2     0    NA    2     8     2      4
## 1810   Familiar No Retornable    NA       0    NA    NA   NA     0    NA      0
## 1811   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     20
## 1812   Familiar No Retornable    NA      NA    NA     8   NA     2     0     NA
## 1813   Familiar No Retornable     1       5     1     4   NA    NA    NA     NA
## 1814   Familiar No Retornable    NA      NA    NA    NA    0     5    NA     NA
## 1815   Familiar No Retornable     0      NA    NA    NA   NA     0    NA     NA
## 1816   Familiar No Retornable     0       1     2     3    0     0     1      2
## 1817   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1818   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1819   Familiar No Retornable     0       5    NA     6    6    NA    NA     NA
## 1820   Familiar No Retornable    NA      NA    NA    NA   10    NA    NA     NA
## 1821   Familiar No Retornable     1       1     2     1   NA     5     0      7
## 1822   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1      1
## 1823   Familiar No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 1824   Familiar No Retornable     0       1     1    NA    0     2     0      4
## 1825   Familiar No Retornable    NA      NA    NA    NA   NA     0     1     NA
## 1826   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1827   Familiar No Retornable    NA       0    NA    NA   NA    NA     1     NA
## 1828   Familiar No Retornable    NA      NA    NA    20   NA    NA    NA     NA
## 1829   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1830   Familiar No Retornable    NA       0    NA    NA   NA     2     0      0
## 1831   Familiar No Retornable     2       2     1     1    2     4     1      8
## 1832   Familiar No Retornable     8      NA    NA    NA   NA     0    NA     NA
## 1833   Familiar No Retornable     0       1     1     2    0     3    NA      4
## 1834   Familiar No Retornable     0       0     1     5    0     3    NA      2
## 1835   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     10
## 1836   Familiar No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 1837   Familiar No Retornable    NA       2    NA     1   NA    NA    NA     NA
## 1838   Familiar No Retornable    NA       1     6     1   NA    20    NA     NA
## 1839   Familiar No Retornable     1       0     1     0    1    NA    NA      1
## 1840   Familiar No Retornable    NA       0    NA    NA    0     1     1      0
## 1841   Familiar No Retornable     2       2     5     3    2     5     5      7
## 1842   Familiar No Retornable    NA      NA    NA    NA   NA     0     1     NA
## 1843   Familiar No Retornable     1      NA     0    NA    0    NA    NA     NA
## 1844   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 1845   Familiar No Retornable    NA      NA    NA     1    0     0     1      1
## 1846   Familiar No Retornable    NA       0     0     0    0    NA    NA      0
## 1847   Familiar No Retornable    NA       0    NA    NA    2    10    NA     NA
## 1848   Familiar No Retornable     2       2     3     0    2     1     2      0
## 1849   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1850   Familiar No Retornable     1      NA    NA    NA   NA     3    NA      0
## 1851   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1852   Familiar No Retornable    NA      NA    NA    24   NA    NA    NA     NA
## 1853   Familiar No Retornable     1      NA    NA    59    1     1     1      2
## 1854   Familiar No Retornable     2      NA     0     1    1     1    NA     NA
## 1855   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 1856   Familiar No Retornable    NA      NA    NA    NA    2    NA    NA     NA
## 1857   Familiar No Retornable     1       2     2     1   NA     1    NA      1
## 1858   Familiar No Retornable     1       3    NA    NA    1     2     3      1
## 1859   Familiar No Retornable     4       1     1    NA   NA     1     1     NA
## 1860   Familiar No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 1861   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 1862   Familiar No Retornable     4       1     2    NA    1     3     2      0
## 1863   Familiar No Retornable    NA      NA    NA     1    2     2    NA      2
## 1864   Familiar No Retornable    NA      NA    12    NA   NA    NA    NA     NA
## 1865   Familiar No Retornable    NA       4    NA    NA    2     3     3      3
## 1866   Familiar No Retornable     2       2    NA    NA   NA    NA    NA     NA
## 1867   Familiar No Retornable    NA      10    NA    NA   NA    NA    NA      1
## 1868   Familiar No Retornable    NA      10    NA     5   NA     4    NA     NA
## 1869   Familiar No Retornable    NA       1    NA    NA    1     1     7      1
## 1870   Familiar No Retornable    NA      NA    NA    NA   NA     0     1     NA
## 1871   Familiar No Retornable    NA      NA     1     1    0     0    NA     NA
## 1872   Familiar No Retornable    NA       1    NA    NA   NA     0    NA     NA
## 1873   Familiar No Retornable    NA      NA    NA    NA   NA     0     1      1
## 1874   Familiar No Retornable    NA      NA    NA    NA   NA     1     0     NA
## 1875   Familiar No Retornable    NA       2    NA     2   NA     3    NA     NA
## 1876   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1877   Familiar No Retornable    NA      NA    NA    NA    2    NA    NA     NA
## 1878   Familiar No Retornable     0       0     2     0   NA     1     2      1
## 1879   Familiar No Retornable    NA       1     0    NA   NA    NA     3      4
## 1880   Familiar No Retornable     0       0    NA    NA    0     1    NA     NA
## 1881   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1882   Familiar No Retornable     2       4    NA    NA   NA    NA    NA     NA
## 1883   Familiar No Retornable    NA      NA    NA     2   NA    NA     1      1
## 1884   Familiar No Retornable    NA      NA     0    NA   NA    NA    NA      1
## 1885   Familiar No Retornable    NA       1    NA    NA    0     0    NA     NA
## 1886   Familiar No Retornable     2       1     0     1    2     1     2      4
## 1887   Familiar No Retornable    NA      NA    NA    NA   NA     0    13     NA
## 1888   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1889   Familiar No Retornable     1       3     1    NA   NA    NA     3     NA
## 1890   Familiar No Retornable    NA      NA     4    NA    0    NA    NA     NA
## 1891   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 1892   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 1893   Familiar No Retornable    NA      NA    NA     6   NA    NA     0     NA
## 1894   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 1895   Familiar No Retornable     1       1    NA    NA   NA     2     4      2
## 1896   Familiar No Retornable     1       2     2     1   NA    NA    NA      2
## 1897   Familiar No Retornable     4       5     5     6   NA    NA    NA      4
## 1898   Familiar No Retornable    NA      NA    NA     1    1    NA     1      1
## 1899   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 1900   Familiar No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 1901   Familiar No Retornable    NA      35    NA    NA   NA     1     0      0
## 1902   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1903   Familiar No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 1904   Familiar No Retornable    NA      NA    NA    16   NA     2    NA     NA
## 1905   Familiar No Retornable     0       0    NA    NA   NA    NA     1     NA
## 1906   Familiar No Retornable    NA      NA     6    NA   NA    NA     0      0
## 1907   Familiar No Retornable    NA      NA    NA    NA    4    NA     1     24
## 1908   Familiar No Retornable    NA      NA    NA    NA    0    NA     0      0
## 1909   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1910   Familiar No Retornable    NA      NA     1    NA   NA    12    NA     NA
## 1911   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1912   Familiar No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 1913   Familiar No Retornable     0      NA    NA    NA   NA     0     0     NA
## 1914   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA      0
## 1915   Familiar No Retornable    NA      NA     0     0    0    NA    NA     NA
## 1916   Familiar No Retornable     2      NA    NA    NA   NA     0    NA     NA
## 1917   Familiar No Retornable    NA      NA     2     1   NA    NA    NA     NA
## 1918   Familiar No Retornable    NA      NA    NA     0    1     1    NA     NA
## 1919   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1920   Familiar No Retornable     1       2     2    NA    2     1     2      3
## 1921   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 1922   Familiar No Retornable    NA       1    NA     0    0     2     0      1
## 1923   Familiar No Retornable     1      NA    NA     1    1    NA    NA     NA
## 1924   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 1925   Familiar No Retornable    NA      NA    NA    NA   10    NA    NA     NA
## 1926   Familiar No Retornable     1       1     1     0    0     0     0      1
## 1927   Familiar No Retornable     1      NA    NA     0    1     3    NA     NA
## 1928   Familiar No Retornable    NA       1    NA     0   NA     1    NA     NA
## 1929   Familiar No Retornable     0       1     1     0   NA    NA     2      2
## 1930   Familiar No Retornable     1      NA     0     3    1     2     0     NA
## 1931   Familiar No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 1932   Familiar No Retornable     1       2    NA     1   NA    NA    NA     NA
## 1933   Familiar No Retornable     2       2     1     1    0     0     1     NA
## 1934   Familiar No Retornable    NA      NA     1    NA    2     2     1      1
## 1935   Familiar No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 1936   Familiar No Retornable    NA      NA    NA     1   NA     1     1     NA
## 1937   Familiar No Retornable    NA      NA    NA     1    2     0     1      3
## 1938   Familiar No Retornable    NA      NA    NA    NA    4     1    NA     NA
## 1939   Familiar No Retornable    NA       0    NA    NA    5    NA    NA     NA
## 1940   Familiar No Retornable    NA      NA    NA    NA   NA     2    NA     NA
## 1941   Familiar No Retornable     2       1     1     2   NA    NA    NA      0
## 1942   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA      0
## 1943   Familiar No Retornable     1       2    NA    NA   NA    NA     1      1
## 1944   Familiar No Retornable    NA      NA    NA    NA    6     5     5      2
## 1945   Familiar No Retornable     1       2    NA    NA    1     2     5      1
## 1946   Familiar No Retornable    NA       1    NA    NA    2     2     1      2
## 1947   Familiar No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 1948   Familiar No Retornable    NA       1    NA    NA   NA     8     1     NA
## 1949   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 1950   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      1
## 1951   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 1952   Familiar No Retornable    NA       0    NA     0    2     0    NA     NA
## 1953   Familiar No Retornable    NA      NA    NA    NA   NA     0     0      0
## 1954   Familiar No Retornable    NA       1     2    NA   NA    NA    NA     NA
## 1955   Familiar No Retornable    NA       1     2    NA   NA     8     0      1
## 1956   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA      1
## 1957   Familiar No Retornable     0       2     1     0    1     1     0     NA
## 1958   Familiar No Retornable     1      NA     0    NA   NA    NA     3      3
## 1959   Familiar No Retornable    NA       0    NA    NA   NA     0    NA     NA
## 1960   Familiar No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 1961   Familiar No Retornable     3       0    NA    NA    1     1    NA     NA
## 1962   Familiar No Retornable    NA      NA     0    NA   NA     1    NA     NA
## 1963   Familiar No Retornable    NA      NA    NA     3   NA     2    NA     NA
## 1964   Familiar No Retornable    NA      40    NA    NA   16    NA    NA     NA
## 1965   Familiar No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 1966   Familiar No Retornable    NA      16    40    NA   NA     2    NA      6
## 1967   Familiar No Retornable     2      NA     9     2   15    NA    NA     NA
## 1968   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 1969   Familiar No Retornable     3       1    NA    14   NA     8     1      2
## 1970   Familiar No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 1971   Familiar No Retornable     8       0    NA    NA    2    NA    NA     NA
## 1972   Familiar No Retornable    NA       1     1     0   NA     0    NA      0
## 1973   Familiar No Retornable    NA      NA     2    NA    2     1     1      4
## 1974   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 1975   Familiar No Retornable    NA      NA    NA     0   NA    NA    NA      0
## 1976   Familiar No Retornable     0       0     1     2   NA    NA    NA     NA
## 1977   Familiar No Retornable    NA      NA    NA    14   NA    NA    NA     NA
## 1978   Familiar No Retornable     1       0     1    NA   NA    NA    NA      1
## 1979   Familiar No Retornable     5      NA    NA    NA   NA    NA    NA     NA
## 1980   Familiar No Retornable     6       2     0     1    4    NA     0      1
## 1981   Familiar No Retornable     1       2    NA     1    1     1     1      3
## 1982   Familiar No Retornable     1       0     0     0    0     0     0     NA
## 1983   Familiar No Retornable    NA      NA    NA     0   NA    NA    NA      2
## 1984   Familiar No Retornable    NA      NA    NA    NA   NA     2    NA      1
## 1985   Familiar No Retornable    NA      NA     1     1   NA     1     1      1
## 1986   Familiar No Retornable     1       2     0    NA   NA    NA    NA     NA
## 1987   Familiar No Retornable     0       1     0    NA    0     0    NA      1
## 1988   Familiar No Retornable    NA      NA    NA    NA   NA     2    NA     NA
## 1989   Familiar No Retornable     2       1     1     2    1     3     2      1
## 1990   Familiar No Retornable    NA      NA    NA     1    1    NA     1      0
## 1991   Familiar No Retornable    NA       0     0    NA   NA    NA     0      1
## 1992   Familiar No Retornable     1       2     1     2    2     3    NA      2
## 1993   Familiar No Retornable     0       0    NA     1    3     2     3      4
## 1994   Familiar No Retornable    NA      NA    NA    NA    2    NA    NA     NA
## 1995   Familiar No Retornable     2       0     2    NA    1    NA     0     NA
## 1996   Familiar No Retornable     1       1     1     2   NA     2     0     NA
## 1997   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA      2
## 1998   Familiar No Retornable    NA      NA    NA    NA   10    NA    NA     NA
## 1999   Familiar No Retornable    NA       1     1    NA    1     1    NA      0
## 2000   Familiar No Retornable    NA       1     2     2    4     3     2      4
## 2001   Familiar No Retornable    NA       0    NA    NA   NA     0     0      0
## 2002   Familiar No Retornable     3       1     2     3    3     6     2      3
## 2003   Familiar No Retornable    NA       0     0     1   NA    NA    NA      1
## 2004   Familiar No Retornable    NA       1    NA    NA   NA     4     1      2
## 2005   Familiar No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 2006   Familiar No Retornable     1      NA     1     1    8    NA    20     NA
## 2007   Familiar No Retornable     3       0     1     1    1    NA    NA      0
## 2008   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2009   Familiar No Retornable    NA       1     0    NA   NA     1     0     NA
## 2010   Familiar No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 2011   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1      1
## 2012   Familiar No Retornable    NA       0    NA     1    0     1    NA      1
## 2013   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2014   Familiar No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 2015   Familiar No Retornable     1      NA    NA     1   NA    NA     0     NA
## 2016   Familiar No Retornable    NA      NA    NA     2   NA    NA    NA     NA
## 2017   Familiar No Retornable    NA      NA    NA    NA    1     0    NA      1
## 2018   Familiar No Retornable    NA       0    NA    NA    2    NA    NA      1
## 2019   Familiar No Retornable    NA       4    NA    NA   NA    NA    NA     NA
## 2020   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 2021   Familiar No Retornable     6      NA    NA    NA   NA    NA    NA     NA
## 2022   Familiar No Retornable     2       2     3     1    1    NA    NA      2
## 2023   Familiar No Retornable    NA       0    NA    NA    6    NA    NA      2
## 2024   Familiar No Retornable     1      NA     1     1   NA    NA    NA      6
## 2025   Familiar No Retornable    NA       1    NA     5   NA     0    NA      2
## 2026   Familiar No Retornable    NA       2    NA     1   NA    NA     1     NA
## 2027   Familiar No Retornable    NA      NA     5    NA   NA    NA     2      8
## 2028   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 2029   Familiar No Retornable    NA       0    NA     1   NA     1     0     NA
## 2030   Familiar No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 2031   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2032   Familiar No Retornable     5       2     3     2    1     4     2      3
## 2033   Familiar No Retornable    NA       1    NA    NA   NA    14    NA     NA
## 2034   Familiar No Retornable     7      NA     2    NA    2     2     3      5
## 2035   Familiar No Retornable     2      NA     1     3    0     0     0      1
## 2036   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2037   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 2038   Familiar No Retornable     1      NA     4     2   NA     2     1      4
## 2039   Familiar No Retornable    NA      NA    NA    NA   NA     4    NA     NA
## 2040   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 2041   Familiar No Retornable     2       1    NA    NA   NA     1    NA     NA
## 2042   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2043   Familiar No Retornable     1      NA     0     0   NA    NA    NA      1
## 2044   Familiar No Retornable     1       0     1     0    0    NA    NA     NA
## 2045   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2046   Familiar No Retornable    NA      NA    NA     2   NA     3    NA     NA
## 2047   Familiar No Retornable    NA      NA    NA    NA   NA     4    NA     NA
## 2048   Familiar No Retornable     2      NA    NA    NA    1     3    NA      2
## 2049   Familiar No Retornable     5       3     1     2    1     1    NA      5
## 2050   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1      1
## 2051   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2052   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2053   Familiar No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 2054   Familiar No Retornable    NA      NA    NA     2   NA    NA    NA     NA
## 2055   Familiar No Retornable    NA      NA    NA    40    0     4     0     NA
## 2056   Familiar No Retornable     2      NA     3     1   NA     1    NA      0
## 2057   Familiar No Retornable     1       2    NA     0    0     1    22      1
## 2058   Familiar No Retornable     1       0     1     1    0     1    NA      1
## 2059 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2060 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2061 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2062 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2063 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2064 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2065 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2066 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2067 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2068 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2069 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2070 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2071 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2072 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2073 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2074 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2075 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2076 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2077 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2078 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2079 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2080 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2081 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2082 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2083 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2084 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2085 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2086 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2087 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2088 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2089 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2090 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2091 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2092 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2093 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2094 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2095 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2096 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2097 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2098 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2099 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2100 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2101 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2102 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2103 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2104 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2105 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2106 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2107 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2108 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2109 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2110 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2111 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2112 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2113 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2114 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2115 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2116 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2117 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2118 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2119 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2120 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2121 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2122 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2123 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2124 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2125 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2126 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2127 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2128 Individual No Retornable    NA      NA     1    NA    1    NA     2     NA
## 2129 Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 2130 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2131 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2132 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2133 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2134 Individual No Retornable    NA      NA    NA    NA    0    NA    NA      0
## 2135 Individual No Retornable    NA      NA     0     0   NA    NA     0      0
## 2136 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 2137 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2138 Individual No Retornable    NA       0     0    NA   NA    NA    NA     NA
## 2139 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 2140 Individual No Retornable     0       0    NA    NA   NA    NA    NA      0
## 2141 Individual No Retornable     0      NA    NA     0    0    NA     0     NA
## 2142 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2143 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 2144 Individual No Retornable     0      NA     0     0    1     0     0     NA
## 2145 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 2146 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 2147 Individual No Retornable     0      NA     0    NA   NA    NA    NA     NA
## 2148 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2149 Individual No Retornable     0      NA    NA     0   NA    NA    NA     NA
## 2150 Individual No Retornable     0      NA    NA    NA   NA    NA     0     NA
## 2151 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2152 Individual No Retornable    NA      NA    NA     0    0    NA     0     NA
## 2153 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2154 Individual No Retornable    NA       0    NA    NA    0    NA    NA     NA
## 2155 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2156 Individual No Retornable    NA      NA    NA     0    0    NA     0     NA
## 2157 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2158 Individual No Retornable     0      NA    NA    NA   NA    NA     0     NA
## 2159 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2160 Individual No Retornable     0      NA    NA    NA    0    NA    NA     NA
## 2161 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2162 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2163 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 2164 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2165 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2166 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2167 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 2168 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2169 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 2170 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2171 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2172 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2173 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2174 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2175 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2176 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 2177 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2178 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2179 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2180 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2181 Individual No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 2182 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2183 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2184 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2185 Individual No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 2186 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2187 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2188 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2189 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2190 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2191 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2192 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2193 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2194 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2195 Individual No Retornable     0      NA     0    NA   NA    NA     0     NA
## 2196 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2197 Individual No Retornable    NA      NA    NA    NA    0     0     0      0
## 2198 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2199 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2200 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2201 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2202 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2203 Individual No Retornable    NA      NA    NA    NA    0     0    NA      0
## 2204 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2205 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2206 Individual No Retornable     0       0     0     0   NA    NA    NA     NA
## 2207 Individual No Retornable    NA       0    NA     0   NA    NA    NA     NA
## 2208 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2209 Individual No Retornable    NA       0    NA    NA   NA     0    NA     NA
## 2210 Individual No Retornable    NA      NA    NA    NA    0    NA     0     NA
## 2211 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2212 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2213 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 2214 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2215 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2216 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2217 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2218 Individual No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 2219 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2220 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2221 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2222 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2223 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2224 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2225 Individual No Retornable    NA      NA    NA    NA    0    NA    NA      0
## 2226 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2227 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2228 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 2229 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2230 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2231 Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 2232 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 2233 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2234 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2235 Individual No Retornable    NA      NA    NA    NA    0    NA     0      0
## 2236 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2237 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2238 Individual No Retornable     1       1    NA     1   NA    NA     0      0
## 2239 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2240 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2241 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 2242 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2243 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2244 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2245 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2246 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2247 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2248 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2249 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2250 Individual No Retornable     0      NA    NA     0   NA    NA    NA     NA
## 2251 Individual No Retornable    NA      NA    NA    NA   NA     0     1     NA
## 2252 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2253 Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 2254 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2255 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2256 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2257 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2258 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2259 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2260 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2261 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2262 Individual No Retornable    NA      NA    NA     0    0     0     0     NA
## 2263 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2264 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 2265 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2266 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2267 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2268 Individual No Retornable     0       0    NA    NA    0    NA    NA      0
## 2269 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2270 Individual No Retornable    NA      NA     0     0    0    NA    NA     NA
## 2271 Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 2272 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2273 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2274 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 2275 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2276 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2277 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2278 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2279 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 2280 Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 2281 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2282 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 2283 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2284 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2285 Individual No Retornable     1       0    NA    NA    1    NA    NA     NA
## 2286 Individual No Retornable     1       1    NA    NA    0     0    NA     NA
## 2287 Individual No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 2288 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2289 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2290 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2291 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2292 Individual No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 2293 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 2294 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2295 Individual No Retornable     0      NA    NA    NA    0     0    NA      0
## 2296 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2297 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 2298 Individual No Retornable    NA       0    NA     0   NA    NA    NA     NA
## 2299   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2300   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2301   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2302   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2303   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2304   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2305   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2306   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2307   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2308   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2309   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2310   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2311   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2312   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2313   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2314   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2315   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2316   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2317   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2318   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2319   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2320   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2321   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2322   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2323   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2324   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2325   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2326   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2327   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2328   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2329   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2330   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2331   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2332   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2333   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2334   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2335   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2336   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2337   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2338   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2339   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2340   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2341   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2342   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2343   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2344   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2345   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2346   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2347   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2348   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2349   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2350   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2351   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2352   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2353   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2354   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 2355   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2356   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2357   Familiar No Retornable     1       2    NA    NA   NA     1     1      0
## 2358   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 2359   Familiar No Retornable    NA      NA     2    NA   NA    NA    NA     NA
## 2360   Familiar No Retornable     1       1    NA    NA   NA    NA     1     NA
## 2361   Familiar No Retornable    11      10     6     4    6     5     7      8
## 2362   Familiar No Retornable    15      36    NA    14    8     9    15      8
## 2363   Familiar No Retornable     2       2     2    NA    2    NA    NA      2
## 2364   Familiar No Retornable    NA       1     0     0    0     0     1      1
## 2365   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2366   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2367   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 2368   Familiar No Retornable     4       3    NA    NA   NA     1     2      1
## 2369   Familiar No Retornable     3      NA    NA    NA    1    NA    NA     NA
## 2370   Familiar No Retornable    26      66   102    NA    2     1     8     22
## 2371   Familiar No Retornable    NA      NA     2    NA   NA     3     2      8
## 2372   Familiar No Retornable     2      NA    NA    NA   NA     0    NA     NA
## 2373   Familiar No Retornable     2       1    NA    NA   NA     0     2     NA
## 2374   Familiar No Retornable    NA       1    NA    NA   NA    NA     0     NA
## 2375   Familiar No Retornable     7      12    NA     2    3     7     8      6
## 2376   Familiar No Retornable    NA       2     2     2   NA     2     2      3
## 2377   Familiar No Retornable    NA      NA    NA     1   NA    NA     0      0
## 2378   Familiar No Retornable     5       2     2     3   NA     2     2      3
## 2379   Familiar No Retornable     1      NA     2    20   NA    NA    NA     NA
## 2380   Familiar No Retornable     3       4    NA     2    1    NA     0      2
## 2381   Familiar No Retornable     2       0    NA     0   NA    NA     0     NA
## 2382   Familiar No Retornable     6      NA    NA    NA   NA    NA    NA      1
## 2383   Familiar No Retornable     3       3     2     1    2     2     3      6
## 2384   Familiar No Retornable     0      NA     0    NA    0     0    NA      0
## 2385   Familiar No Retornable     1       0     1     2    1     2     2      2
## 2386   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 2387   Familiar No Retornable    NA      23    NA    NA    2    NA    NA      4
## 2388   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 2389   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 2390   Familiar No Retornable    NA      NA    NA    11   NA    NA    NA     NA
## 2391   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2392   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 2393   Familiar No Retornable    NA       1     3     2    0     1     3      3
## 2394   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2395   Familiar No Retornable     1       1     1    NA    1     3    NA     NA
## 2396   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 2397   Familiar No Retornable     5       3     5     3   NA    NA    NA      1
## 2398   Familiar No Retornable     4       3    NA    NA    3     1     4      4
## 2399   Familiar No Retornable    NA       2     1    NA   NA    NA    NA     NA
## 2400   Familiar No Retornable    NA      NA    NA    NA   NA     0     2      0
## 2401   Familiar No Retornable     1       2     3     2    1    NA     0      5
## 2402   Familiar No Retornable    NA      NA    NA     2   NA    NA    NA      1
## 2403   Familiar No Retornable     1       2     2     2    0     1     1     NA
## 2404   Familiar No Retornable    NA      NA    NA    NA    1    NA    NA      0
## 2405   Familiar No Retornable     4       2     3     1    2     2     3      3
## 2406   Familiar No Retornable    NA      20    NA    NA   NA    NA     0     NA
## 2407   Familiar No Retornable     2       1     1     7   NA    NA     0      3
## 2408   Familiar No Retornable     1       2     2    NA   NA    NA    NA      2
## 2409   Familiar No Retornable    NA      NA    NA    NA   NA     3     6      6
## 2410   Familiar No Retornable     6      NA    NA    NA    0     5     9      3
## 2411   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      2
## 2412   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2413   Familiar No Retornable     1       1     0     1   NA     1    NA      1
## 2414   Familiar No Retornable     0       1    NA    NA    0    NA     0      0
## 2415   Familiar No Retornable    NA       1     2     0   NA    NA    NA      1
## 2416   Familiar No Retornable     2      NA    NA    NA   NA    NA     2      2
## 2417   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2418   Familiar No Retornable     1       2    NA     3    1     0     0      0
## 2419   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2420   Familiar No Retornable    NA      NA    NA     0    0     0     0      0
## 2421   Familiar No Retornable     5       4     8     6    9     5     2      2
## 2422   Familiar No Retornable     0       1    NA     0   NA    NA     0     NA
## 2423   Familiar No Retornable     2      NA    NA     1    2    NA     1      2
## 2424   Familiar No Retornable    NA      NA    NA    10   NA    NA     2      2
## 2425   Familiar No Retornable    NA       0     1     2    1     2     1      1
## 2426   Familiar No Retornable     4      NA    NA    NA   NA    NA    NA     NA
## 2427   Familiar No Retornable     5      16    NA     4    6     4     3      7
## 2428   Familiar No Retornable     0       1     0    NA   NA    NA    NA     NA
## 2429   Familiar No Retornable    NA      NA     1    NA   NA     1     1      1
## 2430   Familiar No Retornable    NA       1     0    NA    2     2     6      2
## 2431   Familiar No Retornable    NA      NA    NA    NA   NA     2    NA     NA
## 2432   Familiar No Retornable    NA      NA    NA    NA    0     0    NA      3
## 2433   Familiar No Retornable     0       1    NA     1   NA    NA    NA      0
## 2434   Familiar No Retornable     1      NA     1     1    2    NA     2      2
## 2435   Familiar No Retornable     2       1     0     2    2     1     0      1
## 2436   Familiar No Retornable    10      14    NA    NA   NA    NA    NA      1
## 2437   Familiar No Retornable     0       1     1    NA   NA     2     2      2
## 2438   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2439   Familiar No Retornable    NA      NA    NA    NA   NA    NA     4     NA
## 2440   Familiar No Retornable     4       3     0    NA   NA    NA    NA      4
## 2441   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2442   Familiar No Retornable     2       1     0    NA   NA     6    NA      3
## 2443   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2444   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2445   Familiar No Retornable    NA      NA    50     1   NA    NA    NA     NA
## 2446   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2447   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2448   Familiar No Retornable     0      NA     1    NA   NA    NA     1      2
## 2449   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2450   Familiar No Retornable     5      NA    52    NA   NA     3     5      4
## 2451   Familiar No Retornable    NA       0    NA    NA    0     0    NA      1
## 2452   Familiar No Retornable    NA      NA     0    NA   NA     0    NA     NA
## 2453   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA      0
## 2454   Familiar No Retornable    NA      NA     8    NA    2     2     3      7
## 2455   Familiar No Retornable    NA      NA     6    NA   NA    NA    NA     NA
## 2456   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2457   Familiar No Retornable     6       4    NA    NA   NA     2     3      4
## 2458   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2459   Familiar No Retornable     5       1     5     3    0    NA    NA      3
## 2460   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2461   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 2462   Familiar No Retornable     3      NA    NA    NA    2     2     5     NA
## 2463   Familiar No Retornable     4      NA    NA    NA   NA    NA    NA     NA
## 2464   Familiar No Retornable     8       8     8    20   NA    NA    NA     NA
## 2465   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 2466   Familiar No Retornable    NA      NA    NA     2   NA    NA    NA     NA
## 2467   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2468   Familiar No Retornable     0       0     0     1   NA    NA     0     NA
## 2469   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2470   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2471   Familiar No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 2472   Familiar No Retornable    NA      NA    NA    NA   NA     2    NA     NA
## 2473   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2474   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2475   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2476   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2477   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2478   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2479   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2480   Familiar No Retornable    NA      NA    NA    NA    2    NA    NA     NA
## 2481   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2482   Familiar No Retornable    NA       1     1     0    1    NA     1      1
## 2483   Familiar No Retornable    NA       0     1     0   NA    NA    NA     NA
## 2484   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2485   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 2486   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 2487   Familiar No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 2488   Familiar No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 2489   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2490   Familiar No Retornable     0       0    NA    NA    0     0    NA      1
## 2491   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2492   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2493   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2494   Familiar No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 2495   Familiar No Retornable    NA      NA     2    NA   NA    NA    NA     NA
## 2496   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2497   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2498   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 2499   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2500   Familiar No Retornable    NA       0    NA     0    0    NA    NA     NA
## 2501   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2502   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2503   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2504   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2505   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2506   Familiar No Retornable    NA      10    NA    NA   NA    NA     1     NA
## 2507   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 2508   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2509   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2510   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2511   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2512   Familiar No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 2513   Familiar No Retornable    NA      NA     4     1    1     1     4      5
## 2514   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2515   Familiar No Retornable     1       1     1     0   NA     1     0      0
## 2516   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2517   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2518   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2519   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 2520   Familiar No Retornable    NA       1    NA    NA    1    NA    NA     NA
## 2521   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2522   Familiar No Retornable    NA      NA    NA    NA    0     0     0     NA
## 2523   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2524   Familiar No Retornable     0      NA     0     1    1     0    NA     NA
## 2525   Familiar No Retornable    NA      NA     2     0   NA    NA    NA     NA
## 2526   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2527   Familiar No Retornable    NA      NA    NA     2   NA    NA    NA     NA
## 2528   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2529   Familiar No Retornable    NA      NA    NA    NA    0    NA     0     NA
## 2530   Familiar No Retornable    NA      NA    NA    NA    2    NA    NA     NA
## 2531   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA      0
## 2532   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2533   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2534   Familiar No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 2535   Familiar No Retornable    NA      NA    NA     4   NA    NA    NA     NA
## 2536   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 2537   Familiar No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 2538   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 2539   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2540   Familiar No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 2541   Familiar No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 2542   Familiar No Retornable    NA       1     2    NA    0    NA     1      1
## 2543   Familiar No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 2544   Familiar No Retornable    NA      NA    NA    NA    1     0    NA     NA
## 2545   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 2546   Familiar No Retornable     0       1    NA    NA   NA     0    NA     NA
## 2547   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 2548   Familiar No Retornable    NA      NA     2    NA   NA    NA     0      0
## 2549   Familiar No Retornable     1      NA     1     0    1     1     2      1
## 2550   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA      0
## 2551   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2552   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2553   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2554   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 2555   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2556   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2557   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2558   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2559   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2560   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 2561   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2562   Familiar No Retornable     2       1     1    NA   NA    NA     0     NA
## 2563   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2564   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2565   Familiar No Retornable     2      NA    NA    NA   NA    NA    NA     NA
## 2566   Familiar No Retornable     1      NA    NA    NA   NA    NA     0      1
## 2567   Familiar No Retornable     1       1     0     0    1     1     0      0
## 2568   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1      0
## 2569   Familiar No Retornable    NA       1     1     1    1    NA    NA      0
## 2570   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2571   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 2572   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2573   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2574   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2575   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2576   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2577   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2578   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 2579   Familiar No Retornable    NA      NA    NA     0   NA     2     2      1
## 2580   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2581   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2582   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2583   Familiar No Retornable    NA      NA    NA    NA    0    NA     0      0
## 2584   Familiar No Retornable     2      14     2     4   NA     0    NA      0
## 2585   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2586   Familiar No Retornable    NA       3     1    NA   NA    NA    NA     NA
## 2587   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2588   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2589   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2590   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2591   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2592   Familiar No Retornable    NA      NA     2    NA   NA    NA    NA     NA
## 2593   Familiar No Retornable    NA      NA     2    NA   NA    NA    NA     NA
## 2594   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2595   Familiar No Retornable    NA      14    NA    NA   NA    NA    NA     NA
## 2596   Familiar No Retornable    NA       1    NA    NA    0    NA    NA     NA
## 2597   Familiar No Retornable    NA      NA    NA    NA    0     2     1     NA
## 2598   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 2599   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2600   Familiar No Retornable    NA      NA     2    NA    0     1    NA      2
## 2601   Familiar No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 2602   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2603   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2604   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2605   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2606   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 2607   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2608   Familiar No Retornable    NA      NA    NA    NA    2     0    NA     NA
## 2609   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 2610   Familiar No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 2611   Familiar No Retornable    NA      NA    NA    NA   NA     0     0      0
## 2612   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2613   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2614   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 2615   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2616   Familiar No Retornable     1       0     0     0    0     0     0      1
## 2617   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA      0
## 2618   Familiar No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 2619   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2620   Familiar No Retornable     2      NA     2    NA   NA    NA    NA     NA
## 2621   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2622   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2623   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2624   Familiar No Retornable     6      NA    NA     2   NA    NA     0     NA
## 2625   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2626   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2627   Familiar No Retornable    NA       1    NA     0   NA    NA    NA     NA
## 2628   Familiar No Retornable     2      NA     2    NA   NA    NA    NA     NA
## 2629   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2630   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 2631   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2632   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2633   Familiar No Retornable    NA      NA    NA    NA   NA     0     1      0
## 2634   Familiar No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 2635   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2636   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2637   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2638   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2639   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2640   Familiar No Retornable    NA       1     0    NA   NA    NA    NA     NA
## 2641   Familiar No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 2642   Familiar No Retornable    NA      NA    NA    NA   NA    NA     2      1
## 2643   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2644   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2645   Familiar No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 2646   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2647   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2648   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 2649   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2650   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2651   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2652   Familiar No Retornable    NA       4    NA    NA    1     0    NA      0
## 2653   Familiar No Retornable    NA       4    NA    NA   NA    NA    NA     NA
## 2654   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2655   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2656   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2657   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2658   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2659   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2660   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2661   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2662   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2663   Familiar No Retornable     0       0     0    NA    0    NA    NA      0
## 2664   Familiar No Retornable    NA      NA    NA    NA    0    NA     0     NA
## 2665   Familiar No Retornable    NA       4    NA     2   NA    NA    NA     NA
## 2666   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2667   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2668   Familiar No Retornable     0      NA    NA    NA   NA    NA     0     NA
## 2669   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2670   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2671   Familiar No Retornable    NA       0     0    NA   NA    NA    NA     NA
## 2672   Familiar No Retornable     4       0    NA     1   NA    NA     1      1
## 2673   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2674   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2675   Familiar No Retornable    NA       2     2    NA    0    NA    NA      0
## 2676   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA      0
## 2677   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2678   Familiar No Retornable    NA      12    NA    NA   NA    NA    NA     NA
## 2679   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 2680   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA      0
## 2681   Familiar No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 2682   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2683   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1      2
## 2684   Familiar No Retornable    NA      NA     0    NA   NA     0    NA     NA
## 2685   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2686   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2687   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2688   Familiar No Retornable    NA      NA    NA    NA    0     2     0      1
## 2689   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2690   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2691   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 2692   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 2693   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 2694   Familiar No Retornable    NA      NA    NA    NA   NA     0     1      1
## 2695   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2696   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2697   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 2698   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2699   Familiar No Retornable     1       8    NA    NA    0    NA     2      1
## 2700   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2701   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2702   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2703   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2704   Familiar No Retornable     1      NA    NA    NA    1    NA     0     NA
## 2705   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2706   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2707   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2708   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2709   Familiar No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 2710   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2711   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2712   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2713   Familiar No Retornable    NA      NA     1    NA    0     0    NA      0
## 2714   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2715   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2716   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2717   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2718   Familiar No Retornable    NA      NA    NA    NA    0    NA     0     NA
## 2719   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 2720   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2721   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2722   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2723   Familiar No Retornable    NA       1     1    NA   NA    NA    NA     NA
## 2724   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2725   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2726   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 2727   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2728   Familiar No Retornable    NA       1    NA    NA    0     0     1     NA
## 2729   Familiar No Retornable     0      NA    NA     0   NA     1     1      0
## 2730   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 2731   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2732   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2733   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA      0
## 2734   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2735   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2736   Familiar No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 2737   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2738   Familiar No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 2739   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 2740   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2741   Familiar No Retornable    NA      10    NA    NA   NA    NA    NA     NA
## 2742   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2743   Familiar No Retornable     1       1     0    NA   NA     0     1      1
## 2744   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2745   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 2746   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      1
## 2747   Familiar No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 2748   Familiar No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 2749   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2750   Familiar No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 2751   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 2752   Familiar No Retornable    NA      NA    NA    NA    0     0     0     NA
## 2753   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2754   Familiar No Retornable     1       1    NA     1   NA    NA     0      2
## 2755   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 2756   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2757   Familiar No Retornable    NA      NA    NA    NA   NA     2    NA     NA
## 2758   Familiar No Retornable     2       1    NA    NA   NA     0    NA     NA
## 2759   Familiar No Retornable     2       9    NA    NA    2    NA     0     NA
## 2760   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2761   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2762   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2763   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2764   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 2765   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2766   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2767   Familiar No Retornable     0       6     0     1   NA    NA     0     NA
## 2768   Familiar No Retornable     8      NA    NA    NA   NA    NA    NA     NA
## 2769   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2770   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2771   Familiar No Retornable     0      NA     0     1   NA     1     1      3
## 2772   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2773   Familiar No Retornable    NA      NA    NA    NA   NA     0     1     NA
## 2774   Familiar No Retornable    NA      NA    NA     1    0     1    NA      0
## 2775   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2776   Familiar No Retornable    NA      NA    NA    NA    1    NA     0      0
## 2777   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2778   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2779   Familiar No Retornable    NA      NA    NA    NA   NA     1     1      0
## 2780   Familiar No Retornable    NA      NA    NA    NA   NA     1     1      2
## 2781   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2782   Familiar No Retornable    NA      NA     0    NA   NA     0    NA     NA
## 2783   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2784   Familiar No Retornable     0       0     0    NA   NA     1     1     NA
## 2785   Familiar No Retornable     0       0    NA    NA   NA    NA     2      0
## 2786   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2787   Familiar No Retornable     1       2    NA    NA   NA    NA    NA     NA
## 2788   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2789   Familiar No Retornable    NA      NA    NA    NA    1     1    NA      0
## 2790   Familiar No Retornable    NA      NA    NA     1    2     4    NA     NA
## 2791   Familiar No Retornable     2       3     1    NA   NA    NA    NA     NA
## 2792   Familiar No Retornable    NA      NA    NA     1   NA     0    NA      2
## 2793   Familiar No Retornable    NA       6    NA    NA   NA    NA    NA     NA
## 2794   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 2795   Familiar No Retornable    NA      NA    NA    NA   NA     2    NA      2
## 2796   Familiar No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 2797   Familiar No Retornable     2      NA    NA    NA    1    NA     1     NA
## 2798   Familiar No Retornable    NA      NA     0    NA   NA    NA     0     NA
## 2799   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2800   Familiar No Retornable     0      NA    NA    NA   NA     0    NA     NA
## 2801   Familiar No Retornable    NA       1    NA    NA   NA    NA     2     NA
## 2802   Familiar No Retornable     4       2    NA     2    4     4     0      1
## 2803   Familiar No Retornable     6      NA    NA    NA   NA     2     1      3
## 2804   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2805   Familiar No Retornable     2      NA    NA    NA   NA     4    NA     NA
## 2806   Familiar No Retornable     6       2    NA    50   NA    NA     2      2
## 2807   Familiar No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 2808   Familiar No Retornable     4       2    NA    NA   NA     6     3     10
## 2809   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2810   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2811   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2812   Familiar No Retornable     1       3     1    NA   NA     1     0      0
## 2813   Familiar No Retornable     4      NA     1    NA   NA    NA    NA     NA
## 2814   Familiar No Retornable    NA      NA    NA    NA    2    NA    NA     NA
## 2815   Familiar No Retornable     0       2    NA    NA   NA    NA    NA     NA
## 2816   Familiar No Retornable    NA      NA     3     1   NA    NA    NA     NA
## 2817   Familiar No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 2818   Familiar No Retornable     2      NA     2    NA   NA     1     2      2
## 2819   Familiar No Retornable     0       1    NA     0   NA    NA    NA      1
## 2820   Familiar No Retornable    NA      NA    NA    NA    1     1    NA     NA
## 2821   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2822   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2823   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 2824   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA      0
## 2825   Familiar No Retornable     1       0    NA    NA   NA    NA     2      1
## 2826   Familiar No Retornable    NA      NA     0     0   NA    NA    NA      0
## 2827   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 2828   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA      1
## 2829   Familiar No Retornable    NA      NA     2    NA    0    NA    NA     NA
## 2830   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 2831   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 2832   Familiar No Retornable     4       2     1    NA    1     5     6      2
## 2833   Familiar No Retornable     5       4     3     1   NA     2     2      2
## 2834   Familiar No Retornable     4       1     3     2    1     3     7      8
## 2835   Familiar No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 2836   Familiar No Retornable     1      NA    NA    40   NA     1    NA      1
## 2837   Familiar No Retornable     2       1     2     4   NA     2     1      2
## 2838   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2839   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2840   Familiar No Retornable    NA      NA    NA    NA   NA     2    NA     NA
## 2841   Familiar No Retornable     1      NA    NA    NA   NA     0    NA      0
## 2842   Familiar No Retornable    NA       1     0    NA   NA    NA    NA      1
## 2843   Familiar No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 2844   Familiar No Retornable     1      NA    NA    NA   NA     1    NA     NA
## 2845   Familiar No Retornable     0       1     0    NA   NA     0    NA      0
## 2846   Familiar No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 2847   Familiar No Retornable    NA      NA     0    NA    0     0    NA     NA
## 2848   Familiar No Retornable     0      NA    NA    NA   NA     1     1     NA
## 2849   Familiar No Retornable     1       1    50    NA   NA    NA     2      1
## 2850   Familiar No Retornable    NA      NA    NA    NA   NA     0     2     NA
## 2851   Familiar No Retornable    NA       0    NA     0   NA    NA    NA     NA
## 2852   Familiar No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 2853   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2854   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2855   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2856   Familiar No Retornable     1       1    NA    NA    0     0     0     NA
## 2857   Familiar No Retornable    NA      NA    NA    NA    2    NA     0     NA
## 2858   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2859   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2860   Familiar No Retornable     1      NA    NA     0   NA    NA    NA     NA
## 2861   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2862   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2863   Familiar No Retornable    NA      NA    NA    NA   NA    NA     2     NA
## 2864   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2865   Familiar No Retornable     0      NA    NA    NA   NA     1    NA     NA
## 2866   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2867   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2868   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2869   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2870   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2871   Familiar No Retornable     1       0     2     0   NA    NA    NA      0
## 2872   Familiar No Retornable     7       2     1     1    0     2     3      3
## 2873   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2874   Familiar No Retornable     1      NA    NA    NA   NA     1     0      1
## 2875   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2876   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 2877   Familiar No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 2878   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA      0
## 2879   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     10
## 2880   Familiar No Retornable    NA      NA    NA     4   NA     1    NA      1
## 2881   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 2882   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2883   Familiar No Retornable     2       1     2    NA    1     2     2      2
## 2884   Familiar No Retornable     0       0     1     2   NA     1     2      2
## 2885   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 2886   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2887   Familiar No Retornable    NA      NA    NA     3    2    NA    NA     NA
## 2888   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2889   Familiar No Retornable     1       2    40    NA   NA     2     1      1
## 2890   Familiar No Retornable    NA      NA    NA    NA   NA     1     2      1
## 2891   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2892   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA      1
## 2893   Familiar No Retornable     0      NA    NA    NA   NA    NA     0      0
## 2894   Familiar No Retornable    NA      NA    NA    NA    1    NA    NA      1
## 2895   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1      0
## 2896   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2897   Familiar No Retornable    NA       0     0    NA    0    NA     0     NA
## 2898   Familiar No Retornable    NA       1    NA    NA   NA     0     0     NA
## 2899   Familiar No Retornable     8      NA    NA    NA   NA    NA     0     NA
## 2900   Familiar No Retornable    NA       0    NA    NA   NA    NA     1      2
## 2901   Familiar No Retornable    NA      NA    NA     1   NA     0    NA      0
## 2902   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2903   Familiar No Retornable    NA      NA     0    NA   NA     0    NA     NA
## 2904   Familiar No Retornable    NA      NA     0     1   NA     2     2      2
## 2905   Familiar No Retornable     1       3     4     2   14     3     5      3
## 2906   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2907   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2908   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2909   Familiar No Retornable     4      NA     2     4    0     2     2      4
## 2910   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 2911   Familiar No Retornable     1      NA    NA    NA    0    NA    NA      0
## 2912   Familiar No Retornable    NA       0    NA    NA   NA     0    NA      0
## 2913   Familiar No Retornable     1       1    NA    NA    0     0     0     NA
## 2914   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2915   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2916   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA      0
## 2917   Familiar No Retornable     1      NA     1     1   NA    NA    NA     NA
## 2918   Familiar No Retornable    NA       1     1     6   NA    NA     1     NA
## 2919   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2920   Familiar No Retornable    NA      NA    NA    NA   NA     1     5      1
## 2921   Familiar No Retornable    NA      NA     0     0   NA     0    NA     NA
## 2922   Familiar No Retornable    NA      NA    NA    NA    1     1     0     NA
## 2923   Familiar No Retornable    NA      NA    NA    NA   NA     1     2     NA
## 2924   Familiar No Retornable     2      NA    NA    NA   NA    NA     1     NA
## 2925   Familiar No Retornable     4       2     4     2   NA     1     6      0
## 2926   Familiar No Retornable    NA       0    NA     2   NA    NA     0     NA
## 2927   Familiar No Retornable    NA      NA    NA    NA    0    NA     0     NA
## 2928   Familiar No Retornable    NA       0    NA    NA   NA    NA     2     NA
## 2929   Familiar No Retornable    NA      NA    NA    NA    2     1    NA     NA
## 2930   Familiar No Retornable    NA      NA    NA     1   NA     0    NA      1
## 2931   Familiar No Retornable    NA      NA    28    NA   NA    NA     4      0
## 2932   Familiar No Retornable    NA      NA    NA     2   NA     2    NA     NA
## 2933   Familiar No Retornable     3       2     2    NA   NA    NA     2      3
## 2934   Familiar No Retornable     2      NA    NA    NA   NA    NA    NA     NA
## 2935   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2936   Familiar No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 2937   Familiar No Retornable    NA       2    NA     2   NA     2    NA      0
## 2938   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2939   Familiar No Retornable     2       1     1     1   NA     3     3     NA
## 2940   Familiar No Retornable    NA       1     1     0   NA     1    NA      0
## 2941   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 2942   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 2943   Familiar No Retornable    NA       2    NA     2   NA     2    NA      0
## 2944   Familiar No Retornable    NA       0    NA     0   NA    NA    NA     NA
## 2945   Familiar No Retornable    NA      NA     0    NA    0    NA    NA     NA
## 2946   Familiar No Retornable    NA       0     0    NA   NA    NA     3      1
## 2947   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA      0
## 2948   Familiar No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 2949   Familiar No Retornable    NA       0     0     2   NA     0    NA      2
## 2950   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2951   Familiar No Retornable     1      NA    NA     1   NA     0    NA     NA
## 2952   Familiar No Retornable     0      NA     2     2   NA    NA    NA     NA
## 2953   Familiar No Retornable    NA       1     1    NA    2    NA     1      0
## 2954   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2955   Familiar No Retornable    NA      NA    NA     4   NA    NA     0      0
## 2956   Familiar No Retornable    NA      NA    NA    NA    0     0     0      1
## 2957   Familiar No Retornable     2       1    NA    NA   NA     1    NA      1
## 2958   Familiar No Retornable     5      NA     3    NA    1     0     0      2
## 2959   Familiar No Retornable     1       1     1     1   NA    NA    NA      1
## 2960   Familiar No Retornable     0      NA     1     0   NA    NA     3      1
## 2961   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2962   Familiar No Retornable    NA      NA    NA    NA    1     0     3      3
## 2963   Familiar No Retornable     0      25    NA    NA   NA     0     1     NA
## 2964   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2965   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 2966   Familiar No Retornable    NA      NA    NA     4   NA    NA    NA     NA
## 2967   Familiar No Retornable     0      NA    NA    NA   NA    NA     0     NA
## 2968   Familiar No Retornable    NA      12    NA    NA   NA    NA    NA     NA
## 2969   Familiar No Retornable    NA      NA     6    NA   NA     0    NA     NA
## 2970   Familiar No Retornable     0      NA    NA     0   NA     0    NA     NA
## 2971   Familiar No Retornable     0      NA    NA    NA   NA     1     1      1
## 2972   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2973   Familiar No Retornable     2       2    NA    NA    0    NA    NA     NA
## 2974   Familiar No Retornable    NA       0     0    NA    0     0    NA     NA
## 2975   Familiar No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 2976   Familiar No Retornable     1       6    NA    NA   NA    NA    NA      0
## 2977   Familiar No Retornable    NA      NA    NA    NA   NA    NA     2      1
## 2978   Familiar No Retornable    NA      NA     0     0   NA     0    NA     NA
## 2979   Familiar No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 2980   Familiar No Retornable     2       1     0    NA    2     2     1      1
## 2981   Familiar No Retornable    NA       1    NA    NA    1    NA     0      1
## 2982   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2983   Familiar No Retornable     1       1     2     0    1     1     1      1
## 2984   Familiar No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 2985   Familiar No Retornable     1      NA     0    NA   NA     1     0      1
## 2986   Familiar No Retornable    NA      NA    NA     0   NA     0     0      0
## 2987   Familiar No Retornable    NA      NA    NA    NA   NA     1    NA      0
## 2988   Familiar No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 2989   Familiar No Retornable     1       0     0     0    0     1     0     NA
## 2990   Familiar No Retornable    NA      NA    NA    NA    0    NA     1     NA
## 2991   Familiar No Retornable    NA       2     3     3   NA     2     3      4
## 2992   Familiar No Retornable     0       0     1     1   NA     1     1     NA
## 2993   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      4
## 2994   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 2995   Familiar No Retornable     2       2     2    NA   NA    NA    NA      2
## 2996   Familiar No Retornable     1      NA     1     0   NA     0     1     NA
## 2997   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 2998   Familiar No Retornable     1      NA     1    NA   NA     2     1      2
## 2999   Familiar No Retornable     0      NA     1    NA   NA    NA     0     NA
## 3000   Familiar No Retornable    NA       1     2     0    5     3     3     NA
## 3001   Familiar No Retornable    NA      NA    NA     3    3     3     3      3
## 3002   Familiar No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3003   Familiar No Retornable     3       0     1    NA    4    NA     2      3
## 3004   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 3005   Familiar No Retornable     1      NA     2     0   NA    NA     0      1
## 3006   Familiar No Retornable     0       0     1    NA   NA    NA    NA      0
## 3007   Familiar No Retornable    NA      10    NA    NA    2    NA    NA     NA
## 3008   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3009   Familiar No Retornable    NA       1    NA     1   NA    NA     1      0
## 3010   Familiar No Retornable     2      NA     1    NA   NA     1    NA      3
## 3011   Familiar No Retornable    NA      NA    NA    NA   NA     0     1     NA
## 3012   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 3013   Familiar No Retornable    NA      NA    NA    NA    0    NA     0     NA
## 3014   Familiar No Retornable     4       3     0    NA   NA    NA     4      9
## 3015   Familiar No Retornable    NA       0    NA     1    1     0    NA      1
## 3016   Familiar No Retornable    NA       1     0    NA   NA     1     1      1
## 3017   Familiar No Retornable     0       2     1    NA   NA     1     1      1
## 3018   Familiar No Retornable     1       0     3     1   NA     2     1      2
## 3019   Familiar No Retornable    NA       1    NA    NA    1    NA    NA      1
## 3020   Familiar No Retornable     1      NA     0    NA   NA    NA     1      1
## 3021   Familiar No Retornable     0       0     0    NA   NA     0    NA     NA
## 3022   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA      3
## 3023   Familiar No Retornable    NA      NA    NA    NA   NA     0     0      1
## 3024   Familiar No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 3025   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3026   Familiar No Retornable    NA      NA    NA     3   NA    NA     1     NA
## 3027   Familiar No Retornable    NA      40    NA    NA   NA    NA    NA     NA
## 3028   Familiar No Retornable    NA      NA    NA     1   NA    NA     0      0
## 3029   Familiar No Retornable    NA      20    10    NA   NA    NA    NA      2
## 3030   Familiar No Retornable    NA       1    NA    NA   NA     1     1      1
## 3031   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 3032   Familiar No Retornable    NA       2     4     0    1     0    NA      0
## 3033   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 3034   Familiar No Retornable     1       1    NA    NA   NA     2    NA      1
## 3035   Familiar No Retornable    NA       0     1    NA   NA    NA    NA     NA
## 3036   Familiar No Retornable     3       0     0    NA   NA    NA     0     NA
## 3037   Familiar No Retornable     1      NA     4    NA    1     0     1      1
## 3038   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 3039   Familiar No Retornable     5      NA     5     1    5     1     1      1
## 3040   Familiar No Retornable    NA      NA    NA    NA   NA     2    NA     NA
## 3041   Familiar No Retornable    NA      NA    NA    14   NA    NA    NA     NA
## 3042   Familiar No Retornable    NA       0     0     1   NA     2     1      0
## 3043   Familiar No Retornable     4      NA    NA    NA   NA    NA    NA     NA
## 3044   Familiar No Retornable     4       2     0    NA   NA    NA    NA      0
## 3045   Familiar No Retornable     1       3     0    NA    0     0    NA      1
## 3046   Familiar No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3047   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 3048   Familiar No Retornable    NA      NA    NA    NA   NA    NA     1      0
## 3049   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 3050   Familiar No Retornable    NA      NA     1     2   NA    NA    NA     NA
## 3051   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3052   Familiar No Retornable    NA      NA     5    NA   NA    NA    NA     NA
## 3053   Familiar No Retornable     3       2    NA    NA   NA     2     0      4
## 3054   Familiar No Retornable    NA      NA    NA    NA    1     0     1     NA
## 3055   Familiar No Retornable    NA       1     1     1    1     0     0     NA
## 3056   Familiar No Retornable     2       1     1     1    2     1    NA      1
## 3057   Familiar No Retornable    NA       0     1     0   NA     0     0      1
## 3058   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3059   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3060   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3061   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3062   Familiar No Retornable     0       1    NA    NA   NA     0     1     NA
## 3063   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA      2
## 3064   Familiar No Retornable    NA       1    NA    NA    0     1    NA      0
## 3065   Familiar No Retornable    NA      NA    NA    NA    1     0     0     NA
## 3066   Familiar No Retornable     1       1    NA     0   NA     1     1      1
## 3067   Familiar No Retornable    NA      NA    NA    NA   NA    NA     2     NA
## 3068   Familiar No Retornable    NA       0    NA     0   NA     1    NA      0
## 3069   Familiar No Retornable     0      NA     1     1   NA     1    NA      0
## 3070   Familiar No Retornable    NA      NA    NA    NA   NA     2    NA     NA
## 3071   Familiar No Retornable     1       1    NA    NA    5    NA     4      1
## 3072   Familiar No Retornable    NA      NA     1    NA   NA    NA     0     NA
## 3073   Familiar No Retornable    NA       1     0     1    0     0     1      1
## 3074   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 3075   Familiar No Retornable     0      NA     0     0    0     1     1      1
## 3076   Familiar No Retornable    NA      NA    NA    NA    1     2     0      2
## 3077   Familiar No Retornable     0       1     0     0    1     1     0      1
## 3078   Familiar No Retornable     1      NA     1     0   NA    NA    NA     NA
## 3079   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3080   Familiar No Retornable    NA       6    NA    NA   NA    NA    NA     NA
## 3081   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 3082   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3083   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3084   Familiar No Retornable     0       1     1    NA   NA    NA     2     NA
## 3085   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 3086   Familiar No Retornable     2      NA    NA    NA    0     1     1     NA
## 3087   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3088   Familiar No Retornable     6      NA    NA    NA   NA    NA    NA     NA
## 3089   Familiar No Retornable     6       3    NA    NA    6     2     5     NA
## 3090   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3091   Familiar No Retornable     4       0     4    NA    8     4    NA      8
## 3092   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3093   Familiar No Retornable     2       1    NA    NA   NA    NA    NA     NA
## 3094   Familiar No Retornable     3       2     1     4   NA    NA    NA      3
## 3095   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3096   Familiar No Retornable    NA      NA    NA    NA   NA    NA     2      4
## 3097   Familiar No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 3098   Familiar No Retornable    NA      NA    NA     1   NA    NA     0      1
## 3099   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      2
## 3100   Familiar No Retornable     3       1     1     2   NA     0     3      3
## 3101   Familiar No Retornable     1      NA    NA    NA   NA     0     3      0
## 3102   Familiar No Retornable     4       1    NA    NA    0     1    NA      1
## 3103   Familiar No Retornable     0      NA    NA    NA   NA     2    NA     NA
## 3104   Familiar No Retornable     1       1     1     2   NA     0     1      1
## 3105   Familiar No Retornable     1      NA     1    NA   NA     1    NA     NA
## 3106   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3107   Familiar No Retornable     1       0     1     1   NA     1    NA     NA
## 3108   Familiar No Retornable     2      NA     2    NA   NA     2     1      2
## 3109   Familiar No Retornable     6       2    NA     8   NA    NA     4     NA
## 3110   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA      0
## 3111   Familiar No Retornable    NA      NA    NA    NA   NA     0     0      4
## 3112   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3113   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 3114   Familiar No Retornable     5       1     6    NA   NA     0     3      3
## 3115   Familiar No Retornable    NA       2    NA    NA    4    NA    NA     NA
## 3116   Familiar No Retornable    NA       4     4     6   NA     4     2      4
## 3117   Familiar No Retornable    NA      NA     2    NA    0    NA    NA     NA
## 3118   Familiar No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3119   Familiar No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 3120   Familiar No Retornable    NA      NA     0    NA    0     0     1     NA
## 3121   Familiar No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3122   Familiar No Retornable    NA      NA    NA     1    1    NA    NA     NA
## 3123   Familiar No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 3124   Familiar No Retornable     2       2    NA    NA   NA    NA     2     NA
## 3125   Familiar No Retornable     6       2     2     1    1     2    NA     10
## 3126   Familiar No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3127   Familiar No Retornable     1       2     4    NA   NA    NA    NA      0
## 3128   Familiar No Retornable    NA       2    NA    40   NA     1     2      2
## 3129   Familiar No Retornable     7       2     2     6   NA    NA    NA     NA
## 3130   Familiar No Retornable     1       1    NA    NA   NA     1     2      3
## 3131   Familiar No Retornable     1      NA     1    NA    0     1    NA     NA
## 3132 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3133 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3134 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3135 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3136 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3137 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3138 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3139 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3140 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3141 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3142 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3143 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3144 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3145 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3146 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3147 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3148 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3149 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3150 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3151 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3152 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3153 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3154 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3155 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3156 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3157 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3158 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3159 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3160 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3161 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3162 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3163 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3164 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3165 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3166 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3167 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3168 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3169 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3170 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3171 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3172 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3173 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3174 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3175 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3176 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3177 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3178 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3179 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3180 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3181 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3182 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3183 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3184 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3185 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3186 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3187 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3188 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3189 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3190 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3191 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3192 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3193 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3194 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3195 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3196 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3197 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3198 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3199 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3200 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3201 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3202 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3203 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3204 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3205 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3206 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3207 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3208 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3209 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3210 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3211 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3212 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3213 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3214 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3215 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3216 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3217 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3218 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3219 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3220 Individual No Retornable    NA       1    NA    NA    0     0    NA     NA
## 3221 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3222 Individual No Retornable     0       1     1    NA   NA    NA    NA     NA
## 3223 Individual No Retornable     1       1     1    NA    1     1     2     NA
## 3224 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3225 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3226 Individual No Retornable     0      NA    NA    NA   NA     1    NA     NA
## 3227 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3228 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3229 Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 3230 Individual No Retornable    NA      NA     0    NA   NA     0     0     NA
## 3231 Individual No Retornable    NA      NA    NA    NA    1    NA     1     NA
## 3232 Individual No Retornable     0       0     0    NA    0     0     1     NA
## 3233 Individual No Retornable     1      NA     0    NA   NA    NA     0     NA
## 3234 Individual No Retornable    NA      NA    NA     3   NA    NA    NA     NA
## 3235 Individual No Retornable    NA       0     0    NA   NA     0    NA     NA
## 3236 Individual No Retornable     1       1    NA    NA   NA    NA    NA     NA
## 3237 Individual No Retornable    NA      NA     0    NA   NA     0     0     NA
## 3238 Individual No Retornable    NA       1    NA    NA   NA    NA     1     NA
## 3239 Individual No Retornable     0       1    NA    NA    1     1     0     NA
## 3240 Individual No Retornable    NA      NA     0    NA   NA    NA     0      0
## 3241 Individual No Retornable     1      NA     0     0    0     1     0     NA
## 3242 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3243 Individual No Retornable    NA       1    NA    NA   NA     0     1     NA
## 3244 Individual No Retornable     1      NA     0    NA    0    NA    NA     NA
## 3245 Individual No Retornable    NA      NA     0    NA    0     0    NA     NA
## 3246 Individual No Retornable    NA       1     0    NA    1    NA    NA     NA
## 3247 Individual No Retornable     0       1    NA    NA    0    NA    NA     NA
## 3248 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3249 Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 3250 Individual No Retornable    NA       0     0    NA   NA    NA     0      0
## 3251 Individual No Retornable     0       1    NA    NA    0     1    NA     NA
## 3252 Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 3253 Individual No Retornable     0       0    NA    NA    0    NA    NA     NA
## 3254 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3255 Individual No Retornable    NA       0     1     0    1     0     1     NA
## 3256 Individual No Retornable     2       0     0    NA    0     0    NA     NA
## 3257 Individual No Retornable     0      NA    NA    NA    0    NA    NA     NA
## 3258 Individual No Retornable    NA       0    NA     0    0     1     0     NA
## 3259 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3260 Individual No Retornable    NA      NA    NA     0    0     1     0     NA
## 3261 Individual No Retornable    NA       0     1     0    1     1     3     NA
## 3262 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3263 Individual No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 3264 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3265 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3266 Individual No Retornable    NA      NA    NA     0    0    NA     1     NA
## 3267 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3268 Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 3269 Individual No Retornable     1       0     0     0    0     0     0     NA
## 3270 Individual No Retornable     0      NA     0    NA   NA     0     0     NA
## 3271 Individual No Retornable     1       1    NA    NA    0     1     0     NA
## 3272 Individual No Retornable     0       0     1    NA    0    NA    NA     NA
## 3273 Individual No Retornable     0       0    NA    NA    0     0    NA     NA
## 3274 Individual No Retornable    NA      NA    NA    NA    0     1     0     NA
## 3275 Individual No Retornable     0      NA    NA    NA    0    NA    NA     NA
## 3276 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3277 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3278 Individual No Retornable     0       0    NA     1   NA     0    NA     NA
## 3279 Individual No Retornable     0       1     0    NA   NA    NA     0     NA
## 3280 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3281 Individual No Retornable     1      NA     1    NA   NA    NA    NA      0
## 3282 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3283 Individual No Retornable    NA      NA     0    NA    0     0    NA     NA
## 3284 Individual No Retornable     0       0    NA    NA    0    NA     0     NA
## 3285 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 3286 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3287 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3288 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3289 Individual No Retornable    NA       0    NA    NA    1    NA    NA     NA
## 3290 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3291 Individual No Retornable     0      NA    NA    NA    0     1    NA     NA
## 3292 Individual No Retornable     0       0    NA    NA   NA     0    NA     NA
## 3293 Individual No Retornable    NA      NA     0    NA   NA     0     1     NA
## 3294 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3295 Individual No Retornable    NA      NA    NA     0   NA     0    NA     NA
## 3296 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3297 Individual No Retornable     1      NA     1    NA    1     1    NA     NA
## 3298 Individual No Retornable     0       0    NA    NA    0     0     0     NA
## 3299 Individual No Retornable     2      NA    NA    NA   NA    NA    NA     NA
## 3300 Individual No Retornable    NA       0    NA    NA   NA     0     1     NA
## 3301 Individual No Retornable     0       1     1    NA    1     1    NA     NA
## 3302 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3303 Individual No Retornable     1       0     0    NA    0     0     0     NA
## 3304 Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 3305 Individual No Retornable     1      NA     2    NA   NA    NA    NA     NA
## 3306 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3307 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 3308 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3309 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3310 Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 3311 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3312 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3313 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3314 Individual No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 3315 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3316 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3317 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3318 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3319 Individual No Retornable     1       1     0    NA   NA    NA    NA     NA
## 3320 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3321 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3322 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3323 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3324 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3325 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3326 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3327 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 3328 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3329 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3330 Individual No Retornable    NA       1     1    NA   NA    NA    NA     NA
## 3331 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3332 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3333 Individual No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 3334 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 3335 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3336 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3337 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3338 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3339 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3340 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3341 Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 3342 Individual No Retornable    NA      NA    NA     3   NA    NA    NA     NA
## 3343 Individual No Retornable    NA      NA    NA     4   NA    NA    NA     NA
## 3344 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3345 Individual No Retornable    NA       0    NA     0   NA    NA    NA     NA
## 3346 Individual No Retornable    NA      NA     0    NA    0    NA     0     NA
## 3347 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3348 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3349 Individual No Retornable    NA      NA     0    NA   NA    NA     0     NA
## 3350 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3351 Individual No Retornable    NA      NA     3    NA   NA    NA    NA     NA
## 3352 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3353 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3354 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3355 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3356 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3357 Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 3358 Individual No Retornable     1       1    NA    NA   NA    NA    NA     NA
## 3359 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3360 Individual No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 3361 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3362 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3363 Individual No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 3364 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3365 Individual No Retornable    NA      NA     0    NA    0    NA    NA     NA
## 3366 Individual No Retornable     0       0     0    NA   NA    NA    NA     NA
## 3367 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3368 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3369 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3370 Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 3371 Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 3372 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3373 Individual No Retornable    NA       0    NA    NA   NA     1     1     NA
## 3374 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3375 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3376 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3377 Individual No Retornable    NA       0    NA     0   NA    NA    NA     NA
## 3378 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3379 Individual No Retornable    NA       0     0    NA   NA    NA    NA     NA
## 3380 Individual No Retornable    NA      NA     2    NA   NA    NA    NA     NA
## 3381 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3382 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3383 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3384 Individual No Retornable     0      NA    NA    NA   NA     0     0     NA
## 3385 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3386 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3387 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3388 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3389 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3390 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3391 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3392 Individual No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 3393 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3394 Individual No Retornable    NA       1     1    NA   NA    NA    NA     NA
## 3395 Individual No Retornable    NA      NA    NA    NA   NA     1     0     NA
## 3396 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3397 Individual No Retornable    NA       0     0    NA    0     0    NA     NA
## 3398 Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 3399 Individual No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 3400 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3401 Individual No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 3402 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3403 Individual No Retornable     1       1     1     0   NA     0     0     NA
## 3404 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3405 Individual No Retornable    NA       2    NA    NA   NA    NA    NA     NA
## 3406 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3407 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3408 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3409 Individual No Retornable     1       0    NA    NA   NA    NA    NA     NA
## 3410 Individual No Retornable    NA       0    NA     0   NA    NA    NA     NA
## 3411 Individual No Retornable    NA       0     0    NA   NA    NA    NA     NA
## 3412 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 3413 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3414 Individual No Retornable     0      NA    NA     1   NA    NA    NA     NA
## 3415 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3416 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3417 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3418 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3419 Individual No Retornable     1       1    NA    NA    0    NA    NA     NA
## 3420 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3421 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3422 Individual No Retornable     0      NA    NA    NA    0    NA     0     NA
## 3423 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3424 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3425 Individual No Retornable    NA       0    NA    NA   NA     0    NA     NA
## 3426 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3427 Individual No Retornable    NA      NA    NA     0   NA     0    NA     NA
## 3428 Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 3429 Individual No Retornable    NA      NA     0     0   NA     0    NA     NA
## 3430 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3431 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3432 Individual No Retornable     0       1     2    NA    1     1     1      0
## 3433 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3434 Individual No Retornable    NA       0    NA     0   NA    NA    NA     NA
## 3435 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3436 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3437 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3438 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3439 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3440 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3441 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3442 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3443 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3444 Individual No Retornable     0      NA    NA     0   NA    NA    NA     NA
## 3445 Individual No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 3446 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3447 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3448 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3449 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3450 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3451 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3452 Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 3453 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3454 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3455 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 3456 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3457 Individual No Retornable     1       2    NA    NA    1     3     4     NA
## 3458 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3459 Individual No Retornable     2      NA    NA    NA   NA    NA    NA     NA
## 3460 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 3461 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3462 Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 3463 Individual No Retornable    NA      NA    NA    NA    0    NA     0     NA
## 3464 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3465 Individual No Retornable     0       2    NA    NA   NA    NA    NA     NA
## 3466 Individual No Retornable    NA      NA     2    NA   NA    NA     1     NA
## 3467 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3468 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3469 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3470 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3471 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3472 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3473 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3474 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3475 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3476 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3477 Individual No Retornable    NA       1     0    NA   NA    NA    NA     NA
## 3478 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3479 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3480 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3481 Individual No Retornable    NA       0    NA    NA   NA    NA     3     NA
## 3482 Individual No Retornable    NA       0    NA    NA   NA     0    NA     NA
## 3483 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3484 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3485 Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 3486 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3487 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3488 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3489 Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 3490 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3491 Individual No Retornable    NA      NA     1    NA    0    NA    NA     NA
## 3492 Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 3493 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3494 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3495 Individual No Retornable    NA       0    NA    NA   NA     1    NA     NA
## 3496 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3497 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3498 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3499 Individual No Retornable    NA       0     0    NA   NA    NA    NA     NA
## 3500 Individual No Retornable     0       0     0    NA   NA     0     0     NA
## 3501 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3502 Individual No Retornable    NA      NA    NA    NA    0     0     1     NA
## 3503 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3504 Individual No Retornable     0      NA     1    NA    0     0    NA     NA
## 3505 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3506 Individual No Retornable    NA       1    NA    NA    0     0    NA     NA
## 3507 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3508 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3509 Individual No Retornable    NA       1    NA    NA    0    NA    NA     NA
## 3510 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3511 Individual No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 3512 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3513 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3514 Individual No Retornable     0       0     0    NA    1     0     0     NA
## 3515 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3516 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3517 Individual No Retornable     1      NA    NA     0    0     0    NA     NA
## 3518 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3519 Individual No Retornable    NA      NA    NA    NA    0    NA     0     NA
## 3520 Individual No Retornable    NA      NA    NA    NA    0    NA     0     NA
## 3521 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3522 Individual No Retornable    NA       0     0    NA   NA     1    NA     NA
## 3523 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3524 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3525 Individual No Retornable    NA       0    NA    NA   NA    NA     1     NA
## 3526 Individual No Retornable    NA       0    NA    NA    1    NA    NA     NA
## 3527 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3528 Individual No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 3529 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3530 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3531 Individual No Retornable    NA      NA     0    NA   NA    NA     0     NA
## 3532 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3533 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3534 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3535 Individual No Retornable    NA      NA    NA    NA    0     0     0     NA
## 3536 Individual No Retornable     1       0     0     0   NA    NA    NA     NA
## 3537 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3538 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3539 Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 3540 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3541 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3542 Individual No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 3543 Individual No Retornable    NA       1    NA    NA    0    NA     0     NA
## 3544 Individual No Retornable     0      NA    NA    NA    0    NA    NA     NA
## 3545 Individual No Retornable    NA       0     0    NA    0    NA    NA     NA
## 3546 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3547 Individual No Retornable     0      NA    NA    NA    0     0     0     NA
## 3548 Individual No Retornable    NA      NA     0    NA   NA     1     0     NA
## 3549 Individual No Retornable    NA       0     0    NA   NA    NA    NA     NA
## 3550 Individual No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 3551 Individual No Retornable    NA      NA    NA    NA    2    NA    NA     NA
## 3552 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3553 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3554 Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 3555 Individual No Retornable     0      NA     0    NA    0     0     0     NA
## 3556 Individual No Retornable     1       0     1    NA    0     0    NA     NA
## 3557 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3558 Individual No Retornable     0       0    NA    NA   NA    NA     0     NA
## 3559 Individual No Retornable     0      NA     0    NA   NA    NA    NA     NA
## 3560 Individual No Retornable     1       0     0    NA    0    NA     0     NA
## 3561 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3562 Individual No Retornable     0      NA    NA    NA   NA    NA     1     NA
## 3563 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3564 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3565 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3566 Individual No Retornable     1      NA     1    NA   NA     1    NA     NA
## 3567 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3568 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3569 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3570 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3571 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3572 Individual No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 3573 Individual No Retornable     0      NA     0    NA    0     0     0     NA
## 3574 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3575 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3576 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3577 Individual No Retornable    NA       0     0    NA   NA    NA    NA     NA
## 3578 Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 3579 Individual No Retornable     0      NA    NA    NA    0    NA    NA     NA
## 3580 Individual No Retornable    NA      NA     0    NA   NA    NA     0     NA
## 3581 Individual No Retornable     1      NA     0    NA    0    NA    NA     NA
## 3582 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3583 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3584 Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 3585 Individual No Retornable     0       1     0    NA   NA    NA    NA     NA
## 3586 Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 3587 Individual No Retornable    NA       1    NA     0   NA     0    NA     NA
## 3588 Individual No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 3589 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3590 Individual No Retornable     0      NA    NA    NA    0    NA    NA     NA
## 3591 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3592 Individual No Retornable    NA      NA    NA     0    0    NA    NA     NA
## 3593 Individual No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 3594 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3595 Individual No Retornable    NA      NA     0    NA   NA    NA     0     NA
## 3596 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3597 Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 3598 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3599 Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 3600 Individual No Retornable     0      NA    NA    NA   NA     1     0     NA
## 3601 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3602 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3603 Individual No Retornable    NA      NA     0    NA    1    NA    NA     NA
## 3604 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3605 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3606 Individual No Retornable    NA       1    NA    NA    0    NA    NA     NA
## 3607 Individual No Retornable    NA      NA     0    NA    1     0    NA     NA
## 3608 Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 3609 Individual No Retornable     0      NA    NA    NA    0     1    NA      0
## 3610 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3611 Individual No Retornable    NA      NA    NA    NA   NA     3    NA     NA
## 3612 Individual No Retornable    NA      NA    NA     0   NA    NA     0     NA
## 3613 Individual No Retornable     0      NA    NA     0   NA    NA    NA     NA
## 3614 Individual No Retornable    NA       0     0    NA   NA    NA     0     NA
## 3615 Individual No Retornable    NA      NA    NA     0   NA    NA     0     NA
## 3616 Individual No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 3617 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3618 Individual No Retornable     0      NA    NA    NA    0    NA     0     NA
## 3619 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3620 Individual No Retornable     0      NA     1    NA   NA    NA    NA     NA
## 3621 Individual No Retornable     0      NA    NA    NA   NA     0    NA     NA
## 3622 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3623 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3624 Individual No Retornable    NA      NA    NA    NA    0     0     0     NA
## 3625 Individual No Retornable     1       1    NA    NA    3    NA    NA     NA
## 3626 Individual No Retornable    NA      NA     0    NA   NA     0    NA     NA
## 3627 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3628 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3629 Individual No Retornable    NA      NA    NA    NA   NA     0     1      0
## 3630 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3631 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3632 Individual No Retornable     0      NA    NA    NA    0     0     1     NA
## 3633 Individual No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 3634 Individual No Retornable    NA      NA    NA    NA    0     1     0     NA
## 3635 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3636 Individual No Retornable    NA      NA    NA    NA    0    NA     0     NA
## 3637 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3638 Individual No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 3639 Individual No Retornable    NA      NA    NA     1    0    NA    NA     NA
## 3640 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3641 Individual No Retornable    NA       0    NA    NA    0    NA    NA     NA
## 3642 Individual No Retornable     0      NA    NA    NA    1    NA    NA     NA
## 3643 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3644 Individual No Retornable    NA      NA     0     0    1     0    NA     NA
## 3645 Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 3646 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3647 Individual No Retornable     0      NA    NA    NA    1    NA    NA     NA
## 3648 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3649 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3650 Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 3651 Individual No Retornable     0       1     0    NA    0     0     0     NA
## 3652 Individual No Retornable    NA       0    NA    NA   NA     0    NA     NA
## 3653 Individual No Retornable     0       0     0    NA    0     0     1     NA
## 3654 Individual No Retornable    NA       0    NA    NA    0    NA    NA     NA
## 3655 Individual No Retornable     0       0     0    NA    0     0    NA     NA
## 3656 Individual No Retornable     1       0     0    NA   NA    NA     0     NA
## 3657 Individual No Retornable     0       0     0    NA    1     1    NA     NA
## 3658 Individual No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 3659 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3660 Individual No Retornable     0       1    NA     0    1     0     0     NA
## 3661 Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 3662 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3663 Individual No Retornable    NA      NA    NA    NA    1     0    NA     NA
## 3664 Individual No Retornable    NA      NA    NA     0    1    NA    NA     NA
## 3665 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3666 Individual No Retornable    NA      NA    NA    NA    0     1    NA     NA
## 3667 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3668 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3669 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3670 Individual No Retornable     0       0    NA    NA    0     0     0     NA
## 3671 Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 3672 Individual No Retornable    NA       0    NA    NA   NA     0    NA     NA
## 3673 Individual No Retornable    NA       0     0     0   NA     0     0     NA
## 3674 Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 3675 Individual No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 3676 Individual No Retornable     0       0    NA    NA   NA     0     0     NA
## 3677 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3678 Individual No Retornable     0      NA    NA    NA   NA     0    NA     NA
## 3679 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3680 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3681 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3682 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3683 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3684 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3685 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3686 Individual No Retornable     1      NA     0     0   NA     0    NA     NA
## 3687 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3688 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3689 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3690 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3691 Individual No Retornable     5      NA    NA    NA    2     0    NA     NA
## 3692 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3693 Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 3694 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3695 Individual No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 3696 Individual No Retornable     0      NA    NA     0   NA     1     0     NA
## 3697 Individual No Retornable    NA      NA    NA    NA    0     0     0     NA
## 3698 Individual No Retornable     0       0    NA    NA    0     0     0     NA
## 3699 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3700 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3701 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3702 Individual No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 3703 Individual No Retornable    NA      NA     1    NA    1    NA    NA     NA
## 3704 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3705 Individual No Retornable     0       0    NA    NA   NA    NA     0     NA
## 3706 Individual No Retornable    NA       0    NA     0   NA    NA    NA     NA
## 3707 Individual No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 3708 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3709 Individual No Retornable     0       0    NA    NA   NA    NA    NA     NA
## 3710 Individual No Retornable     1      NA     2    NA   NA    NA    NA     NA
## 3711 Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 3712 Individual No Retornable     0      NA     1    NA   NA    NA    NA     NA
## 3713 Individual No Retornable     2      NA    NA     1   NA    NA    NA     NA
## 3714 Individual No Retornable     1       1     1     2    3     2     3     NA
## 3715 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3716 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3717 Individual No Retornable     1       3     1     1    2     1     1      1
## 3718 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3719 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3720 Individual No Retornable     1      NA     1     1    2     2     1      1
## 3721 Individual No Retornable     2       1     2     0    2     1     2      1
## 3722 Individual No Retornable     1       1     1     0    2     2     0      1
## 3723 Individual No Retornable     1       1     0     0    2     1    NA      2
## 3724 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3725 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3726 Individual No Retornable    NA      NA     1     1    1     1     1     NA
## 3727 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3728 Individual No Retornable     1       1     1     1    1     1     0      0
## 3729 Individual No Retornable     2       3    NA     2    1     1     2     NA
## 3730 Individual No Retornable     1       1    NA     1   NA    NA    NA     NA
## 3731 Individual No Retornable     3       3     2     4    2     2     2     NA
## 3732 Individual No Retornable     1       1     0     0   NA    NA    NA     NA
## 3733 Individual No Retornable     2       2     2     3    1     3    NA      2
## 3734 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3735 Individual No Retornable     1       0     1     1    1     2     0      1
## 3736 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3737 Individual No Retornable     1       0    NA     1    0     1     2      0
## 3738 Individual No Retornable     0       2     0     1    1     1     1      2
## 3739 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3740 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3741 Individual No Retornable     0      NA     0     1    1     0     0     NA
## 3742 Individual No Retornable     2       1     2     2    2     2     1      3
## 3743 Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 3744 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3745 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3746 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3747 Individual No Retornable    NA       1     1     0    1    NA    NA      0
## 3748 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3749 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3750 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3751 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3752 Individual No Retornable     1       1     1     1   NA    NA     0     NA
## 3753 Individual No Retornable     1      NA    NA    NA   NA    NA    NA     NA
## 3754 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3755 Individual No Retornable     1      NA    NA     0   NA     0    NA     NA
## 3756 Individual No Retornable     1       2     3     1    3     1     1      1
## 3757 Individual No Retornable     0      NA     0     1   NA    NA     1      2
## 3758 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3759 Individual No Retornable    NA       1     0    NA   NA    NA     1     NA
## 3760 Individual No Retornable    NA      NA     0     1    1     1    NA      1
## 3761 Individual No Retornable     1       1     1     0    0    NA    NA     NA
## 3762 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 3763 Individual No Retornable     3       2     3     2    3     3     4      3
## 3764 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3765 Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 3766 Individual No Retornable    NA       2     1    NA   NA    NA     0     NA
## 3767 Individual No Retornable    NA      NA    NA    NA   NA     2     0     NA
## 3768 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3769 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3770 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 3771 Individual No Retornable    NA      NA    NA    NA   NA    NA     1     NA
## 3772 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 3773 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3774 Individual No Retornable     0       0     0     1   NA     1    NA      1
## 3775 Individual No Retornable     2       0     1     1    1     1     1      3
## 3776 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3777 Individual No Retornable     1      NA    NA    NA   NA    NA    NA      1
## 3778 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3779 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3780 Individual No Retornable    NA      NA    NA    NA   NA     1     0     NA
## 3781 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3782 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3783 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 3784 Individual No Retornable     0       0     0     1    0     1     2      1
## 3785 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3786 Individual No Retornable     0      NA    NA     1    0     1     1     NA
## 3787 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 3788 Individual No Retornable     0       0     0     0    1     0     0      1
## 3789 Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 3790 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 3791 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3792 Individual No Retornable    NA      NA     2     2    1     2     0      2
## 3793 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3794 Individual No Retornable    NA       1    NA    NA   NA    NA    NA     NA
## 3795 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3796 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3797 Individual No Retornable    NA      NA     1    NA   NA    NA    NA     NA
## 3798 Individual No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 3799 Individual No Retornable     1      NA     1    NA    0    NA     1     NA
## 3800 Individual No Retornable     0      NA    NA    NA   NA    NA    NA     NA
## 3801 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3802 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3803 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3804 Individual No Retornable     1      NA     2     0    1     1     1      1
## 3805 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3806 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 3807 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3808 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3809 Individual No Retornable    NA      NA    NA     0    0     0    NA      0
## 3810 Individual No Retornable    NA       0     1     1    1     1     0      0
## 3811 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3812 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3813 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3814 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3815 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3816 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3817 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3818 Individual No Retornable    NA      NA     0    NA   NA    NA    NA      1
## 3819 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 3820 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 3821 Individual No Retornable    NA       0    NA    NA    0    NA    NA     NA
## 3822 Individual No Retornable     1       0     1     1    2     2     2      1
## 3823 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3824 Individual No Retornable     0       0     0     0    0    NA     0     NA
## 3825 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 3826 Individual No Retornable    NA      NA    NA     0    0    NA     0      0
## 3827 Individual No Retornable     0       0     1     1    1     2     1      1
## 3828 Individual No Retornable    NA       0     0     0   NA     0     0      0
## 3829 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3830 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3831 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3832 Individual No Retornable    NA      NA    NA    NA    0     0     0     NA
## 3833 Individual No Retornable    NA       0    NA    NA    0    NA    NA     NA
## 3834 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3835 Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 3836 Individual No Retornable    NA       0     0    NA   NA    NA    NA     NA
## 3837 Individual No Retornable    NA       0    NA    NA   NA    NA    NA      0
## 3838 Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 3839 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 3840 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 3841 Individual No Retornable     0       0    NA    NA    1    NA    NA     NA
## 3842 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3843 Individual No Retornable    NA       0    NA    NA   NA    NA    NA      0
## 3844 Individual No Retornable    NA       0    NA     0    0    NA    NA     NA
## 3845 Individual No Retornable    NA      NA    NA    NA    1     0     0      1
## 3846 Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 3847 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3848 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 3849 Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 3850 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3851 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3852 Individual No Retornable     0       0     0     0    0    NA     0     NA
## 3853 Individual No Retornable    NA      NA    NA    NA   NA     1    NA     NA
## 3854 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3855 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3856 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3857 Individual No Retornable    NA       0     0    NA   NA    NA    NA     NA
## 3858 Individual No Retornable    NA      NA    NA     0    0     1     1      0
## 3859 Individual No Retornable     0       0    NA    NA   NA    NA     0     NA
## 3860 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3861 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3862 Individual No Retornable    NA      NA    NA    NA    0     0    NA     NA
## 3863 Individual No Retornable     0       0     0     1    1     0     0      1
## 3864 Individual No Retornable     0       0     0     0    0     0     0      0
## 3865 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3866 Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 3867 Individual No Retornable    NA       0    NA    NA   NA     0     0      0
## 3868 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3869 Individual No Retornable    NA       0    NA    NA   NA     0    NA     NA
## 3870 Individual No Retornable    NA      NA     1     1    1     1     1      1
## 3871 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3872 Individual No Retornable    NA      NA    NA    NA   NA    NA     0      0
## 3873 Individual No Retornable     0       1     0     0    0     0     1      0
## 3874 Individual No Retornable    NA       0    NA     0    0    NA     0      1
## 3875 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3876 Individual No Retornable     0       0     0     0   NA    NA     0      1
## 3877 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      1
## 3878 Individual No Retornable    NA       0     0    NA   NA     0    NA     NA
## 3879 Individual No Retornable    NA       0    NA    NA   NA     0    NA     NA
## 3880 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3881 Individual No Retornable    NA      NA    NA     0   NA    NA     0     NA
## 3882 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3883 Individual No Retornable    NA      NA    NA    NA    0     0     0      0
## 3884 Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 3885 Individual No Retornable    NA      NA    NA     0   NA    NA     0      0
## 3886 Individual No Retornable     0      NA     0     1    0     0     0     NA
## 3887 Individual No Retornable     0       0     0     0    0     0     0     NA
## 3888 Individual No Retornable    NA      NA    NA     0   NA     0     0      0
## 3889 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3890 Individual No Retornable    NA       0    NA    NA    1     0     0      0
## 3891 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3892 Individual No Retornable    NA      NA    NA     0    0     0     0     NA
## 3893 Individual No Retornable    NA      NA     0    NA   NA    NA     0     NA
## 3894 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3895 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3896 Individual No Retornable     1       2     1     1    2     1     3      0
## 3897 Individual No Retornable    NA       0    NA    NA   NA    NA     0      0
## 3898 Individual No Retornable     0       0     0     1    2     1     1      1
## 3899 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3900 Individual No Retornable    NA      NA    NA     0    0     0    NA     NA
## 3901 Individual No Retornable    NA       0    NA    NA    0    NA     0     NA
## 3902 Individual No Retornable    NA       0    NA    NA   NA    NA    NA      1
## 3903 Individual No Retornable     1       1     0     2    0     1     1      1
## 3904 Individual No Retornable    NA      NA     0    NA    0     0    NA      0
## 3905 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3906 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3907 Individual No Retornable    NA       0     0     0    0     0     0      0
## 3908 Individual No Retornable    NA      NA     0    NA   NA    NA     1      0
## 3909 Individual No Retornable    NA      NA    NA    NA   NA     0     0      0
## 3910 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3911 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3912 Individual No Retornable    NA      NA     0     0   NA    NA    NA     NA
## 3913 Individual No Retornable     0       0    NA     0    0    NA     0     NA
## 3914 Individual No Retornable    NA      NA     0    NA    0    NA    NA     NA
## 3915 Individual No Retornable     0       0     0     0    1     0     0      0
## 3916 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3917 Individual No Retornable    NA      NA     0    NA    1    NA    NA     NA
## 3918 Individual No Retornable    NA      NA    NA    NA    1    NA    NA     NA
## 3919 Individual No Retornable    NA       0    NA    NA    1    NA    NA     NA
## 3920 Individual No Retornable    NA       0    NA    NA   NA     0    NA     NA
## 3921 Individual No Retornable    NA       0    NA    NA   NA     0    NA     NA
## 3922 Individual No Retornable    NA       0    NA    NA   NA     0    NA     NA
## 3923 Individual No Retornable    NA       0    NA    NA   NA     0    NA     NA
## 3924 Individual No Retornable     0       0    NA    NA   NA     0    NA     NA
## 3925 Individual No Retornable    NA      NA     0    NA   NA     0     0     NA
## 3926 Individual No Retornable    NA       0    NA     1    0    NA     0     NA
## 3927 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3928 Individual No Retornable    NA       0     0     0    0    NA     0     NA
## 3929 Individual No Retornable     0       1    NA     3    4     1    NA      2
## 3930 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3931 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3932 Individual No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 3933 Individual No Retornable     0       0     0    NA   NA    NA     0     NA
## 3934 Individual No Retornable    NA       0    NA    NA    0    NA    NA     NA
## 3935 Individual No Retornable    NA       0    NA     0   NA    NA    NA     NA
## 3936 Individual No Retornable     1      NA     3     2    1    NA    NA     NA
## 3937 Individual No Retornable     0       0     0     0   NA    NA    NA     NA
## 3938 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3939 Individual No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 3940 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3941 Individual No Retornable    NA       0    NA    NA    0    NA    NA     NA
## 3942 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA      0
## 3943 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3944 Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 3945 Individual No Retornable     0      NA    NA    NA   NA     0     0     NA
## 3946 Individual No Retornable    NA       0     0     0    0     0    NA      0
## 3947 Individual No Retornable    NA       0    NA     0   NA     1    NA     NA
## 3948 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3949 Individual No Retornable    NA      NA    NA     1   NA    NA    NA     NA
## 3950 Individual No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 3951 Individual No Retornable    NA      NA    NA    NA    0    NA     0      0
## 3952 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3953 Individual No Retornable    NA      NA    NA     1   NA    NA     0     NA
## 3954 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3955 Individual No Retornable     0      NA    NA    NA   NA    NA     0     NA
## 3956 Individual No Retornable     0       0    NA    NA   NA     0     0     NA
## 3957 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3958 Individual No Retornable    NA      NA    NA    NA    0     0    NA      1
## 3959 Individual No Retornable     0       0     0     0    0     1    NA      0
## 3960 Individual No Retornable    NA      NA    NA     0   NA    NA    NA     NA
## 3961 Individual No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 3962 Individual No Retornable    NA       0    NA    NA    0    NA    NA     NA
## 3963 Individual No Retornable    NA       1    NA    NA   NA    NA     0     NA
## 3964 Individual No Retornable    NA      NA    NA     0   NA     0     0     NA
## 3965 Individual No Retornable     0       0     1     0   NA    NA     0     NA
## 3966 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3967 Individual No Retornable    NA      NA    NA     0   NA    NA     0     NA
## 3968 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3969 Individual No Retornable    NA      NA    NA    NA    0    NA    NA     NA
## 3970 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3971 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3972 Individual No Retornable    NA      NA    NA    NA   NA    NA     0     NA
## 3973 Individual No Retornable    NA      NA    NA     0   NA     0     0     NA
## 3974 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3975 Individual No Retornable     0       0     0    NA    0    NA     0     NA
## 3976 Individual No Retornable    NA      NA    NA    NA   NA     0     0     NA
## 3977 Individual No Retornable    NA       0    NA     0    1    NA    NA     NA
## 3978 Individual No Retornable    NA       0    NA    NA   NA     0    NA     NA
## 3979 Individual No Retornable    NA       0    NA    NA    0     0     0      0
## 3980 Individual No Retornable    NA       0    NA     0   NA     0    NA      0
## 3981 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3982 Individual No Retornable    NA      NA    NA     0   NA    NA    NA      0
## 3983 Individual No Retornable     0      NA    NA     0    0     0     0      0
## 3984 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3985 Individual No Retornable     1       0     0     2    2    NA    NA      1
## 3986 Individual No Retornable    NA       0    NA     0   NA    NA     1     NA
## 3987 Individual No Retornable     0       0     0     0   NA     0     0     NA
## 3988 Individual No Retornable     0       0     0     0    0    NA    NA      0
## 3989 Individual No Retornable    NA       0     0     0    0     0     0      0
## 3990 Individual No Retornable    NA       0     0     0    0     0     0     NA
## 3991 Individual No Retornable    NA       0    NA    NA   NA    NA     0     NA
## 3992 Individual No Retornable    NA      NA    NA    NA   NA     0    NA     NA
## 3993 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3994 Individual No Retornable    NA      NA     0    NA   NA    NA    NA     NA
## 3995 Individual No Retornable    NA       0     0    NA   NA    NA    NA     NA
## 3996 Individual No Retornable    NA       0    NA    NA   NA    NA    NA     NA
## 3997 Individual No Retornable    NA      NA    NA    NA   NA    NA    NA     NA
## 3998 Individual No Retornable    NA       0    NA    NA    1    NA     1      0
## 3999 Individual No Retornable     1       0    NA    NA    0    NA     0     NA
##      Septiembre Octubre Noviembre Diciembre
## 1            NA      NA        NA        NA
## 2            NA      NA         1         1
## 3            NA      NA         2        NA
## 4            NA      NA         1        NA
## 5            NA      NA         6         3
## 6            NA      NA         6         3
## 7            NA      NA         1        NA
## 8            NA      NA         0        NA
## 9            NA      NA         1        NA
## 10           NA      NA        NA         1
## 11           NA      NA         4        NA
## 12           NA      NA         4        NA
## 13           NA      NA         1        NA
## 14           NA      NA         3         0
## 15           NA      NA         1         0
## 16           NA      NA         3         2
## 17           NA      NA         0        NA
## 18           NA      NA         4         5
## 19           NA      NA         1         1
## 20           NA      NA         1        NA
## 21           NA      NA         2        NA
## 22           NA      NA         0        NA
## 23           NA      NA         1         3
## 24           NA      NA         1         1
## 25           NA      NA         0        NA
## 26           NA      NA         0        NA
## 27           NA      NA         1        NA
## 28           NA      NA         2        NA
## 29           NA      NA         0         1
## 30           NA      NA         1         0
## 31           NA      NA         1        NA
## 32           NA      NA         4         3
## 33           NA      NA         0        NA
## 34           NA      NA         1         0
## 35           NA      NA         0        NA
## 36           NA      NA         0        NA
## 37           NA      NA         1        NA
## 38           NA      NA         1        NA
## 39           NA      NA         1        NA
## 40           NA      NA         0        NA
## 41           NA      NA         1        NA
## 42           NA      NA         0         0
## 43           NA      NA         0        NA
## 44           NA      NA         2         1
## 45           NA      NA         1         1
## 46           NA      NA         0        NA
## 47           NA      NA         2        NA
## 48           NA      NA         1         1
## 49           NA      NA         0         3
## 50           NA      NA         0        NA
## 51           NA      NA         0        NA
## 52           NA      NA         1         2
## 53           NA      NA         0        NA
## 54           NA      NA         1         0
## 55           NA      NA         0        NA
## 56           NA      NA         0        NA
## 57           NA      NA         0         0
## 58           NA      NA         1         1
## 59           NA      NA         0        NA
## 60           NA      NA         0        NA
## 61           NA      NA         0        NA
## 62           NA      NA         0        NA
## 63           NA      NA         1        NA
## 64           NA      NA         2         1
## 65           NA      NA         0        NA
## 66           NA      NA         2        NA
## 67           NA      NA         0         1
## 68           NA      NA         1        NA
## 69           NA      NA         1         1
## 70           NA      NA         0        NA
## 71           NA      NA         0         1
## 72           NA      NA         0        NA
## 73           NA      NA         0        NA
## 74           NA      NA         0        NA
## 75           NA      NA         0        NA
## 76           NA      NA         0        NA
## 77           NA      NA         2        NA
## 78           NA      NA         0        NA
## 79           NA      NA         0        NA
## 80           NA      NA         1        NA
## 81           NA      NA         1         1
## 82           NA      NA         0        NA
## 83           NA      NA         0         1
## 84           NA      NA         0        NA
## 85           NA      NA         0        NA
## 86           NA      NA         0         0
## 87           NA      NA         1         1
## 88           NA      NA         1         0
## 89           NA      NA        NA         0
## 90           NA      NA         0        NA
## 91           NA      NA         0        NA
## 92           NA      NA         1        NA
## 93           NA      NA         0        NA
## 94           NA      NA         0        NA
## 95           NA      NA         1        NA
## 96           NA      NA         3        NA
## 97           NA      NA         0         1
## 98           NA      NA         0        NA
## 99           NA      NA         0        NA
## 100          NA      NA         0         1
## 101          NA      NA         0        NA
## 102          NA      NA         0        NA
## 103          NA      NA         6         1
## 104          NA      NA         0        NA
## 105          NA      NA         0        NA
## 106          NA      NA         0         0
## 107          NA      NA         0        NA
## 108          NA      NA         0        NA
## 109          NA      NA         0        NA
## 110          NA      NA         0        NA
## 111          NA      NA         6         3
## 112          NA      NA         0        NA
## 113          NA      NA         0        NA
## 114          NA      NA         2        NA
## 115          NA      NA         0        NA
## 116          NA      NA         0        NA
## 117          NA      NA         0        NA
## 118          NA      NA         0        NA
## 119          NA      NA         0        NA
## 120          NA      NA         0        NA
## 121          NA      NA         0        NA
## 122          NA      NA         0         0
## 123          NA      NA         0        NA
## 124          NA      NA         0        NA
## 125          NA      NA         0        NA
## 126          NA      NA         0        NA
## 127          NA      NA         0        NA
## 128          NA      NA         0        NA
## 129          NA      NA         0        NA
## 130          NA      NA         0        NA
## 131          NA      NA         0        NA
## 132          NA      NA         1        NA
## 133          NA      NA         0        NA
## 134          NA      NA         0        NA
## 135          NA      NA         0        NA
## 136          NA      NA         0        NA
## 137          NA      NA         1        NA
## 138          NA      NA         0         0
## 139          NA      NA         0        NA
## 140          NA      NA         0        NA
## 141          NA      NA         0        NA
## 142          NA      NA         0        NA
## 143          NA      NA         0        NA
## 144          NA      NA         0        NA
## 145          NA      NA         0        NA
## 146          NA      NA         0        NA
## 147          NA      NA         0        NA
## 148          NA      NA         0        NA
## 149          NA      NA         0        NA
## 150          NA      NA         1         0
## 151          NA      NA        NA         0
## 152          NA      NA         0        NA
## 153          NA      NA         0        NA
## 154          NA      NA         0         0
## 155          NA      NA         0        NA
## 156          NA      NA         0        NA
## 157          NA      NA         0        NA
## 158          NA      NA         0         0
## 159          NA      NA         0        NA
## 160          NA      NA         0        NA
## 161          NA      NA         0        NA
## 162          NA      NA         0         0
## 163          NA      NA         0        NA
## 164          NA      NA         0        NA
## 165          NA      NA         0        NA
## 166          NA      NA         1        NA
## 167          NA      NA         0        NA
## 168          NA      NA         0        NA
## 169          NA      NA         0        NA
## 170          NA      NA         0        NA
## 171          NA      NA         0        NA
## 172          NA      NA        NA         0
## 173          NA      NA         0        NA
## 174          NA      NA         0        NA
## 175          NA      NA         0        NA
## 176          NA      NA         0        NA
## 177          NA      NA         0        NA
## 178          NA      NA         0        NA
## 179          NA      NA         0        NA
## 180          NA      NA         0        NA
## 181          NA      NA         0        NA
## 182          NA      NA         0        NA
## 183          NA      NA         0         0
## 184          NA      NA         0        NA
## 185          NA      NA         0         0
## 186          NA      NA         0         0
## 187          NA      NA         0        NA
## 188          NA      NA         0        NA
## 189          NA      NA         0        NA
## 190          NA      NA         0         0
## 191          NA      NA         0        NA
## 192          NA      NA         0        NA
## 193          NA      NA         0        NA
## 194          NA      NA         0        NA
## 195          NA      NA         0        NA
## 196          NA      NA         0        NA
## 197          NA      NA         0        NA
## 198          NA      NA         0        NA
## 199          NA      NA         2        NA
## 200          NA      NA         0        NA
## 201          NA      NA         0        NA
## 202          NA      NA         0        NA
## 203          NA      NA         0        NA
## 204          NA      NA         0        NA
## 205          NA      NA         0        NA
## 206          NA      NA         0        NA
## 207          NA      NA         0        NA
## 208          NA      NA         0        NA
## 209          NA      NA         0        NA
## 210          NA      NA         0        NA
## 211          NA      NA         0        NA
## 212          NA      NA         0        NA
## 213          NA      NA         0        NA
## 214          NA      NA         0        NA
## 215          NA      NA         0        NA
## 216          NA      NA         0        NA
## 217          NA      NA         0        NA
## 218          NA      NA         0         0
## 219          NA      NA         0        NA
## 220          NA      NA         0        NA
## 221          NA      NA         0         0
## 222          NA      NA         0        NA
## 223          NA      NA         0        NA
## 224          NA      NA         0        NA
## 225          NA      NA         0        NA
## 226          NA      NA         0        NA
## 227          NA      NA         0        NA
## 228          NA      NA         0         0
## 229          NA      NA         0        NA
## 230          NA      NA         0         0
## 231          NA      NA         0        NA
## 232          NA      NA         0        NA
## 233          NA      NA         0        NA
## 234          NA      NA         0        NA
## 235          NA      NA         0        NA
## 236          NA      NA         0        NA
## 237          NA      NA         0        NA
## 238          NA      NA         0         0
## 239          NA      NA         0        NA
## 240          NA      NA         0        NA
## 241          NA      NA         0        NA
## 242          NA      NA         0         0
## 243          NA      NA         0        NA
## 244          NA      NA         0        NA
## 245          NA      NA         0         0
## 246          NA      NA         0        NA
## 247          NA      NA         0        NA
## 248          NA      NA        NA         0
## 249          NA      NA         0        NA
## 250          NA      NA         0        NA
## 251          NA      NA         2        NA
## 252          NA      NA         0        NA
## 253          NA      NA         0        NA
## 254          NA      NA         0        NA
## 255          NA      NA         0        NA
## 256          NA      NA         0        NA
## 257          NA      NA         0        NA
## 258          NA      NA         0        NA
## 259          NA      NA         0        NA
## 260          NA      NA         0        NA
## 261          NA      NA         0        NA
## 262          NA      NA         1        NA
## 263          NA      NA         0         1
## 264          NA      NA         0        NA
## 265          NA      NA         1         1
## 266          NA      NA         0        NA
## 267          NA      NA         0        NA
## 268          NA      NA         0        NA
## 269          NA      NA         0        NA
## 270          NA      NA         0        NA
## 271          NA      NA         0        NA
## 272          NA      NA         0        NA
## 273          NA      NA         0        NA
## 274          NA      NA         0        NA
## 275          NA      NA         0        NA
## 276          NA      NA         0        NA
## 277          NA      NA         0        NA
## 278          NA      NA         0         0
## 279          NA      NA         0        NA
## 280          NA      NA         0        NA
## 281          NA      NA         0        NA
## 282          NA      NA         0        NA
## 283          NA      NA         0        NA
## 284          NA      NA         0        NA
## 285          NA      NA         0        NA
## 286          NA      NA         0        NA
## 287          NA      NA         0        NA
## 288          NA      NA         1        NA
## 289          NA      NA         0        NA
## 290          NA      NA         0        NA
## 291          NA      NA         0        NA
## 292          NA      NA         0        NA
## 293          NA      NA         0         0
## 294          NA      NA         0        NA
## 295          NA      NA         0        NA
## 296          NA      NA         0        NA
## 297          NA      NA         0        NA
## 298          NA      NA         0        NA
## 299          NA      NA         0        NA
## 300          NA      NA         0        NA
## 301          NA      NA         0        NA
## 302          NA      NA         0        NA
## 303          NA      NA         0        NA
## 304          NA      NA         0        NA
## 305          NA      NA         0        NA
## 306          NA      NA         0        NA
## 307          NA      NA         0        NA
## 308          NA      NA         0        NA
## 309          NA      NA        NA         0
## 310          NA      NA         1         1
## 311          NA      NA         0        NA
## 312          NA      NA         0        NA
## 313          NA      NA         0         0
## 314          NA      NA         0        NA
## 315          NA      NA         0        NA
## 316          NA      NA         0        NA
## 317          NA      NA         0        NA
## 318          NA      NA         0         0
## 319          NA      NA         0        NA
## 320          NA      NA         0        NA
## 321          NA      NA         0        NA
## 322          NA      NA         0         0
## 323          NA      NA         0        NA
## 324          NA      NA         0        NA
## 325          NA      NA         0        NA
## 326          NA      NA         0         0
## 327          NA      NA         0        NA
## 328          NA      NA         0        NA
## 329          NA      NA         0        NA
## 330          NA      NA         0        NA
## 331          NA      NA         0        NA
## 332          NA      NA         0         0
## 333          NA      NA         0        NA
## 334          NA      NA         0        NA
## 335          NA      NA         0        NA
## 336          NA      NA         0        NA
## 337          NA      NA         0        NA
## 338          NA      NA         0         0
## 339          NA      NA         0        NA
## 340          NA      NA         0        NA
## 341          NA      NA         0        NA
## 342          NA      NA         0        NA
## 343          NA      NA         0        NA
## 344          NA      NA         1        NA
## 345          NA      NA         0        NA
## 346          NA      NA         0         0
## 347          NA      NA         0         0
## 348          NA      NA         0         0
## 349          NA      NA         0        NA
## 350          NA      NA         0        NA
## 351          NA      NA         0        NA
## 352          NA      NA        NA         0
## 353          NA      NA         0        NA
## 354          NA      NA         0        NA
## 355          NA      NA         0        NA
## 356          NA      NA         0         0
## 357          NA      NA         0        NA
## 358          NA      NA         0        NA
## 359          NA      NA         0        NA
## 360          NA      NA         0        NA
## 361          NA      NA         0        NA
## 362          NA      NA        NA         0
## 363          NA      NA         0         0
## 364          NA      NA         0         0
## 365          NA      NA        NA         0
## 366          NA      NA        NA        NA
## 367          NA      NA        NA        NA
## 368          NA      NA        NA        NA
## 369          NA      NA        NA        NA
## 370          NA      NA        NA        NA
## 371          NA      NA        NA        NA
## 372          NA      NA        NA        NA
## 373          NA      NA        NA        NA
## 374          NA      NA        NA        NA
## 375          NA      NA        NA        NA
## 376          NA      NA        NA        NA
## 377          NA      NA        NA        NA
## 378          NA      NA        NA        NA
## 379          NA      NA        NA        NA
## 380          NA      NA        NA        NA
## 381          NA      NA        NA        NA
## 382          NA      NA        NA        NA
## 383          NA      NA        NA        NA
## 384          NA      NA        NA        NA
## 385          NA      NA        NA        NA
## 386          NA      NA        NA        NA
## 387          NA      NA        NA        NA
## 388          NA      NA        NA        NA
## 389          NA      NA        NA        NA
## 390          NA      NA        NA        NA
## 391          NA      NA        NA        NA
## 392          NA      NA        NA        NA
## 393          NA      NA        NA        NA
## 394          NA      NA        NA        NA
## 395          NA      NA        NA        NA
## 396          NA      NA        NA        NA
## 397          NA      NA        NA        NA
## 398          NA      NA        NA        NA
## 399          NA      NA        NA        NA
## 400          NA      NA        NA        NA
## 401          NA      NA        NA        NA
## 402          NA      NA        NA        NA
## 403          NA      NA        NA        NA
## 404          NA      NA        NA        NA
## 405          NA      NA        NA        NA
## 406          NA      NA        NA        NA
## 407          NA      NA        NA        NA
## 408          NA      NA        NA        NA
## 409          NA      NA        NA        NA
## 410          NA      NA        NA        NA
## 411          NA      NA        NA        NA
## 412          NA      NA        NA        NA
## 413          NA      NA        NA        NA
## 414          NA      NA        NA        NA
## 415          NA      NA        NA        NA
## 416          NA      NA        NA        NA
## 417          NA      NA        NA        NA
## 418          NA      NA        NA        NA
## 419          NA      NA        NA        NA
## 420          NA      NA        NA        NA
## 421          NA      NA        NA        NA
## 422          NA      NA        NA        NA
## 423          NA      NA        NA        NA
## 424          NA      NA        NA        NA
## 425          NA      NA        NA        NA
## 426          NA      NA        NA        NA
## 427          NA      NA        NA        NA
## 428          NA      NA        NA        NA
## 429          NA      NA        NA        NA
## 430          NA      NA        NA        NA
## 431          NA      NA        NA        NA
## 432          NA      NA        NA        NA
## 433          NA      NA        NA        NA
## 434          NA      NA        NA        NA
## 435          NA      NA        NA        NA
## 436          NA      NA        NA        NA
## 437          NA      NA        NA        NA
## 438          NA      NA        NA        NA
## 439          NA      NA        NA        NA
## 440          NA      NA        NA        NA
## 441          NA      NA        NA        NA
## 442          NA      NA        NA        NA
## 443          NA      NA        NA        NA
## 444          NA      NA        NA        NA
## 445          NA      NA        NA        NA
## 446          NA      NA        NA        NA
## 447          NA      NA        NA        NA
## 448          NA      NA        NA        NA
## 449          NA      NA        NA        NA
## 450          NA      NA        NA        NA
## 451          NA      NA        NA        NA
## 452          NA      NA        NA        NA
## 453          NA      NA        NA        NA
## 454          NA      NA        NA        NA
## 455          NA      NA        NA        NA
## 456          NA      NA        NA        NA
## 457          NA      NA        NA        NA
## 458          NA      NA        NA        NA
## 459          NA      NA        NA        NA
## 460          NA      NA        NA        NA
## 461          NA      NA        NA        NA
## 462          NA      NA        NA        NA
## 463          NA      NA        NA        NA
## 464          NA      NA        NA        NA
## 465          NA      NA        NA        NA
## 466          NA      NA        NA        NA
## 467          NA      NA        NA        NA
## 468          NA      NA        NA        NA
## 469          NA      NA        NA        NA
## 470          NA      NA        NA        NA
## 471          NA      NA        NA        NA
## 472          NA      NA        NA        NA
## 473          NA      NA        NA        NA
## 474          NA      NA        NA        NA
## 475          NA      NA        NA        NA
## 476          NA      NA        NA        NA
## 477          NA      NA        NA        NA
## 478          NA      NA        NA        NA
## 479          NA      NA        NA        NA
## 480          NA      NA        NA        NA
## 481          NA      NA        NA        NA
## 482          NA      NA        NA        NA
## 483          NA      NA        NA        NA
## 484          NA      NA        NA        NA
## 485          NA      NA        NA        NA
## 486          NA      NA        NA        NA
## 487          NA      NA        NA        NA
## 488          NA      NA        NA        NA
## 489          NA      NA        NA        NA
## 490          NA      NA        NA        NA
## 491          NA      NA        NA        NA
## 492          NA      NA        NA        NA
## 493          NA      NA        NA        NA
## 494          NA      NA        NA        NA
## 495          NA      NA        NA        NA
## 496          NA      NA        NA        NA
## 497          NA      NA        NA        NA
## 498          NA      NA        NA        NA
## 499          NA      NA        NA        NA
## 500          NA      NA        NA        NA
## 501          NA      NA        NA        NA
## 502          NA      NA        NA        NA
## 503          NA      NA        NA        NA
## 504          NA      NA        NA        NA
## 505          NA      NA        NA        NA
## 506          NA      NA        NA        NA
## 507          NA      NA        NA        NA
## 508          NA      NA        NA        NA
## 509          NA      NA        NA        NA
## 510          NA      NA        NA        NA
## 511          NA      NA        NA        NA
## 512          NA      NA        NA        NA
## 513          NA      NA        NA        NA
## 514          NA      NA        NA        NA
## 515          NA      NA        NA        NA
## 516          NA      NA        NA        NA
## 517          NA      NA        NA        NA
## 518          NA      NA        NA        NA
## 519          NA      NA        NA        NA
## 520          NA      NA        NA        NA
## 521          NA      NA        NA        NA
## 522          NA      NA        NA        NA
## 523          NA      NA        NA        NA
## 524          NA      NA        NA        NA
## 525          NA      NA        NA        NA
## 526          NA      NA        NA        NA
## 527          NA      NA        NA        NA
## 528          NA      NA        NA        NA
## 529          NA      NA        NA        NA
## 530          NA      NA        NA        NA
## 531          NA      NA        NA        NA
## 532          NA      NA        NA        NA
## 533          NA      NA        NA        NA
## 534          NA      NA        NA        NA
## 535          NA      NA        NA        NA
## 536          NA      NA        NA        NA
## 537          NA      NA        NA        NA
## 538          NA      NA        NA        NA
## 539          NA      NA        NA        NA
## 540          NA      NA        NA        NA
## 541          NA      NA        NA        NA
## 542          NA      NA        NA        NA
## 543          NA      NA        NA        NA
## 544          NA      NA        NA        NA
## 545          NA      NA        NA        NA
## 546          NA      NA        NA        NA
## 547          NA      NA        NA        NA
## 548          NA      NA        NA        NA
## 549          NA      NA        NA        NA
## 550          NA      NA        NA        NA
## 551          NA      NA        NA        NA
## 552          NA      NA        NA        NA
## 553          NA      NA        NA        NA
## 554          NA      NA        NA        NA
## 555          NA      NA        NA        NA
## 556          NA      NA        NA        NA
## 557          NA      NA        NA        NA
## 558          NA      NA        NA        NA
## 559          NA      NA        NA        NA
## 560          NA      NA        NA        NA
## 561          NA      NA        NA        NA
## 562          NA      NA        NA        NA
## 563          NA      NA        NA        NA
## 564          NA      NA        NA        NA
## 565          NA      NA        NA        NA
## 566          NA      NA        NA        NA
## 567          NA      NA        NA        NA
## 568          NA      NA        NA        NA
## 569          NA      NA        NA        NA
## 570          NA      NA        NA        NA
## 571          NA      NA        NA        NA
## 572          NA      NA        NA        NA
## 573          NA      NA        NA        NA
## 574          NA      NA        NA        NA
## 575          NA      NA        NA        NA
## 576          NA      NA        NA        NA
## 577          NA      NA        NA        NA
## 578          NA      NA        NA        NA
## 579          NA      NA        NA        NA
## 580          NA      NA        NA        NA
## 581          NA      NA        NA        NA
## 582          NA      NA        NA        NA
## 583          NA      NA        NA        NA
## 584          NA      NA        NA        NA
## 585          NA      NA        NA        NA
## 586          NA      NA        NA        NA
## 587          NA      NA        NA        NA
## 588          NA      NA        NA        NA
## 589          NA      NA        NA        NA
## 590          NA      NA        NA        NA
## 591          NA      NA        NA        NA
## 592          NA      NA        NA        NA
## 593          NA      NA        NA        NA
## 594          NA      NA        NA        NA
## 595          NA      NA        NA        NA
## 596          NA      NA        NA        NA
## 597          NA      NA        NA        NA
## 598          NA      NA        NA        NA
## 599          NA      NA        NA        NA
## 600          NA      NA        NA        NA
## 601          NA      NA        NA        NA
## 602          NA      NA        NA        NA
## 603          NA      NA        NA        NA
## 604          NA      NA        NA        NA
## 605          NA      NA        NA        NA
## 606          NA      NA        NA        NA
## 607          NA      NA        NA        NA
## 608          NA      NA        NA        NA
## 609          NA      NA        NA        NA
## 610          NA      NA        NA        NA
## 611          NA      NA        NA        NA
## 612          NA      NA        NA        NA
## 613          NA      NA        NA        NA
## 614          NA      NA        NA        NA
## 615          NA      NA        NA        NA
## 616          NA      NA        NA        NA
## 617          NA      NA        NA        NA
## 618          NA      NA        NA        NA
## 619          NA      NA        NA        NA
## 620          NA      NA        NA        NA
## 621          NA      NA        NA        NA
## 622          NA      NA        NA        NA
## 623          NA      NA        NA        NA
## 624          NA      NA        NA        NA
## 625          NA      NA        NA        NA
## 626          NA      NA        NA        NA
## 627          NA      NA        NA        NA
## 628          NA      NA        NA        NA
## 629          NA      NA        NA        NA
## 630          NA      NA        NA        NA
## 631          NA      NA        NA        NA
## 632          NA      NA        NA        NA
## 633          NA      NA        NA        NA
## 634          NA      NA        NA        NA
## 635          NA      NA        NA        NA
## 636          NA      NA        NA        NA
## 637          NA      NA        NA        NA
## 638          NA      NA        NA        NA
## 639          NA      NA        NA        NA
## 640          NA      NA        NA        NA
## 641          NA      NA        NA        NA
## 642          NA      NA        NA        NA
## 643          NA      NA        NA        NA
## 644          NA      NA        NA        NA
## 645          NA      NA        NA        NA
## 646          NA      NA        NA        NA
## 647          NA      NA        NA        NA
## 648          NA      NA        NA        NA
## 649          NA      NA        NA        NA
## 650          NA      NA        NA        NA
## 651          NA      NA        NA        NA
## 652          NA      NA        NA        NA
## 653          NA      NA        NA        NA
## 654          NA      NA        NA        NA
## 655          NA      NA        NA        NA
## 656          NA      NA        NA        NA
## 657          NA      NA        NA        NA
## 658          NA      NA        NA        NA
## 659          NA      NA        NA        NA
## 660          NA      NA        NA        NA
## 661          NA      NA        NA        NA
## 662          NA      NA        NA        NA
## 663          NA      NA        NA        NA
## 664          NA      NA        NA        NA
## 665          NA      NA        NA        NA
## 666          NA      NA        NA        NA
## 667          NA      NA        NA        NA
## 668          NA      NA        NA        NA
## 669          NA      NA        NA        NA
## 670          NA      NA        NA        NA
## 671          NA      NA        NA        NA
## 672          NA      NA        NA        NA
## 673          NA      NA        NA        NA
## 674          NA      NA        NA        NA
## 675          NA      NA        NA        NA
## 676          NA      NA        NA        NA
## 677          NA      NA        NA        NA
## 678          NA      NA        NA        NA
## 679          NA      NA        NA        NA
## 680          NA      NA        NA        NA
## 681          NA      NA        NA        NA
## 682          NA      NA        NA        NA
## 683          NA      NA        NA        NA
## 684          NA      NA        NA        NA
## 685          NA      NA        NA        NA
## 686          NA      NA        NA        NA
## 687          NA      NA        NA        NA
## 688          NA      NA        NA        NA
## 689          NA      NA        NA        NA
## 690          NA      NA        NA        NA
## 691          NA      NA        NA        NA
## 692          NA      NA        NA        NA
## 693          NA      NA        NA        NA
## 694          NA      NA        NA        NA
## 695          NA      NA        NA        NA
## 696          NA      NA        NA        NA
## 697          NA      NA        NA        NA
## 698          NA      NA        NA        NA
## 699          NA      NA        NA        NA
## 700          NA      NA        NA        NA
## 701          NA      NA        NA        NA
## 702          NA      NA        NA        NA
## 703          NA      NA        NA        NA
## 704          NA      NA        NA        NA
## 705          NA      NA        NA        NA
## 706          NA      NA        NA        NA
## 707          NA      NA        NA        NA
## 708          NA      NA        NA        NA
## 709          NA      NA        NA        NA
## 710          NA      NA        NA        NA
## 711          NA      NA        NA        NA
## 712          NA      NA        NA        NA
## 713          NA      NA        NA        NA
## 714          NA      NA        NA        NA
## 715          NA      NA        NA        NA
## 716          NA      NA        NA        NA
## 717          NA      NA        NA        NA
## 718          NA      NA        NA        NA
## 719          NA      NA        NA        NA
## 720          NA      NA        NA        NA
## 721          NA      NA        NA        NA
## 722          NA      NA        NA        NA
## 723          NA      NA        NA        NA
## 724          NA      NA        NA        NA
## 725          NA      NA        NA        NA
## 726          NA      NA        NA        NA
## 727          NA      NA        NA        NA
## 728          NA      NA        NA        NA
## 729          NA      NA        NA        NA
## 730          NA      NA        NA        NA
## 731          NA      NA        NA        NA
## 732          NA      NA        NA        NA
## 733          NA      NA        NA        NA
## 734          NA      NA        NA        NA
## 735          NA      NA        NA        NA
## 736          NA      NA        NA        NA
## 737          NA      NA        NA        NA
## 738          NA      NA        NA        NA
## 739          NA      NA        NA        NA
## 740          NA      NA        NA        NA
## 741          NA      NA        NA        NA
## 742          NA      NA        NA        NA
## 743          NA      NA        NA        NA
## 744          NA      NA        NA        NA
## 745          NA      NA        NA        NA
## 746          NA      NA        NA        NA
## 747          NA      NA        NA        NA
## 748          NA      NA        NA        NA
## 749          NA      NA        NA        NA
## 750          NA      NA        NA        NA
## 751          NA      NA        NA        NA
## 752          NA      NA        NA        NA
## 753          NA      NA        NA        NA
## 754          NA      NA        NA        NA
## 755          NA      NA        NA        NA
## 756          NA      NA        NA        NA
## 757          NA      NA        NA        NA
## 758          NA      NA        NA        NA
## 759          NA      NA        NA        NA
## 760          NA      NA        NA        NA
## 761          NA      NA        NA        NA
## 762          NA      NA        NA        NA
## 763          NA      NA        NA        NA
## 764          NA      NA        NA        NA
## 765          NA      NA        NA        NA
## 766          NA      NA        NA        NA
## 767          NA      NA        NA        NA
## 768          NA      NA        NA        NA
## 769          NA      NA        NA        NA
## 770          NA      NA        NA        NA
## 771          NA      NA        NA        NA
## 772          NA      NA        NA        NA
## 773          NA      NA        NA        NA
## 774          NA      NA        NA        NA
## 775          NA      NA        NA        NA
## 776          NA      NA        NA        NA
## 777          NA      NA        NA        NA
## 778          NA      NA        NA        NA
## 779          NA      NA        NA        NA
## 780          NA      NA        NA        NA
## 781          NA      NA        NA        NA
## 782          NA      NA        NA        NA
## 783          NA      NA        NA        NA
## 784          NA      NA        NA        NA
## 785          NA      NA        NA        NA
## 786          NA      NA        NA        NA
## 787          NA      NA        NA        NA
## 788          NA      NA        NA        NA
## 789          NA      NA        NA        NA
## 790          NA      NA        NA        NA
## 791          NA      NA        NA        NA
## 792          NA      NA        NA        NA
## 793          NA      NA        NA        NA
## 794          NA      NA        NA        NA
## 795          NA      NA        NA        NA
## 796          NA      NA        NA        NA
## 797          NA      NA        NA        NA
## 798          NA      NA        NA        NA
## 799          NA      NA        NA        NA
## 800          NA      NA        NA        NA
## 801          NA      NA        NA        NA
## 802          NA      NA        NA        NA
## 803          NA      NA        NA        NA
## 804          NA      NA        NA        NA
## 805          NA      NA        NA        NA
## 806          NA      NA        NA        NA
## 807          NA      NA        NA        NA
## 808          NA      NA        NA        NA
## 809          NA      NA        NA        NA
## 810          NA      NA        NA        NA
## 811          NA      NA        NA        NA
## 812          NA      NA        NA        NA
## 813          NA      NA        NA        NA
## 814          NA      NA        NA        NA
## 815          NA      NA        NA        NA
## 816          NA      NA        NA        NA
## 817          NA      NA        NA        NA
## 818          NA      NA        NA        NA
## 819          NA      NA        NA        NA
## 820          NA      NA        NA        NA
## 821          NA      NA        NA        NA
## 822          NA      NA        NA        NA
## 823          NA      NA        NA        NA
## 824          NA      NA        NA        NA
## 825          NA      NA        NA        NA
## 826          NA      NA        NA        NA
## 827          NA      NA        NA        NA
## 828          NA      NA        NA        NA
## 829          NA      NA        NA        NA
## 830          NA      NA        NA        NA
## 831          NA      NA        NA        NA
## 832          NA      NA        NA        NA
## 833          NA      NA        NA        NA
## 834          NA      NA        NA        NA
## 835          NA      NA        NA        NA
## 836          NA      NA        NA        NA
## 837          NA      NA        NA        NA
## 838          NA      NA        NA        NA
## 839          NA      NA        NA        NA
## 840          NA      NA        NA        NA
## 841          NA      NA        NA        NA
## 842          NA      NA        NA        NA
## 843          NA      NA        NA        NA
## 844          NA      NA        NA        NA
## 845          NA      NA        NA        NA
## 846          NA      NA        NA        NA
## 847          NA      NA        NA        NA
## 848          NA      NA        NA        NA
## 849          NA      NA        NA        NA
## 850          NA      NA        NA        NA
## 851          NA      NA        NA        NA
## 852          NA      NA        NA        NA
## 853          NA      NA        NA        NA
## 854          NA      NA        NA        NA
## 855          NA      NA        NA        NA
## 856          NA      NA        NA        NA
## 857          NA      NA        NA        NA
## 858          NA      NA        NA        NA
## 859          NA      NA        NA        NA
## 860          NA      NA        NA        NA
## 861          NA      NA        NA        NA
## 862          NA      NA        NA        NA
## 863          NA      NA        NA        NA
## 864          NA      NA        NA        NA
## 865          NA      NA        NA        NA
## 866          NA      NA        NA        NA
## 867          NA      NA        NA        NA
## 868          NA      NA        NA        NA
## 869          NA      NA        NA        NA
## 870          NA      NA        NA        NA
## 871          NA      NA        NA        NA
## 872          NA      NA        NA        NA
## 873          NA      NA        NA        NA
## 874          NA      NA        NA        NA
## 875          NA      NA        NA        NA
## 876          NA      NA        NA        NA
## 877          NA      NA        NA        NA
## 878          NA      NA        NA        NA
## 879          NA      NA        NA        NA
## 880          NA      NA        NA        NA
## 881          NA      NA        NA        NA
## 882          NA      NA        NA        NA
## 883          NA      NA        NA        NA
## 884          NA      NA        NA        NA
## 885          NA      NA        NA        NA
## 886          NA      NA        NA        NA
## 887          NA      NA        NA        NA
## 888          NA      NA        NA        NA
## 889          NA      NA        NA        NA
## 890          NA      NA        NA        NA
## 891          NA      NA        NA        NA
## 892          NA      NA        NA        NA
## 893          NA      NA        NA        NA
## 894          NA      NA        NA        NA
## 895          NA      NA        NA        NA
## 896          NA      NA        NA        NA
## 897          NA      NA        NA        NA
## 898          NA      NA        NA        NA
## 899          NA      NA        NA        NA
## 900          NA      NA        NA        NA
## 901          NA      NA        NA        NA
## 902          NA      NA        NA        NA
## 903          NA      NA        NA        NA
## 904          NA      NA        NA        NA
## 905          NA      NA        NA        NA
## 906          NA      NA        NA        NA
## 907          NA      NA        NA        NA
## 908          NA      NA        NA        NA
## 909          NA      NA        NA        NA
## 910          NA      NA        NA        NA
## 911          NA      NA        NA        NA
## 912          NA      NA        NA        NA
## 913          NA      NA        NA        NA
## 914          NA      NA        NA        NA
## 915          NA      NA        NA        NA
## 916          NA      NA        NA        NA
## 917          NA      NA        NA        NA
## 918          NA      NA        NA        NA
## 919          NA      NA        NA        NA
## 920          NA      NA        NA        NA
## 921          NA      NA        NA        NA
## 922          NA      NA        NA        NA
## 923          NA      NA        NA        NA
## 924          NA      NA        NA        NA
## 925          NA      NA        NA        NA
## 926          NA      NA        NA        NA
## 927          NA      NA        NA        NA
## 928          NA      NA        NA        NA
## 929          NA      NA        NA        NA
## 930          NA      NA        NA        NA
## 931          NA      NA        NA        NA
## 932          NA      NA        NA        NA
## 933          NA      NA        NA        NA
## 934          NA      NA        NA        NA
## 935          NA      NA        NA        NA
## 936          NA      NA        NA        NA
## 937          NA      NA        NA        NA
## 938          NA      NA        NA        NA
## 939          NA      NA        NA        NA
## 940          NA      NA        NA        NA
## 941          NA      NA        NA        NA
## 942          NA      NA        NA        NA
## 943          NA      NA        NA        NA
## 944          NA      NA        NA        NA
## 945          NA      NA        NA        NA
## 946          NA      NA        NA        NA
## 947          NA      NA        NA        NA
## 948          NA      NA        NA        NA
## 949          NA      NA        NA        NA
## 950          NA      NA        NA        NA
## 951          NA      NA        NA        NA
## 952          NA      NA        NA        NA
## 953          NA      NA        NA        NA
## 954          NA      NA        NA        NA
## 955          NA      NA        NA        NA
## 956          NA      NA        NA        NA
## 957          NA      NA        NA        NA
## 958          NA      NA        NA        NA
## 959          NA      NA        NA        NA
## 960          NA      NA        NA        NA
## 961          NA      NA        NA        NA
## 962          NA      NA        NA        NA
## 963          NA      NA        NA        NA
## 964          NA      NA        NA        NA
## 965          NA      NA        NA        NA
## 966          NA      NA        NA        NA
## 967          NA      NA        NA        NA
## 968          NA      NA        NA        NA
## 969          NA      NA        NA        NA
## 970          NA      NA        NA        NA
## 971          NA      NA        NA        NA
## 972          NA      NA        NA        NA
## 973          NA      NA        NA        NA
## 974          NA      NA        NA        NA
## 975          NA      NA        NA        NA
## 976          NA      NA        NA        NA
## 977          NA      NA        NA        NA
## 978          NA      NA        NA        NA
## 979          NA      NA        NA        NA
## 980          NA      NA        NA        NA
## 981          NA      NA        NA        NA
## 982          NA      NA        NA        NA
## 983          NA      NA        NA        NA
## 984          NA      NA        NA        NA
## 985          NA      NA        NA        NA
## 986          NA      NA        NA        NA
## 987          NA      NA        NA        NA
## 988          NA      NA        NA        NA
## 989          NA      NA        NA        NA
## 990          NA      NA        NA        NA
## 991          NA      NA        NA        NA
## 992          NA      NA        NA        NA
## 993          NA      NA        NA        NA
## 994          NA      NA        NA        NA
## 995          NA      NA        NA        NA
## 996          NA      NA        NA        NA
## 997          NA      NA        NA        NA
## 998          NA      NA        NA        NA
## 999          NA      NA        NA        NA
## 1000         NA      NA        NA        NA
## 1001         NA      NA        NA        NA
## 1002         NA      NA        NA        NA
## 1003         NA      NA        NA        NA
## 1004         NA      NA        NA        NA
## 1005         NA      NA        NA        NA
## 1006         NA      NA        NA        NA
## 1007         NA      NA        NA        NA
## 1008         NA      NA        NA        NA
## 1009         NA      NA        NA        NA
## 1010         NA      NA        NA        NA
## 1011         NA      NA        NA        NA
## 1012         NA      NA        NA        NA
## 1013         NA      NA        NA        NA
## 1014         NA      NA        NA        NA
## 1015         NA      NA        NA        NA
## 1016         NA      NA        NA        NA
## 1017         NA      NA        NA        NA
## 1018         NA      NA        NA        NA
## 1019         NA      NA        NA        NA
## 1020         NA      NA        NA        NA
## 1021         NA      NA        NA        NA
## 1022         NA      NA        NA        NA
## 1023         NA      NA        NA        NA
## 1024         NA      NA        NA        NA
## 1025         NA      NA        NA        NA
## 1026         NA      NA        NA        NA
## 1027         NA      NA        NA        NA
## 1028         NA      NA        NA        NA
## 1029         NA      NA        NA        NA
## 1030         NA      NA        NA        NA
## 1031         NA      NA        NA        NA
## 1032         NA      NA        NA        NA
## 1033         NA      NA        NA        NA
## 1034         NA      NA        NA        NA
## 1035         NA      NA        NA        NA
## 1036         NA      NA        NA        NA
## 1037         NA      NA        NA        NA
## 1038         NA      NA        NA        NA
## 1039         NA      NA        NA        NA
## 1040         NA      NA        NA        NA
## 1041         NA      NA        NA        NA
## 1042         NA      NA        NA        NA
## 1043         NA      NA        NA        NA
## 1044         NA      NA        NA        NA
## 1045         NA      NA        NA        NA
## 1046         NA      NA        NA        NA
## 1047         NA      NA        NA        NA
## 1048         NA      NA        NA        NA
## 1049         NA      NA        NA        NA
## 1050         NA      NA        NA        NA
## 1051         NA      NA        NA        NA
## 1052         NA      NA        NA        NA
## 1053         NA      NA        NA        NA
## 1054         NA      NA        NA        NA
## 1055         NA      NA        NA        NA
## 1056         NA      NA        NA        NA
## 1057         NA      NA        NA        NA
## 1058         NA      NA        NA        NA
## 1059         NA      NA        NA        NA
## 1060         NA      NA        NA        NA
## 1061         NA      NA        NA        NA
## 1062         NA      NA        NA        NA
## 1063         NA      NA        NA        NA
## 1064         NA      NA        NA        NA
## 1065         NA      NA        NA        NA
## 1066         NA      NA        NA        NA
## 1067         NA      NA        NA        NA
## 1068         NA      NA        NA        NA
## 1069         NA      NA        NA        NA
## 1070         NA      NA        NA        NA
## 1071         NA      NA        NA        NA
## 1072         NA      NA        NA        NA
## 1073         NA      NA        NA        NA
## 1074         NA      NA        NA        NA
## 1075         NA      NA        NA        NA
## 1076         NA      NA        NA        NA
## 1077         NA      NA        NA        NA
## 1078         NA      NA        NA        NA
## 1079         NA      NA        NA        NA
## 1080         NA      NA        NA        NA
## 1081         NA      NA        NA        NA
## 1082         NA      NA        NA        NA
## 1083         NA      NA        NA        NA
## 1084         NA      NA        NA        NA
## 1085         NA      NA        NA        NA
## 1086         NA      NA        NA        NA
## 1087         NA      NA        NA        NA
## 1088         NA      NA        NA        NA
## 1089         NA      NA        NA        NA
## 1090         NA      NA        NA        NA
## 1091         NA      NA        NA        NA
## 1092         NA      NA        NA        NA
## 1093         NA      NA        NA        NA
## 1094         NA      NA        NA        NA
## 1095         NA      NA        NA        NA
## 1096         NA      NA        NA        NA
## 1097         NA      NA        NA        NA
## 1098         NA      NA        NA        NA
## 1099         NA      NA        NA        NA
## 1100         NA      NA        NA        NA
## 1101         NA      NA        NA        NA
## 1102         NA      NA        NA        NA
## 1103         NA      NA        NA        NA
## 1104         NA      NA        NA        NA
## 1105         NA      NA        NA        NA
## 1106         NA      NA        NA        NA
## 1107         NA      NA        NA        NA
## 1108         NA      NA        NA        NA
## 1109         NA      NA        NA        NA
## 1110         NA      NA        NA        NA
## 1111         NA      NA        NA        NA
## 1112         NA      NA        NA        NA
## 1113         NA      NA        NA        NA
## 1114         NA      NA        NA        NA
## 1115         NA      NA        NA        NA
## 1116         NA      NA        NA        NA
## 1117         NA      NA        NA        NA
## 1118         NA      NA        NA        NA
## 1119         NA      NA        NA        NA
## 1120         NA      NA        NA        NA
## 1121         NA      NA        NA        NA
## 1122         NA      NA        NA        NA
## 1123         NA      NA        NA        NA
## 1124         NA      NA        NA        NA
## 1125         NA      NA        NA        NA
## 1126         NA      NA        NA        NA
## 1127         NA      NA        NA        NA
## 1128         NA      NA        NA        NA
## 1129         NA      NA        NA        NA
## 1130         NA      NA        NA        NA
## 1131         NA      NA        NA        NA
## 1132         NA      NA        NA        NA
## 1133         NA      NA        NA        NA
## 1134         NA      NA        NA        NA
## 1135         NA      NA        NA        NA
## 1136         NA      NA        NA        NA
## 1137         NA      NA        NA        NA
## 1138         NA      NA        NA        NA
## 1139         NA      NA        NA        NA
## 1140         NA      NA        NA        NA
## 1141         NA      NA        NA        NA
## 1142         NA      NA        NA        NA
## 1143         NA      NA        NA        NA
## 1144         NA      NA        NA        NA
## 1145         NA      NA        NA        NA
## 1146         NA      NA        NA        NA
## 1147         NA      NA        NA        NA
## 1148         NA      NA        NA        NA
## 1149         NA      NA        NA        NA
## 1150         NA      NA        NA        NA
## 1151         NA      NA        NA        NA
## 1152         NA      NA        NA        NA
## 1153         NA      NA        NA        NA
## 1154         NA      NA        NA        NA
## 1155         NA      NA        NA        NA
## 1156         NA      NA        NA        NA
## 1157         NA      NA        NA        NA
## 1158         NA      NA        NA        NA
## 1159         NA      NA        NA        NA
## 1160         NA      NA        NA        NA
## 1161         NA      NA        NA        NA
## 1162         NA      NA        NA        NA
## 1163         NA      NA        NA        NA
## 1164         NA      NA        NA        NA
## 1165         NA      NA        NA        NA
## 1166         NA      NA        NA        NA
## 1167         NA      NA        NA        NA
## 1168         NA      NA        NA        NA
## 1169         NA      NA        NA        NA
## 1170         NA      NA        NA        NA
## 1171         NA      NA        NA        NA
## 1172         NA      NA        NA        NA
## 1173         NA      NA        NA        NA
## 1174         NA      NA        NA        NA
## 1175         NA      NA        NA        NA
## 1176         NA      NA        NA        NA
## 1177         NA      NA        NA        NA
## 1178         NA      NA        NA        NA
## 1179         NA      NA        NA        NA
## 1180         NA      NA        NA        NA
## 1181         NA      NA        NA        NA
## 1182         NA      NA        NA        NA
## 1183         NA      NA        NA        NA
## 1184         NA      NA        NA        NA
## 1185         NA      NA        NA        NA
## 1186         NA      NA        NA        NA
## 1187         NA      NA        NA        NA
## 1188         NA      NA        NA        NA
## 1189         NA      NA        NA        NA
## 1190         NA      NA        NA        NA
## 1191         NA      NA        NA        NA
## 1192         NA      NA        NA        NA
## 1193         NA      NA        NA        NA
## 1194         NA      NA        NA        NA
## 1195         NA      NA        NA        NA
## 1196         NA      NA        NA        NA
## 1197         NA      NA        NA        NA
## 1198         NA      NA        NA        NA
## 1199         NA      NA        NA        NA
## 1200         NA      NA        NA        NA
## 1201         NA      NA        NA        NA
## 1202         NA      NA        NA        NA
## 1203         NA      NA        NA        NA
## 1204         NA      NA        NA        NA
## 1205         NA      NA        NA         2
## 1206         NA      NA        NA         4
## 1207         NA      NA        NA         1
## 1208         NA      NA         1         6
## 1209         NA      NA        10         8
## 1210         NA      NA        NA         1
## 1211         NA      NA         1        NA
## 1212         NA      NA        NA         2
## 1213         NA      NA         1        NA
## 1214         NA      NA        NA         6
## 1215         NA      NA        NA         0
## 1216         NA      NA         1         2
## 1217         NA      NA         9         3
## 1218         NA      NA        NA         3
## 1219         NA      NA         3         1
## 1220         NA      NA         8        NA
## 1221         NA      NA         1        NA
## 1222         NA      NA         2         1
## 1223         NA      NA         0        NA
## 1224         NA      NA         6         0
## 1225         NA      NA        NA         1
## 1226         NA      NA         3         3
## 1227         NA      NA         2        NA
## 1228         NA      NA        NA         1
## 1229         NA      NA        NA         2
## 1230         NA      NA        NA         3
## 1231         NA      NA         2         1
## 1232         NA      NA        NA         5
## 1233         NA      NA         0        NA
## 1234         NA      NA         2         3
## 1235         NA      NA         4        NA
## 1236         NA      NA         0         2
## 1237         NA      NA        NA         1
## 1238         NA      NA         0         1
## 1239         NA      NA        NA         1
## 1240         NA      NA        NA         1
## 1241         NA      NA        NA         1
## 1242         NA      NA        11         2
## 1243         NA      NA         4         2
## 1244         NA      NA         4         6
## 1245         NA      NA        NA         2
## 1246         NA      NA        NA         2
## 1247         NA      NA        NA         1
## 1248         NA      NA         3         2
## 1249         NA      NA         1        NA
## 1250         NA      NA        NA         2
## 1251         NA      NA         0        NA
## 1252         NA      NA         1        NA
## 1253         NA      NA        NA         0
## 1254         NA      NA        NA         0
## 1255         NA      NA         0         1
## 1256         NA      NA         1        NA
## 1257         NA      NA        NA         0
## 1258         NA      NA        NA         0
## 1259         NA      NA        NA        NA
## 1260         NA      NA        NA        NA
## 1261         NA      NA        NA        NA
## 1262         NA      NA        NA        NA
## 1263         NA      NA        NA        NA
## 1264         NA      NA        NA        NA
## 1265         NA      NA        NA        NA
## 1266         NA      NA        NA        NA
## 1267         NA      NA        NA        NA
## 1268         NA      NA        NA        NA
## 1269         NA      NA        NA        NA
## 1270         NA      NA        NA        NA
## 1271         NA      NA        NA        NA
## 1272         NA      NA        NA        NA
## 1273         NA      NA        NA        NA
## 1274         NA      NA        NA        NA
## 1275         NA      NA        NA        NA
## 1276         NA      NA        NA        NA
## 1277         NA      NA        NA        NA
## 1278         NA      NA        NA        NA
## 1279         NA      NA        NA        NA
## 1280         NA      NA        NA        NA
## 1281         NA      NA        NA        NA
## 1282         NA      NA        NA        NA
## 1283         NA      NA        NA        NA
## 1284         NA      NA        NA        NA
## 1285         NA      NA        NA        NA
## 1286         NA      NA        NA        NA
## 1287         NA      NA        NA        NA
## 1288         NA      NA        NA        NA
## 1289         NA      NA        NA        NA
## 1290         NA      NA        NA        NA
## 1291         NA      NA        NA        NA
## 1292         NA      NA        NA        NA
## 1293         NA      NA        NA        NA
## 1294         NA      NA        NA        NA
## 1295         NA      NA        NA        NA
## 1296         NA      NA        NA        NA
## 1297         NA      NA        NA        NA
## 1298         NA      NA        NA        NA
## 1299         NA      NA        NA        NA
## 1300         NA      NA        NA        NA
## 1301         NA      NA        NA        NA
## 1302         NA      NA        NA        NA
## 1303         NA      NA        NA        NA
## 1304         NA      NA        NA        NA
## 1305         NA      NA        NA        NA
## 1306         NA      NA        NA        NA
## 1307         NA      NA        NA        NA
## 1308         NA      NA        NA        NA
## 1309         NA      NA        NA        NA
## 1310         NA      NA        NA        NA
## 1311         NA      NA        NA        NA
## 1312         NA      NA        NA        NA
## 1313         NA      NA        NA        NA
## 1314         NA      NA        NA        NA
## 1315         NA      NA        NA        NA
## 1316         NA      NA        NA        NA
## 1317         NA      NA        NA        NA
## 1318         NA      NA        NA        NA
## 1319         NA      NA        NA        NA
## 1320         NA      NA        NA        NA
## 1321         NA      NA        NA        NA
## 1322         NA      NA        NA        NA
## 1323         NA      NA        NA        NA
## 1324         NA      NA        NA        NA
## 1325         NA      NA        NA        NA
## 1326         NA      NA        NA        NA
## 1327         NA      NA        NA        NA
## 1328         NA      NA        NA        NA
## 1329         NA      NA        NA        NA
## 1330         NA      NA        NA        NA
## 1331         NA      NA        NA        NA
## 1332         NA      NA        NA        NA
## 1333         NA      NA        NA        NA
## 1334         NA      NA        NA        NA
## 1335         NA      NA        NA        NA
## 1336         NA      NA        NA        NA
## 1337         NA      NA        NA        NA
## 1338         NA      NA        NA        NA
## 1339         NA      NA        NA        NA
## 1340         NA      NA        NA        NA
## 1341         NA      NA        NA        NA
## 1342         NA      NA        NA        NA
## 1343         NA      NA        NA        NA
## 1344         NA      NA        NA        NA
## 1345         NA      NA        NA        NA
## 1346         NA      NA        NA        NA
## 1347         NA      NA        NA        NA
## 1348         NA      NA        NA        NA
## 1349         NA      NA        NA        NA
## 1350         NA      NA        NA        NA
## 1351         NA      NA        NA        NA
## 1352         NA      NA        NA        NA
## 1353         NA      NA        NA        NA
## 1354         NA      NA        NA        NA
## 1355         NA      NA        NA        NA
## 1356         NA      NA        NA        NA
## 1357         NA      NA        NA        NA
## 1358         NA      NA        NA        NA
## 1359         NA      NA        NA        NA
## 1360         NA      NA        NA        NA
## 1361         NA      NA        NA        NA
## 1362         NA      NA        NA        NA
## 1363         NA      NA        NA        NA
## 1364         NA      NA        NA        NA
## 1365         NA      NA        NA        NA
## 1366         NA      NA        NA        NA
## 1367         NA      NA        NA        NA
## 1368         NA      NA        NA        NA
## 1369         NA      NA        NA        NA
## 1370         NA      NA        NA        NA
## 1371         NA      NA        NA        NA
## 1372         NA      NA        NA        NA
## 1373         NA      NA        NA        NA
## 1374         NA      NA        NA        NA
## 1375         NA      NA        NA        NA
## 1376         NA      NA        NA        NA
## 1377         NA      NA        NA        NA
## 1378         NA      NA        NA        NA
## 1379         NA      NA        NA        NA
## 1380         NA      NA        NA        NA
## 1381         NA      NA        NA        NA
## 1382         NA      NA        NA        NA
## 1383         NA      NA        NA        NA
## 1384         NA      NA        NA        NA
## 1385         NA      NA        NA        NA
## 1386         NA      NA        NA        NA
## 1387         NA      NA        NA        NA
## 1388         NA      NA        NA        NA
## 1389         NA      NA        NA        NA
## 1390         NA      NA        NA        NA
## 1391         NA      NA        NA        NA
## 1392         NA      NA        NA        NA
## 1393         NA      NA        NA        NA
## 1394         NA      NA        NA        NA
## 1395         NA      NA        NA        NA
## 1396         NA      NA        NA        NA
## 1397         NA      NA        NA        NA
## 1398         NA      NA        NA        NA
## 1399         NA      NA        NA        NA
## 1400         NA      NA        NA        NA
## 1401         NA      NA        NA        NA
## 1402         NA      NA        NA        NA
## 1403         NA      NA        NA        NA
## 1404         NA      NA        NA        NA
## 1405         NA      NA        NA        NA
## 1406         NA      NA        NA        NA
## 1407         NA      NA        NA        NA
## 1408         NA      NA        NA        NA
## 1409         NA      NA        NA        NA
## 1410         NA      NA        NA        NA
## 1411         NA      NA        NA        NA
## 1412         NA      NA        NA        NA
## 1413         NA      NA        NA        NA
## 1414         NA      NA        NA        NA
## 1415         NA      NA        NA        NA
## 1416         NA      NA        NA        NA
## 1417         NA      NA        NA        NA
## 1418         NA      NA        NA        NA
## 1419         NA      NA        NA        NA
## 1420         NA      NA        NA        NA
## 1421         NA      NA        NA        NA
## 1422         NA      NA        NA        NA
## 1423         NA      NA        NA        NA
## 1424         NA      NA        NA        NA
## 1425         NA      NA        NA        NA
## 1426         NA      NA        NA        NA
## 1427         NA      NA        NA        NA
## 1428         NA      NA        NA        NA
## 1429         NA      NA        NA        NA
## 1430         NA      NA        NA        NA
## 1431         NA      NA        NA        NA
## 1432         NA      NA        NA        NA
## 1433         NA      NA        NA        NA
## 1434         NA      NA        NA        NA
## 1435         NA      NA        NA        NA
## 1436         NA      NA        NA        NA
## 1437         NA      NA        NA        NA
## 1438         NA      NA        NA        NA
## 1439         NA      NA        NA        NA
## 1440         NA      NA        NA        NA
## 1441         NA      NA        NA        NA
## 1442         NA      NA        NA        NA
## 1443         NA      NA        NA        NA
## 1444         NA      NA        NA        NA
## 1445         NA      NA        NA        NA
## 1446         NA      NA        NA        NA
## 1447         NA      NA        NA        NA
## 1448         NA      NA        NA        NA
## 1449         NA      NA        NA        NA
## 1450         NA      NA        NA        NA
## 1451         NA      NA        NA        NA
## 1452         NA      NA        NA        NA
## 1453         NA      NA        NA        NA
## 1454         NA      NA        NA        NA
## 1455         NA      NA        NA        NA
## 1456         NA      NA        NA        NA
## 1457         NA      NA        NA        NA
## 1458         NA      NA        NA        NA
## 1459         NA      NA        NA        NA
## 1460         NA      NA        NA        NA
## 1461         NA      NA        NA        NA
## 1462         NA      NA        NA        NA
## 1463         NA      NA        NA        NA
## 1464         NA      NA        NA        NA
## 1465         NA      NA        NA        NA
## 1466         NA      NA        NA        NA
## 1467         NA      NA        NA        NA
## 1468         NA      NA        NA        NA
## 1469         NA      NA        NA        NA
## 1470         NA      NA        NA        NA
## 1471         NA      NA        NA        NA
## 1472         NA      NA        NA        NA
## 1473         NA      NA        NA        NA
## 1474         NA      NA        NA        NA
## 1475         NA      NA        NA        NA
## 1476         NA      NA        NA        NA
## 1477         NA      NA        NA        NA
## 1478         NA      NA        NA        NA
## 1479         NA      NA        NA        NA
## 1480         NA      NA        NA        NA
## 1481         NA      NA        NA        NA
## 1482         NA      NA        NA        NA
## 1483         NA      NA        NA        NA
## 1484         NA      NA        NA        NA
## 1485         NA      NA        NA        NA
## 1486         NA      NA        NA        NA
## 1487         NA      NA        NA        NA
## 1488         NA      NA        NA        NA
## 1489         NA      NA        NA        NA
## 1490         NA      NA        NA        NA
## 1491         NA      NA        NA        NA
## 1492         NA      NA        NA        NA
## 1493         NA      NA        NA        NA
## 1494         NA      NA        NA        NA
## 1495         NA      NA        NA        NA
## 1496         NA      NA        NA        NA
## 1497         NA      NA        NA        NA
## 1498         NA      NA        NA        NA
## 1499         NA      NA        NA        NA
## 1500         NA      NA        NA        NA
## 1501         NA      NA        NA        NA
## 1502         NA      NA        NA        NA
## 1503         NA      NA        NA        NA
## 1504         NA      NA        NA        NA
## 1505         NA      NA        NA        NA
## 1506         NA      NA        NA        NA
## 1507         NA      NA        NA        NA
## 1508         NA      NA        NA        NA
## 1509         NA      NA        NA        NA
## 1510         NA      NA        NA        NA
## 1511         NA      NA        NA        NA
## 1512         NA      NA        NA        NA
## 1513         NA      NA        NA        NA
## 1514         NA      NA        NA        NA
## 1515         NA      NA        NA        NA
## 1516         NA      NA        NA        NA
## 1517         NA      NA        NA        NA
## 1518         NA      NA        NA        NA
## 1519         NA      NA        NA        NA
## 1520         NA      NA        NA        NA
## 1521         NA      NA        NA        NA
## 1522         NA      NA        NA        NA
## 1523         NA      NA        NA        NA
## 1524         NA      NA        NA        NA
## 1525         NA      NA        NA        NA
## 1526         NA      NA        NA        NA
## 1527         NA      NA        NA        NA
## 1528         NA      NA        NA        NA
## 1529         NA      NA        NA        NA
## 1530         NA      NA        NA        NA
## 1531         NA      NA        NA        NA
## 1532         NA      NA        NA        NA
## 1533         NA      NA        NA        NA
## 1534         NA      NA        NA        NA
## 1535         NA      NA        NA        NA
## 1536         NA      NA        NA        NA
## 1537         NA      NA        NA        NA
## 1538         NA      NA        NA        NA
## 1539         NA      NA        NA        NA
## 1540         NA      NA        NA        NA
## 1541         NA      NA        NA        NA
## 1542         NA      NA        NA        NA
## 1543         NA      NA        NA        NA
## 1544         NA      NA        NA        NA
## 1545         NA      NA        NA        NA
## 1546         NA      NA        NA        NA
## 1547         NA      NA        NA        NA
## 1548         NA      NA        NA        NA
## 1549         NA      NA        NA        NA
## 1550         NA      NA        NA        NA
## 1551         NA      NA        NA        NA
## 1552         NA      NA        NA        NA
## 1553         NA      NA        NA        NA
## 1554         NA      NA        NA        NA
## 1555         NA      NA        NA        NA
## 1556         NA      NA        NA        NA
## 1557         NA      NA        NA        NA
## 1558         NA      NA        NA        NA
## 1559         NA      NA        NA        NA
## 1560         NA      NA        NA        NA
## 1561         NA      NA        NA        NA
## 1562         NA      NA        NA        NA
## 1563         NA      NA        NA        NA
## 1564         NA      NA        NA        NA
## 1565         NA      NA        NA        NA
## 1566         NA      NA        NA        NA
## 1567         NA      NA        NA        NA
## 1568         NA      NA        NA        NA
## 1569         NA      NA        NA        NA
## 1570         NA      NA        NA        NA
## 1571         NA      NA        NA        NA
## 1572         NA      NA        NA        NA
## 1573         NA      NA        NA        NA
## 1574         NA      NA        NA        NA
## 1575         NA      NA        NA        NA
## 1576         NA      NA        NA        NA
## 1577         NA      NA        NA        NA
## 1578         NA      NA        NA        NA
## 1579         NA      NA        NA        NA
## 1580         NA      NA        NA        NA
## 1581         NA      NA        NA        NA
## 1582         NA      NA        NA        NA
## 1583         NA      NA        NA        NA
## 1584         NA      NA        NA        NA
## 1585         NA      NA        NA        NA
## 1586         NA      NA        NA        NA
## 1587         NA      NA        NA        NA
## 1588         NA      NA        NA        NA
## 1589         NA      NA        NA        NA
## 1590         NA      NA        NA        NA
## 1591         NA      NA        NA        NA
## 1592         NA      NA        NA        NA
## 1593         NA      NA        NA        NA
## 1594         NA      NA        NA        NA
## 1595         NA      NA        NA        NA
## 1596         NA      NA        NA        NA
## 1597         NA      NA        NA        NA
## 1598         NA      NA        NA        NA
## 1599         NA      NA        NA        NA
## 1600         NA      NA        NA        NA
## 1601         NA      NA        NA        NA
## 1602         NA      NA        NA        NA
## 1603         NA      NA        NA        NA
## 1604         NA      NA        NA        NA
## 1605         NA      NA        NA        NA
## 1606         NA      NA        NA        NA
## 1607         NA      NA        NA        NA
## 1608         NA      NA        NA        NA
## 1609         NA      NA        NA        NA
## 1610         NA      NA        NA        NA
## 1611         NA      NA        NA        NA
## 1612         NA      NA        NA        NA
## 1613         NA      NA        NA        NA
## 1614         NA      NA        NA        NA
## 1615         NA      NA        NA        NA
## 1616         NA      NA        NA        NA
## 1617         NA      NA        NA        NA
## 1618         NA      NA        NA        NA
## 1619         NA      NA        NA        NA
## 1620         NA      NA        NA        NA
## 1621         NA      NA        NA        NA
## 1622         NA      NA        NA        NA
## 1623         NA      NA        NA        NA
## 1624         NA      NA        NA        NA
## 1625         NA      NA        NA        NA
## 1626         NA      NA        NA        NA
## 1627         NA      NA        NA        NA
## 1628         NA      NA        NA        NA
## 1629         NA      NA        NA        NA
## 1630         NA      NA        NA        NA
## 1631         NA      NA        NA        NA
## 1632         NA      NA        NA        NA
## 1633         NA      NA        NA        NA
## 1634         NA      NA        NA        NA
## 1635         NA      NA        NA        NA
## 1636         NA      NA        NA        NA
## 1637         NA      NA        NA        NA
## 1638         NA      NA        NA        NA
## 1639         NA      NA        NA        NA
## 1640         NA      NA        NA        NA
## 1641         NA      NA        NA        NA
## 1642         NA      NA        NA        NA
## 1643         NA      NA        NA        NA
## 1644         NA      NA        NA        NA
## 1645         NA      NA        NA        NA
## 1646         NA      NA        NA        NA
## 1647         NA      NA        NA        NA
## 1648         NA      NA        NA        NA
## 1649         NA      NA        NA        NA
## 1650         NA      NA        NA        NA
## 1651         NA      NA        NA        NA
## 1652         NA      NA        NA        NA
## 1653         NA      NA        NA        NA
## 1654         NA      NA        NA        NA
## 1655         NA      NA        NA        NA
## 1656         NA      NA        NA        NA
## 1657         NA      NA        NA        NA
## 1658         NA      NA        NA        NA
## 1659         NA      NA        NA        NA
## 1660         NA      NA        NA        NA
## 1661         NA      NA        NA        NA
## 1662         NA      NA        NA        NA
## 1663         NA      NA        NA        NA
## 1664         NA      NA        NA        NA
## 1665         NA      NA        NA        NA
## 1666         NA      NA        NA        NA
## 1667         NA      NA        NA        NA
## 1668         NA      NA        NA        NA
## 1669         NA      NA        NA        NA
## 1670         NA      NA        NA        NA
## 1671         NA      NA        NA        NA
## 1672         NA      NA        NA        NA
## 1673         NA      NA        NA        NA
## 1674         NA      NA        NA        NA
## 1675         NA      NA        NA        NA
## 1676         NA      NA        NA        NA
## 1677         NA      NA        NA        NA
## 1678         NA      NA        NA        NA
## 1679         NA      NA        NA        NA
## 1680         NA      NA        NA        NA
## 1681         NA      NA        NA        NA
## 1682         NA      NA        NA        NA
## 1683         NA      NA        NA        NA
## 1684         NA      NA        NA        NA
## 1685         NA      NA        NA        NA
## 1686         NA      NA        NA        NA
## 1687         NA      NA        NA        NA
## 1688         NA      NA        NA        NA
## 1689         NA      NA        NA        NA
## 1690         NA      NA        NA        NA
## 1691         NA      NA        NA        NA
## 1692         NA      NA        NA        NA
## 1693         NA      NA        NA        NA
## 1694         NA      NA        NA        NA
## 1695         NA      NA        NA        NA
## 1696         NA      NA        NA        NA
## 1697         NA      NA        NA        NA
## 1698         NA      NA        NA        NA
## 1699         NA      NA        NA        NA
## 1700         NA      NA        NA        NA
## 1701         NA      NA        NA        NA
## 1702         NA      NA        NA        NA
## 1703         NA      NA        NA        NA
## 1704         NA      NA        NA        NA
## 1705         NA      NA        NA        NA
## 1706         NA      NA        NA        NA
## 1707         NA      NA        NA        NA
## 1708         NA      NA        NA        NA
## 1709         NA      NA        NA        NA
## 1710         NA      NA        NA        NA
## 1711         NA      NA        NA        NA
## 1712         NA      NA        NA        NA
## 1713         NA      NA        NA        NA
## 1714         NA      NA        NA        NA
## 1715         NA      NA        NA        NA
## 1716         NA      NA        NA        NA
## 1717         NA      NA        NA        NA
## 1718         NA      NA        NA        NA
## 1719         NA      NA        NA        NA
## 1720         NA      NA        NA        NA
## 1721         NA      NA        NA        NA
## 1722         NA      NA        NA        NA
## 1723         NA      NA        NA        NA
## 1724         NA      NA        NA        NA
## 1725         NA      NA        NA        NA
## 1726         NA      NA        NA        NA
## 1727         NA      NA        NA        NA
## 1728         NA      NA        NA        NA
## 1729         NA      NA        NA        NA
## 1730         NA      NA        NA        NA
## 1731         NA      NA        NA        NA
## 1732         NA      NA        NA        NA
## 1733         NA      NA        NA        NA
## 1734         NA      NA        NA        NA
## 1735         NA      NA        NA        NA
## 1736         NA      NA        NA        NA
## 1737         NA      NA        NA        NA
## 1738         NA      NA        NA        NA
## 1739         NA      NA        NA        NA
## 1740         NA      NA        NA        NA
## 1741         NA      NA        NA        NA
## 1742         NA      NA        NA        NA
## 1743         NA      NA        NA        NA
## 1744         NA      NA        NA        NA
## 1745         NA      NA        NA        NA
## 1746         NA      NA        NA        NA
## 1747         NA      NA        NA        NA
## 1748         NA      NA        NA        NA
## 1749         NA      NA        NA        NA
## 1750         NA      NA        NA        NA
## 1751         NA      NA        NA        NA
## 1752         NA      NA        NA        NA
## 1753         NA      NA        NA        NA
## 1754         NA      NA        NA        NA
## 1755         NA      NA        NA        NA
## 1756         NA      NA        NA        NA
## 1757         NA      NA        NA        NA
## 1758         NA      NA        NA        NA
## 1759         NA      NA        NA        NA
## 1760         NA      NA        NA        NA
## 1761         NA      NA        NA        NA
## 1762         NA      NA        NA        NA
## 1763         NA      NA        NA        NA
## 1764         NA      NA        NA        NA
## 1765         NA      NA        NA        NA
## 1766         NA      NA        NA        NA
## 1767         NA      NA        NA        NA
## 1768         NA      NA        NA        NA
## 1769         NA      NA        NA        NA
## 1770         NA      NA        NA        NA
## 1771         NA      NA        NA        NA
## 1772         NA      NA        NA        NA
## 1773         NA      NA        NA        NA
## 1774         NA      NA        NA        NA
## 1775         NA      NA        NA        NA
## 1776         NA      NA        NA        NA
## 1777         NA      NA        NA        NA
## 1778         NA      NA        NA        NA
## 1779         NA      NA        NA        NA
## 1780         NA      NA        NA        NA
## 1781         NA      NA        NA        NA
## 1782         NA      NA        NA        NA
## 1783         NA      NA        NA        NA
## 1784         NA      NA        NA        NA
## 1785         NA      NA        NA        NA
## 1786         NA      NA        NA        NA
## 1787         NA      NA        NA        NA
## 1788         NA      NA        NA        NA
## 1789         NA      NA        NA        NA
## 1790         NA      NA        NA        NA
## 1791         NA      NA        NA        NA
## 1792         NA      NA        NA        NA
## 1793         NA      NA        NA        NA
## 1794         NA      NA        NA        NA
## 1795         NA      NA        NA        NA
## 1796         NA      NA        NA        NA
## 1797         NA      NA        NA        NA
## 1798         NA      NA        NA        NA
## 1799         NA      NA        NA        NA
## 1800         NA      NA        NA        NA
## 1801         NA      NA        NA        NA
## 1802         NA      NA        NA        NA
## 1803         NA      NA        NA        NA
## 1804         NA      NA        NA        NA
## 1805         NA      NA        NA        NA
## 1806         NA      NA        NA        NA
## 1807         NA      NA        NA        NA
## 1808         NA      NA        NA        NA
## 1809         NA      NA        NA        NA
## 1810         NA      NA        NA        NA
## 1811         NA      NA        NA        NA
## 1812         NA      NA        NA        NA
## 1813         NA      NA        NA        NA
## 1814         NA      NA        NA        NA
## 1815         NA      NA        NA        NA
## 1816         NA      NA        NA        NA
## 1817         NA      NA        NA        NA
## 1818         NA      NA        NA        NA
## 1819         NA      NA        NA        NA
## 1820         NA      NA        NA        NA
## 1821         NA      NA        NA        NA
## 1822         NA      NA        NA        NA
## 1823         NA      NA        NA        NA
## 1824         NA      NA        NA        NA
## 1825         NA      NA        NA        NA
## 1826         NA      NA        NA        NA
## 1827         NA      NA        NA        NA
## 1828         NA      NA        NA        NA
## 1829         NA      NA        NA        NA
## 1830         NA      NA        NA        NA
## 1831         NA      NA        NA        NA
## 1832         NA      NA        NA        NA
## 1833         NA      NA        NA        NA
## 1834         NA      NA        NA        NA
## 1835         NA      NA        NA        NA
## 1836         NA      NA        NA        NA
## 1837         NA      NA        NA        NA
## 1838         NA      NA        NA        NA
## 1839         NA      NA        NA        NA
## 1840         NA      NA        NA        NA
## 1841         NA      NA        NA        NA
## 1842         NA      NA        NA        NA
## 1843         NA      NA        NA        NA
## 1844         NA      NA        NA        NA
## 1845         NA      NA        NA        NA
## 1846         NA      NA        NA        NA
## 1847         NA      NA        NA        NA
## 1848         NA      NA        NA        NA
## 1849         NA      NA        NA        NA
## 1850         NA      NA        NA        NA
## 1851         NA      NA        NA        NA
## 1852         NA      NA        NA        NA
## 1853         NA      NA        NA        NA
## 1854         NA      NA        NA        NA
## 1855         NA      NA        NA        NA
## 1856         NA      NA        NA        NA
## 1857         NA      NA        NA        NA
## 1858         NA      NA        NA        NA
## 1859         NA      NA        NA        NA
## 1860         NA      NA        NA        NA
## 1861         NA      NA        NA        NA
## 1862         NA      NA        NA        NA
## 1863         NA      NA        NA        NA
## 1864         NA      NA        NA        NA
## 1865         NA      NA        NA        NA
## 1866         NA      NA        NA        NA
## 1867         NA      NA        NA        NA
## 1868         NA      NA        NA        NA
## 1869         NA      NA        NA        NA
## 1870         NA      NA        NA        NA
## 1871         NA      NA        NA        NA
## 1872         NA      NA        NA        NA
## 1873         NA      NA        NA        NA
## 1874         NA      NA        NA        NA
## 1875         NA      NA        NA        NA
## 1876         NA      NA        NA        NA
## 1877         NA      NA        NA        NA
## 1878         NA      NA        NA        NA
## 1879         NA      NA        NA        NA
## 1880         NA      NA        NA        NA
## 1881         NA      NA        NA        NA
## 1882         NA      NA        NA        NA
## 1883         NA      NA        NA        NA
## 1884         NA      NA        NA        NA
## 1885         NA      NA        NA        NA
## 1886         NA      NA        NA        NA
## 1887         NA      NA        NA        NA
## 1888         NA      NA        NA        NA
## 1889         NA      NA        NA        NA
## 1890         NA      NA        NA        NA
## 1891         NA      NA        NA        NA
## 1892         NA      NA        NA        NA
## 1893         NA      NA        NA        NA
## 1894         NA      NA        NA        NA
## 1895         NA      NA        NA        NA
## 1896         NA      NA        NA        NA
## 1897         NA      NA        NA        NA
## 1898         NA      NA        NA        NA
## 1899         NA      NA        NA        NA
## 1900         NA      NA        NA        NA
## 1901         NA      NA        NA        NA
## 1902         NA      NA        NA        NA
## 1903         NA      NA        NA        NA
## 1904         NA      NA        NA        NA
## 1905         NA      NA        NA        NA
## 1906         NA      NA        NA        NA
## 1907         NA      NA        NA        NA
## 1908         NA      NA        NA        NA
## 1909         NA      NA        NA        NA
## 1910         NA      NA        NA        NA
## 1911         NA      NA        NA        NA
## 1912         NA      NA        NA        NA
## 1913         NA      NA        NA        NA
## 1914         NA      NA        NA        NA
## 1915         NA      NA        NA        NA
## 1916         NA      NA        NA        NA
## 1917         NA      NA        NA        NA
## 1918         NA      NA        NA        NA
## 1919         NA      NA        NA        NA
## 1920         NA      NA        NA        NA
## 1921         NA      NA        NA        NA
## 1922         NA      NA        NA        NA
## 1923         NA      NA        NA        NA
## 1924         NA      NA        NA        NA
## 1925         NA      NA        NA        NA
## 1926         NA      NA        NA        NA
## 1927         NA      NA        NA        NA
## 1928         NA      NA        NA        NA
## 1929         NA      NA        NA        NA
## 1930         NA      NA        NA        NA
## 1931         NA      NA        NA        NA
## 1932         NA      NA        NA        NA
## 1933         NA      NA        NA        NA
## 1934         NA      NA        NA        NA
## 1935         NA      NA        NA        NA
## 1936         NA      NA        NA        NA
## 1937         NA      NA        NA        NA
## 1938         NA      NA        NA        NA
## 1939         NA      NA        NA        NA
## 1940         NA      NA        NA        NA
## 1941         NA      NA        NA        NA
## 1942         NA      NA        NA        NA
## 1943         NA      NA        NA        NA
## 1944         NA      NA        NA        NA
## 1945         NA      NA        NA        NA
## 1946         NA      NA        NA        NA
## 1947         NA      NA        NA        NA
## 1948         NA      NA        NA        NA
## 1949         NA      NA        NA        NA
## 1950         NA      NA        NA        NA
## 1951         NA      NA        NA        NA
## 1952         NA      NA        NA        NA
## 1953         NA      NA        NA        NA
## 1954         NA      NA        NA        NA
## 1955         NA      NA        NA        NA
## 1956         NA      NA        NA        NA
## 1957         NA      NA        NA        NA
## 1958         NA      NA        NA        NA
## 1959         NA      NA        NA        NA
## 1960         NA      NA        NA        NA
## 1961         NA      NA        NA        NA
## 1962         NA      NA        NA        NA
## 1963         NA      NA        NA        NA
## 1964         NA      NA        NA        NA
## 1965         NA      NA        NA        NA
## 1966         NA      NA        NA        NA
## 1967         NA      NA        NA        NA
## 1968         NA      NA        NA        NA
## 1969         NA      NA        NA        NA
## 1970         NA      NA        NA        NA
## 1971         NA      NA        NA        NA
## 1972         NA      NA        NA        NA
## 1973         NA      NA        NA        NA
## 1974         NA      NA        NA        NA
## 1975         NA      NA        NA        NA
## 1976         NA      NA        NA        NA
## 1977         NA      NA        NA        NA
## 1978         NA      NA        NA        NA
## 1979         NA      NA        NA        NA
## 1980         NA      NA        NA        NA
## 1981         NA      NA        NA        NA
## 1982         NA      NA        NA        NA
## 1983         NA      NA        NA        NA
## 1984         NA      NA        NA        NA
## 1985         NA      NA        NA        NA
## 1986         NA      NA        NA        NA
## 1987         NA      NA        NA        NA
## 1988         NA      NA        NA        NA
## 1989         NA      NA        NA        NA
## 1990         NA      NA        NA        NA
## 1991         NA      NA        NA        NA
## 1992         NA      NA        NA        NA
## 1993         NA      NA        NA        NA
## 1994         NA      NA        NA        NA
## 1995         NA      NA        NA        NA
## 1996         NA      NA        NA        NA
## 1997         NA      NA        NA        NA
## 1998         NA      NA        NA        NA
## 1999         NA      NA        NA        NA
## 2000         NA      NA        NA        NA
## 2001         NA      NA        NA        NA
## 2002         NA      NA        NA        NA
## 2003         NA      NA        NA        NA
## 2004         NA      NA        NA        NA
## 2005         NA      NA        NA        NA
## 2006         NA      NA        NA        NA
## 2007         NA      NA        NA        NA
## 2008         NA      NA        NA        NA
## 2009         NA      NA        NA        NA
## 2010         NA      NA        NA        NA
## 2011         NA      NA        NA        NA
## 2012         NA      NA        NA        NA
## 2013         NA      NA        NA        NA
## 2014         NA      NA        NA        NA
## 2015         NA      NA        NA        NA
## 2016         NA      NA        NA        NA
## 2017         NA      NA        NA        NA
## 2018         NA      NA        NA        NA
## 2019         NA      NA        NA        NA
## 2020         NA      NA        NA        NA
## 2021         NA      NA        NA        NA
## 2022         NA      NA        NA        NA
## 2023         NA      NA        NA        NA
## 2024         NA      NA        NA        NA
## 2025         NA      NA        NA        NA
## 2026         NA      NA        NA        NA
## 2027         NA      NA        NA        NA
## 2028         NA      NA        NA        NA
## 2029         NA      NA        NA        NA
## 2030         NA      NA        NA        NA
## 2031         NA      NA        NA        NA
## 2032         NA      NA        NA        NA
## 2033         NA      NA        NA        NA
## 2034         NA      NA        NA        NA
## 2035         NA      NA        NA        NA
## 2036         NA      NA        NA        NA
## 2037         NA      NA        NA        NA
## 2038         NA      NA        NA        NA
## 2039         NA      NA        NA        NA
## 2040         NA      NA        NA        NA
## 2041         NA      NA        NA        NA
## 2042         NA      NA        NA        NA
## 2043         NA      NA        NA        NA
## 2044         NA      NA        NA        NA
## 2045         NA      NA        NA        NA
## 2046         NA      NA        NA        NA
## 2047         NA      NA        NA        NA
## 2048         NA      NA        NA        NA
## 2049         NA      NA        NA        NA
## 2050         NA      NA        NA        NA
## 2051         NA      NA        NA        NA
## 2052         NA      NA        NA        NA
## 2053         NA      NA        NA        NA
## 2054         NA      NA        NA        NA
## 2055         NA      NA        NA        NA
## 2056         NA      NA        NA        NA
## 2057         NA      NA        NA        NA
## 2058         NA      NA        NA        NA
## 2059         NA      NA         0        NA
## 2060         NA      NA         0        NA
## 2061         NA      NA         2         1
## 2062         NA      NA        NA         1
## 2063         NA      NA         0         0
## 2064         NA      NA         0        NA
## 2065         NA      NA         0        NA
## 2066         NA      NA         0        NA
## 2067         NA      NA         0        NA
## 2068         NA      NA         0        NA
## 2069         NA      NA         0        NA
## 2070         NA      NA         0        NA
## 2071         NA      NA         0        NA
## 2072         NA      NA         0        NA
## 2073         NA      NA         0        NA
## 2074         NA      NA         0        NA
## 2075         NA      NA         0        NA
## 2076         NA      NA         0        NA
## 2077         NA      NA         1         1
## 2078         NA      NA         0        NA
## 2079         NA      NA         0        NA
## 2080         NA      NA         1        NA
## 2081         NA      NA        NA         0
## 2082         NA      NA         0        NA
## 2083         NA      NA         0         0
## 2084         NA      NA         0         0
## 2085         NA      NA         0        NA
## 2086         NA      NA         0        NA
## 2087         NA      NA         0        NA
## 2088         NA      NA         0        NA
## 2089         NA      NA         0         0
## 2090         NA      NA         0        NA
## 2091         NA      NA         0        NA
## 2092         NA      NA         0        NA
## 2093         NA      NA         0        NA
## 2094         NA      NA         0        NA
## 2095         NA      NA         0         0
## 2096         NA      NA         1        NA
## 2097         NA      NA         0        NA
## 2098         NA      NA         0        NA
## 2099         NA      NA         1        NA
## 2100         NA      NA         0        NA
## 2101         NA      NA         0        NA
## 2102         NA      NA         0        NA
## 2103         NA      NA         0        NA
## 2104         NA      NA         0        NA
## 2105         NA      NA         0        NA
## 2106         NA      NA         0        NA
## 2107         NA      NA         0        NA
## 2108         NA      NA         0        NA
## 2109         NA      NA         0        NA
## 2110         NA      NA         0        NA
## 2111         NA      NA         0        NA
## 2112         NA      NA         0        NA
## 2113         NA      NA         0        NA
## 2114         NA      NA         1        NA
## 2115         NA      NA         0        NA
## 2116         NA      NA         0        NA
## 2117         NA      NA         0        NA
## 2118         NA      NA         0        NA
## 2119         NA      NA         0        NA
## 2120         NA      NA         0        NA
## 2121         NA      NA         0        NA
## 2122         NA      NA         0        NA
## 2123         NA      NA         0        NA
## 2124         NA      NA         0        NA
## 2125         NA      NA         0        NA
## 2126         NA      NA         0        NA
## 2127         NA      NA        NA         0
## 2128         NA      NA        NA        NA
## 2129         NA      NA        NA        NA
## 2130         NA      NA        NA        NA
## 2131         NA      NA        NA        NA
## 2132         NA      NA        NA        NA
## 2133         NA      NA        NA        NA
## 2134         NA      NA        NA        NA
## 2135         NA      NA        NA        NA
## 2136         NA      NA        NA        NA
## 2137         NA      NA        NA        NA
## 2138         NA      NA        NA        NA
## 2139         NA      NA        NA        NA
## 2140         NA      NA        NA        NA
## 2141         NA      NA        NA        NA
## 2142         NA      NA        NA        NA
## 2143         NA      NA        NA        NA
## 2144         NA      NA        NA        NA
## 2145         NA      NA        NA        NA
## 2146         NA      NA        NA        NA
## 2147         NA      NA        NA        NA
## 2148         NA      NA        NA        NA
## 2149         NA      NA        NA        NA
## 2150         NA      NA        NA        NA
## 2151         NA      NA        NA        NA
## 2152         NA      NA        NA        NA
## 2153         NA      NA        NA        NA
## 2154         NA      NA        NA        NA
## 2155         NA      NA        NA        NA
## 2156         NA      NA        NA        NA
## 2157         NA      NA        NA        NA
## 2158         NA      NA        NA        NA
## 2159         NA      NA        NA        NA
## 2160         NA      NA        NA        NA
## 2161         NA      NA        NA        NA
## 2162         NA      NA        NA        NA
## 2163         NA      NA        NA        NA
## 2164         NA      NA        NA        NA
## 2165         NA      NA        NA        NA
## 2166         NA      NA        NA        NA
## 2167         NA      NA        NA        NA
## 2168         NA      NA        NA        NA
## 2169         NA      NA        NA        NA
## 2170         NA      NA        NA        NA
## 2171         NA      NA        NA        NA
## 2172         NA      NA        NA        NA
## 2173         NA      NA        NA        NA
## 2174         NA      NA        NA        NA
## 2175         NA      NA        NA        NA
## 2176         NA      NA        NA        NA
## 2177         NA      NA        NA        NA
## 2178         NA      NA        NA        NA
## 2179         NA      NA        NA        NA
## 2180         NA      NA        NA        NA
## 2181         NA      NA        NA        NA
## 2182         NA      NA        NA        NA
## 2183         NA      NA        NA        NA
## 2184         NA      NA        NA        NA
## 2185         NA      NA        NA        NA
## 2186         NA      NA        NA        NA
## 2187         NA      NA        NA        NA
## 2188         NA      NA        NA        NA
## 2189         NA      NA        NA        NA
## 2190         NA      NA        NA        NA
## 2191         NA      NA        NA        NA
## 2192         NA      NA        NA        NA
## 2193         NA      NA        NA        NA
## 2194         NA      NA        NA        NA
## 2195         NA      NA        NA        NA
## 2196         NA      NA        NA        NA
## 2197         NA      NA        NA        NA
## 2198         NA      NA        NA        NA
## 2199         NA      NA        NA        NA
## 2200         NA      NA        NA        NA
## 2201         NA      NA        NA        NA
## 2202         NA      NA        NA        NA
## 2203         NA      NA        NA        NA
## 2204         NA      NA        NA        NA
## 2205         NA      NA        NA        NA
## 2206         NA      NA        NA        NA
## 2207         NA      NA        NA        NA
## 2208         NA      NA        NA        NA
## 2209         NA      NA        NA        NA
## 2210         NA      NA        NA        NA
## 2211         NA      NA        NA        NA
## 2212         NA      NA        NA        NA
## 2213         NA      NA        NA        NA
## 2214         NA      NA        NA        NA
## 2215         NA      NA        NA        NA
## 2216         NA      NA        NA        NA
## 2217         NA      NA        NA        NA
## 2218         NA      NA        NA        NA
## 2219         NA      NA        NA        NA
## 2220         NA      NA        NA        NA
## 2221         NA      NA        NA        NA
## 2222         NA      NA        NA        NA
## 2223         NA      NA        NA        NA
## 2224         NA      NA        NA        NA
## 2225         NA      NA        NA        NA
## 2226         NA      NA        NA        NA
## 2227         NA      NA        NA        NA
## 2228         NA      NA        NA        NA
## 2229         NA      NA        NA        NA
## 2230         NA      NA        NA        NA
## 2231         NA      NA        NA        NA
## 2232         NA      NA        NA        NA
## 2233         NA      NA        NA        NA
## 2234         NA      NA        NA        NA
## 2235         NA      NA        NA        NA
## 2236         NA      NA        NA        NA
## 2237         NA      NA        NA        NA
## 2238         NA      NA        NA        NA
## 2239         NA      NA        NA        NA
## 2240         NA      NA        NA        NA
## 2241         NA      NA        NA        NA
## 2242         NA      NA        NA        NA
## 2243         NA      NA        NA        NA
## 2244         NA      NA        NA        NA
## 2245         NA      NA        NA        NA
## 2246         NA      NA        NA        NA
## 2247         NA      NA        NA        NA
## 2248         NA      NA        NA        NA
## 2249         NA      NA        NA        NA
## 2250         NA      NA        NA        NA
## 2251         NA      NA        NA        NA
## 2252         NA      NA        NA        NA
## 2253         NA      NA        NA        NA
## 2254         NA      NA        NA        NA
## 2255         NA      NA        NA        NA
## 2256         NA      NA        NA        NA
## 2257         NA      NA        NA        NA
## 2258         NA      NA        NA        NA
## 2259         NA      NA        NA        NA
## 2260         NA      NA        NA        NA
## 2261         NA      NA        NA        NA
## 2262         NA      NA        NA        NA
## 2263         NA      NA        NA        NA
## 2264         NA      NA        NA        NA
## 2265         NA      NA        NA        NA
## 2266         NA      NA        NA        NA
## 2267         NA      NA        NA        NA
## 2268         NA      NA        NA        NA
## 2269         NA      NA        NA        NA
## 2270         NA      NA        NA        NA
## 2271         NA      NA        NA        NA
## 2272         NA      NA        NA        NA
## 2273         NA      NA        NA        NA
## 2274         NA      NA        NA        NA
## 2275         NA      NA        NA        NA
## 2276         NA      NA        NA        NA
## 2277         NA      NA        NA        NA
## 2278         NA      NA        NA        NA
## 2279         NA      NA        NA        NA
## 2280         NA      NA        NA        NA
## 2281         NA      NA        NA        NA
## 2282         NA      NA        NA        NA
## 2283         NA      NA        NA        NA
## 2284         NA      NA        NA        NA
## 2285         NA      NA        NA        NA
## 2286         NA      NA        NA        NA
## 2287         NA      NA        NA        NA
## 2288         NA      NA        NA        NA
## 2289         NA      NA        NA        NA
## 2290         NA      NA        NA        NA
## 2291         NA      NA        NA        NA
## 2292         NA      NA        NA        NA
## 2293         NA      NA        NA        NA
## 2294         NA      NA        NA        NA
## 2295         NA      NA        NA        NA
## 2296         NA      NA        NA        NA
## 2297         NA      NA        NA        NA
## 2298         NA      NA        NA        NA
## 2299         NA      NA         2        NA
## 2300         NA      NA        NA         2
## 2301         NA      NA         1         1
## 2302         NA      NA        NA         1
## 2303         NA      NA        18        13
## 2304         NA      NA        21        19
## 2305         NA      NA        NA         2
## 2306         NA      NA         1         2
## 2307         NA      NA         2        NA
## 2308         NA      NA        19        21
## 2309         NA      NA         2         2
## 2310         NA      NA         6         1
## 2311         NA      NA        11         6
## 2312         NA      NA         2         7
## 2313         NA      NA        11         3
## 2314         NA      NA         4        NA
## 2315         NA      NA         1        NA
## 2316         NA      NA         5         1
## 2317         NA      NA         3         1
## 2318         NA      NA         0         0
## 2319         NA      NA         3        NA
## 2320         NA      NA        NA         3
## 2321         NA      NA         5         3
## 2322         NA      NA         7         5
## 2323         NA      NA         3         1
## 2324         NA      NA        NA         5
## 2325         NA      NA         2         0
## 2326         NA      NA         1         2
## 2327         NA      NA         1        NA
## 2328         NA      NA         2         2
## 2329         NA      NA         4        NA
## 2330         NA      NA         1         5
## 2331         NA      NA         4         3
## 2332         NA      NA         4         1
## 2333         NA      NA         6        NA
## 2334         NA      NA         1        NA
## 2335         NA      NA         0         2
## 2336         NA      NA        NA         1
## 2337         NA      NA         9         7
## 2338         NA      NA         6         4
## 2339         NA      NA         1         1
## 2340         NA      NA         4         1
## 2341         NA      NA        NA         1
## 2342         NA      NA         2         6
## 2343         NA      NA         2         4
## 2344         NA      NA         2         1
## 2345         NA      NA         2         0
## 2346         NA      NA         2        NA
## 2347         NA      NA         1        NA
## 2348         NA      NA         0         0
## 2349         NA      NA         0        NA
## 2350         NA      NA         0        NA
## 2351         NA      NA         3         1
## 2352         NA      NA         0         0
## 2353         NA      NA         1         3
## 2354         NA      NA         1         1
## 2355         NA      NA        NA        NA
## 2356         NA      NA        NA        NA
## 2357         NA      NA        NA        NA
## 2358         NA      NA        NA        NA
## 2359         NA      NA        NA        NA
## 2360         NA      NA        NA        NA
## 2361         NA      NA        NA        NA
## 2362         NA      NA        NA        NA
## 2363         NA      NA        NA        NA
## 2364         NA      NA        NA        NA
## 2365         NA      NA        NA        NA
## 2366         NA      NA        NA        NA
## 2367         NA      NA        NA        NA
## 2368         NA      NA        NA        NA
## 2369         NA      NA        NA        NA
## 2370         NA      NA        NA        NA
## 2371         NA      NA        NA        NA
## 2372         NA      NA        NA        NA
## 2373         NA      NA        NA        NA
## 2374         NA      NA        NA        NA
## 2375         NA      NA        NA        NA
## 2376         NA      NA        NA        NA
## 2377         NA      NA        NA        NA
## 2378         NA      NA        NA        NA
## 2379         NA      NA        NA        NA
## 2380         NA      NA        NA        NA
## 2381         NA      NA        NA        NA
## 2382         NA      NA        NA        NA
## 2383         NA      NA        NA        NA
## 2384         NA      NA        NA        NA
## 2385         NA      NA        NA        NA
## 2386         NA      NA        NA        NA
## 2387         NA      NA        NA        NA
## 2388         NA      NA        NA        NA
## 2389         NA      NA        NA        NA
## 2390         NA      NA        NA        NA
## 2391         NA      NA        NA        NA
## 2392         NA      NA        NA        NA
## 2393         NA      NA        NA        NA
## 2394         NA      NA        NA        NA
## 2395         NA      NA        NA        NA
## 2396         NA      NA        NA        NA
## 2397         NA      NA        NA        NA
## 2398         NA      NA        NA        NA
## 2399         NA      NA        NA        NA
## 2400         NA      NA        NA        NA
## 2401         NA      NA        NA        NA
## 2402         NA      NA        NA        NA
## 2403         NA      NA        NA        NA
## 2404         NA      NA        NA        NA
## 2405         NA      NA        NA        NA
## 2406         NA      NA        NA        NA
## 2407         NA      NA        NA        NA
## 2408         NA      NA        NA        NA
## 2409         NA      NA        NA        NA
## 2410         NA      NA        NA        NA
## 2411         NA      NA        NA        NA
## 2412         NA      NA        NA        NA
## 2413         NA      NA        NA        NA
## 2414         NA      NA        NA        NA
## 2415         NA      NA        NA        NA
## 2416         NA      NA        NA        NA
## 2417         NA      NA        NA        NA
## 2418         NA      NA        NA        NA
## 2419         NA      NA        NA        NA
## 2420         NA      NA        NA        NA
## 2421         NA      NA        NA        NA
## 2422         NA      NA        NA        NA
## 2423         NA      NA        NA        NA
## 2424         NA      NA        NA        NA
## 2425         NA      NA        NA        NA
## 2426         NA      NA        NA        NA
## 2427         NA      NA        NA        NA
## 2428         NA      NA        NA        NA
## 2429         NA      NA        NA        NA
## 2430         NA      NA        NA        NA
## 2431         NA      NA        NA        NA
## 2432         NA      NA        NA        NA
## 2433         NA      NA        NA        NA
## 2434         NA      NA        NA        NA
## 2435         NA      NA        NA        NA
## 2436         NA      NA        NA        NA
## 2437         NA      NA        NA        NA
## 2438         NA      NA        NA        NA
## 2439         NA      NA        NA        NA
## 2440         NA      NA        NA        NA
## 2441         NA      NA        NA        NA
## 2442         NA      NA        NA        NA
## 2443         NA      NA        NA        NA
## 2444         NA      NA        NA        NA
## 2445         NA      NA        NA        NA
## 2446         NA      NA        NA        NA
## 2447         NA      NA        NA        NA
## 2448         NA      NA        NA        NA
## 2449         NA      NA        NA        NA
## 2450         NA      NA        NA        NA
## 2451         NA      NA        NA        NA
## 2452         NA      NA        NA        NA
## 2453         NA      NA        NA        NA
## 2454         NA      NA        NA        NA
## 2455         NA      NA        NA        NA
## 2456         NA      NA        NA        NA
## 2457         NA      NA        NA        NA
## 2458         NA      NA        NA        NA
## 2459         NA      NA        NA        NA
## 2460         NA      NA        NA        NA
## 2461         NA      NA        NA        NA
## 2462         NA      NA        NA        NA
## 2463         NA      NA        NA        NA
## 2464         NA      NA        NA        NA
## 2465         NA      NA        NA        NA
## 2466         NA      NA        NA        NA
## 2467         NA      NA        NA        NA
## 2468         NA      NA        NA        NA
## 2469         NA      NA        NA        NA
## 2470         NA      NA        NA        NA
## 2471         NA      NA        NA        NA
## 2472         NA      NA        NA        NA
## 2473         NA      NA        NA        NA
## 2474         NA      NA        NA        NA
## 2475         NA      NA        NA        NA
## 2476         NA      NA        NA        NA
## 2477         NA      NA        NA        NA
## 2478         NA      NA        NA        NA
## 2479         NA      NA        NA        NA
## 2480         NA      NA        NA        NA
## 2481         NA      NA        NA        NA
## 2482         NA      NA        NA        NA
## 2483         NA      NA        NA        NA
## 2484         NA      NA        NA        NA
## 2485         NA      NA        NA        NA
## 2486         NA      NA        NA        NA
## 2487         NA      NA        NA        NA
## 2488         NA      NA        NA        NA
## 2489         NA      NA        NA        NA
## 2490         NA      NA        NA        NA
## 2491         NA      NA        NA        NA
## 2492         NA      NA        NA        NA
## 2493         NA      NA        NA        NA
## 2494         NA      NA        NA        NA
## 2495         NA      NA        NA        NA
## 2496         NA      NA        NA        NA
## 2497         NA      NA        NA        NA
## 2498         NA      NA        NA        NA
## 2499         NA      NA        NA        NA
## 2500         NA      NA        NA        NA
## 2501         NA      NA        NA        NA
## 2502         NA      NA        NA        NA
## 2503         NA      NA        NA        NA
## 2504         NA      NA        NA        NA
## 2505         NA      NA        NA        NA
## 2506         NA      NA        NA        NA
## 2507         NA      NA        NA        NA
## 2508         NA      NA        NA        NA
## 2509         NA      NA        NA        NA
## 2510         NA      NA        NA        NA
## 2511         NA      NA        NA        NA
## 2512         NA      NA        NA        NA
## 2513         NA      NA        NA        NA
## 2514         NA      NA        NA        NA
## 2515         NA      NA        NA        NA
## 2516         NA      NA        NA        NA
## 2517         NA      NA        NA        NA
## 2518         NA      NA        NA        NA
## 2519         NA      NA        NA        NA
## 2520         NA      NA        NA        NA
## 2521         NA      NA        NA        NA
## 2522         NA      NA        NA        NA
## 2523         NA      NA        NA        NA
## 2524         NA      NA        NA        NA
## 2525         NA      NA        NA        NA
## 2526         NA      NA        NA        NA
## 2527         NA      NA        NA        NA
## 2528         NA      NA        NA        NA
## 2529         NA      NA        NA        NA
## 2530         NA      NA        NA        NA
## 2531         NA      NA        NA        NA
## 2532         NA      NA        NA        NA
## 2533         NA      NA        NA        NA
## 2534         NA      NA        NA        NA
## 2535         NA      NA        NA        NA
## 2536         NA      NA        NA        NA
## 2537         NA      NA        NA        NA
## 2538         NA      NA        NA        NA
## 2539         NA      NA        NA        NA
## 2540         NA      NA        NA        NA
## 2541         NA      NA        NA        NA
## 2542         NA      NA        NA        NA
## 2543         NA      NA        NA        NA
## 2544         NA      NA        NA        NA
## 2545         NA      NA        NA        NA
## 2546         NA      NA        NA        NA
## 2547         NA      NA        NA        NA
## 2548         NA      NA        NA        NA
## 2549         NA      NA        NA        NA
## 2550         NA      NA        NA        NA
## 2551         NA      NA        NA        NA
## 2552         NA      NA        NA        NA
## 2553         NA      NA        NA        NA
## 2554         NA      NA        NA        NA
## 2555         NA      NA        NA        NA
## 2556         NA      NA        NA        NA
## 2557         NA      NA        NA        NA
## 2558         NA      NA        NA        NA
## 2559         NA      NA        NA        NA
## 2560         NA      NA        NA        NA
## 2561         NA      NA        NA        NA
## 2562         NA      NA        NA        NA
## 2563         NA      NA        NA        NA
## 2564         NA      NA        NA        NA
## 2565         NA      NA        NA        NA
## 2566         NA      NA        NA        NA
## 2567         NA      NA        NA        NA
## 2568         NA      NA        NA        NA
## 2569         NA      NA        NA        NA
## 2570         NA      NA        NA        NA
## 2571         NA      NA        NA        NA
## 2572         NA      NA        NA        NA
## 2573         NA      NA        NA        NA
## 2574         NA      NA        NA        NA
## 2575         NA      NA        NA        NA
## 2576         NA      NA        NA        NA
## 2577         NA      NA        NA        NA
## 2578         NA      NA        NA        NA
## 2579         NA      NA        NA        NA
## 2580         NA      NA        NA        NA
## 2581         NA      NA        NA        NA
## 2582         NA      NA        NA        NA
## 2583         NA      NA        NA        NA
## 2584         NA      NA        NA        NA
## 2585         NA      NA        NA        NA
## 2586         NA      NA        NA        NA
## 2587         NA      NA        NA        NA
## 2588         NA      NA        NA        NA
## 2589         NA      NA        NA        NA
## 2590         NA      NA        NA        NA
## 2591         NA      NA        NA        NA
## 2592         NA      NA        NA        NA
## 2593         NA      NA        NA        NA
## 2594         NA      NA        NA        NA
## 2595         NA      NA        NA        NA
## 2596         NA      NA        NA        NA
## 2597         NA      NA        NA        NA
## 2598         NA      NA        NA        NA
## 2599         NA      NA        NA        NA
## 2600         NA      NA        NA        NA
## 2601         NA      NA        NA        NA
## 2602         NA      NA        NA        NA
## 2603         NA      NA        NA        NA
## 2604         NA      NA        NA        NA
## 2605         NA      NA        NA        NA
## 2606         NA      NA        NA        NA
## 2607         NA      NA        NA        NA
## 2608         NA      NA        NA        NA
## 2609         NA      NA        NA        NA
## 2610         NA      NA        NA        NA
## 2611         NA      NA        NA        NA
## 2612         NA      NA        NA        NA
## 2613         NA      NA        NA        NA
## 2614         NA      NA        NA        NA
## 2615         NA      NA        NA        NA
## 2616         NA      NA        NA        NA
## 2617         NA      NA        NA        NA
## 2618         NA      NA        NA        NA
## 2619         NA      NA        NA        NA
## 2620         NA      NA        NA        NA
## 2621         NA      NA        NA        NA
## 2622         NA      NA        NA        NA
## 2623         NA      NA        NA        NA
## 2624         NA      NA        NA        NA
## 2625         NA      NA        NA        NA
## 2626         NA      NA        NA        NA
## 2627         NA      NA        NA        NA
## 2628         NA      NA        NA        NA
## 2629         NA      NA        NA        NA
## 2630         NA      NA        NA        NA
## 2631         NA      NA        NA        NA
## 2632         NA      NA        NA        NA
## 2633         NA      NA        NA        NA
## 2634         NA      NA        NA        NA
## 2635         NA      NA        NA        NA
## 2636         NA      NA        NA        NA
## 2637         NA      NA        NA        NA
## 2638         NA      NA        NA        NA
## 2639         NA      NA        NA        NA
## 2640         NA      NA        NA        NA
## 2641         NA      NA        NA        NA
## 2642         NA      NA        NA        NA
## 2643         NA      NA        NA        NA
## 2644         NA      NA        NA        NA
## 2645         NA      NA        NA        NA
## 2646         NA      NA        NA        NA
## 2647         NA      NA        NA        NA
## 2648         NA      NA        NA        NA
## 2649         NA      NA        NA        NA
## 2650         NA      NA        NA        NA
## 2651         NA      NA        NA        NA
## 2652         NA      NA        NA        NA
## 2653         NA      NA        NA        NA
## 2654         NA      NA        NA        NA
## 2655         NA      NA        NA        NA
## 2656         NA      NA        NA        NA
## 2657         NA      NA        NA        NA
## 2658         NA      NA        NA        NA
## 2659         NA      NA        NA        NA
## 2660         NA      NA        NA        NA
## 2661         NA      NA        NA        NA
## 2662         NA      NA        NA        NA
## 2663         NA      NA        NA        NA
## 2664         NA      NA        NA        NA
## 2665         NA      NA        NA        NA
## 2666         NA      NA        NA        NA
## 2667         NA      NA        NA        NA
## 2668         NA      NA        NA        NA
## 2669         NA      NA        NA        NA
## 2670         NA      NA        NA        NA
## 2671         NA      NA        NA        NA
## 2672         NA      NA        NA        NA
## 2673         NA      NA        NA        NA
## 2674         NA      NA        NA        NA
## 2675         NA      NA        NA        NA
## 2676         NA      NA        NA        NA
## 2677         NA      NA        NA        NA
## 2678         NA      NA        NA        NA
## 2679         NA      NA        NA        NA
## 2680         NA      NA        NA        NA
## 2681         NA      NA        NA        NA
## 2682         NA      NA        NA        NA
## 2683         NA      NA        NA        NA
## 2684         NA      NA        NA        NA
## 2685         NA      NA        NA        NA
## 2686         NA      NA        NA        NA
## 2687         NA      NA        NA        NA
## 2688         NA      NA        NA        NA
## 2689         NA      NA        NA        NA
## 2690         NA      NA        NA        NA
## 2691         NA      NA        NA        NA
## 2692         NA      NA        NA        NA
## 2693         NA      NA        NA        NA
## 2694         NA      NA        NA        NA
## 2695         NA      NA        NA        NA
## 2696         NA      NA        NA        NA
## 2697         NA      NA        NA        NA
## 2698         NA      NA        NA        NA
## 2699         NA      NA        NA        NA
## 2700         NA      NA        NA        NA
## 2701         NA      NA        NA        NA
## 2702         NA      NA        NA        NA
## 2703         NA      NA        NA        NA
## 2704         NA      NA        NA        NA
## 2705         NA      NA        NA        NA
## 2706         NA      NA        NA        NA
## 2707         NA      NA        NA        NA
## 2708         NA      NA        NA        NA
## 2709         NA      NA        NA        NA
## 2710         NA      NA        NA        NA
## 2711         NA      NA        NA        NA
## 2712         NA      NA        NA        NA
## 2713         NA      NA        NA        NA
## 2714         NA      NA        NA        NA
## 2715         NA      NA        NA        NA
## 2716         NA      NA        NA        NA
## 2717         NA      NA        NA        NA
## 2718         NA      NA        NA        NA
## 2719         NA      NA        NA        NA
## 2720         NA      NA        NA        NA
## 2721         NA      NA        NA        NA
## 2722         NA      NA        NA        NA
## 2723         NA      NA        NA        NA
## 2724         NA      NA        NA        NA
## 2725         NA      NA        NA        NA
## 2726         NA      NA        NA        NA
## 2727         NA      NA        NA        NA
## 2728         NA      NA        NA        NA
## 2729         NA      NA        NA        NA
## 2730         NA      NA        NA        NA
## 2731         NA      NA        NA        NA
## 2732         NA      NA        NA        NA
## 2733         NA      NA        NA        NA
## 2734         NA      NA        NA        NA
## 2735         NA      NA        NA        NA
## 2736         NA      NA        NA        NA
## 2737         NA      NA        NA        NA
## 2738         NA      NA        NA        NA
## 2739         NA      NA        NA        NA
## 2740         NA      NA        NA        NA
## 2741         NA      NA        NA        NA
## 2742         NA      NA        NA        NA
## 2743         NA      NA        NA        NA
## 2744         NA      NA        NA        NA
## 2745         NA      NA        NA        NA
## 2746         NA      NA        NA        NA
## 2747         NA      NA        NA        NA
## 2748         NA      NA        NA        NA
## 2749         NA      NA        NA        NA
## 2750         NA      NA        NA        NA
## 2751         NA      NA        NA        NA
## 2752         NA      NA        NA        NA
## 2753         NA      NA        NA        NA
## 2754         NA      NA        NA        NA
## 2755         NA      NA        NA        NA
## 2756         NA      NA        NA        NA
## 2757         NA      NA        NA        NA
## 2758         NA      NA        NA        NA
## 2759         NA      NA        NA        NA
## 2760         NA      NA        NA        NA
## 2761         NA      NA        NA        NA
## 2762         NA      NA        NA        NA
## 2763         NA      NA        NA        NA
## 2764         NA      NA        NA        NA
## 2765         NA      NA        NA        NA
## 2766         NA      NA        NA        NA
## 2767         NA      NA        NA        NA
## 2768         NA      NA        NA        NA
## 2769         NA      NA        NA        NA
## 2770         NA      NA        NA        NA
## 2771         NA      NA        NA        NA
## 2772         NA      NA        NA        NA
## 2773         NA      NA        NA        NA
## 2774         NA      NA        NA        NA
## 2775         NA      NA        NA        NA
## 2776         NA      NA        NA        NA
## 2777         NA      NA        NA        NA
## 2778         NA      NA        NA        NA
## 2779         NA      NA        NA        NA
## 2780         NA      NA        NA        NA
## 2781         NA      NA        NA        NA
## 2782         NA      NA        NA        NA
## 2783         NA      NA        NA        NA
## 2784         NA      NA        NA        NA
## 2785         NA      NA        NA        NA
## 2786         NA      NA        NA        NA
## 2787         NA      NA        NA        NA
## 2788         NA      NA        NA        NA
## 2789         NA      NA        NA        NA
## 2790         NA      NA        NA        NA
## 2791         NA      NA        NA        NA
## 2792         NA      NA        NA        NA
## 2793         NA      NA        NA        NA
## 2794         NA      NA        NA        NA
## 2795         NA      NA        NA        NA
## 2796         NA      NA        NA        NA
## 2797         NA      NA        NA        NA
## 2798         NA      NA        NA        NA
## 2799         NA      NA        NA        NA
## 2800         NA      NA        NA        NA
## 2801         NA      NA        NA        NA
## 2802         NA      NA        NA        NA
## 2803         NA      NA        NA        NA
## 2804         NA      NA        NA        NA
## 2805         NA      NA        NA        NA
## 2806         NA      NA        NA        NA
## 2807         NA      NA        NA        NA
## 2808         NA      NA        NA        NA
## 2809         NA      NA        NA        NA
## 2810         NA      NA        NA        NA
## 2811         NA      NA        NA        NA
## 2812         NA      NA        NA        NA
## 2813         NA      NA        NA        NA
## 2814         NA      NA        NA        NA
## 2815         NA      NA        NA        NA
## 2816         NA      NA        NA        NA
## 2817         NA      NA        NA        NA
## 2818         NA      NA        NA        NA
## 2819         NA      NA        NA        NA
## 2820         NA      NA        NA        NA
## 2821         NA      NA        NA        NA
## 2822         NA      NA        NA        NA
## 2823         NA      NA        NA        NA
## 2824         NA      NA        NA        NA
## 2825         NA      NA        NA        NA
## 2826         NA      NA        NA        NA
## 2827         NA      NA        NA        NA
## 2828         NA      NA        NA        NA
## 2829         NA      NA        NA        NA
## 2830         NA      NA        NA        NA
## 2831         NA      NA        NA        NA
## 2832         NA      NA        NA        NA
## 2833         NA      NA        NA        NA
## 2834         NA      NA        NA        NA
## 2835         NA      NA        NA        NA
## 2836         NA      NA        NA        NA
## 2837         NA      NA        NA        NA
## 2838         NA      NA        NA        NA
## 2839         NA      NA        NA        NA
## 2840         NA      NA        NA        NA
## 2841         NA      NA        NA        NA
## 2842         NA      NA        NA        NA
## 2843         NA      NA        NA        NA
## 2844         NA      NA        NA        NA
## 2845         NA      NA        NA        NA
## 2846         NA      NA        NA        NA
## 2847         NA      NA        NA        NA
## 2848         NA      NA        NA        NA
## 2849         NA      NA        NA        NA
## 2850         NA      NA        NA        NA
## 2851         NA      NA        NA        NA
## 2852         NA      NA        NA        NA
## 2853         NA      NA        NA        NA
## 2854         NA      NA        NA        NA
## 2855         NA      NA        NA        NA
## 2856         NA      NA        NA        NA
## 2857         NA      NA        NA        NA
## 2858         NA      NA        NA        NA
## 2859         NA      NA        NA        NA
## 2860         NA      NA        NA        NA
## 2861         NA      NA        NA        NA
## 2862         NA      NA        NA        NA
## 2863         NA      NA        NA        NA
## 2864         NA      NA        NA        NA
## 2865         NA      NA        NA        NA
## 2866         NA      NA        NA        NA
## 2867         NA      NA        NA        NA
## 2868         NA      NA        NA        NA
## 2869         NA      NA        NA        NA
## 2870         NA      NA        NA        NA
## 2871         NA      NA        NA        NA
## 2872         NA      NA        NA        NA
## 2873         NA      NA        NA        NA
## 2874         NA      NA        NA        NA
## 2875         NA      NA        NA        NA
## 2876         NA      NA        NA        NA
## 2877         NA      NA        NA        NA
## 2878         NA      NA        NA        NA
## 2879         NA      NA        NA        NA
## 2880         NA      NA        NA        NA
## 2881         NA      NA        NA        NA
## 2882         NA      NA        NA        NA
## 2883         NA      NA        NA        NA
## 2884         NA      NA        NA        NA
## 2885         NA      NA        NA        NA
## 2886         NA      NA        NA        NA
## 2887         NA      NA        NA        NA
## 2888         NA      NA        NA        NA
## 2889         NA      NA        NA        NA
## 2890         NA      NA        NA        NA
## 2891         NA      NA        NA        NA
## 2892         NA      NA        NA        NA
## 2893         NA      NA        NA        NA
## 2894         NA      NA        NA        NA
## 2895         NA      NA        NA        NA
## 2896         NA      NA        NA        NA
## 2897         NA      NA        NA        NA
## 2898         NA      NA        NA        NA
## 2899         NA      NA        NA        NA
## 2900         NA      NA        NA        NA
## 2901         NA      NA        NA        NA
## 2902         NA      NA        NA        NA
## 2903         NA      NA        NA        NA
## 2904         NA      NA        NA        NA
## 2905         NA      NA        NA        NA
## 2906         NA      NA        NA        NA
## 2907         NA      NA        NA        NA
## 2908         NA      NA        NA        NA
## 2909         NA      NA        NA        NA
## 2910         NA      NA        NA        NA
## 2911         NA      NA        NA        NA
## 2912         NA      NA        NA        NA
## 2913         NA      NA        NA        NA
## 2914         NA      NA        NA        NA
## 2915         NA      NA        NA        NA
## 2916         NA      NA        NA        NA
## 2917         NA      NA        NA        NA
## 2918         NA      NA        NA        NA
## 2919         NA      NA        NA        NA
## 2920         NA      NA        NA        NA
## 2921         NA      NA        NA        NA
## 2922         NA      NA        NA        NA
## 2923         NA      NA        NA        NA
## 2924         NA      NA        NA        NA
## 2925         NA      NA        NA        NA
## 2926         NA      NA        NA        NA
## 2927         NA      NA        NA        NA
## 2928         NA      NA        NA        NA
## 2929         NA      NA        NA        NA
## 2930         NA      NA        NA        NA
## 2931         NA      NA        NA        NA
## 2932         NA      NA        NA        NA
## 2933         NA      NA        NA        NA
## 2934         NA      NA        NA        NA
## 2935         NA      NA        NA        NA
## 2936         NA      NA        NA        NA
## 2937         NA      NA        NA        NA
## 2938         NA      NA        NA        NA
## 2939         NA      NA        NA        NA
## 2940         NA      NA        NA        NA
## 2941         NA      NA        NA        NA
## 2942         NA      NA        NA        NA
## 2943         NA      NA        NA        NA
## 2944         NA      NA        NA        NA
## 2945         NA      NA        NA        NA
## 2946         NA      NA        NA        NA
## 2947         NA      NA        NA        NA
## 2948         NA      NA        NA        NA
## 2949         NA      NA        NA        NA
## 2950         NA      NA        NA        NA
## 2951         NA      NA        NA        NA
## 2952         NA      NA        NA        NA
## 2953         NA      NA        NA        NA
## 2954         NA      NA        NA        NA
## 2955         NA      NA        NA        NA
## 2956         NA      NA        NA        NA
## 2957         NA      NA        NA        NA
## 2958         NA      NA        NA        NA
## 2959         NA      NA        NA        NA
## 2960         NA      NA        NA        NA
## 2961         NA      NA        NA        NA
## 2962         NA      NA        NA        NA
## 2963         NA      NA        NA        NA
## 2964         NA      NA        NA        NA
## 2965         NA      NA        NA        NA
## 2966         NA      NA        NA        NA
## 2967         NA      NA        NA        NA
## 2968         NA      NA        NA        NA
## 2969         NA      NA        NA        NA
## 2970         NA      NA        NA        NA
## 2971         NA      NA        NA        NA
## 2972         NA      NA        NA        NA
## 2973         NA      NA        NA        NA
## 2974         NA      NA        NA        NA
## 2975         NA      NA        NA        NA
## 2976         NA      NA        NA        NA
## 2977         NA      NA        NA        NA
## 2978         NA      NA        NA        NA
## 2979         NA      NA        NA        NA
## 2980         NA      NA        NA        NA
## 2981         NA      NA        NA        NA
## 2982         NA      NA        NA        NA
## 2983         NA      NA        NA        NA
## 2984         NA      NA        NA        NA
## 2985         NA      NA        NA        NA
## 2986         NA      NA        NA        NA
## 2987         NA      NA        NA        NA
## 2988         NA      NA        NA        NA
## 2989         NA      NA        NA        NA
## 2990         NA      NA        NA        NA
## 2991         NA      NA        NA        NA
## 2992         NA      NA        NA        NA
## 2993         NA      NA        NA        NA
## 2994         NA      NA        NA        NA
## 2995         NA      NA        NA        NA
## 2996         NA      NA        NA        NA
## 2997         NA      NA        NA        NA
## 2998         NA      NA        NA        NA
## 2999         NA      NA        NA        NA
## 3000         NA      NA        NA        NA
## 3001         NA      NA        NA        NA
## 3002         NA      NA        NA        NA
## 3003         NA      NA        NA        NA
## 3004         NA      NA        NA        NA
## 3005         NA      NA        NA        NA
## 3006         NA      NA        NA        NA
## 3007         NA      NA        NA        NA
## 3008         NA      NA        NA        NA
## 3009         NA      NA        NA        NA
## 3010         NA      NA        NA        NA
## 3011         NA      NA        NA        NA
## 3012         NA      NA        NA        NA
## 3013         NA      NA        NA        NA
## 3014         NA      NA        NA        NA
## 3015         NA      NA        NA        NA
## 3016         NA      NA        NA        NA
## 3017         NA      NA        NA        NA
## 3018         NA      NA        NA        NA
## 3019         NA      NA        NA        NA
## 3020         NA      NA        NA        NA
## 3021         NA      NA        NA        NA
## 3022         NA      NA        NA        NA
## 3023         NA      NA        NA        NA
## 3024         NA      NA        NA        NA
## 3025         NA      NA        NA        NA
## 3026         NA      NA        NA        NA
## 3027         NA      NA        NA        NA
## 3028         NA      NA        NA        NA
## 3029         NA      NA        NA        NA
## 3030         NA      NA        NA        NA
## 3031         NA      NA        NA        NA
## 3032         NA      NA        NA        NA
## 3033         NA      NA        NA        NA
## 3034         NA      NA        NA        NA
## 3035         NA      NA        NA        NA
## 3036         NA      NA        NA        NA
## 3037         NA      NA        NA        NA
## 3038         NA      NA        NA        NA
## 3039         NA      NA        NA        NA
## 3040         NA      NA        NA        NA
## 3041         NA      NA        NA        NA
## 3042         NA      NA        NA        NA
## 3043         NA      NA        NA        NA
## 3044         NA      NA        NA        NA
## 3045         NA      NA        NA        NA
## 3046         NA      NA        NA        NA
## 3047         NA      NA        NA        NA
## 3048         NA      NA        NA        NA
## 3049         NA      NA        NA        NA
## 3050         NA      NA        NA        NA
## 3051         NA      NA        NA        NA
## 3052         NA      NA        NA        NA
## 3053         NA      NA        NA        NA
## 3054         NA      NA        NA        NA
## 3055         NA      NA        NA        NA
## 3056         NA      NA        NA        NA
## 3057         NA      NA        NA        NA
## 3058         NA      NA        NA        NA
## 3059         NA      NA        NA        NA
## 3060         NA      NA        NA        NA
## 3061         NA      NA        NA        NA
## 3062         NA      NA        NA        NA
## 3063         NA      NA        NA        NA
## 3064         NA      NA        NA        NA
## 3065         NA      NA        NA        NA
## 3066         NA      NA        NA        NA
## 3067         NA      NA        NA        NA
## 3068         NA      NA        NA        NA
## 3069         NA      NA        NA        NA
## 3070         NA      NA        NA        NA
## 3071         NA      NA        NA        NA
## 3072         NA      NA        NA        NA
## 3073         NA      NA        NA        NA
## 3074         NA      NA        NA        NA
## 3075         NA      NA        NA        NA
## 3076         NA      NA        NA        NA
## 3077         NA      NA        NA        NA
## 3078         NA      NA        NA        NA
## 3079         NA      NA        NA        NA
## 3080         NA      NA        NA        NA
## 3081         NA      NA        NA        NA
## 3082         NA      NA        NA        NA
## 3083         NA      NA        NA        NA
## 3084         NA      NA        NA        NA
## 3085         NA      NA        NA        NA
## 3086         NA      NA        NA        NA
## 3087         NA      NA        NA        NA
## 3088         NA      NA        NA        NA
## 3089         NA      NA        NA        NA
## 3090         NA      NA        NA        NA
## 3091         NA      NA        NA        NA
## 3092         NA      NA        NA        NA
## 3093         NA      NA        NA        NA
## 3094         NA      NA        NA        NA
## 3095         NA      NA        NA        NA
## 3096         NA      NA        NA        NA
## 3097         NA      NA        NA        NA
## 3098         NA      NA        NA        NA
## 3099         NA      NA        NA        NA
## 3100         NA      NA        NA        NA
## 3101         NA      NA        NA        NA
## 3102         NA      NA        NA        NA
## 3103         NA      NA        NA        NA
## 3104         NA      NA        NA        NA
## 3105         NA      NA        NA        NA
## 3106         NA      NA        NA        NA
## 3107         NA      NA        NA        NA
## 3108         NA      NA        NA        NA
## 3109         NA      NA        NA        NA
## 3110         NA      NA        NA        NA
## 3111         NA      NA        NA        NA
## 3112         NA      NA        NA        NA
## 3113         NA      NA        NA        NA
## 3114         NA      NA        NA        NA
## 3115         NA      NA        NA        NA
## 3116         NA      NA        NA        NA
## 3117         NA      NA        NA        NA
## 3118         NA      NA        NA        NA
## 3119         NA      NA        NA        NA
## 3120         NA      NA        NA        NA
## 3121         NA      NA        NA        NA
## 3122         NA      NA        NA        NA
## 3123         NA      NA        NA        NA
## 3124         NA      NA        NA        NA
## 3125         NA      NA        NA        NA
## 3126         NA      NA        NA        NA
## 3127         NA      NA        NA        NA
## 3128         NA      NA        NA        NA
## 3129         NA      NA        NA        NA
## 3130         NA      NA        NA        NA
## 3131         NA      NA        NA        NA
## 3132         NA      NA        NA         0
## 3133         NA      NA        NA         0
## 3134         NA      NA        NA         1
## 3135         NA      NA        NA         0
## 3136         NA      NA        NA         0
## 3137         NA      NA        NA         0
## 3138         NA      NA        NA         1
## 3139         NA      NA        NA         1
## 3140         NA      NA        NA         1
## 3141         NA      NA        NA         0
## 3142         NA      NA        NA         0
## 3143         NA      NA        NA         0
## 3144         NA      NA        NA         0
## 3145         NA      NA        NA         1
## 3146         NA      NA        NA         0
## 3147         NA      NA        NA         2
## 3148         NA      NA        NA         0
## 3149         NA      NA        NA         0
## 3150         NA      NA        NA         0
## 3151         NA      NA        NA         0
## 3152         NA      NA        NA         0
## 3153         NA      NA        NA         0
## 3154         NA      NA        NA         0
## 3155         NA      NA        NA         0
## 3156         NA      NA        NA         0
## 3157         NA      NA        NA         0
## 3158         NA      NA        NA         0
## 3159         NA      NA        NA         0
## 3160         NA      NA        NA         0
## 3161         NA      NA        NA         0
## 3162         NA      NA        NA         0
## 3163         NA      NA        NA         0
## 3164         NA      NA        NA         0
## 3165         NA      NA        NA         0
## 3166         NA      NA        NA         0
## 3167         NA      NA        NA         0
## 3168         NA      NA        NA         1
## 3169         NA      NA        NA         1
## 3170         NA      NA        NA         0
## 3171         NA      NA        NA         0
## 3172         NA      NA        NA         0
## 3173         NA      NA        NA         0
## 3174         NA      NA        NA         0
## 3175         NA      NA        NA         0
## 3176         NA      NA        NA         0
## 3177         NA      NA        NA         0
## 3178         NA      NA        NA         0
## 3179         NA      NA        NA         0
## 3180         NA      NA        NA         0
## 3181         NA      NA        NA         0
## 3182         NA      NA        NA         0
## 3183         NA      NA        NA         0
## 3184         NA      NA        NA         0
## 3185         NA      NA        NA         1
## 3186         NA      NA        NA         1
## 3187         NA      NA        NA         0
## 3188         NA      NA        NA         0
## 3189         NA      NA        NA         0
## 3190         NA      NA        NA         0
## 3191         NA      NA        NA         1
## 3192         NA      NA        NA         0
## 3193         NA      NA        NA         1
## 3194         NA      NA        NA         0
## 3195         NA      NA        NA         0
## 3196         NA      NA        NA         1
## 3197         NA      NA        NA         0
## 3198         NA      NA        NA         0
## 3199         NA      NA        NA         1
## 3200         NA      NA        NA         0
## 3201         NA      NA        NA         1
## 3202         NA      NA        NA         0
## 3203         NA      NA        NA         0
## 3204         NA      NA        NA         0
## 3205         NA      NA        NA         0
## 3206         NA      NA        NA         1
## 3207         NA      NA        NA         0
## 3208         NA      NA        NA         0
## 3209         NA      NA        NA         0
## 3210         NA      NA        NA         0
## 3211         NA      NA        NA         0
## 3212         NA      NA        NA         0
## 3213         NA      NA        NA         0
## 3214         NA      NA        NA         0
## 3215         NA      NA        NA         0
## 3216         NA      NA        NA         0
## 3217         NA      NA        NA         0
## 3218         NA      NA        NA         0
## 3219         NA      NA        NA        NA
## 3220         NA      NA        NA        NA
## 3221         NA      NA        NA        NA
## 3222         NA      NA        NA        NA
## 3223         NA      NA        NA        NA
## 3224         NA      NA        NA        NA
## 3225         NA      NA        NA        NA
## 3226         NA      NA        NA        NA
## 3227         NA      NA        NA        NA
## 3228         NA      NA        NA        NA
## 3229         NA      NA        NA        NA
## 3230         NA      NA        NA        NA
## 3231         NA      NA        NA        NA
## 3232         NA      NA        NA        NA
## 3233         NA      NA        NA        NA
## 3234         NA      NA        NA        NA
## 3235         NA      NA        NA        NA
## 3236         NA      NA        NA        NA
## 3237         NA      NA        NA        NA
## 3238         NA      NA        NA        NA
## 3239         NA      NA        NA        NA
## 3240         NA      NA        NA        NA
## 3241         NA      NA        NA        NA
## 3242         NA      NA        NA        NA
## 3243         NA      NA        NA        NA
## 3244         NA      NA        NA        NA
## 3245         NA      NA        NA        NA
## 3246         NA      NA        NA        NA
## 3247         NA      NA        NA        NA
## 3248         NA      NA        NA        NA
## 3249         NA      NA        NA        NA
## 3250         NA      NA        NA        NA
## 3251         NA      NA        NA        NA
## 3252         NA      NA        NA        NA
## 3253         NA      NA        NA        NA
## 3254         NA      NA        NA        NA
## 3255         NA      NA        NA        NA
## 3256         NA      NA        NA        NA
## 3257         NA      NA        NA        NA
## 3258         NA      NA        NA        NA
## 3259         NA      NA        NA        NA
## 3260         NA      NA        NA        NA
## 3261         NA      NA        NA        NA
## 3262         NA      NA        NA        NA
## 3263         NA      NA        NA        NA
## 3264         NA      NA        NA        NA
## 3265         NA      NA        NA        NA
## 3266         NA      NA        NA        NA
## 3267         NA      NA        NA        NA
## 3268         NA      NA        NA        NA
## 3269         NA      NA        NA        NA
## 3270         NA      NA        NA        NA
## 3271         NA      NA        NA        NA
## 3272         NA      NA        NA        NA
## 3273         NA      NA        NA        NA
## 3274         NA      NA        NA        NA
## 3275         NA      NA        NA        NA
## 3276         NA      NA        NA        NA
## 3277         NA      NA        NA        NA
## 3278         NA      NA        NA        NA
## 3279         NA      NA        NA        NA
## 3280         NA      NA        NA        NA
## 3281         NA      NA        NA        NA
## 3282         NA      NA        NA        NA
## 3283         NA      NA        NA        NA
## 3284         NA      NA        NA        NA
## 3285         NA      NA        NA        NA
## 3286         NA      NA        NA        NA
## 3287         NA      NA        NA        NA
## 3288         NA      NA        NA        NA
## 3289         NA      NA        NA        NA
## 3290         NA      NA        NA        NA
## 3291         NA      NA        NA        NA
## 3292         NA      NA        NA        NA
## 3293         NA      NA        NA        NA
## 3294         NA      NA        NA        NA
## 3295         NA      NA        NA        NA
## 3296         NA      NA        NA        NA
## 3297         NA      NA        NA        NA
## 3298         NA      NA        NA        NA
## 3299         NA      NA        NA        NA
## 3300         NA      NA        NA        NA
## 3301         NA      NA        NA        NA
## 3302         NA      NA        NA        NA
## 3303         NA      NA        NA        NA
## 3304         NA      NA        NA        NA
## 3305         NA      NA        NA        NA
## 3306         NA      NA        NA        NA
## 3307         NA      NA        NA        NA
## 3308         NA      NA        NA        NA
## 3309         NA      NA        NA        NA
## 3310         NA      NA        NA        NA
## 3311         NA      NA        NA        NA
## 3312         NA      NA        NA        NA
## 3313         NA      NA        NA        NA
## 3314         NA      NA        NA        NA
## 3315         NA      NA        NA        NA
## 3316         NA      NA        NA        NA
## 3317         NA      NA        NA        NA
## 3318         NA      NA        NA        NA
## 3319         NA      NA        NA        NA
## 3320         NA      NA        NA        NA
## 3321         NA      NA        NA        NA
## 3322         NA      NA        NA        NA
## 3323         NA      NA        NA        NA
## 3324         NA      NA        NA        NA
## 3325         NA      NA        NA        NA
## 3326         NA      NA        NA        NA
## 3327         NA      NA        NA        NA
## 3328         NA      NA        NA        NA
## 3329         NA      NA        NA        NA
## 3330         NA      NA        NA        NA
## 3331         NA      NA        NA        NA
## 3332         NA      NA        NA        NA
## 3333         NA      NA        NA        NA
## 3334         NA      NA        NA        NA
## 3335         NA      NA        NA        NA
## 3336         NA      NA        NA        NA
## 3337         NA      NA        NA        NA
## 3338         NA      NA        NA        NA
## 3339         NA      NA        NA        NA
## 3340         NA      NA        NA        NA
## 3341         NA      NA        NA        NA
## 3342         NA      NA        NA        NA
## 3343         NA      NA        NA        NA
## 3344         NA      NA        NA        NA
## 3345         NA      NA        NA        NA
## 3346         NA      NA        NA        NA
## 3347         NA      NA        NA        NA
## 3348         NA      NA        NA        NA
## 3349         NA      NA        NA        NA
## 3350         NA      NA        NA        NA
## 3351         NA      NA        NA        NA
## 3352         NA      NA        NA        NA
## 3353         NA      NA        NA        NA
## 3354         NA      NA        NA        NA
## 3355         NA      NA        NA        NA
## 3356         NA      NA        NA        NA
## 3357         NA      NA        NA        NA
## 3358         NA      NA        NA        NA
## 3359         NA      NA        NA        NA
## 3360         NA      NA        NA        NA
## 3361         NA      NA        NA        NA
## 3362         NA      NA        NA        NA
## 3363         NA      NA        NA        NA
## 3364         NA      NA        NA        NA
## 3365         NA      NA        NA        NA
## 3366         NA      NA        NA        NA
## 3367         NA      NA        NA        NA
## 3368         NA      NA        NA        NA
## 3369         NA      NA        NA        NA
## 3370         NA      NA        NA        NA
## 3371         NA      NA        NA        NA
## 3372         NA      NA        NA        NA
## 3373         NA      NA        NA        NA
## 3374         NA      NA        NA        NA
## 3375         NA      NA        NA        NA
## 3376         NA      NA        NA        NA
## 3377         NA      NA        NA        NA
## 3378         NA      NA        NA        NA
## 3379         NA      NA        NA        NA
## 3380         NA      NA        NA        NA
## 3381         NA      NA        NA        NA
## 3382         NA      NA        NA        NA
## 3383         NA      NA        NA        NA
## 3384         NA      NA        NA        NA
## 3385         NA      NA        NA        NA
## 3386         NA      NA        NA        NA
## 3387         NA      NA        NA        NA
## 3388         NA      NA        NA        NA
## 3389         NA      NA        NA        NA
## 3390         NA      NA        NA        NA
## 3391         NA      NA        NA        NA
## 3392         NA      NA        NA        NA
## 3393         NA      NA        NA        NA
## 3394         NA      NA        NA        NA
## 3395         NA      NA        NA        NA
## 3396         NA      NA        NA        NA
## 3397         NA      NA        NA        NA
## 3398         NA      NA        NA        NA
## 3399         NA      NA        NA        NA
## 3400         NA      NA        NA        NA
## 3401         NA      NA        NA        NA
## 3402         NA      NA        NA        NA
## 3403         NA      NA        NA        NA
## 3404         NA      NA        NA        NA
## 3405         NA      NA        NA        NA
## 3406         NA      NA        NA        NA
## 3407         NA      NA        NA        NA
## 3408         NA      NA        NA        NA
## 3409         NA      NA        NA        NA
## 3410         NA      NA        NA        NA
## 3411         NA      NA        NA        NA
## 3412         NA      NA        NA        NA
## 3413         NA      NA        NA        NA
## 3414         NA      NA        NA        NA
## 3415         NA      NA        NA        NA
## 3416         NA      NA        NA        NA
## 3417         NA      NA        NA        NA
## 3418         NA      NA        NA        NA
## 3419         NA      NA        NA        NA
## 3420         NA      NA        NA        NA
## 3421         NA      NA        NA        NA
## 3422         NA      NA        NA        NA
## 3423         NA      NA        NA        NA
## 3424         NA      NA        NA        NA
## 3425         NA      NA        NA        NA
## 3426         NA      NA        NA        NA
## 3427         NA      NA        NA        NA
## 3428         NA      NA        NA        NA
## 3429         NA      NA        NA        NA
## 3430         NA      NA        NA        NA
## 3431         NA      NA        NA        NA
## 3432         NA      NA        NA        NA
## 3433         NA      NA        NA        NA
## 3434         NA      NA        NA        NA
## 3435         NA      NA        NA        NA
## 3436         NA      NA        NA        NA
## 3437         NA      NA        NA        NA
## 3438         NA      NA        NA        NA
## 3439         NA      NA        NA        NA
## 3440         NA      NA        NA        NA
## 3441         NA      NA        NA        NA
## 3442         NA      NA        NA        NA
## 3443         NA      NA        NA        NA
## 3444         NA      NA        NA        NA
## 3445         NA      NA        NA        NA
## 3446         NA      NA        NA        NA
## 3447         NA      NA        NA        NA
## 3448         NA      NA        NA        NA
## 3449         NA      NA        NA        NA
## 3450         NA      NA        NA        NA
## 3451         NA      NA        NA        NA
## 3452         NA      NA        NA        NA
## 3453         NA      NA        NA        NA
## 3454         NA      NA        NA        NA
## 3455         NA      NA        NA        NA
## 3456         NA      NA        NA        NA
## 3457         NA      NA        NA        NA
## 3458         NA      NA        NA        NA
## 3459         NA      NA        NA        NA
## 3460         NA      NA        NA        NA
## 3461         NA      NA        NA        NA
## 3462         NA      NA        NA        NA
## 3463         NA      NA        NA        NA
## 3464         NA      NA        NA        NA
## 3465         NA      NA        NA        NA
## 3466         NA      NA        NA        NA
## 3467         NA      NA        NA        NA
## 3468         NA      NA        NA        NA
## 3469         NA      NA        NA        NA
## 3470         NA      NA        NA        NA
## 3471         NA      NA        NA        NA
## 3472         NA      NA        NA        NA
## 3473         NA      NA        NA        NA
## 3474         NA      NA        NA        NA
## 3475         NA      NA        NA        NA
## 3476         NA      NA        NA        NA
## 3477         NA      NA        NA        NA
## 3478         NA      NA        NA        NA
## 3479         NA      NA        NA        NA
## 3480         NA      NA        NA        NA
## 3481         NA      NA        NA        NA
## 3482         NA      NA        NA        NA
## 3483         NA      NA        NA        NA
## 3484         NA      NA        NA        NA
## 3485         NA      NA        NA        NA
## 3486         NA      NA        NA        NA
## 3487         NA      NA        NA        NA
## 3488         NA      NA        NA        NA
## 3489         NA      NA        NA        NA
## 3490         NA      NA        NA        NA
## 3491         NA      NA        NA        NA
## 3492         NA      NA        NA        NA
## 3493         NA      NA        NA        NA
## 3494         NA      NA        NA        NA
## 3495         NA      NA        NA        NA
## 3496         NA      NA        NA        NA
## 3497         NA      NA        NA        NA
## 3498         NA      NA        NA        NA
## 3499         NA      NA        NA        NA
## 3500         NA      NA        NA        NA
## 3501         NA      NA        NA        NA
## 3502         NA      NA        NA        NA
## 3503         NA      NA        NA        NA
## 3504         NA      NA        NA        NA
## 3505         NA      NA        NA        NA
## 3506         NA      NA        NA        NA
## 3507         NA      NA        NA        NA
## 3508         NA      NA        NA        NA
## 3509         NA      NA        NA        NA
## 3510         NA      NA        NA        NA
## 3511         NA      NA        NA        NA
## 3512         NA      NA        NA        NA
## 3513         NA      NA        NA        NA
## 3514         NA      NA        NA        NA
## 3515         NA      NA        NA        NA
## 3516         NA      NA        NA        NA
## 3517         NA      NA        NA        NA
## 3518         NA      NA        NA        NA
## 3519         NA      NA        NA        NA
## 3520         NA      NA        NA        NA
## 3521         NA      NA        NA        NA
## 3522         NA      NA        NA        NA
## 3523         NA      NA        NA        NA
## 3524         NA      NA        NA        NA
## 3525         NA      NA        NA        NA
## 3526         NA      NA        NA        NA
## 3527         NA      NA        NA        NA
## 3528         NA      NA        NA        NA
## 3529         NA      NA        NA        NA
## 3530         NA      NA        NA        NA
## 3531         NA      NA        NA        NA
## 3532         NA      NA        NA        NA
## 3533         NA      NA        NA        NA
## 3534         NA      NA        NA        NA
## 3535         NA      NA        NA        NA
## 3536         NA      NA        NA        NA
## 3537         NA      NA        NA        NA
## 3538         NA      NA        NA        NA
## 3539         NA      NA        NA        NA
## 3540         NA      NA        NA        NA
## 3541         NA      NA        NA        NA
## 3542         NA      NA        NA        NA
## 3543         NA      NA        NA        NA
## 3544         NA      NA        NA        NA
## 3545         NA      NA        NA        NA
## 3546         NA      NA        NA        NA
## 3547         NA      NA        NA        NA
## 3548         NA      NA        NA        NA
## 3549         NA      NA        NA        NA
## 3550         NA      NA        NA        NA
## 3551         NA      NA        NA        NA
## 3552         NA      NA        NA        NA
## 3553         NA      NA        NA        NA
## 3554         NA      NA        NA        NA
## 3555         NA      NA        NA        NA
## 3556         NA      NA        NA        NA
## 3557         NA      NA        NA        NA
## 3558         NA      NA        NA        NA
## 3559         NA      NA        NA        NA
## 3560         NA      NA        NA        NA
## 3561         NA      NA        NA        NA
## 3562         NA      NA        NA        NA
## 3563         NA      NA        NA        NA
## 3564         NA      NA        NA        NA
## 3565         NA      NA        NA        NA
## 3566         NA      NA        NA        NA
## 3567         NA      NA        NA        NA
## 3568         NA      NA        NA        NA
## 3569         NA      NA        NA        NA
## 3570         NA      NA        NA        NA
## 3571         NA      NA        NA        NA
## 3572         NA      NA        NA        NA
## 3573         NA      NA        NA        NA
## 3574         NA      NA        NA        NA
## 3575         NA      NA        NA        NA
## 3576         NA      NA        NA        NA
## 3577         NA      NA        NA        NA
## 3578         NA      NA        NA        NA
## 3579         NA      NA        NA        NA
## 3580         NA      NA        NA        NA
## 3581         NA      NA        NA        NA
## 3582         NA      NA        NA        NA
## 3583         NA      NA        NA        NA
## 3584         NA      NA        NA        NA
## 3585         NA      NA        NA        NA
## 3586         NA      NA        NA        NA
## 3587         NA      NA        NA        NA
## 3588         NA      NA        NA        NA
## 3589         NA      NA        NA        NA
## 3590         NA      NA        NA        NA
## 3591         NA      NA        NA        NA
## 3592         NA      NA        NA        NA
## 3593         NA      NA        NA        NA
## 3594         NA      NA        NA        NA
## 3595         NA      NA        NA        NA
## 3596         NA      NA        NA        NA
## 3597         NA      NA        NA        NA
## 3598         NA      NA        NA        NA
## 3599         NA      NA        NA        NA
## 3600         NA      NA        NA        NA
## 3601         NA      NA        NA        NA
## 3602         NA      NA        NA        NA
## 3603         NA      NA        NA        NA
## 3604         NA      NA        NA        NA
## 3605         NA      NA        NA        NA
## 3606         NA      NA        NA        NA
## 3607         NA      NA        NA        NA
## 3608         NA      NA        NA        NA
## 3609         NA      NA        NA        NA
## 3610         NA      NA        NA        NA
## 3611         NA      NA        NA        NA
## 3612         NA      NA        NA        NA
## 3613         NA      NA        NA        NA
## 3614         NA      NA        NA        NA
## 3615         NA      NA        NA        NA
## 3616         NA      NA        NA        NA
## 3617         NA      NA        NA        NA
## 3618         NA      NA        NA        NA
## 3619         NA      NA        NA        NA
## 3620         NA      NA        NA        NA
## 3621         NA      NA        NA        NA
## 3622         NA      NA        NA        NA
## 3623         NA      NA        NA        NA
## 3624         NA      NA        NA        NA
## 3625         NA      NA        NA        NA
## 3626         NA      NA        NA        NA
## 3627         NA      NA        NA        NA
## 3628         NA      NA        NA        NA
## 3629         NA      NA        NA        NA
## 3630         NA      NA        NA        NA
## 3631         NA      NA        NA        NA
## 3632         NA      NA        NA        NA
## 3633         NA      NA        NA        NA
## 3634         NA      NA        NA        NA
## 3635         NA      NA        NA        NA
## 3636         NA      NA        NA        NA
## 3637         NA      NA        NA        NA
## 3638         NA      NA        NA        NA
## 3639         NA      NA        NA        NA
## 3640         NA      NA        NA        NA
## 3641         NA      NA        NA        NA
## 3642         NA      NA        NA        NA
## 3643         NA      NA        NA        NA
## 3644         NA      NA        NA        NA
## 3645         NA      NA        NA        NA
## 3646         NA      NA        NA        NA
## 3647         NA      NA        NA        NA
## 3648         NA      NA        NA        NA
## 3649         NA      NA        NA        NA
## 3650         NA      NA        NA        NA
## 3651         NA      NA        NA        NA
## 3652         NA      NA        NA        NA
## 3653         NA      NA        NA        NA
## 3654         NA      NA        NA        NA
## 3655         NA      NA        NA        NA
## 3656         NA      NA        NA        NA
## 3657         NA      NA        NA        NA
## 3658         NA      NA        NA        NA
## 3659         NA      NA        NA        NA
## 3660         NA      NA        NA        NA
## 3661         NA      NA        NA        NA
## 3662         NA      NA        NA        NA
## 3663         NA      NA        NA        NA
## 3664         NA      NA        NA        NA
## 3665         NA      NA        NA        NA
## 3666         NA      NA        NA        NA
## 3667         NA      NA        NA        NA
## 3668         NA      NA        NA        NA
## 3669         NA      NA        NA        NA
## 3670         NA      NA        NA        NA
## 3671         NA      NA        NA        NA
## 3672         NA      NA        NA        NA
## 3673         NA      NA        NA        NA
## 3674         NA      NA        NA        NA
## 3675         NA      NA        NA        NA
## 3676         NA      NA        NA        NA
## 3677         NA      NA        NA        NA
## 3678         NA      NA        NA        NA
## 3679         NA      NA        NA        NA
## 3680         NA      NA        NA        NA
## 3681         NA      NA        NA        NA
## 3682         NA      NA        NA        NA
## 3683         NA      NA        NA        NA
## 3684         NA      NA        NA        NA
## 3685         NA      NA        NA        NA
## 3686         NA      NA        NA        NA
## 3687         NA      NA        NA        NA
## 3688         NA      NA        NA        NA
## 3689         NA      NA        NA        NA
## 3690         NA      NA        NA        NA
## 3691         NA      NA        NA        NA
## 3692         NA      NA        NA        NA
## 3693         NA      NA        NA        NA
## 3694         NA      NA        NA        NA
## 3695         NA      NA        NA        NA
## 3696         NA      NA        NA        NA
## 3697         NA      NA        NA        NA
## 3698         NA      NA        NA        NA
## 3699         NA      NA        NA        NA
## 3700         NA      NA        NA        NA
## 3701         NA      NA        NA        NA
## 3702         NA      NA        NA        NA
## 3703         NA      NA        NA        NA
## 3704         NA      NA        NA        NA
## 3705         NA      NA        NA        NA
## 3706         NA      NA        NA        NA
## 3707         NA      NA        NA        NA
## 3708         NA      NA        NA        NA
## 3709         NA      NA        NA        NA
## 3710         NA      NA        NA        NA
## 3711         NA      NA        NA        NA
## 3712         NA      NA        NA        NA
## 3713         NA      NA        NA        NA
## 3714          2       0         0         3
## 3715         NA       1        NA        NA
## 3716          0      NA        NA        NA
## 3717         NA      NA        NA        NA
## 3718         NA       0        NA        NA
## 3719          1      NA        NA        NA
## 3720          2       2         1         1
## 3721          0      NA         0        NA
## 3722          1      NA        NA         1
## 3723          0       0         1         0
## 3724         NA       0        NA        NA
## 3725         NA      NA        NA        NA
## 3726         NA      NA        NA        NA
## 3727          2      NA        NA        NA
## 3728          0       1        NA         1
## 3729          1       1        NA         0
## 3730         NA      NA        NA        NA
## 3731          5       2         2         2
## 3732         NA      NA        NA        NA
## 3733          1       0         1         2
## 3734         NA      NA         0        NA
## 3735          1       2         1         1
## 3736         NA      NA        NA         0
## 3737         NA       1         1        NA
## 3738         NA      NA         0        NA
## 3739         NA      NA        NA        NA
## 3740         NA      NA        NA        NA
## 3741          1       1         1         3
## 3742          4       2         2         1
## 3743         NA      NA        NA        NA
## 3744         NA       1        NA        NA
## 3745         NA       0        NA        NA
## 3746         NA      NA        NA         1
## 3747          0       0        NA         1
## 3748         NA      NA        NA        NA
## 3749         NA      NA        NA        NA
## 3750         NA      NA        NA        NA
## 3751         NA      NA        NA        NA
## 3752         NA      NA        NA        NA
## 3753         NA      NA        NA        NA
## 3754          0       0         1         0
## 3755         NA      NA        NA        NA
## 3756          2       1         2         1
## 3757         NA       1        NA        NA
## 3758         NA      NA        NA        NA
## 3759          0       0         2        NA
## 3760          1      NA         1         1
## 3761         NA      NA        NA        NA
## 3762         NA      NA        NA        NA
## 3763          3       1         3         1
## 3764         NA      NA         0        NA
## 3765         NA      NA        NA        NA
## 3766         NA      NA        NA        NA
## 3767          0      NA        NA        NA
## 3768         NA       0        NA        NA
## 3769         NA      NA        NA         1
## 3770         NA      NA        NA        NA
## 3771         NA      NA        NA        NA
## 3772         NA      NA        NA        NA
## 3773         NA      NA        NA        NA
## 3774         NA      NA        NA        NA
## 3775         NA      NA        NA        NA
## 3776         NA      NA        NA        NA
## 3777         NA      NA        NA        NA
## 3778         NA      NA        NA        NA
## 3779         NA      NA        NA        NA
## 3780         NA      NA        NA        NA
## 3781         NA      NA        NA        NA
## 3782         NA      NA        NA        NA
## 3783         NA      NA        NA        NA
## 3784         NA      NA        NA        NA
## 3785         NA      NA        NA        NA
## 3786         NA      NA        NA        NA
## 3787         NA      NA        NA        NA
## 3788         NA      NA        NA        NA
## 3789         NA      NA        NA        NA
## 3790         NA      NA        NA        NA
## 3791         NA      NA        NA        NA
## 3792         NA      NA        NA        NA
## 3793         NA      NA        NA        NA
## 3794         NA      NA        NA        NA
## 3795         NA      NA        NA        NA
## 3796         NA      NA        NA        NA
## 3797         NA      NA        NA        NA
## 3798         NA      NA        NA        NA
## 3799         NA      NA        NA        NA
## 3800         NA      NA        NA        NA
## 3801         NA      NA        NA        NA
## 3802         NA      NA        NA        NA
## 3803         NA      NA        NA        NA
## 3804         NA      NA        NA        NA
## 3805         NA      NA        NA        NA
## 3806         NA      NA        NA        NA
## 3807         NA      NA         0         0
## 3808         NA      NA        NA         0
## 3809          0       0         0         0
## 3810          1       1         1         1
## 3811          0      NA        NA         0
## 3812         NA      NA        NA         0
## 3813         NA      NA        NA         0
## 3814          0       0         0        NA
## 3815         NA      NA        NA        NA
## 3816         NA      NA        NA         0
## 3817         NA      NA        NA        NA
## 3818         NA      NA        NA         1
## 3819         NA      NA        NA        NA
## 3820          0      NA        NA        NA
## 3821         NA      NA        NA         0
## 3822          0       1         1         4
## 3823         NA      NA        NA         0
## 3824          0       0        NA        NA
## 3825          0      NA        NA         0
## 3826         NA      NA         0         0
## 3827          1       1         0         2
## 3828          0      NA         0         0
## 3829         NA      NA        NA         0
## 3830         NA      NA         0        NA
## 3831         NA      NA         0         0
## 3832          0      NA         0         0
## 3833         NA      NA        NA         0
## 3834         NA      NA        NA        NA
## 3835         NA      NA        NA         0
## 3836          0      NA        NA         0
## 3837         NA      NA        NA         1
## 3838         NA      NA        NA        NA
## 3839         NA      NA        NA         0
## 3840          0      NA        NA        NA
## 3841         NA       2        NA        NA
## 3842         NA      NA        NA         0
## 3843         NA      NA        NA         0
## 3844         NA      NA        NA        NA
## 3845         NA       0         0        NA
## 3846          0      NA         0         0
## 3847         NA      NA        NA        NA
## 3848         NA      NA        NA        NA
## 3849         NA      NA        NA        NA
## 3850          0      NA        NA        NA
## 3851         NA      NA        NA        NA
## 3852         NA       0        NA        NA
## 3853         NA      NA        NA        NA
## 3854         NA      NA        NA         0
## 3855         NA      NA        NA         0
## 3856         NA      NA        NA         0
## 3857         NA      NA        NA         0
## 3858          0      NA        NA         0
## 3859          0      NA        NA         0
## 3860         NA      NA        NA        NA
## 3861         NA      NA        NA         0
## 3862         NA      NA        NA         0
## 3863         NA       0         0         0
## 3864         NA       0         0        NA
## 3865         NA      NA        NA         0
## 3866         NA      NA        NA        NA
## 3867         NA      NA         0        NA
## 3868         NA      NA        NA         0
## 3869         NA      NA        NA        NA
## 3870          0       1         1         1
## 3871          0      NA        NA         0
## 3872          0      NA         0        NA
## 3873          0       0         0         0
## 3874          0       1        NA        NA
## 3875         NA      NA        NA         0
## 3876          0      NA         0         0
## 3877         NA      NA         0         0
## 3878         NA      NA         0        NA
## 3879         NA       0        NA        NA
## 3880         NA      NA        NA         0
## 3881         NA      NA        NA        NA
## 3882         NA      NA         0        NA
## 3883          0       0         0         0
## 3884         NA      NA        NA        NA
## 3885         NA      NA        NA         0
## 3886         NA       0         1         0
## 3887         NA       0         0         1
## 3888          0       0         1         0
## 3889         NA      NA        NA         0
## 3890          0       0         1         0
## 3891         NA      NA        NA        NA
## 3892          0      NA         0         0
## 3893         NA      NA         1        NA
## 3894         NA       0         0        NA
## 3895         NA      NA        NA         0
## 3896          0       2         4         2
## 3897         NA       0         0        NA
## 3898          0       0         0        NA
## 3899         NA      NA         0        NA
## 3900         NA       0        NA        NA
## 3901         NA      NA        NA         0
## 3902         NA      NA        NA        NA
## 3903         NA       0         0         2
## 3904         NA      NA         0         1
## 3905         NA      NA        NA        NA
## 3906         NA      NA        NA        NA
## 3907         NA      NA        NA         0
## 3908         NA       0        NA         0
## 3909         NA       0        NA        NA
## 3910         NA      NA        NA         0
## 3911         NA      NA        NA        NA
## 3912         NA      NA        NA        NA
## 3913          0      NA         0        NA
## 3914         NA      NA        NA        NA
## 3915          0       1         1         0
## 3916         NA      NA         0         0
## 3917         NA      NA        NA        NA
## 3918          0      NA        NA        NA
## 3919         NA      NA        NA        NA
## 3920         NA      NA        NA        NA
## 3921          0      NA        NA        NA
## 3922         NA      NA        NA        NA
## 3923          0      NA        NA        NA
## 3924          0      NA        NA        NA
## 3925         NA       0        NA        NA
## 3926         NA      NA         0        NA
## 3927          0      NA        NA        NA
## 3928          0      NA        NA        NA
## 3929          2       2         4         1
## 3930         NA       0        NA        NA
## 3931         NA      NA        NA        NA
## 3932         NA      NA        NA        NA
## 3933          0      NA        NA        NA
## 3934         NA      NA        NA        NA
## 3935          0      NA        NA         0
## 3936         NA       0         0        NA
## 3937          0       0        NA        NA
## 3938         NA      NA        NA        NA
## 3939          0      NA        NA        NA
## 3940          0      NA         0        NA
## 3941         NA      NA        NA        NA
## 3942         NA      NA        NA        NA
## 3943          0      NA         0         0
## 3944         NA      NA        NA        NA
## 3945         NA      NA        NA        NA
## 3946          0      NA        NA        NA
## 3947         NA      NA        NA        NA
## 3948         NA      NA        NA        NA
## 3949          0       0        NA        NA
## 3950         NA       0        NA        NA
## 3951          0       0        NA        NA
## 3952         NA      NA         0         1
## 3953         NA      NA        NA        NA
## 3954          1      NA        NA        NA
## 3955         NA      NA        NA        NA
## 3956          0       0        NA        NA
## 3957          0       0        NA        NA
## 3958          0       0         0         0
## 3959          0       0        NA        NA
## 3960         NA      NA        NA        NA
## 3961         NA      NA        NA        NA
## 3962          0      NA        NA        NA
## 3963         NA      NA         0        NA
## 3964          0      NA        NA        NA
## 3965          1       0        NA         0
## 3966         NA      NA        NA        NA
## 3967          0       0        NA        NA
## 3968         NA      NA        NA        NA
## 3969         NA      NA        NA         0
## 3970         NA      NA        NA        NA
## 3971          0      NA        NA        NA
## 3972          0      NA         0         0
## 3973         NA       0        NA        NA
## 3974         NA      NA         0        NA
## 3975         NA      NA        NA         0
## 3976         NA      NA        NA        NA
## 3977         NA      NA        NA        NA
## 3978          0      NA        NA        NA
## 3979          1      NA         0        NA
## 3980          0       0        NA        NA
## 3981          0      NA         0         0
## 3982          0       0         0         0
## 3983          1       0         0         1
## 3984          0      NA         0        NA
## 3985          1      NA         1         0
## 3986          0       0         0        NA
## 3987          0      NA        NA        NA
## 3988          0       0        NA        NA
## 3989          0       0        NA         0
## 3990          0       0        NA        NA
## 3991          0       0        NA        NA
## 3992         NA      NA        NA        NA
## 3993         NA       0         0        NA
## 3994         NA      NA        NA        NA
## 3995         NA      NA        NA        NA
## 3996         NA      NA        NA        NA
## 3997         NA      NA        NA         0
## 3998          0      NA         0         0
## 3999          0       0         0        NA
##  [ reached 'max' / getOption("max.print") -- omitted 462510 rows ]

Función Rename

rename(base_de_datos, Sub_territorio = Sub.Territorio)
##        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
## 7       7 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 8       8 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 9       9 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 10     10 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 11     11 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 12     12 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 13     13 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 14     14 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 15     15 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 16     16 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 17     17 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 18     18 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 19     19 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 20     20 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 21     21 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 22     22 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 23     23 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 24     24 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 25     25 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 26     26 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 27     27 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 28     28 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 29     29 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 30     30 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 31     31 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 32     32 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 33     33 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 34     34 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 35     35 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 36     36 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 37     37 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 38     38 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 39     39 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 40     40 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 41     41 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 42     42 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 43     43 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 44     44 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 45     45 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 46     46 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 47     47 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 48     48 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 49     49 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 50     50 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 51     51 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 52     52 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 53     53 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 54     54 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 55     55 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 56     56 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 57     57 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 58     58 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 59     59 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 60     60 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 61     61 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 62     62 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 63     63 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 64     64 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 65     65 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 66     66 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 67     67 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 68     68 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 69     69 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 70     70 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 71     71 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 72     72 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 73     73 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 74     74 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 75     75 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 76     76 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 77     77 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 78     78 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 79     79 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 80     80 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 81     81 2016 Guadalajara        Belenes Suc. Belenes   77737  ABARR
## 82     82 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 83     83 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 84     84 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 85     85 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 86     86 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 87     87 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 88     88 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 89     89 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 90     90 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 91     91 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 92     92 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 93     93 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 94     94 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 95     95 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 96     96 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 97     97 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 98     98 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 99     99 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 100   100 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 101   101 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 102   102 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 103   103 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 104   104 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 105   105 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 106   106 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 107   107 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 108   108 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 109   109 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 110   110 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 111   111 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 112   112 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 113   113 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 114   114 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 115   115 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 116   116 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 117   117 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 118   118 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 119   119 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 120   120 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 121   121 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 122   122 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 123   123 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 124   124 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 125   125 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 126   126 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 127   127 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 128   128 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 129   129 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 130   130 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 131   131 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 132   132 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 133   133 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 134   134 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 135   135 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 136   136 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 137   137 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 138   138 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 139   139 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 140   140 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 141   141 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 142   142 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 143   143 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 144   144 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 145   145 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 146   146 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 147   147 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 148   148 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 149   149 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 150   150 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 151   151 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 152   152 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 153   153 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 154   154 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 155   155 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 156   156 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 157   157 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 158   158 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 159   159 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 160   160 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 161   161 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 162   162 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 163   163 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 164   164 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 165   165 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 166   166 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 167   167 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 168   168 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 169   169 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 170   170 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 171   171 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 172   172 2016 Guadalajara        Belenes Suc. Belenes   77796  MARIA
## 173   173 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 174   174 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 175   175 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 176   176 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 177   177 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 178   178 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 179   179 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 180   180 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 181   181 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 182   182 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 183   183 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 184   184 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 185   185 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 186   186 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 187   187 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 188   188 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 189   189 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 190   190 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 191   191 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 192   192 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 193   193 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 194   194 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 195   195 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 196   196 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 197   197 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 198   198 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 199   199 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 200   200 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 201   201 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 202   202 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 203   203 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 204   204 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 205   205 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 206   206 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 207   207 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 208   208 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 209   209 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 210   210 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 211   211 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 212   212 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 213   213 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 214   214 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 215   215 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 216   216 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 217   217 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 218   218 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 219   219 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 220   220 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 221   221 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 222   222 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 223   223 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 224   224 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 225   225 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 226   226 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 227   227 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 228   228 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 229   229 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 230   230 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 231   231 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 232   232 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 233   233 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 234   234 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 235   235 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 236   236 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 237   237 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 238   238 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 239   239 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 240   240 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 241   241 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 242   242 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 243   243 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 244   244 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 245   245 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 246   246 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 247   247 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 248   248 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 249   249 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 250   250 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 251   251 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 252   252 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 253   253 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 254   254 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 255   255 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 256   256 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 257   257 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 258   258 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 259   259 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 260   260 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 261   261 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 262   262 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 263   263 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 264   264 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 265   265 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 266   266 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 267   267 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 268   268 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 269   269 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 270   270 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 271   271 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 272   272 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 273   273 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 274   274 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 275   275 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 276   276 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 277   277 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 278   278 2016 Guadalajara        Belenes Suc. Belenes   77800  SAN I
## 279   279 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 280   280 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 281   281 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 282   282 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 283   283 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 284   284 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 285   285 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 286   286 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 287   287 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 288   288 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 289   289 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 290   290 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 291   291 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 292   292 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 293   293 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 294   294 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 295   295 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 296   296 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 297   297 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 298   298 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 299   299 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 300   300 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 301   301 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 302   302 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 303   303 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 304   304 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 305   305 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 306   306 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 307   307 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 308   308 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 309   309 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 310   310 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 311   311 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 312   312 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 313   313 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 314   314 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 315   315 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 316   316 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 317   317 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 318   318 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 319   319 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 320   320 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 321   321 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 322   322 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 323   323 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 324   324 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 325   325 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 326   326 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 327   327 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 328   328 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 329   329 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 330   330 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 331   331 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 332   332 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 333   333 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 334   334 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 335   335 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 336   336 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 337   337 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 338   338 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 339   339 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 340   340 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 341   341 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 342   342 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 343   343 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 344   344 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 345   345 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 346   346 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 347   347 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 348   348 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 349   349 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 350   350 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 351   351 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 352   352 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 353   353 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 354   354 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 355   355 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 356   356 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 357   357 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 358   358 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 359   359 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 360   360 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 361   361 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 362   362 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 363   363 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 364   364 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 365   365 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 366   366 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 367   367 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 368   368 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 369   369 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 370   370 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 371   371 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 372   372 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 373   373 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 374   374 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 375   375 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 376   376 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 377   377 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 378   378 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 379   379 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 380   380 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 381   381 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 382   382 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 383   383 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 384   384 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 385   385 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 386   386 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 387   387 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 388   388 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 389   389 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 390   390 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 391   391 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 392   392 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 393   393 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 394   394 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 395   395 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 396   396 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 397   397 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 398   398 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 399   399 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 400   400 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 401   401 2016 Guadalajara        Belenes Suc. Belenes   77875  ABARR
## 402   402 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 403   403 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 404   404 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 405   405 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 406   406 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 407   407 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 408   408 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 409   409 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 410   410 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 411   411 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 412   412 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 413   413 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 414   414 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 415   415 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 416   416 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 417   417 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 418   418 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 419   419 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 420   420 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 421   421 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 422   422 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 423   423 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 424   424 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 425   425 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 426   426 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 427   427 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 428   428 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 429   429 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 430   430 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 431   431 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 432   432 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 433   433 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 434   434 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 435   435 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 436   436 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 437   437 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 438   438 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 439   439 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 440   440 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 441   441 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 442   442 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 443   443 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 444   444 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 445   445 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 446   446 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 447   447 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 448   448 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 449   449 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 450   450 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 451   451 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 452   452 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 453   453 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 454   454 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 455   455 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 456   456 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 457   457 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 458   458 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 459   459 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 460   460 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 461   461 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 462   462 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 463   463 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 464   464 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 465   465 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 466   466 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 467   467 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 468   468 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 469   469 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 470   470 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 471   471 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 472   472 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 473   473 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 474   474 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 475   475 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 476   476 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 477   477 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 478   478 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 479   479 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 480   480 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 481   481 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 482   482 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 483   483 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 484   484 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 485   485 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 486   486 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 487   487 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 488   488 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 489   489 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 490   490 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 491   491 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 492   492 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 493   493 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 494   494 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 495   495 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 496   496 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 497   497 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 498   498 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 499   499 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 500   500 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 501   501 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 502   502 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 503   503 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 504   504 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 505   505 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 506   506 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 507   507 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 508   508 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 509   509 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 510   510 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 511   511 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 512   512 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 513   513 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 514   514 2016 Guadalajara        Belenes Suc. Belenes   77884  ABARR
## 515   515 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 516   516 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 517   517 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 518   518 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 519   519 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 520   520 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 521   521 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 522   522 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 523   523 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 524   524 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 525   525 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 526   526 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 527   527 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 528   528 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 529   529 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 530   530 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 531   531 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 532   532 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 533   533 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 534   534 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 535   535 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 536   536 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 537   537 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 538   538 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 539   539 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 540   540 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 541   541 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 542   542 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 543   543 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 544   544 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 545   545 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 546   546 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 547   547 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 548   548 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 549   549 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 550   550 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 551   551 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 552   552 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 553   553 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 554   554 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 555   555 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 556   556 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 557   557 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 558   558 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 559   559 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 560   560 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 561   561 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 562   562 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 563   563 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 564   564 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 565   565 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 566   566 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 567   567 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 568   568 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 569   569 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 570   570 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 571   571 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 572   572 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 573   573 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 574   574 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 575   575 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 576   576 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 577   577 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 578   578 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 579   579 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 580   580 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 581   581 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 582   582 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 583   583 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 584   584 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 585   585 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 586   586 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 587   587 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 588   588 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 589   589 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 590   590 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 591   591 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 592   592 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 593   593 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 594   594 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 595   595 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 596   596 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 597   597 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 598   598 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 599   599 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 600   600 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 601   601 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 602   602 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 603   603 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 604   604 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 605   605 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 606   606 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 607   607 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 608   608 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 609   609 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 610   610 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 611   611 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 612   612 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 613   613 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 614   614 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 615   615 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 616   616 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 617   617 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 618   618 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 619   619 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 620   620 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 621   621 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 622   622 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 623   623 2016 Guadalajara        Belenes Suc. Belenes   77917  ABARR
## 624   624 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 625   625 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 626   626 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 627   627 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 628   628 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 629   629 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 630   630 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 631   631 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 632   632 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 633   633 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 634   634 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 635   635 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 636   636 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 637   637 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 638   638 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 639   639 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 640   640 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 641   641 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 642   642 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 643   643 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 644   644 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 645   645 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 646   646 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 647   647 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 648   648 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 649   649 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 650   650 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 651   651 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 652   652 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 653   653 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 654   654 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 655   655 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 656   656 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 657   657 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 658   658 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 659   659 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 660   660 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 661   661 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 662   662 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 663   663 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 664   664 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 665   665 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 666   666 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 667   667 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 668   668 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 669   669 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 670   670 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 671   671 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 672   672 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 673   673 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 674   674 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 675   675 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 676   676 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 677   677 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 678   678 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 679   679 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 680   680 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 681   681 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 682   682 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 683   683 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 684   684 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 685   685 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 686   686 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 687   687 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 688   688 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 689   689 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 690   690 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 691   691 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 692   692 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 693   693 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 694   694 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 695   695 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 696   696 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 697   697 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 698   698 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 699   699 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 700   700 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 701   701 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 702   702 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 703   703 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 704   704 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 705   705 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 706   706 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 707   707 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 708   708 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 709   709 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 710   710 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 711   711 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 712   712 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 713   713 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 714   714 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 715   715 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 716   716 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 717   717 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 718   718 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 719   719 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 720   720 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 721   721 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 722   722 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 723   723 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 724   724 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 725   725 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 726   726 2016 Guadalajara        Belenes Suc. Belenes   78010  ABARR
## 727   727 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 728   728 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 729   729 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 730   730 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 731   731 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 732   732 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 733   733 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 734   734 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 735   735 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 736   736 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 737   737 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 738   738 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 739   739 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 740   740 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 741   741 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 742   742 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 743   743 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 744   744 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 745   745 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 746   746 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 747   747 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 748   748 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 749   749 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 750   750 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 751   751 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 752   752 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 753   753 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 754   754 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 755   755 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 756   756 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 757   757 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 758   758 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 759   759 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 760   760 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 761   761 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 762   762 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 763   763 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 764   764 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 765   765 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 766   766 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 767   767 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 768   768 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 769   769 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 770   770 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 771   771 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 772   772 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 773   773 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 774   774 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 775   775 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 776   776 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 777   777 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 778   778 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 779   779 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 780   780 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 781   781 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 782   782 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 783   783 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 784   784 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 785   785 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 786   786 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 787   787 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 788   788 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 789   789 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 790   790 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 791   791 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 792   792 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 793   793 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 794   794 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 795   795 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 796   796 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 797   797 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 798   798 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 799   799 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 800   800 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 801   801 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 802   802 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 803   803 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 804   804 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 805   805 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 806   806 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 807   807 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 808   808 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 809   809 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 810   810 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 811   811 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 812   812 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 813   813 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 814   814 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 815   815 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 816   816 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 817   817 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 818   818 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 819   819 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 820   820 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 821   821 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 822   822 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 823   823 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 824   824 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 825   825 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 826   826 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 827   827 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 828   828 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 829   829 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 830   830 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 831   831 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 832   832 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 833   833 2016 Guadalajara        Belenes Suc. Belenes   78186  SUPER
## 834   834 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 835   835 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 836   836 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 837   837 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 838   838 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 839   839 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 840   840 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 841   841 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 842   842 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 843   843 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 844   844 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 845   845 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 846   846 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 847   847 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 848   848 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 849   849 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 850   850 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 851   851 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 852   852 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 853   853 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 854   854 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 855   855 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 856   856 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 857   857 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 858   858 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 859   859 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 860   860 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 861   861 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 862   862 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 863   863 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 864   864 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 865   865 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 866   866 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 867   867 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 868   868 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 869   869 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 870   870 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 871   871 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 872   872 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 873   873 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 874   874 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 875   875 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 876   876 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 877   877 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 878   878 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 879   879 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 880   880 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 881   881 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 882   882 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 883   883 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 884   884 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 885   885 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 886   886 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 887   887 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 888   888 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 889   889 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 890   890 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 891   891 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 892   892 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 893   893 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 894   894 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 895   895 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 896   896 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 897   897 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 898   898 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 899   899 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 900   900 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 901   901 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 902   902 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 903   903 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 904   904 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 905   905 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 906   906 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 907   907 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 908   908 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 909   909 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 910   910 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 911   911 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 912   912 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 913   913 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 914   914 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 915   915 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 916   916 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 917   917 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 918   918 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 919   919 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 920   920 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 921   921 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 922   922 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 923   923 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 924   924 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 925   925 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 926   926 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 927   927 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 928   928 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 929   929 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 930   930 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 931   931 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 932   932 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 933   933 2016 Guadalajara        Belenes Suc. Belenes   78201  MIGUE
## 934   934 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 935   935 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 936   936 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 937   937 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 938   938 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 939   939 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 940   940 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 941   941 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 942   942 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 943   943 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 944   944 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 945   945 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 946   946 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 947   947 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 948   948 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 949   949 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 950   950 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 951   951 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 952   952 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 953   953 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 954   954 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 955   955 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 956   956 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 957   957 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 958   958 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 959   959 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 960   960 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 961   961 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 962   962 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 963   963 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 964   964 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 965   965 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 966   966 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 967   967 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 968   968 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 969   969 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 970   970 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 971   971 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 972   972 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 973   973 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 974   974 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 975   975 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 976   976 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 977   977 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 978   978 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 979   979 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 980   980 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 981   981 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 982   982 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 983   983 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 984   984 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 985   985 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 986   986 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 987   987 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 988   988 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 989   989 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 990   990 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 991   991 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 992   992 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 993   993 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 994   994 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 995   995 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 996   996 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 997   997 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 998   998 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 999   999 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1000 1000 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1001 1001 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1002 1002 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1003 1003 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1004 1004 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1005 1005 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1006 1006 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1007 1007 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1008 1008 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1009 1009 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1010 1010 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1011 1011 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1012 1012 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1013 1013 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1014 1014 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1015 1015 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1016 1016 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1017 1017 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1018 1018 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1019 1019 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1020 1020 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1021 1021 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1022 1022 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1023 1023 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1024 1024 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1025 1025 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1026 1026 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1027 1027 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1028 1028 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1029 1029 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1030 1030 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1031 1031 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1032 1032 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1033 1033 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1034 1034 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1035 1035 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1036 1036 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1037 1037 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1038 1038 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1039 1039 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1040 1040 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1041 1041 2016 Guadalajara        Belenes Suc. Belenes   78284  MINI 
## 1042 1042 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1043 1043 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1044 1044 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1045 1045 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1046 1046 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1047 1047 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1048 1048 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1049 1049 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1050 1050 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1051 1051 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1052 1052 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1053 1053 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1054 1054 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1055 1055 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1056 1056 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1057 1057 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1058 1058 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1059 1059 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1060 1060 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1061 1061 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1062 1062 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1063 1063 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1064 1064 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1065 1065 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1066 1066 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1067 1067 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1068 1068 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1069 1069 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1070 1070 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1071 1071 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1072 1072 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1073 1073 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1074 1074 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1075 1075 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1076 1076 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1077 1077 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1078 1078 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1079 1079 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1080 1080 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1081 1081 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1082 1082 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1083 1083 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1084 1084 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1085 1085 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1086 1086 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1087 1087 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1088 1088 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1089 1089 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1090 1090 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1091 1091 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1092 1092 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1093 1093 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1094 1094 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1095 1095 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1096 1096 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1097 1097 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1098 1098 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1099 1099 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1100 1100 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1101 1101 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1102 1102 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1103 1103 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1104 1104 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1105 1105 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1106 1106 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1107 1107 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1108 1108 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1109 1109 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1110 1110 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1111 1111 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1112 1112 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1113 1113 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1114 1114 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1115 1115 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1116 1116 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1117 1117 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1118 1118 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1119 1119 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1120 1120 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1121 1121 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1122 1122 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1123 1123 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1124 1124 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1125 1125 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1126 1126 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1127 1127 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1128 1128 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1129 1129 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1130 1130 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1131 1131 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1132 1132 2016 Guadalajara        Belenes Suc. Belenes   78678  FERNA
## 1133 1133 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1134 1134 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1135 1135 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1136 1136 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1137 1137 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1138 1138 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1139 1139 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1140 1140 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1141 1141 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1142 1142 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1143 1143 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1144 1144 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1145 1145 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1146 1146 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1147 1147 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1148 1148 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1149 1149 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1150 1150 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1151 1151 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1152 1152 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1153 1153 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1154 1154 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1155 1155 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1156 1156 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1157 1157 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1158 1158 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1159 1159 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1160 1160 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1161 1161 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1162 1162 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1163 1163 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1164 1164 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1165 1165 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1166 1166 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1167 1167 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1168 1168 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1169 1169 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1170 1170 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1171 1171 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1172 1172 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1173 1173 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1174 1174 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1175 1175 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1176 1176 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1177 1177 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1178 1178 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1179 1179 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1180 1180 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1181 1181 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1182 1182 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1183 1183 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1184 1184 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1185 1185 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1186 1186 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1187 1187 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1188 1188 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1189 1189 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1190 1190 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1191 1191 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1192 1192 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1193 1193 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1194 1194 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1195 1195 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1196 1196 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1197 1197 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1198 1198 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1199 1199 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1200 1200 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1201 1201 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1202 1202 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1203 1203 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1204 1204 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1205 1205 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1206 1206 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1207 1207 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1208 1208 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1209 1209 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1210 1210 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1211 1211 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1212 1212 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1213 1213 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1214 1214 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1215 1215 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1216 1216 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1217 1217 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1218 1218 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1219 1219 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1220 1220 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1221 1221 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1222 1222 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1223 1223 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1224 1224 2016 Guadalajara        Belenes Suc. Belenes   78689  ABARR
## 1225 1225 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1226 1226 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1227 1227 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1228 1228 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1229 1229 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1230 1230 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1231 1231 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1232 1232 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1233 1233 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1234 1234 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1235 1235 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1236 1236 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1237 1237 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1238 1238 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1239 1239 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1240 1240 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1241 1241 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1242 1242 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1243 1243 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1244 1244 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1245 1245 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1246 1246 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1247 1247 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1248 1248 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1249 1249 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1250 1250 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1251 1251 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1252 1252 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1253 1253 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1254 1254 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1255 1255 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1256 1256 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1257 1257 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1258 1258 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1259 1259 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1260 1260 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1261 1261 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1262 1262 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1263 1263 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1264 1264 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1265 1265 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1266 1266 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1267 1267 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1268 1268 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1269 1269 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1270 1270 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1271 1271 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1272 1272 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1273 1273 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1274 1274 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1275 1275 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1276 1276 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1277 1277 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1278 1278 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1279 1279 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1280 1280 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1281 1281 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1282 1282 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1283 1283 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1284 1284 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1285 1285 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1286 1286 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1287 1287 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1288 1288 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1289 1289 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1290 1290 2016 Guadalajara        Belenes Suc. Belenes   78691  GUADA
## 1291 1291 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1292 1292 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1293 1293 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1294 1294 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1295 1295 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1296 1296 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1297 1297 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1298 1298 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1299 1299 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1300 1300 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1301 1301 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1302 1302 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1303 1303 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1304 1304 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1305 1305 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1306 1306 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1307 1307 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1308 1308 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1309 1309 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1310 1310 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1311 1311 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1312 1312 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1313 1313 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1314 1314 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1315 1315 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1316 1316 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1317 1317 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1318 1318 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1319 1319 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1320 1320 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1321 1321 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1322 1322 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1323 1323 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1324 1324 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1325 1325 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1326 1326 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1327 1327 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1328 1328 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1329 1329 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1330 1330 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1331 1331 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1332 1332 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1333 1333 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1334 1334 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1335 1335 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1336 1336 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1337 1337 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1338 1338 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1339 1339 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1340 1340 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1341 1341 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1342 1342 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1343 1343 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1344 1344 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1345 1345 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1346 1346 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1347 1347 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1348 1348 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1349 1349 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1350 1350 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1351 1351 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1352 1352 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1353 1353 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1354 1354 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1355 1355 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1356 1356 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1357 1357 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1358 1358 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1359 1359 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1360 1360 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1361 1361 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1362 1362 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1363 1363 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1364 1364 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1365 1365 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1366 1366 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1367 1367 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1368 1368 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1369 1369 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1370 1370 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1371 1371 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1372 1372 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1373 1373 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1374 1374 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1375 1375 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1376 1376 2016 Guadalajara        Belenes Suc. Belenes   78696  ABARR
## 1377 1377 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1378 1378 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1379 1379 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1380 1380 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1381 1381 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1382 1382 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1383 1383 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1384 1384 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1385 1385 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1386 1386 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1387 1387 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1388 1388 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1389 1389 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1390 1390 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1391 1391 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1392 1392 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1393 1393 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1394 1394 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1395 1395 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1396 1396 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1397 1397 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1398 1398 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1399 1399 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1400 1400 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1401 1401 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1402 1402 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1403 1403 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1404 1404 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1405 1405 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1406 1406 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1407 1407 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1408 1408 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1409 1409 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1410 1410 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1411 1411 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1412 1412 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1413 1413 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1414 1414 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1415 1415 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1416 1416 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1417 1417 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1418 1418 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1419 1419 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1420 1420 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1421 1421 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1422 1422 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1423 1423 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1424 1424 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1425 1425 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1426 1426 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1427 1427 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1428 1428 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1429 1429 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1430 1430 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1431 1431 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1432 1432 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1433 1433 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1434 1434 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1435 1435 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1436 1436 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1437 1437 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1438 1438 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1439 1439 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1440 1440 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1441 1441 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1442 1442 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1443 1443 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1444 1444 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1445 1445 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1446 1446 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1447 1447 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1448 1448 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1449 1449 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1450 1450 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1451 1451 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1452 1452 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1453 1453 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1454 1454 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1455 1455 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1456 1456 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1457 1457 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1458 1458 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1459 1459 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1460 1460 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1461 1461 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1462 1462 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1463 1463 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1464 1464 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1465 1465 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1466 1466 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1467 1467 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1468 1468 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1469 1469 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1470 1470 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1471 1471 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1472 1472 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1473 1473 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1474 1474 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1475 1475 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1476 1476 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1477 1477 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1478 1478 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1479 1479 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1480 1480 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1481 1481 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1482 1482 2016 Guadalajara        Belenes Suc. Belenes   78795  ABARR
## 1483 1483 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1484 1484 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1485 1485 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1486 1486 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1487 1487 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1488 1488 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1489 1489 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1490 1490 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1491 1491 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1492 1492 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1493 1493 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1494 1494 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1495 1495 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1496 1496 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1497 1497 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1498 1498 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1499 1499 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1500 1500 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1501 1501 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1502 1502 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1503 1503 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1504 1504 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1505 1505 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1506 1506 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1507 1507 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1508 1508 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1509 1509 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1510 1510 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1511 1511 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1512 1512 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1513 1513 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1514 1514 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1515 1515 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1516 1516 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1517 1517 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1518 1518 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1519 1519 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1520 1520 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1521 1521 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1522 1522 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1523 1523 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1524 1524 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1525 1525 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1526 1526 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1527 1527 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1528 1528 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1529 1529 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1530 1530 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1531 1531 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1532 1532 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1533 1533 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1534 1534 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1535 1535 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1536 1536 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1537 1537 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1538 1538 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1539 1539 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1540 1540 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1541 1541 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1542 1542 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1543 1543 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1544 1544 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1545 1545 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1546 1546 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1547 1547 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1548 1548 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1549 1549 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1550 1550 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1551 1551 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1552 1552 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1553 1553 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1554 1554 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1555 1555 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1556 1556 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1557 1557 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1558 1558 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1559 1559 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1560 1560 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1561 1561 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1562 1562 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1563 1563 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1564 1564 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1565 1565 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1566 1566 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1567 1567 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1568 1568 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1569 1569 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1570 1570 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1571 1571 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1572 1572 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1573 1573 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1574 1574 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1575 1575 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1576 1576 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1577 1577 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1578 1578 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1579 1579 2016 Guadalajara        Belenes Suc. Belenes   78842  ABARR
## 1580 1580 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1581 1581 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1582 1582 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1583 1583 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1584 1584 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1585 1585 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1586 1586 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1587 1587 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1588 1588 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1589 1589 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1590 1590 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1591 1591 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1592 1592 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1593 1593 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1594 1594 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1595 1595 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1596 1596 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1597 1597 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1598 1598 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1599 1599 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1600 1600 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1601 1601 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1602 1602 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1603 1603 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1604 1604 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1605 1605 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1606 1606 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1607 1607 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1608 1608 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1609 1609 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1610 1610 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1611 1611 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1612 1612 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1613 1613 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1614 1614 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1615 1615 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1616 1616 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1617 1617 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1618 1618 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1619 1619 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1620 1620 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1621 1621 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1622 1622 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1623 1623 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1624 1624 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1625 1625 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1626 1626 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1627 1627 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1628 1628 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1629 1629 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1630 1630 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1631 1631 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1632 1632 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1633 1633 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1634 1634 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1635 1635 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1636 1636 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1637 1637 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1638 1638 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1639 1639 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1640 1640 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1641 1641 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1642 1642 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1643 1643 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1644 1644 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1645 1645 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1646 1646 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1647 1647 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1648 1648 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1649 1649 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1650 1650 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1651 1651 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1652 1652 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1653 1653 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1654 1654 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1655 1655 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1656 1656 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1657 1657 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1658 1658 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1659 1659 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1660 1660 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1661 1661 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1662 1662 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1663 1663 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1664 1664 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1665 1665 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1666 1666 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1667 1667 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1668 1668 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1669 1669 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1670 1670 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1671 1671 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1672 1672 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1673 1673 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1674 1674 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1675 1675 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1676 1676 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1677 1677 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1678 1678 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1679 1679 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1680 1680 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1681 1681 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1682 1682 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1683 1683 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1684 1684 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1685 1685 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1686 1686 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1687 1687 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1688 1688 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1689 1689 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1690 1690 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1691 1691 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1692 1692 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1693 1693 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1694 1694 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1695 1695 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1696 1696 2016 Guadalajara        Belenes Suc. Belenes   78946  ABARR
## 1697 1697 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1698 1698 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1699 1699 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1700 1700 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1701 1701 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1702 1702 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1703 1703 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1704 1704 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1705 1705 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1706 1706 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1707 1707 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1708 1708 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1709 1709 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1710 1710 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1711 1711 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1712 1712 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1713 1713 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1714 1714 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1715 1715 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1716 1716 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1717 1717 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1718 1718 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1719 1719 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1720 1720 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1721 1721 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1722 1722 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1723 1723 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1724 1724 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1725 1725 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1726 1726 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1727 1727 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1728 1728 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1729 1729 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1730 1730 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1731 1731 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1732 1732 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1733 1733 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1734 1734 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1735 1735 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1736 1736 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1737 1737 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1738 1738 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1739 1739 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1740 1740 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1741 1741 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1742 1742 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1743 1743 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1744 1744 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1745 1745 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1746 1746 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1747 1747 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1748 1748 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1749 1749 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1750 1750 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1751 1751 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1752 1752 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1753 1753 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1754 1754 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1755 1755 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1756 1756 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1757 1757 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1758 1758 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1759 1759 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1760 1760 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1761 1761 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1762 1762 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1763 1763 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1764 1764 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1765 1765 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1766 1766 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1767 1767 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1768 1768 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1769 1769 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1770 1770 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1771 1771 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1772 1772 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1773 1773 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1774 1774 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1775 1775 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1776 1776 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1777 1777 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1778 1778 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1779 1779 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1780 1780 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1781 1781 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1782 1782 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1783 1783 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1784 1784 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1785 1785 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1786 1786 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1787 1787 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1788 1788 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1789 1789 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1790 1790 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1791 1791 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1792 1792 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1793 1793 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1794 1794 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1795 1795 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1796 1796 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1797 1797 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1798 1798 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1799 1799 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1800 1800 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1801 1801 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1802 1802 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1803 1803 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1804 1804 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1805 1805 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1806 1806 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1807 1807 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1808 1808 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1809 1809 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1810 1810 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1811 1811 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1812 1812 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1813 1813 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1814 1814 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1815 1815 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1816 1816 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1817 1817 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1818 1818 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1819 1819 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1820 1820 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1821 1821 2016 Guadalajara        Belenes Suc. Belenes   79010  ABARR
## 1822 1822 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1823 1823 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1824 1824 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1825 1825 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1826 1826 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1827 1827 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1828 1828 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1829 1829 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1830 1830 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1831 1831 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1832 1832 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1833 1833 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1834 1834 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1835 1835 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1836 1836 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1837 1837 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1838 1838 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1839 1839 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1840 1840 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1841 1841 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1842 1842 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1843 1843 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1844 1844 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1845 1845 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1846 1846 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1847 1847 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1848 1848 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1849 1849 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1850 1850 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1851 1851 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1852 1852 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1853 1853 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1854 1854 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1855 1855 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1856 1856 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1857 1857 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1858 1858 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1859 1859 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1860 1860 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1861 1861 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1862 1862 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1863 1863 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1864 1864 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1865 1865 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1866 1866 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1867 1867 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1868 1868 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1869 1869 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1870 1870 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1871 1871 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1872 1872 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1873 1873 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1874 1874 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1875 1875 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1876 1876 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1877 1877 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1878 1878 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1879 1879 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1880 1880 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1881 1881 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1882 1882 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1883 1883 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1884 1884 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1885 1885 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1886 1886 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1887 1887 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1888 1888 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1889 1889 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1890 1890 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1891 1891 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1892 1892 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1893 1893 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1894 1894 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1895 1895 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1896 1896 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1897 1897 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1898 1898 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1899 1899 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1900 1900 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1901 1901 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1902 1902 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1903 1903 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1904 1904 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1905 1905 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1906 1906 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1907 1907 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1908 1908 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1909 1909 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1910 1910 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1911 1911 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1912 1912 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1913 1913 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1914 1914 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1915 1915 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1916 1916 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1917 1917 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1918 1918 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1919 1919 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1920 1920 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1921 1921 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1922 1922 2016 Guadalajara        Belenes Suc. Belenes   79017  MINIS
## 1923 1923 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1924 1924 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1925 1925 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1926 1926 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1927 1927 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1928 1928 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1929 1929 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1930 1930 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1931 1931 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1932 1932 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1933 1933 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1934 1934 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1935 1935 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1936 1936 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1937 1937 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1938 1938 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1939 1939 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1940 1940 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1941 1941 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1942 1942 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1943 1943 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1944 1944 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1945 1945 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1946 1946 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1947 1947 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1948 1948 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1949 1949 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1950 1950 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1951 1951 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1952 1952 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1953 1953 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1954 1954 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1955 1955 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1956 1956 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1957 1957 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1958 1958 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1959 1959 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1960 1960 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1961 1961 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1962 1962 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1963 1963 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1964 1964 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1965 1965 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1966 1966 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1967 1967 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1968 1968 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1969 1969 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1970 1970 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1971 1971 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1972 1972 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1973 1973 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1974 1974 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1975 1975 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1976 1976 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1977 1977 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1978 1978 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1979 1979 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1980 1980 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1981 1981 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1982 1982 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1983 1983 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1984 1984 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1985 1985 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1986 1986 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1987 1987 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1988 1988 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1989 1989 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1990 1990 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1991 1991 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1992 1992 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1993 1993 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1994 1994 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1995 1995 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1996 1996 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1997 1997 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1998 1998 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 1999 1999 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2000 2000 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2001 2001 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2002 2002 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2003 2003 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2004 2004 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2005 2005 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2006 2006 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2007 2007 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2008 2008 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2009 2009 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2010 2010 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2011 2011 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2012 2012 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2013 2013 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2014 2014 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2015 2015 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2016 2016 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2017 2017 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2018 2018 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2019 2019 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2020 2020 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2021 2021 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2022 2022 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2023 2023 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2024 2024 2016 Guadalajara        Belenes Suc. Belenes   79041  ABARR
## 2025 2025 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2026 2026 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2027 2027 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2028 2028 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2029 2029 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2030 2030 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2031 2031 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2032 2032 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2033 2033 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2034 2034 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2035 2035 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2036 2036 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2037 2037 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2038 2038 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2039 2039 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2040 2040 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2041 2041 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2042 2042 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2043 2043 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2044 2044 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2045 2045 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2046 2046 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2047 2047 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2048 2048 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2049 2049 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2050 2050 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2051 2051 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2052 2052 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2053 2053 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2054 2054 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2055 2055 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2056 2056 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2057 2057 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2058 2058 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2059 2059 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2060 2060 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2061 2061 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2062 2062 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2063 2063 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2064 2064 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2065 2065 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2066 2066 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2067 2067 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2068 2068 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2069 2069 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2070 2070 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2071 2071 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2072 2072 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2073 2073 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2074 2074 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2075 2075 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2076 2076 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2077 2077 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2078 2078 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2079 2079 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2080 2080 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2081 2081 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2082 2082 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2083 2083 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2084 2084 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2085 2085 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2086 2086 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2087 2087 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2088 2088 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2089 2089 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2090 2090 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2091 2091 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2092 2092 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2093 2093 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2094 2094 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2095 2095 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2096 2096 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2097 2097 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2098 2098 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2099 2099 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2100 2100 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2101 2101 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2102 2102 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2103 2103 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2104 2104 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2105 2105 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2106 2106 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2107 2107 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2108 2108 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2109 2109 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2110 2110 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2111 2111 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2112 2112 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2113 2113 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2114 2114 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2115 2115 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2116 2116 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2117 2117 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2118 2118 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2119 2119 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2120 2120 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2121 2121 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2122 2122 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2123 2123 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2124 2124 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2125 2125 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2126 2126 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2127 2127 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2128 2128 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2129 2129 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2130 2130 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2131 2131 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2132 2132 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2133 2133 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2134 2134 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2135 2135 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2136 2136 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2137 2137 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2138 2138 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2139 2139 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2140 2140 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2141 2141 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2142 2142 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2143 2143 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2144 2144 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2145 2145 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2146 2146 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2147 2147 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2148 2148 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2149 2149 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2150 2150 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2151 2151 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2152 2152 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2153 2153 2016 Guadalajara        Belenes Suc. Belenes   79139  ABARR
## 2154 2154 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2155 2155 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2156 2156 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2157 2157 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2158 2158 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2159 2159 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2160 2160 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2161 2161 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2162 2162 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2163 2163 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2164 2164 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2165 2165 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2166 2166 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2167 2167 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2168 2168 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2169 2169 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2170 2170 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2171 2171 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2172 2172 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2173 2173 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2174 2174 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2175 2175 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2176 2176 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2177 2177 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2178 2178 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2179 2179 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2180 2180 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2181 2181 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2182 2182 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2183 2183 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2184 2184 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2185 2185 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2186 2186 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2187 2187 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2188 2188 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2189 2189 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2190 2190 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2191 2191 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2192 2192 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2193 2193 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2194 2194 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2195 2195 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2196 2196 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2197 2197 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2198 2198 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2199 2199 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2200 2200 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2201 2201 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2202 2202 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2203 2203 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2204 2204 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2205 2205 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2206 2206 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2207 2207 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2208 2208 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2209 2209 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2210 2210 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2211 2211 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2212 2212 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2213 2213 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2214 2214 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2215 2215 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2216 2216 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2217 2217 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2218 2218 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2219 2219 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2220 2220 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2221 2221 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2222 2222 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2223 2223 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2224 2224 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2225 2225 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2226 2226 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2227 2227 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2228 2228 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2229 2229 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2230 2230 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2231 2231 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2232 2232 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2233 2233 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2234 2234 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2235 2235 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2236 2236 2016 Guadalajara        Belenes Suc. Belenes   79140  CERVE
## 2237 2237 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2238 2238 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2239 2239 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2240 2240 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2241 2241 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2242 2242 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2243 2243 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2244 2244 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2245 2245 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2246 2246 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2247 2247 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2248 2248 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2249 2249 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2250 2250 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2251 2251 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2252 2252 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2253 2253 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2254 2254 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2255 2255 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2256 2256 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2257 2257 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2258 2258 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2259 2259 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2260 2260 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2261 2261 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2262 2262 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2263 2263 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2264 2264 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2265 2265 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2266 2266 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2267 2267 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2268 2268 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2269 2269 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2270 2270 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2271 2271 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2272 2272 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2273 2273 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2274 2274 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2275 2275 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2276 2276 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2277 2277 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2278 2278 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2279 2279 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2280 2280 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2281 2281 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2282 2282 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2283 2283 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2284 2284 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2285 2285 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2286 2286 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2287 2287 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2288 2288 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2289 2289 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2290 2290 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2291 2291 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2292 2292 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2293 2293 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2294 2294 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2295 2295 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2296 2296 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2297 2297 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2298 2298 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2299 2299 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2300 2300 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2301 2301 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2302 2302 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2303 2303 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2304 2304 2016 Guadalajara        Belenes Suc. Belenes   79169  ISABE
## 2305 2305 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2306 2306 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2307 2307 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2308 2308 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2309 2309 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2310 2310 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2311 2311 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2312 2312 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2313 2313 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2314 2314 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2315 2315 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2316 2316 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2317 2317 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2318 2318 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2319 2319 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2320 2320 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2321 2321 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2322 2322 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2323 2323 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2324 2324 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2325 2325 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2326 2326 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2327 2327 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2328 2328 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2329 2329 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2330 2330 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2331 2331 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2332 2332 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2333 2333 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2334 2334 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2335 2335 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2336 2336 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2337 2337 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2338 2338 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2339 2339 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2340 2340 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2341 2341 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2342 2342 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2343 2343 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2344 2344 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2345 2345 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2346 2346 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2347 2347 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2348 2348 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2349 2349 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2350 2350 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2351 2351 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2352 2352 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2353 2353 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2354 2354 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2355 2355 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2356 2356 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2357 2357 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2358 2358 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2359 2359 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2360 2360 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2361 2361 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2362 2362 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2363 2363 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2364 2364 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2365 2365 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2366 2366 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2367 2367 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2368 2368 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2369 2369 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2370 2370 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2371 2371 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2372 2372 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2373 2373 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2374 2374 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2375 2375 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2376 2376 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2377 2377 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2378 2378 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2379 2379 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2380 2380 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2381 2381 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2382 2382 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2383 2383 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2384 2384 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2385 2385 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2386 2386 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2387 2387 2016 Guadalajara        Belenes Suc. Belenes   79186  EMPOR
## 2388 2388 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2389 2389 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2390 2390 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2391 2391 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2392 2392 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2393 2393 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2394 2394 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2395 2395 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2396 2396 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2397 2397 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2398 2398 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2399 2399 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2400 2400 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2401 2401 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2402 2402 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2403 2403 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2404 2404 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2405 2405 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2406 2406 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2407 2407 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2408 2408 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2409 2409 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2410 2410 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2411 2411 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2412 2412 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2413 2413 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2414 2414 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2415 2415 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2416 2416 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2417 2417 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2418 2418 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2419 2419 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2420 2420 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2421 2421 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2422 2422 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2423 2423 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2424 2424 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2425 2425 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2426 2426 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2427 2427 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2428 2428 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2429 2429 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2430 2430 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2431 2431 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2432 2432 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2433 2433 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2434 2434 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2435 2435 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2436 2436 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2437 2437 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2438 2438 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2439 2439 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2440 2440 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2441 2441 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2442 2442 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2443 2443 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2444 2444 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2445 2445 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2446 2446 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2447 2447 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2448 2448 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2449 2449 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2450 2450 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2451 2451 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2452 2452 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2453 2453 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2454 2454 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2455 2455 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2456 2456 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2457 2457 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2458 2458 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2459 2459 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2460 2460 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2461 2461 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2462 2462 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2463 2463 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2464 2464 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2465 2465 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2466 2466 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2467 2467 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2468 2468 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2469 2469 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2470 2470 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2471 2471 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2472 2472 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2473 2473 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2474 2474 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2475 2475 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2476 2476 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2477 2477 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2478 2478 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2479 2479 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2480 2480 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2481 2481 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2482 2482 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2483 2483 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2484 2484 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2485 2485 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2486 2486 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2487 2487 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2488 2488 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2489 2489 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2490 2490 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2491 2491 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2492 2492 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2493 2493 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2494 2494 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2495 2495 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2496 2496 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2497 2497 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2498 2498 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2499 2499 2016 Guadalajara        Belenes Suc. Belenes   79275  ABARR
## 2500 2500 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2501 2501 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2502 2502 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2503 2503 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2504 2504 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2505 2505 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2506 2506 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2507 2507 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2508 2508 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2509 2509 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2510 2510 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2511 2511 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2512 2512 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2513 2513 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2514 2514 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2515 2515 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2516 2516 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2517 2517 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2518 2518 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2519 2519 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2520 2520 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2521 2521 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2522 2522 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2523 2523 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2524 2524 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2525 2525 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2526 2526 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2527 2527 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2528 2528 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2529 2529 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2530 2530 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2531 2531 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2532 2532 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2533 2533 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2534 2534 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2535 2535 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2536 2536 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2537 2537 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2538 2538 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2539 2539 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2540 2540 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2541 2541 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2542 2542 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2543 2543 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2544 2544 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2545 2545 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2546 2546 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2547 2547 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2548 2548 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2549 2549 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2550 2550 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2551 2551 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2552 2552 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2553 2553 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2554 2554 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2555 2555 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2556 2556 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2557 2557 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2558 2558 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2559 2559 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2560 2560 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2561 2561 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2562 2562 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2563 2563 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2564 2564 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2565 2565 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2566 2566 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2567 2567 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2568 2568 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2569 2569 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2570 2570 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2571 2571 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2572 2572 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2573 2573 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2574 2574 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2575 2575 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2576 2576 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2577 2577 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2578 2578 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2579 2579 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2580 2580 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2581 2581 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2582 2582 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2583 2583 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2584 2584 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2585 2585 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2586 2586 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2587 2587 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2588 2588 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2589 2589 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2590 2590 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2591 2591 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2592 2592 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2593 2593 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2594 2594 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2595 2595 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2596 2596 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2597 2597 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2598 2598 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2599 2599 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2600 2600 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2601 2601 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2602 2602 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2603 2603 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2604 2604 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2605 2605 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2606 2606 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2607 2607 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2608 2608 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2609 2609 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2610 2610 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2611 2611 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2612 2612 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2613 2613 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2614 2614 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2615 2615 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2616 2616 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2617 2617 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2618 2618 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2619 2619 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2620 2620 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2621 2621 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2622 2622 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2623 2623 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2624 2624 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2625 2625 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2626 2626 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2627 2627 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2628 2628 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2629 2629 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2630 2630 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2631 2631 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2632 2632 2016 Guadalajara        Belenes Suc. Belenes   79455  JOSE 
## 2633 2633 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2634 2634 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2635 2635 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2636 2636 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2637 2637 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2638 2638 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2639 2639 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2640 2640 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2641 2641 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2642 2642 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2643 2643 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2644 2644 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2645 2645 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2646 2646 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2647 2647 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2648 2648 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2649 2649 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2650 2650 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2651 2651 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2652 2652 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2653 2653 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2654 2654 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2655 2655 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2656 2656 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2657 2657 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2658 2658 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2659 2659 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2660 2660 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2661 2661 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2662 2662 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2663 2663 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2664 2664 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2665 2665 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2666 2666 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2667 2667 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2668 2668 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2669 2669 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2670 2670 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2671 2671 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2672 2672 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2673 2673 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2674 2674 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2675 2675 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2676 2676 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2677 2677 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2678 2678 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2679 2679 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2680 2680 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2681 2681 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2682 2682 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2683 2683 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2684 2684 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2685 2685 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2686 2686 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2687 2687 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2688 2688 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2689 2689 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2690 2690 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2691 2691 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2692 2692 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2693 2693 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2694 2694 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2695 2695 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2696 2696 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2697 2697 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2698 2698 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2699 2699 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2700 2700 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2701 2701 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2702 2702 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2703 2703 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2704 2704 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2705 2705 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2706 2706 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2707 2707 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2708 2708 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2709 2709 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2710 2710 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2711 2711 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2712 2712 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2713 2713 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2714 2714 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2715 2715 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2716 2716 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2717 2717 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2718 2718 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2719 2719 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2720 2720 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2721 2721 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2722 2722 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2723 2723 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2724 2724 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2725 2725 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2726 2726 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2727 2727 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2728 2728 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2729 2729 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2730 2730 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2731 2731 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2732 2732 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2733 2733 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2734 2734 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2735 2735 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2736 2736 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2737 2737 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2738 2738 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2739 2739 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2740 2740 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2741 2741 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2742 2742 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2743 2743 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2744 2744 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2745 2745 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2746 2746 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2747 2747 2016 Guadalajara        Belenes Suc. Belenes   79462  MINI 
## 2748 2748 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2749 2749 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2750 2750 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2751 2751 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2752 2752 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2753 2753 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2754 2754 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2755 2755 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2756 2756 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2757 2757 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2758 2758 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2759 2759 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2760 2760 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2761 2761 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2762 2762 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2763 2763 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2764 2764 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2765 2765 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2766 2766 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2767 2767 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2768 2768 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2769 2769 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2770 2770 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2771 2771 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2772 2772 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2773 2773 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2774 2774 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2775 2775 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2776 2776 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2777 2777 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2778 2778 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2779 2779 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2780 2780 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2781 2781 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2782 2782 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2783 2783 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2784 2784 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2785 2785 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2786 2786 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2787 2787 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2788 2788 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2789 2789 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2790 2790 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2791 2791 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2792 2792 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2793 2793 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2794 2794 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2795 2795 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2796 2796 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2797 2797 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2798 2798 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2799 2799 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2800 2800 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2801 2801 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2802 2802 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2803 2803 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2804 2804 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2805 2805 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2806 2806 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2807 2807 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2808 2808 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2809 2809 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2810 2810 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2811 2811 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2812 2812 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2813 2813 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2814 2814 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2815 2815 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2816 2816 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2817 2817 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2818 2818 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2819 2819 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2820 2820 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2821 2821 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2822 2822 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2823 2823 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2824 2824 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2825 2825 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2826 2826 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2827 2827 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2828 2828 2016 Guadalajara        Belenes Suc. Belenes   79492  JOEL 
## 2829 2829 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2830 2830 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2831 2831 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2832 2832 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2833 2833 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2834 2834 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2835 2835 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2836 2836 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2837 2837 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2838 2838 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2839 2839 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2840 2840 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2841 2841 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2842 2842 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2843 2843 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2844 2844 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2845 2845 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2846 2846 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2847 2847 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2848 2848 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2849 2849 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2850 2850 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2851 2851 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2852 2852 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2853 2853 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2854 2854 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2855 2855 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2856 2856 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2857 2857 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2858 2858 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2859 2859 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2860 2860 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2861 2861 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2862 2862 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2863 2863 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2864 2864 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2865 2865 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2866 2866 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2867 2867 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2868 2868 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2869 2869 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2870 2870 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2871 2871 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2872 2872 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2873 2873 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2874 2874 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2875 2875 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2876 2876 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2877 2877 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2878 2878 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2879 2879 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2880 2880 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2881 2881 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2882 2882 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2883 2883 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2884 2884 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2885 2885 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2886 2886 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2887 2887 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2888 2888 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2889 2889 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2890 2890 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2891 2891 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2892 2892 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2893 2893 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2894 2894 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2895 2895 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2896 2896 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2897 2897 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2898 2898 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2899 2899 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2900 2900 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2901 2901 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2902 2902 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2903 2903 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2904 2904 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2905 2905 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2906 2906 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2907 2907 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2908 2908 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2909 2909 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2910 2910 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2911 2911 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2912 2912 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2913 2913 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2914 2914 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2915 2915 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2916 2916 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2917 2917 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2918 2918 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2919 2919 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2920 2920 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2921 2921 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2922 2922 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2923 2923 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2924 2924 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2925 2925 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2926 2926 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2927 2927 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2928 2928 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2929 2929 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2930 2930 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2931 2931 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2932 2932 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2933 2933 2016 Guadalajara        Belenes Suc. Belenes   79506  ABARR
## 2934 2934 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2935 2935 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2936 2936 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2937 2937 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2938 2938 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2939 2939 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2940 2940 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2941 2941 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2942 2942 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2943 2943 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2944 2944 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2945 2945 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2946 2946 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2947 2947 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2948 2948 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2949 2949 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2950 2950 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2951 2951 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2952 2952 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2953 2953 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2954 2954 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2955 2955 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2956 2956 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2957 2957 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2958 2958 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2959 2959 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2960 2960 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2961 2961 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2962 2962 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2963 2963 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2964 2964 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2965 2965 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2966 2966 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2967 2967 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2968 2968 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2969 2969 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2970 2970 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2971 2971 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2972 2972 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2973 2973 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2974 2974 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2975 2975 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2976 2976 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2977 2977 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2978 2978 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2979 2979 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2980 2980 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2981 2981 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2982 2982 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2983 2983 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2984 2984 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2985 2985 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2986 2986 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2987 2987 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2988 2988 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2989 2989 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2990 2990 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2991 2991 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2992 2992 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2993 2993 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2994 2994 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2995 2995 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2996 2996 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2997 2997 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2998 2998 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 2999 2999 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3000 3000 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3001 3001 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3002 3002 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3003 3003 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3004 3004 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3005 3005 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3006 3006 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3007 3007 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3008 3008 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3009 3009 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3010 3010 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3011 3011 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3012 3012 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3013 3013 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3014 3014 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3015 3015 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3016 3016 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3017 3017 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3018 3018 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3019 3019 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3020 3020 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3021 3021 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3022 3022 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3023 3023 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3024 3024 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3025 3025 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3026 3026 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3027 3027 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3028 3028 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3029 3029 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3030 3030 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3031 3031 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3032 3032 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3033 3033 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3034 3034 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3035 3035 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3036 3036 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3037 3037 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3038 3038 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3039 3039 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3040 3040 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3041 3041 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3042 3042 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3043 3043 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3044 3044 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3045 3045 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3046 3046 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3047 3047 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3048 3048 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3049 3049 2016 Guadalajara        Belenes Suc. Belenes   79574  ABARR
## 3050 3050 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3051 3051 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3052 3052 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3053 3053 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3054 3054 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3055 3055 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3056 3056 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3057 3057 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3058 3058 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3059 3059 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3060 3060 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3061 3061 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3062 3062 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3063 3063 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3064 3064 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3065 3065 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3066 3066 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3067 3067 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3068 3068 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3069 3069 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3070 3070 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3071 3071 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3072 3072 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3073 3073 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3074 3074 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3075 3075 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3076 3076 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3077 3077 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3078 3078 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3079 3079 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3080 3080 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3081 3081 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3082 3082 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3083 3083 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3084 3084 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3085 3085 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3086 3086 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3087 3087 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3088 3088 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3089 3089 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3090 3090 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3091 3091 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3092 3092 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3093 3093 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3094 3094 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3095 3095 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3096 3096 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3097 3097 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3098 3098 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3099 3099 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3100 3100 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3101 3101 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3102 3102 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3103 3103 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3104 3104 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3105 3105 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3106 3106 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3107 3107 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3108 3108 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3109 3109 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3110 3110 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3111 3111 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3112 3112 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3113 3113 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3114 3114 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3115 3115 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3116 3116 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3117 3117 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3118 3118 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3119 3119 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3120 3120 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3121 3121 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3122 3122 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3123 3123 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3124 3124 2016 Guadalajara        Belenes Suc. Belenes   79591  ABARR
## 3125 3125 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3126 3126 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3127 3127 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3128 3128 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3129 3129 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3130 3130 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3131 3131 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3132 3132 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3133 3133 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3134 3134 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3135 3135 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3136 3136 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3137 3137 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3138 3138 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3139 3139 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3140 3140 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3141 3141 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3142 3142 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3143 3143 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3144 3144 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3145 3145 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3146 3146 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3147 3147 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3148 3148 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3149 3149 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3150 3150 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3151 3151 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3152 3152 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3153 3153 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3154 3154 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3155 3155 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3156 3156 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3157 3157 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3158 3158 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3159 3159 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3160 3160 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3161 3161 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3162 3162 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3163 3163 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3164 3164 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3165 3165 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3166 3166 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3167 3167 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3168 3168 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3169 3169 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3170 3170 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3171 3171 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3172 3172 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3173 3173 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3174 3174 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3175 3175 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3176 3176 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3177 3177 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3178 3178 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3179 3179 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3180 3180 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3181 3181 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3182 3182 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3183 3183 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3184 3184 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3185 3185 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3186 3186 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3187 3187 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3188 3188 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3189 3189 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3190 3190 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3191 3191 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3192 3192 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3193 3193 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3194 3194 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3195 3195 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3196 3196 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3197 3197 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3198 3198 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3199 3199 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3200 3200 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3201 3201 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3202 3202 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3203 3203 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3204 3204 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3205 3205 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3206 3206 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3207 3207 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3208 3208 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3209 3209 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3210 3210 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3211 3211 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3212 3212 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3213 3213 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3214 3214 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3215 3215 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3216 3216 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3217 3217 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3218 3218 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3219 3219 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3220 3220 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3221 3221 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3222 3222 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3223 3223 2016 Guadalajara        Belenes Suc. Belenes   79603  ABARR
## 3224 3224 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3225 3225 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3226 3226 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3227 3227 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3228 3228 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3229 3229 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3230 3230 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3231 3231 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3232 3232 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3233 3233 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3234 3234 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3235 3235 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3236 3236 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3237 3237 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3238 3238 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3239 3239 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3240 3240 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3241 3241 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3242 3242 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3243 3243 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3244 3244 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3245 3245 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3246 3246 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3247 3247 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3248 3248 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3249 3249 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3250 3250 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3251 3251 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3252 3252 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3253 3253 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3254 3254 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3255 3255 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3256 3256 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3257 3257 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3258 3258 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3259 3259 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3260 3260 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3261 3261 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3262 3262 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3263 3263 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3264 3264 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3265 3265 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3266 3266 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3267 3267 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3268 3268 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3269 3269 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3270 3270 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3271 3271 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3272 3272 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3273 3273 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3274 3274 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3275 3275 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3276 3276 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3277 3277 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3278 3278 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3279 3279 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3280 3280 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3281 3281 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3282 3282 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3283 3283 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3284 3284 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3285 3285 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3286 3286 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3287 3287 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3288 3288 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3289 3289 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3290 3290 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3291 3291 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3292 3292 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3293 3293 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3294 3294 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3295 3295 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3296 3296 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3297 3297 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3298 3298 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3299 3299 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3300 3300 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3301 3301 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3302 3302 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3303 3303 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3304 3304 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3305 3305 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3306 3306 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3307 3307 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3308 3308 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3309 3309 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3310 3310 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3311 3311 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3312 3312 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3313 3313 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3314 3314 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3315 3315 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3316 3316 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3317 3317 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3318 3318 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3319 3319 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3320 3320 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3321 3321 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3322 3322 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3323 3323 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3324 3324 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3325 3325 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3326 3326 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3327 3327 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3328 3328 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3329 3329 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3330 3330 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3331 3331 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3332 3332 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3333 3333 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3334 3334 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3335 3335 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3336 3336 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3337 3337 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3338 3338 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3339 3339 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3340 3340 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3341 3341 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3342 3342 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3343 3343 2016 Guadalajara        Belenes Suc. Belenes   79615  TIEND
## 3344 3344 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3345 3345 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3346 3346 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3347 3347 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3348 3348 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3349 3349 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3350 3350 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3351 3351 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3352 3352 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3353 3353 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3354 3354 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3355 3355 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3356 3356 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3357 3357 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3358 3358 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3359 3359 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3360 3360 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3361 3361 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3362 3362 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3363 3363 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3364 3364 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3365 3365 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3366 3366 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3367 3367 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3368 3368 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3369 3369 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3370 3370 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3371 3371 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3372 3372 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3373 3373 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3374 3374 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3375 3375 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3376 3376 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3377 3377 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3378 3378 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3379 3379 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3380 3380 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3381 3381 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3382 3382 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3383 3383 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3384 3384 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3385 3385 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3386 3386 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3387 3387 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3388 3388 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3389 3389 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3390 3390 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3391 3391 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3392 3392 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3393 3393 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3394 3394 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3395 3395 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3396 3396 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3397 3397 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3398 3398 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3399 3399 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3400 3400 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3401 3401 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3402 3402 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3403 3403 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3404 3404 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3405 3405 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3406 3406 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3407 3407 2016 Guadalajara        Belenes Suc. Belenes   79632  SUSAN
## 3408 3408 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3409 3409 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3410 3410 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3411 3411 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3412 3412 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3413 3413 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3414 3414 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3415 3415 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3416 3416 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3417 3417 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3418 3418 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3419 3419 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3420 3420 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3421 3421 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3422 3422 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3423 3423 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3424 3424 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3425 3425 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3426 3426 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3427 3427 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3428 3428 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3429 3429 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3430 3430 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3431 3431 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3432 3432 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3433 3433 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3434 3434 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3435 3435 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3436 3436 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3437 3437 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3438 3438 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3439 3439 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3440 3440 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3441 3441 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3442 3442 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3443 3443 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3444 3444 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3445 3445 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3446 3446 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3447 3447 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3448 3448 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3449 3449 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3450 3450 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3451 3451 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3452 3452 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3453 3453 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3454 3454 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3455 3455 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3456 3456 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3457 3457 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3458 3458 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3459 3459 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3460 3460 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3461 3461 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3462 3462 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3463 3463 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3464 3464 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3465 3465 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3466 3466 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3467 3467 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3468 3468 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3469 3469 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3470 3470 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3471 3471 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3472 3472 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3473 3473 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3474 3474 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3475 3475 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3476 3476 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3477 3477 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3478 3478 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3479 3479 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3480 3480 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3481 3481 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3482 3482 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3483 3483 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3484 3484 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3485 3485 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3486 3486 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3487 3487 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3488 3488 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3489 3489 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3490 3490 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3491 3491 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3492 3492 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3493 3493 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3494 3494 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3495 3495 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3496 3496 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3497 3497 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3498 3498 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3499 3499 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3500 3500 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3501 3501 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3502 3502 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3503 3503 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3504 3504 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3505 3505 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3506 3506 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3507 3507 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3508 3508 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3509 3509 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3510 3510 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3511 3511 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3512 3512 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3513 3513 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3514 3514 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3515 3515 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3516 3516 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3517 3517 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3518 3518 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3519 3519 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3520 3520 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3521 3521 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3522 3522 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3523 3523 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3524 3524 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3525 3525 2016 Guadalajara        Belenes Suc. Belenes   79646  SUPER
## 3526 3526 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3527 3527 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3528 3528 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3529 3529 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3530 3530 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3531 3531 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3532 3532 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3533 3533 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3534 3534 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3535 3535 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3536 3536 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3537 3537 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3538 3538 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3539 3539 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3540 3540 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3541 3541 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3542 3542 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3543 3543 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3544 3544 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3545 3545 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3546 3546 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3547 3547 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3548 3548 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3549 3549 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3550 3550 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3551 3551 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3552 3552 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3553 3553 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3554 3554 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3555 3555 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3556 3556 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3557 3557 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3558 3558 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3559 3559 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3560 3560 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3561 3561 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3562 3562 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3563 3563 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3564 3564 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3565 3565 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3566 3566 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3567 3567 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3568 3568 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3569 3569 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3570 3570 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3571 3571 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3572 3572 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3573 3573 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3574 3574 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3575 3575 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3576 3576 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3577 3577 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3578 3578 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3579 3579 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3580 3580 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3581 3581 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3582 3582 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3583 3583 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3584 3584 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3585 3585 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3586 3586 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3587 3587 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3588 3588 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3589 3589 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3590 3590 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3591 3591 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3592 3592 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3593 3593 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3594 3594 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3595 3595 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3596 3596 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3597 3597 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3598 3598 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3599 3599 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3600 3600 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3601 3601 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3602 3602 2016 Guadalajara        Belenes Suc. Belenes   79671  ABARR
## 3603 3603 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3604 3604 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3605 3605 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3606 3606 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3607 3607 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3608 3608 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3609 3609 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3610 3610 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3611 3611 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3612 3612 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3613 3613 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3614 3614 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3615 3615 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3616 3616 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3617 3617 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3618 3618 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3619 3619 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3620 3620 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3621 3621 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3622 3622 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3623 3623 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3624 3624 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3625 3625 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3626 3626 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3627 3627 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3628 3628 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3629 3629 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3630 3630 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3631 3631 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3632 3632 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3633 3633 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3634 3634 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3635 3635 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3636 3636 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3637 3637 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3638 3638 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3639 3639 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3640 3640 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3641 3641 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3642 3642 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3643 3643 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3644 3644 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3645 3645 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3646 3646 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3647 3647 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3648 3648 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3649 3649 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3650 3650 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3651 3651 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3652 3652 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3653 3653 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3654 3654 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3655 3655 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3656 3656 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3657 3657 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3658 3658 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3659 3659 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3660 3660 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3661 3661 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3662 3662 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3663 3663 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3664 3664 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3665 3665 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3666 3666 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3667 3667 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3668 3668 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3669 3669 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3670 3670 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3671 3671 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3672 3672 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3673 3673 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3674 3674 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3675 3675 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3676 3676 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3677 3677 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3678 3678 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3679 3679 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3680 3680 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3681 3681 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3682 3682 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3683 3683 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3684 3684 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3685 3685 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3686 3686 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3687 3687 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3688 3688 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3689 3689 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3690 3690 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3691 3691 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3692 3692 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3693 3693 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3694 3694 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3695 3695 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3696 3696 2016 Guadalajara        Belenes Suc. Belenes   79677  ANDRE
## 3697 3697 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3698 3698 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3699 3699 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3700 3700 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3701 3701 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3702 3702 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3703 3703 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3704 3704 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3705 3705 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3706 3706 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3707 3707 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3708 3708 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3709 3709 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3710 3710 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3711 3711 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3712 3712 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3713 3713 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3714 3714 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3715 3715 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3716 3716 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3717 3717 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3718 3718 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3719 3719 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3720 3720 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3721 3721 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3722 3722 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3723 3723 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3724 3724 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3725 3725 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3726 3726 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3727 3727 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3728 3728 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3729 3729 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3730 3730 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3731 3731 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3732 3732 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3733 3733 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3734 3734 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3735 3735 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3736 3736 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3737 3737 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3738 3738 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3739 3739 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3740 3740 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3741 3741 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3742 3742 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3743 3743 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3744 3744 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3745 3745 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3746 3746 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3747 3747 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3748 3748 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3749 3749 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3750 3750 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3751 3751 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3752 3752 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3753 3753 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3754 3754 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3755 3755 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3756 3756 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3757 3757 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3758 3758 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3759 3759 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3760 3760 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3761 3761 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3762 3762 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3763 3763 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3764 3764 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3765 3765 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3766 3766 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3767 3767 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3768 3768 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3769 3769 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3770 3770 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3771 3771 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3772 3772 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3773 3773 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3774 3774 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3775 3775 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3776 3776 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3777 3777 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3778 3778 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3779 3779 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3780 3780 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3781 3781 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3782 3782 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3783 3783 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3784 3784 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3785 3785 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3786 3786 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3787 3787 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3788 3788 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3789 3789 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3790 3790 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3791 3791 2016 Guadalajara        Belenes Suc. Belenes   79742  ABARR
## 3792 3792 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3793 3793 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3794 3794 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3795 3795 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3796 3796 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3797 3797 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3798 3798 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3799 3799 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3800 3800 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3801 3801 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3802 3802 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3803 3803 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3804 3804 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3805 3805 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3806 3806 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3807 3807 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3808 3808 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3809 3809 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3810 3810 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3811 3811 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3812 3812 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3813 3813 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3814 3814 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3815 3815 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3816 3816 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3817 3817 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3818 3818 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3819 3819 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3820 3820 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3821 3821 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3822 3822 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3823 3823 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3824 3824 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3825 3825 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3826 3826 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3827 3827 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3828 3828 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3829 3829 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3830 3830 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3831 3831 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3832 3832 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3833 3833 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3834 3834 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3835 3835 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3836 3836 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3837 3837 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3838 3838 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3839 3839 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3840 3840 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3841 3841 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3842 3842 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3843 3843 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3844 3844 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3845 3845 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3846 3846 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3847 3847 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3848 3848 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3849 3849 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3850 3850 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3851 3851 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3852 3852 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3853 3853 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3854 3854 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3855 3855 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3856 3856 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3857 3857 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3858 3858 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3859 3859 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3860 3860 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3861 3861 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3862 3862 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3863 3863 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3864 3864 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3865 3865 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3866 3866 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3867 3867 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3868 3868 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3869 3869 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3870 3870 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3871 3871 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3872 3872 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3873 3873 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3874 3874 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3875 3875 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3876 3876 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3877 3877 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3878 3878 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3879 3879 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3880 3880 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3881 3881 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3882 3882 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3883 3883 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3884 3884 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3885 3885 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3886 3886 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3887 3887 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3888 3888 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3889 3889 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3890 3890 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3891 3891 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3892 3892 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3893 3893 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3894 3894 2016 Guadalajara        Belenes Suc. Belenes   79743  ABARR
## 3895 3895 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3896 3896 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3897 3897 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3898 3898 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3899 3899 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3900 3900 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3901 3901 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3902 3902 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3903 3903 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3904 3904 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3905 3905 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3906 3906 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3907 3907 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3908 3908 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3909 3909 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3910 3910 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3911 3911 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3912 3912 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3913 3913 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3914 3914 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3915 3915 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3916 3916 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3917 3917 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3918 3918 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3919 3919 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3920 3920 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3921 3921 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3922 3922 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3923 3923 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3924 3924 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3925 3925 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3926 3926 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3927 3927 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3928 3928 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3929 3929 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3930 3930 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3931 3931 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3932 3932 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3933 3933 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3934 3934 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3935 3935 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3936 3936 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3937 3937 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3938 3938 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3939 3939 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3940 3940 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3941 3941 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3942 3942 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3943 3943 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3944 3944 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3945 3945 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3946 3946 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3947 3947 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3948 3948 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3949 3949 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3950 3950 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3951 3951 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3952 3952 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3953 3953 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3954 3954 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3955 3955 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3956 3956 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3957 3957 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3958 3958 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3959 3959 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3960 3960 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3961 3961 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3962 3962 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3963 3963 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3964 3964 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3965 3965 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3966 3966 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3967 3967 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3968 3968 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3969 3969 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3970 3970 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3971 3971 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3972 3972 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3973 3973 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3974 3974 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3975 3975 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3976 3976 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3977 3977 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3978 3978 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3979 3979 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3980 3980 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3981 3981 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3982 3982 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3983 3983 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3984 3984 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3985 3985 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3986 3986 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3987 3987 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3988 3988 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3989 3989 2016 Guadalajara        Belenes Suc. Belenes   79767  ABARR
## 3990 3990 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3991 3991 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3992 3992 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3993 3993 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3994 3994 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3995 3995 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3996 3996 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3997 3997 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3998 3998 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
## 3999 3999 2016 Guadalajara        Belenes Suc. Belenes   79872  CENTR
##      Tamaño.Cte.Industria         Segmento.Det                Marca
## 1            Extra Grande         Agua Mineral      Topo Chico A.M.
## 2            Extra Grande      Agua Purificada Ciel Agua Purificada
## 3            Extra Grande      Agua Purificada Ciel Agua Purificada
## 4            Extra Grande      Agua Saborizada          Ciel Exprim
## 5            Extra Grande      Agua Saborizada            Ciel Mini
## 6            Extra Grande      Agua Saborizada      Ciel Saborizada
## 7            Extra Grande     Bebidas de Fruta       Delaware Punch
## 8            Extra Grande     Bebidas de Fruta       Delaware Punch
## 9            Extra Grande     Bebidas de Fruta               Frutsi
## 10           Extra Grande     Bebidas de Fruta                Pulpy
## 11           Extra Grande     Bebidas de Fruta           Valle Frut
## 12           Extra Grande     Bebidas de Fruta           Valle Frut
## 13           Extra Grande     Bebidas de Fruta           Valle Frut
## 14           Extra Grande     Bebidas de Fruta           Valle Frut
## 15           Extra Grande  Bebidas Energeticas                 Burn
## 16           Extra Grande          Colas Light      Coca-Cola Light
## 17           Extra Grande          Colas Light      Coca-Cola Light
## 18           Extra Grande          Colas Light      Coca-Cola Light
## 19           Extra Grande        Colas Regular            Coca-Cola
## 20           Extra Grande        Colas Regular            Coca-Cola
## 21           Extra Grande        Colas Regular            Coca-Cola
## 22           Extra Grande        Colas Regular            Coca-Cola
## 23           Extra Grande        Colas Regular            Coca-Cola
## 24           Extra Grande        Colas Regular            Coca-Cola
## 25           Extra Grande        Colas Regular            Coca-Cola
## 26           Extra Grande        Colas Regular            Coca-Cola
## 27           Extra Grande        Colas Regular            Coca-Cola
## 28           Extra Grande        Colas Regular            Coca-Cola
## 29           Extra Grande        Colas Regular            Coca-Cola
## 30           Extra Grande        Colas Regular            Coca-Cola
## 31           Extra Grande        Colas Regular            Coca-Cola
## 32           Extra Grande        Colas Regular            Coca-Cola
## 33           Extra Grande        Colas Regular            Coca-Cola
## 34           Extra Grande        Colas Regular            Coca-Cola
## 35           Extra Grande     Isotónicos Light        Powerade Zero
## 36           Extra Grande   Isotónicos Regular             Powerade
## 37           Extra Grande   Isotónicos Regular             Powerade
## 38           Extra Grande   Isotónicos Regular             Powerade
## 39           Extra Grande     Jugos y Néctares            Del Valle
## 40           Extra Grande     Jugos y Néctares            Del Valle
## 41           Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 42           Extra Grande     Jugos y Néctares    Del Valle Reserva
## 43           Extra Grande    Leche UHT Regular   Santa Clara Entera
## 44           Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 45           Extra Grande        Sabores Light          Sprite Zero
## 46           Extra Grande      Sabores Regular     Del Valle y Nada
## 47           Extra Grande      Sabores Regular                Fanta
## 48           Extra Grande      Sabores Regular                Fanta
## 49           Extra Grande      Sabores Regular                Fanta
## 50           Extra Grande      Sabores Regular                Fanta
## 51           Extra Grande      Sabores Regular                Fanta
## 52           Extra Grande      Sabores Regular                Fanta
## 53           Extra Grande      Sabores Regular                Fanta
## 54           Extra Grande      Sabores Regular                Fanta
## 55           Extra Grande      Sabores Regular               Fresca
## 56           Extra Grande      Sabores Regular               Fresca
## 57           Extra Grande      Sabores Regular               Fresca
## 58           Extra Grande      Sabores Regular               Fresca
## 59           Extra Grande      Sabores Regular               Fresca
## 60           Extra Grande      Sabores Regular               Fresca
## 61           Extra Grande      Sabores Regular               Fresca
## 62           Extra Grande      Sabores Regular         Manzana Lift
## 63           Extra Grande      Sabores Regular         Manzana Lift
## 64           Extra Grande      Sabores Regular         Manzana Lift
## 65           Extra Grande      Sabores Regular         Manzana Lift
## 66           Extra Grande      Sabores Regular         Manzana Lift
## 67           Extra Grande      Sabores Regular        Sidral Mundet
## 68           Extra Grande      Sabores Regular        Sidral Mundet
## 69           Extra Grande      Sabores Regular        Sidral Mundet
## 70           Extra Grande      Sabores Regular        Sidral Mundet
## 71           Extra Grande      Sabores Regular        Sidral Mundet
## 72           Extra Grande      Sabores Regular               Sprite
## 73           Extra Grande      Sabores Regular               Sprite
## 74           Extra Grande      Sabores Regular               Sprite
## 75           Extra Grande      Sabores Regular               Sprite
## 76           Extra Grande      Sabores Regular               Sprite
## 77           Extra Grande      Sabores Regular               Sprite
## 78           Extra Grande      Sabores Regular               Sprite
## 79           Extra Grande      Sabores Regular               Sprite
## 80           Extra Grande           Té Regular             Fuze Tea
## 81           Extra Grande           Té Regular             Fuze Tea
## 82           Extra Grande         Agua Mineral    Ciel Mineralizada
## 83           Extra Grande         Agua Mineral      Topo Chico A.M.
## 84           Extra Grande         Agua Mineral      Topo Chico A.M.
## 85           Extra Grande      Agua Purificada Ciel Agua Purificada
## 86           Extra Grande      Agua Purificada Ciel Agua Purificada
## 87           Extra Grande      Agua Purificada Ciel Agua Purificada
## 88           Extra Grande      Agua Purificada Ciel Agua Purificada
## 89           Extra Grande      Agua Saborizada          Ciel Exprim
## 90           Extra Grande      Agua Saborizada            Ciel Mini
## 91           Extra Grande     Bebidas de Fruta       Delaware Punch
## 92           Extra Grande     Bebidas de Fruta               Frutsi
## 93           Extra Grande     Bebidas de Fruta                Pulpy
## 94           Extra Grande     Bebidas de Fruta           Valle Frut
## 95           Extra Grande     Bebidas de Fruta           Valle Frut
## 96           Extra Grande     Bebidas de Fruta           Valle Frut
## 97           Extra Grande  Bebidas Energeticas                 Burn
## 98           Extra Grande  Bebidas Energeticas                 Burn
## 99           Extra Grande  Bebidas Energeticas              Glacéau
## 100          Extra Grande          Colas Light       Coca-Cola Life
## 101          Extra Grande          Colas Light       Coca-Cola Life
## 102          Extra Grande          Colas Light      Coca-Cola Light
## 103          Extra Grande          Colas Light      Coca-Cola Light
## 104          Extra Grande          Colas Light      Coca-Cola Light
## 105          Extra Grande          Colas Light      Coca-Cola Light
## 106          Extra Grande          Colas Light      Coca-Cola Light
## 107          Extra Grande          Colas Light      Coca-Cola Light
## 108          Extra Grande          Colas Light      Coca-Cola Light
## 109          Extra Grande          Colas Light       Coca-Cola Zero
## 110          Extra Grande          Colas Light       Coca-Cola Zero
## 111          Extra Grande        Colas Regular            Coca-Cola
## 112          Extra Grande        Colas Regular            Coca-Cola
## 113          Extra Grande        Colas Regular            Coca-Cola
## 114          Extra Grande        Colas Regular            Coca-Cola
## 115          Extra Grande        Colas Regular            Coca-Cola
## 116          Extra Grande        Colas Regular            Coca-Cola
## 117          Extra Grande        Colas Regular            Coca-Cola
## 118          Extra Grande        Colas Regular            Coca-Cola
## 119          Extra Grande        Colas Regular            Coca-Cola
## 120          Extra Grande        Colas Regular            Coca-Cola
## 121          Extra Grande        Colas Regular            Coca-Cola
## 122          Extra Grande        Colas Regular            Coca-Cola
## 123          Extra Grande        Colas Regular            Coca-Cola
## 124          Extra Grande        Colas Regular            Coca-Cola
## 125          Extra Grande        Colas Regular            Coca-Cola
## 126          Extra Grande   Isotónicos Regular             Powerade
## 127          Extra Grande   Isotónicos Regular             Powerade
## 128          Extra Grande   Isotónicos Regular             Powerade
## 129          Extra Grande     Jugos y Néctares            Del Valle
## 130          Extra Grande     Jugos y Néctares            Del Valle
## 131          Extra Grande     Jugos y Néctares            Del Valle
## 132          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 133          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 134          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 135          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 136          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 137          Extra Grande        Sabores Light          Sprite Zero
## 138          Extra Grande      Sabores Regular     Del Valle y Nada
## 139          Extra Grande      Sabores Regular                Fanta
## 140          Extra Grande      Sabores Regular                Fanta
## 141          Extra Grande      Sabores Regular                Fanta
## 142          Extra Grande      Sabores Regular                Fanta
## 143          Extra Grande      Sabores Regular                Fanta
## 144          Extra Grande      Sabores Regular                Fanta
## 145          Extra Grande      Sabores Regular                Fanta
## 146          Extra Grande      Sabores Regular               Fresca
## 147          Extra Grande      Sabores Regular               Fresca
## 148          Extra Grande      Sabores Regular               Fresca
## 149          Extra Grande      Sabores Regular               Fresca
## 150          Extra Grande      Sabores Regular               Fresca
## 151          Extra Grande      Sabores Regular               Fresca
## 152          Extra Grande      Sabores Regular         Manzana Lift
## 153          Extra Grande      Sabores Regular         Manzana Lift
## 154          Extra Grande      Sabores Regular         Manzana Lift
## 155          Extra Grande      Sabores Regular         Manzana Lift
## 156          Extra Grande      Sabores Regular         Manzana Lift
## 157          Extra Grande      Sabores Regular               Senzao
## 158          Extra Grande      Sabores Regular        Sidral Mundet
## 159          Extra Grande      Sabores Regular        Sidral Mundet
## 160          Extra Grande      Sabores Regular        Sidral Mundet
## 161          Extra Grande      Sabores Regular        Sidral Mundet
## 162          Extra Grande      Sabores Regular        Sidral Mundet
## 163          Extra Grande      Sabores Regular        Sidral Mundet
## 164          Extra Grande      Sabores Regular               Sprite
## 165          Extra Grande      Sabores Regular               Sprite
## 166          Extra Grande      Sabores Regular               Sprite
## 167          Extra Grande      Sabores Regular               Sprite
## 168          Extra Grande      Sabores Regular               Sprite
## 169          Extra Grande      Sabores Regular               Sprite
## 170          Extra Grande      Sabores Regular               Sprite
## 171          Extra Grande           Té Regular             Fuze Tea
## 172          Extra Grande           Té Regular             Fuze Tea
## 173          Extra Grande         Agua Mineral    Ciel Mineralizada
## 174          Extra Grande         Agua Mineral      Topo Chico A.M.
## 175          Extra Grande      Agua Purificada Ciel Agua Purificada
## 176          Extra Grande      Agua Purificada Ciel Agua Purificada
## 177          Extra Grande      Agua Purificada Ciel Agua Purificada
## 178          Extra Grande      Agua Purificada Ciel Agua Purificada
## 179          Extra Grande      Agua Purificada Ciel Agua Purificada
## 180          Extra Grande      Agua Saborizada          Ciel Exprim
## 181          Extra Grande      Agua Saborizada            Ciel Mini
## 182          Extra Grande      Agua Saborizada      Ciel Saborizada
## 183          Extra Grande      Agua Saborizada      Ciel Saborizada
## 184          Extra Grande     Bebidas de Fruta       Delaware Punch
## 185          Extra Grande     Bebidas de Fruta               Frutsi
## 186          Extra Grande     Bebidas de Fruta                Pulpy
## 187          Extra Grande     Bebidas de Fruta           Valle Frut
## 188          Extra Grande     Bebidas de Fruta           Valle Frut
## 189          Extra Grande     Bebidas de Fruta           Valle Frut
## 190          Extra Grande  Bebidas Energeticas                 Burn
## 191          Extra Grande  Bebidas Energeticas                 Burn
## 192          Extra Grande  Bebidas Energeticas              Glacéau
## 193          Extra Grande          Colas Light       Coca-Cola Life
## 194          Extra Grande          Colas Light       Coca-Cola Life
## 195          Extra Grande          Colas Light       Coca-Cola Life
## 196          Extra Grande          Colas Light       Coca-Cola Life
## 197          Extra Grande          Colas Light      Coca-Cola Light
## 198          Extra Grande          Colas Light      Coca-Cola Light
## 199          Extra Grande          Colas Light      Coca-Cola Light
## 200          Extra Grande          Colas Light      Coca-Cola Light
## 201          Extra Grande          Colas Light      Coca-Cola Light
## 202          Extra Grande          Colas Light      Coca-Cola Light
## 203          Extra Grande          Colas Light      Coca-Cola Light
## 204          Extra Grande          Colas Light      Coca-Cola Light
## 205          Extra Grande          Colas Light      Coca-Cola Light
## 206          Extra Grande          Colas Light      Coca-Cola Light
## 207          Extra Grande          Colas Light       Coca-Cola Zero
## 208          Extra Grande          Colas Light       Coca-Cola Zero
## 209          Extra Grande          Colas Light       Coca-Cola Zero
## 210          Extra Grande          Colas Light       Coca-Cola Zero
## 211          Extra Grande        Colas Regular            Coca-Cola
## 212          Extra Grande        Colas Regular            Coca-Cola
## 213          Extra Grande        Colas Regular            Coca-Cola
## 214          Extra Grande        Colas Regular            Coca-Cola
## 215          Extra Grande        Colas Regular            Coca-Cola
## 216          Extra Grande        Colas Regular            Coca-Cola
## 217          Extra Grande        Colas Regular            Coca-Cola
## 218          Extra Grande        Colas Regular            Coca-Cola
## 219          Extra Grande        Colas Regular            Coca-Cola
## 220          Extra Grande        Colas Regular            Coca-Cola
## 221          Extra Grande        Colas Regular            Coca-Cola
## 222          Extra Grande        Colas Regular            Coca-Cola
## 223          Extra Grande        Colas Regular            Coca-Cola
## 224          Extra Grande        Colas Regular            Coca-Cola
## 225          Extra Grande        Colas Regular            Coca-Cola
## 226          Extra Grande        Colas Regular            Coca-Cola
## 227          Extra Grande        Colas Regular            Coca-Cola
## 228          Extra Grande        Colas Regular            Coca-Cola
## 229          Extra Grande   Isotónicos Regular             Powerade
## 230          Extra Grande   Isotónicos Regular             Powerade
## 231          Extra Grande   Isotónicos Regular             Powerade
## 232          Extra Grande     Jugos y Néctares            Del Valle
## 233          Extra Grande     Jugos y Néctares            Del Valle
## 234          Extra Grande     Jugos y Néctares            Del Valle
## 235          Extra Grande     Jugos y Néctares            Del Valle
## 236          Extra Grande     Jugos y Néctares            Del Valle
## 237          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 238          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 239          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 240          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 241          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 242          Extra Grande        Sabores Light          Sprite Zero
## 243          Extra Grande      Sabores Regular     Del Valle y Nada
## 244          Extra Grande      Sabores Regular     Del Valle y Nada
## 245          Extra Grande      Sabores Regular                Fanta
## 246          Extra Grande      Sabores Regular                Fanta
## 247          Extra Grande      Sabores Regular                Fanta
## 248          Extra Grande      Sabores Regular                Fanta
## 249          Extra Grande      Sabores Regular                Fanta
## 250          Extra Grande      Sabores Regular                Fanta
## 251          Extra Grande      Sabores Regular                Fanta
## 252          Extra Grande      Sabores Regular               Fresca
## 253          Extra Grande      Sabores Regular               Fresca
## 254          Extra Grande      Sabores Regular               Fresca
## 255          Extra Grande      Sabores Regular               Fresca
## 256          Extra Grande      Sabores Regular               Fresca
## 257          Extra Grande      Sabores Regular               Fresca
## 258          Extra Grande      Sabores Regular         Manzana Lift
## 259          Extra Grande      Sabores Regular         Manzana Lift
## 260          Extra Grande      Sabores Regular         Manzana Lift
## 261          Extra Grande      Sabores Regular         Manzana Lift
## 262          Extra Grande      Sabores Regular         Manzana Lift
## 263          Extra Grande      Sabores Regular               Senzao
## 264          Extra Grande      Sabores Regular        Sidral Mundet
## 265          Extra Grande      Sabores Regular        Sidral Mundet
## 266          Extra Grande      Sabores Regular        Sidral Mundet
## 267          Extra Grande      Sabores Regular        Sidral Mundet
## 268          Extra Grande      Sabores Regular        Sidral Mundet
## 269          Extra Grande      Sabores Regular               Sprite
## 270          Extra Grande      Sabores Regular               Sprite
## 271          Extra Grande      Sabores Regular               Sprite
## 272          Extra Grande      Sabores Regular               Sprite
## 273          Extra Grande      Sabores Regular               Sprite
## 274          Extra Grande      Sabores Regular               Sprite
## 275          Extra Grande      Sabores Regular               Sprite
## 276          Extra Grande           Té Regular             Fuze Tea
## 277          Extra Grande           Té Regular             Fuze Tea
## 278          Extra Grande           Té Regular             Fuze Tea
## 279          Extra Grande         Agua Mineral    Ciel Mineralizada
## 280          Extra Grande         Agua Mineral    Ciel Mineralizada
## 281          Extra Grande         Agua Mineral      Topo Chico A.M.
## 282          Extra Grande         Agua Mineral      Topo Chico A.M.
## 283          Extra Grande      Agua Purificada Ciel Agua Purificada
## 284          Extra Grande      Agua Purificada Ciel Agua Purificada
## 285          Extra Grande      Agua Purificada Ciel Agua Purificada
## 286          Extra Grande      Agua Purificada Ciel Agua Purificada
## 287          Extra Grande      Agua Purificada Ciel Agua Purificada
## 288          Extra Grande      Agua Saborizada          Ciel Exprim
## 289          Extra Grande      Agua Saborizada          Ciel Exprim
## 290          Extra Grande      Agua Saborizada          Ciel Exprim
## 291          Extra Grande      Agua Saborizada            Ciel Mini
## 292          Extra Grande      Agua Saborizada      Ciel Saborizada
## 293          Extra Grande      Agua Saborizada      Ciel Saborizada
## 294          Extra Grande      Agua Saborizada      Ciel Saborizada
## 295          Extra Grande     Bebidas de Fruta       Delaware Punch
## 296          Extra Grande     Bebidas de Fruta       Delaware Punch
## 297          Extra Grande     Bebidas de Fruta               Frutsi
## 298          Extra Grande     Bebidas de Fruta                Pulpy
## 299          Extra Grande     Bebidas de Fruta           Valle Frut
## 300          Extra Grande     Bebidas de Fruta           Valle Frut
## 301          Extra Grande     Bebidas de Fruta           Valle Frut
## 302          Extra Grande     Bebidas de Fruta           Valle Frut
## 303          Extra Grande     Bebidas de Fruta           Valle Frut
## 304          Extra Grande  Bebidas Energeticas                 Burn
## 305          Extra Grande  Bebidas Energeticas                 Burn
## 306          Extra Grande  Bebidas Energeticas              Glacéau
## 307          Extra Grande          Colas Light       Coca-Cola Life
## 308          Extra Grande          Colas Light       Coca-Cola Life
## 309          Extra Grande          Colas Light       Coca-Cola Life
## 310          Extra Grande          Colas Light      Coca-Cola Light
## 311          Extra Grande          Colas Light      Coca-Cola Light
## 312          Extra Grande          Colas Light      Coca-Cola Light
## 313          Extra Grande          Colas Light      Coca-Cola Light
## 314          Extra Grande          Colas Light      Coca-Cola Light
## 315          Extra Grande          Colas Light      Coca-Cola Light
## 316          Extra Grande          Colas Light       Coca-Cola Zero
## 317          Extra Grande          Colas Light       Coca-Cola Zero
## 318          Extra Grande        Colas Regular            Coca-Cola
## 319          Extra Grande        Colas Regular            Coca-Cola
## 320          Extra Grande        Colas Regular            Coca-Cola
## 321          Extra Grande        Colas Regular            Coca-Cola
## 322          Extra Grande        Colas Regular            Coca-Cola
## 323          Extra Grande        Colas Regular            Coca-Cola
## 324          Extra Grande        Colas Regular            Coca-Cola
## 325          Extra Grande        Colas Regular            Coca-Cola
## 326          Extra Grande        Colas Regular            Coca-Cola
## 327          Extra Grande        Colas Regular            Coca-Cola
## 328          Extra Grande        Colas Regular            Coca-Cola
## 329          Extra Grande        Colas Regular            Coca-Cola
## 330          Extra Grande        Colas Regular            Coca-Cola
## 331          Extra Grande        Colas Regular            Coca-Cola
## 332          Extra Grande        Colas Regular            Coca-Cola
## 333          Extra Grande        Colas Regular            Coca-Cola
## 334          Extra Grande        Colas Regular            Coca-Cola
## 335          Extra Grande     Isotónicos Light        Powerade Zero
## 336          Extra Grande   Isotónicos Regular             Powerade
## 337          Extra Grande   Isotónicos Regular             Powerade
## 338          Extra Grande   Isotónicos Regular             Powerade
## 339          Extra Grande     Jugos y Néctares            Del Valle
## 340          Extra Grande     Jugos y Néctares            Del Valle
## 341          Extra Grande     Jugos y Néctares            Del Valle
## 342          Extra Grande     Jugos y Néctares            Del Valle
## 343          Extra Grande     Jugos y Néctares            Del Valle
## 344          Extra Grande     Jugos y Néctares            Del Valle
## 345          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 346          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 347          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 348          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 349          Extra Grande    Leche UHT Regular   Santa Clara Entera
## 350          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 351          Extra Grande        Sabores Light          Sprite Zero
## 352          Extra Grande      Sabores Regular     Del Valle y Nada
## 353          Extra Grande      Sabores Regular     Del Valle y Nada
## 354          Extra Grande      Sabores Regular     Del Valle y Nada
## 355          Extra Grande      Sabores Regular                Fanta
## 356          Extra Grande      Sabores Regular                Fanta
## 357          Extra Grande      Sabores Regular                Fanta
## 358          Extra Grande      Sabores Regular                Fanta
## 359          Extra Grande      Sabores Regular                Fanta
## 360          Extra Grande      Sabores Regular                Fanta
## 361          Extra Grande      Sabores Regular                Fanta
## 362          Extra Grande      Sabores Regular                Fanta
## 363          Extra Grande      Sabores Regular                Fanta
## 364          Extra Grande      Sabores Regular               Fresca
## 365          Extra Grande      Sabores Regular               Fresca
## 366          Extra Grande      Sabores Regular               Fresca
## 367          Extra Grande      Sabores Regular               Fresca
## 368          Extra Grande      Sabores Regular               Fresca
## 369          Extra Grande      Sabores Regular               Fresca
## 370          Extra Grande      Sabores Regular               Fresca
## 371          Extra Grande      Sabores Regular         Manzana Lift
## 372          Extra Grande      Sabores Regular         Manzana Lift
## 373          Extra Grande      Sabores Regular         Manzana Lift
## 374          Extra Grande      Sabores Regular         Manzana Lift
## 375          Extra Grande      Sabores Regular         Manzana Lift
## 376          Extra Grande      Sabores Regular         Manzana Lift
## 377          Extra Grande      Sabores Regular         Manzana Lift
## 378          Extra Grande      Sabores Regular         Manzana Lift
## 379          Extra Grande      Sabores Regular               Senzao
## 380          Extra Grande      Sabores Regular        Sidral Mundet
## 381          Extra Grande      Sabores Regular        Sidral Mundet
## 382          Extra Grande      Sabores Regular        Sidral Mundet
## 383          Extra Grande      Sabores Regular        Sidral Mundet
## 384          Extra Grande      Sabores Regular        Sidral Mundet
## 385          Extra Grande      Sabores Regular        Sidral Mundet
## 386          Extra Grande      Sabores Regular               Sprite
## 387          Extra Grande      Sabores Regular               Sprite
## 388          Extra Grande      Sabores Regular               Sprite
## 389          Extra Grande      Sabores Regular               Sprite
## 390          Extra Grande      Sabores Regular               Sprite
## 391          Extra Grande      Sabores Regular               Sprite
## 392          Extra Grande      Sabores Regular               Sprite
## 393          Extra Grande      Sabores Regular               Sprite
## 394          Extra Grande      Sabores Regular               Sprite
## 395          Extra Grande      Sabores Regular               Sprite
## 396          Extra Grande      Sabores Regular               Sprite
## 397          Extra Grande      Sabores Regular               Sprite
## 398          Extra Grande           Té Regular             Fuze Tea
## 399          Extra Grande           Té Regular             Fuze Tea
## 400          Extra Grande           Té Regular             Fuze Tea
## 401          Extra Grande           Té Regular             Fuze Tea
## 402          Extra Grande         Agua Mineral    Ciel Mineralizada
## 403          Extra Grande         Agua Mineral      Topo Chico A.M.
## 404          Extra Grande         Agua Mineral      Topo Chico A.M.
## 405          Extra Grande      Agua Purificada Ciel Agua Purificada
## 406          Extra Grande      Agua Purificada Ciel Agua Purificada
## 407          Extra Grande      Agua Purificada Ciel Agua Purificada
## 408          Extra Grande      Agua Saborizada          Ciel Exprim
## 409          Extra Grande      Agua Saborizada            Ciel Mini
## 410          Extra Grande      Agua Saborizada      Ciel Saborizada
## 411          Extra Grande     Bebidas de Fruta       Delaware Punch
## 412          Extra Grande     Bebidas de Fruta       Delaware Punch
## 413          Extra Grande     Bebidas de Fruta       Delaware Punch
## 414          Extra Grande     Bebidas de Fruta               Frutsi
## 415          Extra Grande     Bebidas de Fruta                Pulpy
## 416          Extra Grande     Bebidas de Fruta           Valle Frut
## 417          Extra Grande     Bebidas de Fruta           Valle Frut
## 418          Extra Grande     Bebidas de Fruta           Valle Frut
## 419          Extra Grande     Bebidas de Fruta           Valle Frut
## 420          Extra Grande     Bebidas de Fruta           Valle Frut
## 421          Extra Grande  Bebidas Energeticas                 Burn
## 422          Extra Grande  Bebidas Energeticas                 Burn
## 423          Extra Grande  Bebidas Energeticas                 Burn
## 424          Extra Grande  Bebidas Energeticas              Glacéau
## 425          Extra Grande          Colas Light       Coca-Cola Life
## 426          Extra Grande          Colas Light      Coca-Cola Light
## 427          Extra Grande          Colas Light      Coca-Cola Light
## 428          Extra Grande          Colas Light      Coca-Cola Light
## 429          Extra Grande          Colas Light      Coca-Cola Light
## 430          Extra Grande          Colas Light      Coca-Cola Light
## 431          Extra Grande          Colas Light      Coca-Cola Light
## 432          Extra Grande          Colas Light       Coca-Cola Zero
## 433          Extra Grande          Colas Light       Coca-Cola Zero
## 434          Extra Grande          Colas Light       Coca-Cola Zero
## 435          Extra Grande          Colas Light       Coca-Cola Zero
## 436          Extra Grande        Colas Regular            Coca-Cola
## 437          Extra Grande        Colas Regular            Coca-Cola
## 438          Extra Grande        Colas Regular            Coca-Cola
## 439          Extra Grande        Colas Regular            Coca-Cola
## 440          Extra Grande        Colas Regular            Coca-Cola
## 441          Extra Grande        Colas Regular            Coca-Cola
## 442          Extra Grande        Colas Regular            Coca-Cola
## 443          Extra Grande        Colas Regular            Coca-Cola
## 444          Extra Grande        Colas Regular            Coca-Cola
## 445          Extra Grande        Colas Regular            Coca-Cola
## 446          Extra Grande        Colas Regular            Coca-Cola
## 447          Extra Grande        Colas Regular            Coca-Cola
## 448          Extra Grande        Colas Regular            Coca-Cola
## 449          Extra Grande        Colas Regular            Coca-Cola
## 450          Extra Grande        Colas Regular            Coca-Cola
## 451          Extra Grande        Colas Regular            Coca-Cola
## 452          Extra Grande        Colas Regular            Coca-Cola
## 453          Extra Grande     Isotónicos Light        Powerade Zero
## 454          Extra Grande   Isotónicos Regular             Powerade
## 455          Extra Grande   Isotónicos Regular             Powerade
## 456          Extra Grande   Isotónicos Regular             Powerade
## 457          Extra Grande     Jugos y Néctares            Del Valle
## 458          Extra Grande     Jugos y Néctares            Del Valle
## 459          Extra Grande     Jugos y Néctares            Del Valle
## 460          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 461          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 462          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 463          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 464          Extra Grande    Leche UHT Regular    Santa Clara Light
## 465          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 466          Extra Grande        Sabores Light          Sprite Zero
## 467          Extra Grande      Sabores Regular     Del Valle y Nada
## 468          Extra Grande      Sabores Regular     Del Valle y Nada
## 469          Extra Grande      Sabores Regular                Fanta
## 470          Extra Grande      Sabores Regular                Fanta
## 471          Extra Grande      Sabores Regular                Fanta
## 472          Extra Grande      Sabores Regular                Fanta
## 473          Extra Grande      Sabores Regular                Fanta
## 474          Extra Grande      Sabores Regular                Fanta
## 475          Extra Grande      Sabores Regular                Fanta
## 476          Extra Grande      Sabores Regular                Fanta
## 477          Extra Grande      Sabores Regular                Fanta
## 478          Extra Grande      Sabores Regular               Fresca
## 479          Extra Grande      Sabores Regular               Fresca
## 480          Extra Grande      Sabores Regular               Fresca
## 481          Extra Grande      Sabores Regular               Fresca
## 482          Extra Grande      Sabores Regular               Fresca
## 483          Extra Grande      Sabores Regular               Fresca
## 484          Extra Grande      Sabores Regular               Fresca
## 485          Extra Grande      Sabores Regular               Fresca
## 486          Extra Grande      Sabores Regular               Fresca
## 487          Extra Grande      Sabores Regular         Manzana Lift
## 488          Extra Grande      Sabores Regular         Manzana Lift
## 489          Extra Grande      Sabores Regular         Manzana Lift
## 490          Extra Grande      Sabores Regular         Manzana Lift
## 491          Extra Grande      Sabores Regular         Manzana Lift
## 492          Extra Grande      Sabores Regular         Manzana Lift
## 493          Extra Grande      Sabores Regular         Manzana Lift
## 494          Extra Grande      Sabores Regular               Senzao
## 495          Extra Grande      Sabores Regular               Senzao
## 496          Extra Grande      Sabores Regular        Sidral Mundet
## 497          Extra Grande      Sabores Regular        Sidral Mundet
## 498          Extra Grande      Sabores Regular        Sidral Mundet
## 499          Extra Grande      Sabores Regular        Sidral Mundet
## 500          Extra Grande      Sabores Regular        Sidral Mundet
## 501          Extra Grande      Sabores Regular        Sidral Mundet
## 502          Extra Grande      Sabores Regular        Sidral Mundet
## 503          Extra Grande      Sabores Regular               Sprite
## 504          Extra Grande      Sabores Regular               Sprite
## 505          Extra Grande      Sabores Regular               Sprite
## 506          Extra Grande      Sabores Regular               Sprite
## 507          Extra Grande      Sabores Regular               Sprite
## 508          Extra Grande      Sabores Regular               Sprite
## 509          Extra Grande      Sabores Regular               Sprite
## 510          Extra Grande      Sabores Regular               Sprite
## 511          Extra Grande      Sabores Regular               Sprite
## 512          Extra Grande      Sabores Regular               Sprite
## 513          Extra Grande             Té Light       Fuze Tea Light
## 514          Extra Grande           Té Regular             Fuze Tea
## 515          Extra Grande         Agua Mineral    Ciel Mineralizada
## 516          Extra Grande         Agua Mineral    Ciel Mineralizada
## 517          Extra Grande         Agua Mineral      Topo Chico A.M.
## 518          Extra Grande      Agua Purificada Ciel Agua Purificada
## 519          Extra Grande      Agua Purificada Ciel Agua Purificada
## 520          Extra Grande      Agua Purificada Ciel Agua Purificada
## 521          Extra Grande      Agua Purificada Ciel Agua Purificada
## 522          Extra Grande      Agua Purificada Ciel Agua Purificada
## 523          Extra Grande      Agua Saborizada          Ciel Exprim
## 524          Extra Grande      Agua Saborizada            Ciel Mini
## 525          Extra Grande      Agua Saborizada      Ciel Saborizada
## 526          Extra Grande     Bebidas de Fruta       Delaware Punch
## 527          Extra Grande     Bebidas de Fruta       Delaware Punch
## 528          Extra Grande     Bebidas de Fruta               Frutsi
## 529          Extra Grande     Bebidas de Fruta                Pulpy
## 530          Extra Grande     Bebidas de Fruta           Valle Frut
## 531          Extra Grande     Bebidas de Fruta           Valle Frut
## 532          Extra Grande     Bebidas de Fruta           Valle Frut
## 533          Extra Grande     Bebidas de Fruta           Valle Frut
## 534          Extra Grande     Bebidas de Fruta           Valle Frut
## 535          Extra Grande  Bebidas Energeticas                 Burn
## 536          Extra Grande  Bebidas Energeticas                 Burn
## 537          Extra Grande  Bebidas Energeticas              Glacéau
## 538          Extra Grande          Colas Light       Coca-Cola Life
## 539          Extra Grande          Colas Light       Coca-Cola Life
## 540          Extra Grande          Colas Light       Coca-Cola Life
## 541          Extra Grande          Colas Light      Coca-Cola Light
## 542          Extra Grande          Colas Light      Coca-Cola Light
## 543          Extra Grande          Colas Light      Coca-Cola Light
## 544          Extra Grande          Colas Light      Coca-Cola Light
## 545          Extra Grande          Colas Light      Coca-Cola Light
## 546          Extra Grande          Colas Light      Coca-Cola Light
## 547          Extra Grande          Colas Light      Coca-Cola Light
## 548          Extra Grande          Colas Light      Coca-Cola Light
## 549          Extra Grande          Colas Light       Coca-Cola Zero
## 550          Extra Grande          Colas Light       Coca-Cola Zero
## 551          Extra Grande          Colas Light       Coca-Cola Zero
## 552          Extra Grande          Colas Light       Coca-Cola Zero
## 553          Extra Grande        Colas Regular            Coca-Cola
## 554          Extra Grande        Colas Regular            Coca-Cola
## 555          Extra Grande        Colas Regular            Coca-Cola
## 556          Extra Grande        Colas Regular            Coca-Cola
## 557          Extra Grande        Colas Regular            Coca-Cola
## 558          Extra Grande        Colas Regular            Coca-Cola
## 559          Extra Grande        Colas Regular            Coca-Cola
## 560          Extra Grande        Colas Regular            Coca-Cola
## 561          Extra Grande        Colas Regular            Coca-Cola
## 562          Extra Grande        Colas Regular            Coca-Cola
## 563          Extra Grande        Colas Regular            Coca-Cola
## 564          Extra Grande        Colas Regular            Coca-Cola
## 565          Extra Grande        Colas Regular            Coca-Cola
## 566          Extra Grande        Colas Regular            Coca-Cola
## 567          Extra Grande        Colas Regular            Coca-Cola
## 568          Extra Grande        Colas Regular            Coca-Cola
## 569          Extra Grande        Colas Regular            Coca-Cola
## 570          Extra Grande   Isotónicos Regular             Powerade
## 571          Extra Grande   Isotónicos Regular             Powerade
## 572          Extra Grande   Isotónicos Regular             Powerade
## 573          Extra Grande     Jugos y Néctares            Del Valle
## 574          Extra Grande     Jugos y Néctares            Del Valle
## 575          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 576          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 577          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 578          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 579          Extra Grande        Sabores Light          Sprite Zero
## 580          Extra Grande      Sabores Regular     Del Valle y Nada
## 581          Extra Grande      Sabores Regular     Del Valle y Nada
## 582          Extra Grande      Sabores Regular                Fanta
## 583          Extra Grande      Sabores Regular                Fanta
## 584          Extra Grande      Sabores Regular                Fanta
## 585          Extra Grande      Sabores Regular                Fanta
## 586          Extra Grande      Sabores Regular                Fanta
## 587          Extra Grande      Sabores Regular                Fanta
## 588          Extra Grande      Sabores Regular                Fanta
## 589          Extra Grande      Sabores Regular                Fanta
## 590          Extra Grande      Sabores Regular                Fanta
## 591          Extra Grande      Sabores Regular               Fresca
## 592          Extra Grande      Sabores Regular               Fresca
## 593          Extra Grande      Sabores Regular               Fresca
## 594          Extra Grande      Sabores Regular               Fresca
## 595          Extra Grande      Sabores Regular               Fresca
## 596          Extra Grande      Sabores Regular               Fresca
## 597          Extra Grande      Sabores Regular               Fresca
## 598          Extra Grande      Sabores Regular         Manzana Lift
## 599          Extra Grande      Sabores Regular         Manzana Lift
## 600          Extra Grande      Sabores Regular         Manzana Lift
## 601          Extra Grande      Sabores Regular         Manzana Lift
## 602          Extra Grande      Sabores Regular         Manzana Lift
## 603          Extra Grande      Sabores Regular         Manzana Lift
## 604          Extra Grande      Sabores Regular               Senzao
## 605          Extra Grande      Sabores Regular        Sidral Mundet
## 606          Extra Grande      Sabores Regular        Sidral Mundet
## 607          Extra Grande      Sabores Regular        Sidral Mundet
## 608          Extra Grande      Sabores Regular        Sidral Mundet
## 609          Extra Grande      Sabores Regular        Sidral Mundet
## 610          Extra Grande      Sabores Regular        Sidral Mundet
## 611          Extra Grande      Sabores Regular               Sprite
## 612          Extra Grande      Sabores Regular               Sprite
## 613          Extra Grande      Sabores Regular               Sprite
## 614          Extra Grande      Sabores Regular               Sprite
## 615          Extra Grande      Sabores Regular               Sprite
## 616          Extra Grande      Sabores Regular               Sprite
## 617          Extra Grande      Sabores Regular               Sprite
## 618          Extra Grande      Sabores Regular               Sprite
## 619          Extra Grande      Sabores Regular               Sprite
## 620          Extra Grande           Té Regular             Fuze Tea
## 621          Extra Grande           Té Regular             Fuze Tea
## 622          Extra Grande           Té Regular             Fuze Tea
## 623          Extra Grande           Té Regular             Fuze Tea
## 624          Extra Grande         Agua Mineral    Ciel Mineralizada
## 625          Extra Grande         Agua Mineral      Topo Chico A.M.
## 626          Extra Grande      Agua Purificada Ciel Agua Purificada
## 627          Extra Grande      Agua Purificada Ciel Agua Purificada
## 628          Extra Grande      Agua Purificada Ciel Agua Purificada
## 629          Extra Grande      Agua Purificada Ciel Agua Purificada
## 630          Extra Grande      Agua Saborizada          Ciel Exprim
## 631          Extra Grande      Agua Saborizada            Ciel Mini
## 632          Extra Grande     Bebidas de Fruta       Delaware Punch
## 633          Extra Grande     Bebidas de Fruta               Frutsi
## 634          Extra Grande     Bebidas de Fruta                Pulpy
## 635          Extra Grande     Bebidas de Fruta           Valle Frut
## 636          Extra Grande     Bebidas de Fruta           Valle Frut
## 637          Extra Grande     Bebidas de Fruta           Valle Frut
## 638          Extra Grande     Bebidas de Fruta           Valle Frut
## 639          Extra Grande     Bebidas de Fruta           Valle Frut
## 640          Extra Grande  Bebidas Energeticas                 Burn
## 641          Extra Grande  Bebidas Energeticas                 Burn
## 642          Extra Grande  Bebidas Energeticas              Glacéau
## 643          Extra Grande          Colas Light       Coca-Cola Life
## 644          Extra Grande          Colas Light       Coca-Cola Life
## 645          Extra Grande          Colas Light       Coca-Cola Life
## 646          Extra Grande          Colas Light      Coca-Cola Light
## 647          Extra Grande          Colas Light      Coca-Cola Light
## 648          Extra Grande          Colas Light      Coca-Cola Light
## 649          Extra Grande          Colas Light      Coca-Cola Light
## 650          Extra Grande          Colas Light      Coca-Cola Light
## 651          Extra Grande          Colas Light      Coca-Cola Light
## 652          Extra Grande          Colas Light      Coca-Cola Light
## 653          Extra Grande          Colas Light      Coca-Cola Light
## 654          Extra Grande          Colas Light  Coca-Cola Light Sin
## 655          Extra Grande          Colas Light       Coca-Cola Zero
## 656          Extra Grande          Colas Light       Coca-Cola Zero
## 657          Extra Grande          Colas Light       Coca-Cola Zero
## 658          Extra Grande          Colas Light       Coca-Cola Zero
## 659          Extra Grande        Colas Regular            Coca-Cola
## 660          Extra Grande        Colas Regular            Coca-Cola
## 661          Extra Grande        Colas Regular            Coca-Cola
## 662          Extra Grande        Colas Regular            Coca-Cola
## 663          Extra Grande        Colas Regular            Coca-Cola
## 664          Extra Grande        Colas Regular            Coca-Cola
## 665          Extra Grande        Colas Regular            Coca-Cola
## 666          Extra Grande        Colas Regular            Coca-Cola
## 667          Extra Grande        Colas Regular            Coca-Cola
## 668          Extra Grande        Colas Regular            Coca-Cola
## 669          Extra Grande        Colas Regular            Coca-Cola
## 670          Extra Grande        Colas Regular            Coca-Cola
## 671          Extra Grande        Colas Regular            Coca-Cola
## 672          Extra Grande        Colas Regular            Coca-Cola
## 673          Extra Grande        Colas Regular            Coca-Cola
## 674          Extra Grande        Colas Regular            Coca-Cola
## 675          Extra Grande        Colas Regular            Coca-Cola
## 676          Extra Grande     Isotónicos Light        Powerade Zero
## 677          Extra Grande   Isotónicos Regular             Powerade
## 678          Extra Grande   Isotónicos Regular             Powerade
## 679          Extra Grande     Jugos y Néctares            Del Valle
## 680          Extra Grande     Jugos y Néctares            Del Valle
## 681          Extra Grande     Jugos y Néctares            Del Valle
## 682          Extra Grande     Jugos y Néctares            Del Valle
## 683          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 684          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 685          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 686          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 687          Extra Grande    Leche UHT Regular   Santa Clara Entera
## 688          Extra Grande    Leche UHT Regular    Santa Clara Light
## 689          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 690          Extra Grande        Sabores Light           Fanta Zero
## 691          Extra Grande        Sabores Light          Fresca Zero
## 692          Extra Grande        Sabores Light    Manzana Lift Zero
## 693          Extra Grande        Sabores Light          Sprite Zero
## 694          Extra Grande      Sabores Regular     Del Valle y Nada
## 695          Extra Grande      Sabores Regular                Fanta
## 696          Extra Grande      Sabores Regular                Fanta
## 697          Extra Grande      Sabores Regular                Fanta
## 698          Extra Grande      Sabores Regular                Fanta
## 699          Extra Grande      Sabores Regular                Fanta
## 700          Extra Grande      Sabores Regular                Fanta
## 701          Extra Grande      Sabores Regular                Fanta
## 702          Extra Grande      Sabores Regular               Fresca
## 703          Extra Grande      Sabores Regular               Fresca
## 704          Extra Grande      Sabores Regular               Fresca
## 705          Extra Grande      Sabores Regular               Fresca
## 706          Extra Grande      Sabores Regular               Fresca
## 707          Extra Grande      Sabores Regular         Manzana Lift
## 708          Extra Grande      Sabores Regular         Manzana Lift
## 709          Extra Grande      Sabores Regular         Manzana Lift
## 710          Extra Grande      Sabores Regular         Manzana Lift
## 711          Extra Grande      Sabores Regular               Senzao
## 712          Extra Grande      Sabores Regular        Sidral Mundet
## 713          Extra Grande      Sabores Regular        Sidral Mundet
## 714          Extra Grande      Sabores Regular        Sidral Mundet
## 715          Extra Grande      Sabores Regular        Sidral Mundet
## 716          Extra Grande      Sabores Regular        Sidral Mundet
## 717          Extra Grande      Sabores Regular               Sprite
## 718          Extra Grande      Sabores Regular               Sprite
## 719          Extra Grande      Sabores Regular               Sprite
## 720          Extra Grande      Sabores Regular               Sprite
## 721          Extra Grande      Sabores Regular               Sprite
## 722          Extra Grande      Sabores Regular               Sprite
## 723          Extra Grande      Sabores Regular               Sprite
## 724          Extra Grande             Té Light       Fuze Tea Light
## 725          Extra Grande           Té Regular             Fuze Tea
## 726          Extra Grande           Té Regular             Fuze Tea
## 727          Extra Grande         Agua Mineral    Ciel Mineralizada
## 728          Extra Grande         Agua Mineral      Topo Chico A.M.
## 729          Extra Grande      Agua Purificada Ciel Agua Purificada
## 730          Extra Grande      Agua Purificada Ciel Agua Purificada
## 731          Extra Grande      Agua Purificada Ciel Agua Purificada
## 732          Extra Grande      Agua Purificada Ciel Agua Purificada
## 733          Extra Grande      Agua Purificada Ciel Agua Purificada
## 734          Extra Grande      Agua Saborizada          Ciel Exprim
## 735          Extra Grande     Bebidas de Fruta               Bebere
## 736          Extra Grande     Bebidas de Fruta       Delaware Punch
## 737          Extra Grande     Bebidas de Fruta       Delaware Punch
## 738          Extra Grande     Bebidas de Fruta               Frutsi
## 739          Extra Grande     Bebidas de Fruta                Pulpy
## 740          Extra Grande     Bebidas de Fruta           Valle Frut
## 741          Extra Grande     Bebidas de Fruta           Valle Frut
## 742          Extra Grande     Bebidas de Fruta           Valle Frut
## 743          Extra Grande     Bebidas de Fruta           Valle Frut
## 744          Extra Grande     Bebidas de Fruta           Valle Frut
## 745          Extra Grande  Bebidas Energeticas                 Burn
## 746          Extra Grande  Bebidas Energeticas                 Burn
## 747          Extra Grande  Bebidas Energeticas              Glacéau
## 748          Extra Grande          Colas Light       Coca-Cola Life
## 749          Extra Grande          Colas Light       Coca-Cola Life
## 750          Extra Grande          Colas Light       Coca-Cola Life
## 751          Extra Grande          Colas Light       Coca-Cola Life
## 752          Extra Grande          Colas Light       Coca-Cola Life
## 753          Extra Grande          Colas Light      Coca-Cola Light
## 754          Extra Grande          Colas Light      Coca-Cola Light
## 755          Extra Grande          Colas Light      Coca-Cola Light
## 756          Extra Grande          Colas Light      Coca-Cola Light
## 757          Extra Grande          Colas Light      Coca-Cola Light
## 758          Extra Grande          Colas Light      Coca-Cola Light
## 759          Extra Grande          Colas Light  Coca-Cola Light Sin
## 760          Extra Grande          Colas Light  Coca-Cola Light Sin
## 761          Extra Grande          Colas Light       Coca-Cola Zero
## 762          Extra Grande          Colas Light       Coca-Cola Zero
## 763          Extra Grande          Colas Light       Coca-Cola Zero
## 764          Extra Grande          Colas Light       Coca-Cola Zero
## 765          Extra Grande          Colas Light       Coca-Cola Zero
## 766          Extra Grande          Colas Light       Coca-Cola Zero
## 767          Extra Grande        Colas Regular            Coca-Cola
## 768          Extra Grande        Colas Regular            Coca-Cola
## 769          Extra Grande        Colas Regular            Coca-Cola
## 770          Extra Grande        Colas Regular            Coca-Cola
## 771          Extra Grande        Colas Regular            Coca-Cola
## 772          Extra Grande        Colas Regular            Coca-Cola
## 773          Extra Grande        Colas Regular            Coca-Cola
## 774          Extra Grande        Colas Regular            Coca-Cola
## 775          Extra Grande        Colas Regular            Coca-Cola
## 776          Extra Grande        Colas Regular            Coca-Cola
## 777          Extra Grande        Colas Regular            Coca-Cola
## 778          Extra Grande        Colas Regular            Coca-Cola
## 779          Extra Grande        Colas Regular            Coca-Cola
## 780          Extra Grande        Colas Regular            Coca-Cola
## 781          Extra Grande        Colas Regular            Coca-Cola
## 782          Extra Grande        Colas Regular            Coca-Cola
## 783          Extra Grande        Colas Regular            Coca-Cola
## 784          Extra Grande     Isotónicos Light        Powerade Zero
## 785          Extra Grande   Isotónicos Regular             Powerade
## 786          Extra Grande   Isotónicos Regular             Powerade
## 787          Extra Grande   Isotónicos Regular             Powerade
## 788          Extra Grande     Jugos y Néctares            Del Valle
## 789          Extra Grande     Jugos y Néctares            Del Valle
## 790          Extra Grande     Jugos y Néctares            Del Valle
## 791          Extra Grande     Jugos y Néctares            Del Valle
## 792          Extra Grande     Jugos y Néctares            Del Valle
## 793          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 794          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 795          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 796          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 797          Extra Grande    Leche UHT Regular   Santa Clara Entera
## 798          Extra Grande    Leche UHT Regular    Santa Clara Light
## 799          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 800          Extra Grande        Sabores Light           Fanta Zero
## 801          Extra Grande        Sabores Light    Manzana Lift Zero
## 802          Extra Grande        Sabores Light  Sidral Mundet Light
## 803          Extra Grande        Sabores Light          Sprite Zero
## 804          Extra Grande      Sabores Regular     Del Valle y Nada
## 805          Extra Grande      Sabores Regular                Fanta
## 806          Extra Grande      Sabores Regular                Fanta
## 807          Extra Grande      Sabores Regular                Fanta
## 808          Extra Grande      Sabores Regular                Fanta
## 809          Extra Grande      Sabores Regular               Fresca
## 810          Extra Grande      Sabores Regular               Fresca
## 811          Extra Grande      Sabores Regular               Fresca
## 812          Extra Grande      Sabores Regular               Fresca
## 813          Extra Grande      Sabores Regular         Manzana Lift
## 814          Extra Grande      Sabores Regular         Manzana Lift
## 815          Extra Grande      Sabores Regular         Manzana Lift
## 816          Extra Grande      Sabores Regular         Manzana Lift
## 817          Extra Grande      Sabores Regular               Senzao
## 818          Extra Grande      Sabores Regular        Sidral Mundet
## 819          Extra Grande      Sabores Regular        Sidral Mundet
## 820          Extra Grande      Sabores Regular        Sidral Mundet
## 821          Extra Grande      Sabores Regular        Sidral Mundet
## 822          Extra Grande      Sabores Regular        Sidral Mundet
## 823          Extra Grande      Sabores Regular               Sprite
## 824          Extra Grande      Sabores Regular               Sprite
## 825          Extra Grande      Sabores Regular               Sprite
## 826          Extra Grande      Sabores Regular               Sprite
## 827          Extra Grande      Sabores Regular               Sprite
## 828          Extra Grande      Sabores Regular               Sprite
## 829          Extra Grande      Sabores Regular               Sprite
## 830          Extra Grande             Té Light       Fuze Tea Light
## 831          Extra Grande           Té Regular             Fuze Tea
## 832          Extra Grande           Té Regular             Fuze Tea
## 833          Extra Grande           Té Regular             Fuze Tea
## 834          Extra Grande         Agua Mineral    Ciel Mineralizada
## 835          Extra Grande         Agua Mineral      Topo Chico A.M.
## 836          Extra Grande      Agua Purificada Ciel Agua Purificada
## 837          Extra Grande      Agua Purificada Ciel Agua Purificada
## 838          Extra Grande      Agua Purificada Ciel Agua Purificada
## 839          Extra Grande      Agua Saborizada          Ciel Exprim
## 840          Extra Grande      Agua Saborizada            Ciel Mini
## 841          Extra Grande     Bebidas de Fruta       Delaware Punch
## 842          Extra Grande     Bebidas de Fruta       Delaware Punch
## 843          Extra Grande     Bebidas de Fruta               Frutsi
## 844          Extra Grande     Bebidas de Fruta           Valle Frut
## 845          Extra Grande     Bebidas de Fruta           Valle Frut
## 846          Extra Grande     Bebidas de Fruta           Valle Frut
## 847          Extra Grande     Bebidas de Fruta           Valle Frut
## 848          Extra Grande     Bebidas de Fruta           Valle Frut
## 849          Extra Grande  Bebidas Energeticas                 Burn
## 850          Extra Grande  Bebidas Energeticas                 Burn
## 851          Extra Grande          Colas Light       Coca-Cola Life
## 852          Extra Grande          Colas Light       Coca-Cola Life
## 853          Extra Grande          Colas Light       Coca-Cola Life
## 854          Extra Grande          Colas Light       Coca-Cola Life
## 855          Extra Grande          Colas Light      Coca-Cola Light
## 856          Extra Grande          Colas Light      Coca-Cola Light
## 857          Extra Grande          Colas Light      Coca-Cola Light
## 858          Extra Grande          Colas Light      Coca-Cola Light
## 859          Extra Grande          Colas Light      Coca-Cola Light
## 860          Extra Grande          Colas Light      Coca-Cola Light
## 861          Extra Grande          Colas Light      Coca-Cola Light
## 862          Extra Grande          Colas Light      Coca-Cola Light
## 863          Extra Grande          Colas Light       Coca-Cola Zero
## 864          Extra Grande          Colas Light       Coca-Cola Zero
## 865          Extra Grande          Colas Light       Coca-Cola Zero
## 866          Extra Grande          Colas Light       Coca-Cola Zero
## 867          Extra Grande          Colas Light       Coca-Cola Zero
## 868          Extra Grande        Colas Regular            Coca-Cola
## 869          Extra Grande        Colas Regular            Coca-Cola
## 870          Extra Grande        Colas Regular            Coca-Cola
## 871          Extra Grande        Colas Regular            Coca-Cola
## 872          Extra Grande        Colas Regular            Coca-Cola
## 873          Extra Grande        Colas Regular            Coca-Cola
## 874          Extra Grande        Colas Regular            Coca-Cola
## 875          Extra Grande        Colas Regular            Coca-Cola
## 876          Extra Grande        Colas Regular            Coca-Cola
## 877          Extra Grande        Colas Regular            Coca-Cola
## 878          Extra Grande        Colas Regular            Coca-Cola
## 879          Extra Grande        Colas Regular            Coca-Cola
## 880          Extra Grande        Colas Regular            Coca-Cola
## 881          Extra Grande        Colas Regular            Coca-Cola
## 882          Extra Grande        Colas Regular            Coca-Cola
## 883          Extra Grande        Colas Regular            Coca-Cola
## 884          Extra Grande        Colas Regular            Coca-Cola
## 885          Extra Grande     Isotónicos Light        Powerade Zero
## 886          Extra Grande   Isotónicos Regular             Powerade
## 887          Extra Grande   Isotónicos Regular             Powerade
## 888          Extra Grande   Isotónicos Regular             Powerade
## 889          Extra Grande     Jugos y Néctares            Del Valle
## 890          Extra Grande     Jugos y Néctares            Del Valle
## 891          Extra Grande     Jugos y Néctares            Del Valle
## 892          Extra Grande     Jugos y Néctares            Del Valle
## 893          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 894          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 895          Extra Grande    Leche UHT Regular   Santa Clara Entera
## 896          Extra Grande    Leche UHT Regular    Santa Clara Light
## 897          Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 898          Extra Grande        Sabores Light          Sprite Zero
## 899          Extra Grande      Sabores Regular     Del Valle y Nada
## 900          Extra Grande      Sabores Regular     Del Valle y Nada
## 901          Extra Grande      Sabores Regular                Fanta
## 902          Extra Grande      Sabores Regular                Fanta
## 903          Extra Grande      Sabores Regular                Fanta
## 904          Extra Grande      Sabores Regular                Fanta
## 905          Extra Grande      Sabores Regular                Fanta
## 906          Extra Grande      Sabores Regular                Fanta
## 907          Extra Grande      Sabores Regular                Fanta
## 908          Extra Grande      Sabores Regular               Fresca
## 909          Extra Grande      Sabores Regular               Fresca
## 910          Extra Grande      Sabores Regular               Fresca
## 911          Extra Grande      Sabores Regular               Fresca
## 912          Extra Grande      Sabores Regular               Fresca
## 913          Extra Grande      Sabores Regular               Fresca
## 914          Extra Grande      Sabores Regular         Manzana Lift
## 915          Extra Grande      Sabores Regular         Manzana Lift
## 916          Extra Grande      Sabores Regular         Manzana Lift
## 917          Extra Grande      Sabores Regular         Manzana Lift
## 918          Extra Grande      Sabores Regular         Manzana Lift
## 919          Extra Grande      Sabores Regular               Senzao
## 920          Extra Grande      Sabores Regular        Sidral Mundet
## 921          Extra Grande      Sabores Regular        Sidral Mundet
## 922          Extra Grande      Sabores Regular        Sidral Mundet
## 923          Extra Grande      Sabores Regular        Sidral Mundet
## 924          Extra Grande      Sabores Regular               Sprite
## 925          Extra Grande      Sabores Regular               Sprite
## 926          Extra Grande      Sabores Regular               Sprite
## 927          Extra Grande      Sabores Regular               Sprite
## 928          Extra Grande      Sabores Regular               Sprite
## 929          Extra Grande      Sabores Regular               Sprite
## 930          Extra Grande      Sabores Regular               Sprite
## 931          Extra Grande           Té Regular             Fuze Tea
## 932          Extra Grande           Té Regular             Fuze Tea
## 933          Extra Grande           Té Regular             Fuze Tea
## 934          Extra Grande         Agua Mineral    Ciel Mineralizada
## 935          Extra Grande         Agua Mineral      Topo Chico A.M.
## 936          Extra Grande         Agua Mineral      Topo Chico A.M.
## 937          Extra Grande      Agua Purificada Ciel Agua Purificada
## 938          Extra Grande      Agua Purificada Ciel Agua Purificada
## 939          Extra Grande      Agua Purificada Ciel Agua Purificada
## 940          Extra Grande      Agua Saborizada          Ciel Exprim
## 941          Extra Grande      Agua Saborizada            Ciel Mini
## 942          Extra Grande     Bebidas de Fruta       Delaware Punch
## 943          Extra Grande     Bebidas de Fruta       Delaware Punch
## 944          Extra Grande     Bebidas de Fruta               Frutsi
## 945          Extra Grande     Bebidas de Fruta                Pulpy
## 946          Extra Grande     Bebidas de Fruta           Valle Frut
## 947          Extra Grande     Bebidas de Fruta           Valle Frut
## 948          Extra Grande     Bebidas de Fruta           Valle Frut
## 949          Extra Grande     Bebidas de Fruta           Valle Frut
## 950          Extra Grande          Colas Light       Coca-Cola Life
## 951          Extra Grande          Colas Light       Coca-Cola Life
## 952          Extra Grande          Colas Light      Coca-Cola Light
## 953          Extra Grande          Colas Light      Coca-Cola Light
## 954          Extra Grande          Colas Light      Coca-Cola Light
## 955          Extra Grande          Colas Light      Coca-Cola Light
## 956          Extra Grande          Colas Light      Coca-Cola Light
## 957          Extra Grande          Colas Light      Coca-Cola Light
## 958          Extra Grande          Colas Light      Coca-Cola Light
## 959          Extra Grande          Colas Light      Coca-Cola Light
## 960          Extra Grande          Colas Light      Coca-Cola Light
## 961          Extra Grande          Colas Light       Coca-Cola Zero
## 962          Extra Grande          Colas Light       Coca-Cola Zero
## 963          Extra Grande          Colas Light       Coca-Cola Zero
## 964          Extra Grande          Colas Light       Coca-Cola Zero
## 965          Extra Grande          Colas Light       Coca-Cola Zero
## 966          Extra Grande        Colas Regular            Coca-Cola
## 967          Extra Grande        Colas Regular            Coca-Cola
## 968          Extra Grande        Colas Regular            Coca-Cola
## 969          Extra Grande        Colas Regular            Coca-Cola
## 970          Extra Grande        Colas Regular            Coca-Cola
## 971          Extra Grande        Colas Regular            Coca-Cola
## 972          Extra Grande        Colas Regular            Coca-Cola
## 973          Extra Grande        Colas Regular            Coca-Cola
## 974          Extra Grande        Colas Regular            Coca-Cola
## 975          Extra Grande        Colas Regular            Coca-Cola
## 976          Extra Grande        Colas Regular            Coca-Cola
## 977          Extra Grande        Colas Regular            Coca-Cola
## 978          Extra Grande        Colas Regular            Coca-Cola
## 979          Extra Grande        Colas Regular            Coca-Cola
## 980          Extra Grande        Colas Regular            Coca-Cola
## 981          Extra Grande        Colas Regular            Coca-Cola
## 982          Extra Grande        Colas Regular            Coca-Cola
## 983          Extra Grande        Colas Regular            Coca-Cola
## 984          Extra Grande        Colas Regular            Coca-Cola
## 985          Extra Grande        Colas Regular            Coca-Cola
## 986          Extra Grande     Isotónicos Light        Powerade Zero
## 987          Extra Grande   Isotónicos Regular             Powerade
## 988          Extra Grande   Isotónicos Regular             Powerade
## 989          Extra Grande   Isotónicos Regular             Powerade
## 990          Extra Grande     Jugos y Néctares            Del Valle
## 991          Extra Grande     Jugos y Néctares            Del Valle
## 992          Extra Grande     Jugos y Néctares            Del Valle
## 993          Extra Grande     Jugos y Néctares            Del Valle
## 994          Extra Grande     Jugos y Néctares            Del Valle
## 995          Extra Grande     Jugos y Néctares            Del Valle
## 996          Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 997          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 998          Extra Grande     Jugos y Néctares    Del Valle Reserva
## 999          Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1000         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1001         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1002         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1003         Extra Grande        Sabores Light          Sprite Zero
## 1004         Extra Grande      Sabores Regular     Del Valle y Nada
## 1005         Extra Grande      Sabores Regular     Del Valle y Nada
## 1006         Extra Grande      Sabores Regular     Del Valle y Nada
## 1007         Extra Grande      Sabores Regular                Fanta
## 1008         Extra Grande      Sabores Regular                Fanta
## 1009         Extra Grande      Sabores Regular                Fanta
## 1010         Extra Grande      Sabores Regular                Fanta
## 1011         Extra Grande      Sabores Regular                Fanta
## 1012         Extra Grande      Sabores Regular                Fanta
## 1013         Extra Grande      Sabores Regular                Fanta
## 1014         Extra Grande      Sabores Regular               Fresca
## 1015         Extra Grande      Sabores Regular               Fresca
## 1016         Extra Grande      Sabores Regular               Fresca
## 1017         Extra Grande      Sabores Regular               Fresca
## 1018         Extra Grande      Sabores Regular               Fresca
## 1019         Extra Grande      Sabores Regular               Fresca
## 1020         Extra Grande      Sabores Regular               Fresca
## 1021         Extra Grande      Sabores Regular               Fresca
## 1022         Extra Grande      Sabores Regular         Manzana Lift
## 1023         Extra Grande      Sabores Regular         Manzana Lift
## 1024         Extra Grande      Sabores Regular         Manzana Lift
## 1025         Extra Grande      Sabores Regular         Manzana Lift
## 1026         Extra Grande      Sabores Regular         Manzana Lift
## 1027         Extra Grande      Sabores Regular               Senzao
## 1028         Extra Grande      Sabores Regular        Sidral Mundet
## 1029         Extra Grande      Sabores Regular        Sidral Mundet
## 1030         Extra Grande      Sabores Regular        Sidral Mundet
## 1031         Extra Grande      Sabores Regular        Sidral Mundet
## 1032         Extra Grande      Sabores Regular        Sidral Mundet
## 1033         Extra Grande      Sabores Regular               Sprite
## 1034         Extra Grande      Sabores Regular               Sprite
## 1035         Extra Grande      Sabores Regular               Sprite
## 1036         Extra Grande      Sabores Regular               Sprite
## 1037         Extra Grande      Sabores Regular               Sprite
## 1038         Extra Grande      Sabores Regular               Sprite
## 1039         Extra Grande      Sabores Regular               Sprite
## 1040         Extra Grande           Té Regular             Fuze Tea
## 1041         Extra Grande           Té Regular             Fuze Tea
## 1042         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1043         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1044         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1045         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1046         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1047         Extra Grande      Agua Saborizada          Ciel Exprim
## 1048         Extra Grande      Agua Saborizada            Ciel Mini
## 1049         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1050         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1051         Extra Grande     Bebidas de Fruta               Frutsi
## 1052         Extra Grande     Bebidas de Fruta                Pulpy
## 1053         Extra Grande     Bebidas de Fruta           Valle Frut
## 1054         Extra Grande     Bebidas de Fruta           Valle Frut
## 1055         Extra Grande     Bebidas de Fruta           Valle Frut
## 1056         Extra Grande     Bebidas de Fruta           Valle Frut
## 1057         Extra Grande     Bebidas de Fruta           Valle Frut
## 1058         Extra Grande  Bebidas Energeticas                 Burn
## 1059         Extra Grande  Bebidas Energeticas              Glacéau
## 1060         Extra Grande          Colas Light       Coca-Cola Life
## 1061         Extra Grande          Colas Light       Coca-Cola Life
## 1062         Extra Grande          Colas Light      Coca-Cola Light
## 1063         Extra Grande          Colas Light      Coca-Cola Light
## 1064         Extra Grande          Colas Light      Coca-Cola Light
## 1065         Extra Grande          Colas Light      Coca-Cola Light
## 1066         Extra Grande          Colas Light      Coca-Cola Light
## 1067         Extra Grande          Colas Light      Coca-Cola Light
## 1068         Extra Grande          Colas Light       Coca-Cola Zero
## 1069         Extra Grande        Colas Regular            Coca-Cola
## 1070         Extra Grande        Colas Regular            Coca-Cola
## 1071         Extra Grande        Colas Regular            Coca-Cola
## 1072         Extra Grande        Colas Regular            Coca-Cola
## 1073         Extra Grande        Colas Regular            Coca-Cola
## 1074         Extra Grande        Colas Regular            Coca-Cola
## 1075         Extra Grande        Colas Regular            Coca-Cola
## 1076         Extra Grande        Colas Regular            Coca-Cola
## 1077         Extra Grande        Colas Regular            Coca-Cola
## 1078         Extra Grande        Colas Regular            Coca-Cola
## 1079         Extra Grande        Colas Regular            Coca-Cola
## 1080         Extra Grande        Colas Regular            Coca-Cola
## 1081         Extra Grande        Colas Regular            Coca-Cola
## 1082         Extra Grande        Colas Regular            Coca-Cola
## 1083         Extra Grande        Colas Regular            Coca-Cola
## 1084         Extra Grande   Isotónicos Regular             Powerade
## 1085         Extra Grande   Isotónicos Regular             Powerade
## 1086         Extra Grande   Isotónicos Regular             Powerade
## 1087         Extra Grande     Jugos y Néctares            Del Valle
## 1088         Extra Grande     Jugos y Néctares            Del Valle
## 1089         Extra Grande     Jugos y Néctares            Del Valle
## 1090         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1091         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1092         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1093         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1094         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1095         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1096         Extra Grande        Sabores Light          Sprite Zero
## 1097         Extra Grande      Sabores Regular     Del Valle y Nada
## 1098         Extra Grande      Sabores Regular                Fanta
## 1099         Extra Grande      Sabores Regular                Fanta
## 1100         Extra Grande      Sabores Regular                Fanta
## 1101         Extra Grande      Sabores Regular                Fanta
## 1102         Extra Grande      Sabores Regular                Fanta
## 1103         Extra Grande      Sabores Regular                Fanta
## 1104         Extra Grande      Sabores Regular               Fresca
## 1105         Extra Grande      Sabores Regular               Fresca
## 1106         Extra Grande      Sabores Regular               Fresca
## 1107         Extra Grande      Sabores Regular               Fresca
## 1108         Extra Grande      Sabores Regular               Fresca
## 1109         Extra Grande      Sabores Regular               Fresca
## 1110         Extra Grande      Sabores Regular               Fresca
## 1111         Extra Grande      Sabores Regular         Manzana Lift
## 1112         Extra Grande      Sabores Regular         Manzana Lift
## 1113         Extra Grande      Sabores Regular         Manzana Lift
## 1114         Extra Grande      Sabores Regular         Manzana Lift
## 1115         Extra Grande      Sabores Regular         Manzana Lift
## 1116         Extra Grande      Sabores Regular               Senzao
## 1117         Extra Grande      Sabores Regular        Sidral Mundet
## 1118         Extra Grande      Sabores Regular        Sidral Mundet
## 1119         Extra Grande      Sabores Regular        Sidral Mundet
## 1120         Extra Grande      Sabores Regular        Sidral Mundet
## 1121         Extra Grande      Sabores Regular        Sidral Mundet
## 1122         Extra Grande      Sabores Regular               Sprite
## 1123         Extra Grande      Sabores Regular               Sprite
## 1124         Extra Grande      Sabores Regular               Sprite
## 1125         Extra Grande      Sabores Regular               Sprite
## 1126         Extra Grande      Sabores Regular               Sprite
## 1127         Extra Grande      Sabores Regular               Sprite
## 1128         Extra Grande             Té Light       Fuze Tea Light
## 1129         Extra Grande           Té Regular             Fuze Tea
## 1130         Extra Grande           Té Regular             Fuze Tea
## 1131         Extra Grande           Té Regular             Fuze Tea
## 1132         Extra Grande           Té Regular             Fuze Tea
## 1133         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1134         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1135         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1136         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1137         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1138         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1139         Extra Grande      Agua Saborizada          Ciel Exprim
## 1140         Extra Grande      Agua Saborizada            Ciel Mini
## 1141         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1142         Extra Grande     Bebidas de Fruta               Frutsi
## 1143         Extra Grande     Bebidas de Fruta                Pulpy
## 1144         Extra Grande     Bebidas de Fruta           Valle Frut
## 1145         Extra Grande     Bebidas de Fruta           Valle Frut
## 1146         Extra Grande     Bebidas de Fruta           Valle Frut
## 1147         Extra Grande     Bebidas de Fruta           Valle Frut
## 1148         Extra Grande  Bebidas Energeticas                 Burn
## 1149         Extra Grande  Bebidas Energeticas                 Burn
## 1150         Extra Grande  Bebidas Energeticas              Glacéau
## 1151         Extra Grande          Colas Light       Coca-Cola Life
## 1152         Extra Grande          Colas Light      Coca-Cola Light
## 1153         Extra Grande          Colas Light      Coca-Cola Light
## 1154         Extra Grande          Colas Light      Coca-Cola Light
## 1155         Extra Grande          Colas Light      Coca-Cola Light
## 1156         Extra Grande          Colas Light      Coca-Cola Light
## 1157         Extra Grande          Colas Light      Coca-Cola Light
## 1158         Extra Grande        Colas Regular            Coca-Cola
## 1159         Extra Grande        Colas Regular            Coca-Cola
## 1160         Extra Grande        Colas Regular            Coca-Cola
## 1161         Extra Grande        Colas Regular            Coca-Cola
## 1162         Extra Grande        Colas Regular            Coca-Cola
## 1163         Extra Grande        Colas Regular            Coca-Cola
## 1164         Extra Grande        Colas Regular            Coca-Cola
## 1165         Extra Grande        Colas Regular            Coca-Cola
## 1166         Extra Grande        Colas Regular            Coca-Cola
## 1167         Extra Grande        Colas Regular            Coca-Cola
## 1168         Extra Grande        Colas Regular            Coca-Cola
## 1169         Extra Grande        Colas Regular            Coca-Cola
## 1170         Extra Grande        Colas Regular            Coca-Cola
## 1171         Extra Grande        Colas Regular            Coca-Cola
## 1172         Extra Grande        Colas Regular            Coca-Cola
## 1173         Extra Grande   Isotónicos Regular             Powerade
## 1174         Extra Grande   Isotónicos Regular             Powerade
## 1175         Extra Grande   Isotónicos Regular             Powerade
## 1176         Extra Grande     Jugos y Néctares            Del Valle
## 1177         Extra Grande     Jugos y Néctares            Del Valle
## 1178         Extra Grande     Jugos y Néctares            Del Valle
## 1179         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1180         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1181         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1182         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1183         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1184         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1185         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1186         Extra Grande        Sabores Light           Fanta Zero
## 1187         Extra Grande        Sabores Light          Fresca Zero
## 1188         Extra Grande        Sabores Light    Manzana Lift Zero
## 1189         Extra Grande        Sabores Light          Sprite Zero
## 1190         Extra Grande      Sabores Regular     Del Valle y Nada
## 1191         Extra Grande      Sabores Regular                Fanta
## 1192         Extra Grande      Sabores Regular                Fanta
## 1193         Extra Grande      Sabores Regular                Fanta
## 1194         Extra Grande      Sabores Regular                Fanta
## 1195         Extra Grande      Sabores Regular                Fanta
## 1196         Extra Grande      Sabores Regular                Fanta
## 1197         Extra Grande      Sabores Regular                Fanta
## 1198         Extra Grande      Sabores Regular               Fresca
## 1199         Extra Grande      Sabores Regular               Fresca
## 1200         Extra Grande      Sabores Regular               Fresca
## 1201         Extra Grande      Sabores Regular               Fresca
## 1202         Extra Grande      Sabores Regular               Fresca
## 1203         Extra Grande      Sabores Regular               Fresca
## 1204         Extra Grande      Sabores Regular               Fresca
## 1205         Extra Grande      Sabores Regular         Manzana Lift
## 1206         Extra Grande      Sabores Regular         Manzana Lift
## 1207         Extra Grande      Sabores Regular         Manzana Lift
## 1208         Extra Grande      Sabores Regular         Manzana Lift
## 1209         Extra Grande      Sabores Regular         Manzana Lift
## 1210         Extra Grande      Sabores Regular         Manzana Lift
## 1211         Extra Grande      Sabores Regular               Senzao
## 1212         Extra Grande      Sabores Regular        Sidral Mundet
## 1213         Extra Grande      Sabores Regular        Sidral Mundet
## 1214         Extra Grande      Sabores Regular               Sprite
## 1215         Extra Grande      Sabores Regular               Sprite
## 1216         Extra Grande      Sabores Regular               Sprite
## 1217         Extra Grande      Sabores Regular               Sprite
## 1218         Extra Grande      Sabores Regular               Sprite
## 1219         Extra Grande      Sabores Regular               Sprite
## 1220         Extra Grande      Sabores Regular               Sprite
## 1221         Extra Grande      Sabores Regular               Sprite
## 1222         Extra Grande             Té Light       Fuze Tea Light
## 1223         Extra Grande           Té Regular             Fuze Tea
## 1224         Extra Grande           Té Regular             Fuze Tea
## 1225         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1226         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1227         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1228         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1229         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1230         Extra Grande      Agua Saborizada          Ciel Exprim
## 1231         Extra Grande      Agua Saborizada            Ciel Mini
## 1232         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1233         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1234         Extra Grande     Bebidas de Fruta               Frutsi
## 1235         Extra Grande     Bebidas de Fruta                Pulpy
## 1236         Extra Grande     Bebidas de Fruta           Valle Frut
## 1237         Extra Grande     Bebidas de Fruta           Valle Frut
## 1238         Extra Grande          Colas Light      Coca-Cola Light
## 1239         Extra Grande          Colas Light      Coca-Cola Light
## 1240         Extra Grande          Colas Light      Coca-Cola Light
## 1241         Extra Grande          Colas Light      Coca-Cola Light
## 1242         Extra Grande          Colas Light      Coca-Cola Light
## 1243         Extra Grande        Colas Regular            Coca-Cola
## 1244         Extra Grande        Colas Regular            Coca-Cola
## 1245         Extra Grande        Colas Regular            Coca-Cola
## 1246         Extra Grande        Colas Regular            Coca-Cola
## 1247         Extra Grande        Colas Regular            Coca-Cola
## 1248         Extra Grande        Colas Regular            Coca-Cola
## 1249         Extra Grande        Colas Regular            Coca-Cola
## 1250         Extra Grande        Colas Regular            Coca-Cola
## 1251         Extra Grande        Colas Regular            Coca-Cola
## 1252         Extra Grande        Colas Regular            Coca-Cola
## 1253         Extra Grande        Colas Regular            Coca-Cola
## 1254         Extra Grande        Colas Regular            Coca-Cola
## 1255         Extra Grande   Isotónicos Regular             Powerade
## 1256         Extra Grande     Jugos y Néctares            Del Valle
## 1257         Extra Grande     Jugos y Néctares            Del Valle
## 1258         Extra Grande     Jugos y Néctares            Del Valle
## 1259         Extra Grande     Jugos y Néctares            Del Valle
## 1260         Extra Grande     Jugos y Néctares            Del Valle
## 1261         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1262         Extra Grande      Sabores Regular     Del Valle y Nada
## 1263         Extra Grande      Sabores Regular     Del Valle y Nada
## 1264         Extra Grande      Sabores Regular                Fanta
## 1265         Extra Grande      Sabores Regular                Fanta
## 1266         Extra Grande      Sabores Regular                Fanta
## 1267         Extra Grande      Sabores Regular                Fanta
## 1268         Extra Grande      Sabores Regular                Fanta
## 1269         Extra Grande      Sabores Regular                Fanta
## 1270         Extra Grande      Sabores Regular                Fanta
## 1271         Extra Grande      Sabores Regular               Fresca
## 1272         Extra Grande      Sabores Regular               Fresca
## 1273         Extra Grande      Sabores Regular               Fresca
## 1274         Extra Grande      Sabores Regular               Fresca
## 1275         Extra Grande      Sabores Regular               Fresca
## 1276         Extra Grande      Sabores Regular         Manzana Lift
## 1277         Extra Grande      Sabores Regular         Manzana Lift
## 1278         Extra Grande      Sabores Regular         Manzana Lift
## 1279         Extra Grande      Sabores Regular         Manzana Lift
## 1280         Extra Grande      Sabores Regular        Sidral Mundet
## 1281         Extra Grande      Sabores Regular        Sidral Mundet
## 1282         Extra Grande      Sabores Regular        Sidral Mundet
## 1283         Extra Grande      Sabores Regular               Sprite
## 1284         Extra Grande      Sabores Regular               Sprite
## 1285         Extra Grande      Sabores Regular               Sprite
## 1286         Extra Grande      Sabores Regular               Sprite
## 1287         Extra Grande      Sabores Regular               Sprite
## 1288         Extra Grande      Sabores Regular               Sprite
## 1289         Extra Grande      Sabores Regular               Sprite
## 1290         Extra Grande           Té Regular             Fuze Tea
## 1291         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1292         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1293         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1294         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1295         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1296         Extra Grande      Agua Saborizada          Ciel Exprim
## 1297         Extra Grande      Agua Saborizada            Ciel Mini
## 1298         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1299         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1300         Extra Grande     Bebidas de Fruta               Frutsi
## 1301         Extra Grande     Bebidas de Fruta                Pulpy
## 1302         Extra Grande     Bebidas de Fruta           Valle Frut
## 1303         Extra Grande     Bebidas de Fruta           Valle Frut
## 1304         Extra Grande  Bebidas Energeticas              Glacéau
## 1305         Extra Grande          Colas Light       Coca-Cola Life
## 1306         Extra Grande          Colas Light       Coca-Cola Life
## 1307         Extra Grande          Colas Light      Coca-Cola Light
## 1308         Extra Grande          Colas Light      Coca-Cola Light
## 1309         Extra Grande          Colas Light      Coca-Cola Light
## 1310         Extra Grande          Colas Light      Coca-Cola Light
## 1311         Extra Grande          Colas Light      Coca-Cola Light
## 1312         Extra Grande          Colas Light      Coca-Cola Light
## 1313         Extra Grande          Colas Light      Coca-Cola Light
## 1314         Extra Grande          Colas Light      Coca-Cola Light
## 1315         Extra Grande          Colas Light      Coca-Cola Light
## 1316         Extra Grande          Colas Light      Coca-Cola Light
## 1317         Extra Grande          Colas Light       Coca-Cola Zero
## 1318         Extra Grande          Colas Light       Coca-Cola Zero
## 1319         Extra Grande          Colas Light       Coca-Cola Zero
## 1320         Extra Grande        Colas Regular            Coca-Cola
## 1321         Extra Grande        Colas Regular            Coca-Cola
## 1322         Extra Grande        Colas Regular            Coca-Cola
## 1323         Extra Grande        Colas Regular            Coca-Cola
## 1324         Extra Grande        Colas Regular            Coca-Cola
## 1325         Extra Grande        Colas Regular            Coca-Cola
## 1326         Extra Grande        Colas Regular            Coca-Cola
## 1327         Extra Grande        Colas Regular            Coca-Cola
## 1328         Extra Grande        Colas Regular            Coca-Cola
## 1329         Extra Grande        Colas Regular            Coca-Cola
## 1330         Extra Grande        Colas Regular            Coca-Cola
## 1331         Extra Grande        Colas Regular            Coca-Cola
## 1332         Extra Grande        Colas Regular            Coca-Cola
## 1333         Extra Grande        Colas Regular            Coca-Cola
## 1334         Extra Grande   Isotónicos Regular             Powerade
## 1335         Extra Grande   Isotónicos Regular             Powerade
## 1336         Extra Grande   Isotónicos Regular             Powerade
## 1337         Extra Grande     Jugos y Néctares            Del Valle
## 1338         Extra Grande     Jugos y Néctares            Del Valle
## 1339         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1340         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1341         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1342         Extra Grande        Sabores Light          Sprite Zero
## 1343         Extra Grande      Sabores Regular     Del Valle y Nada
## 1344         Extra Grande      Sabores Regular                Fanta
## 1345         Extra Grande      Sabores Regular                Fanta
## 1346         Extra Grande      Sabores Regular                Fanta
## 1347         Extra Grande      Sabores Regular                Fanta
## 1348         Extra Grande      Sabores Regular                Fanta
## 1349         Extra Grande      Sabores Regular                Fanta
## 1350         Extra Grande      Sabores Regular                Fanta
## 1351         Extra Grande      Sabores Regular               Fresca
## 1352         Extra Grande      Sabores Regular               Fresca
## 1353         Extra Grande      Sabores Regular               Fresca
## 1354         Extra Grande      Sabores Regular               Fresca
## 1355         Extra Grande      Sabores Regular               Fresca
## 1356         Extra Grande      Sabores Regular               Fresca
## 1357         Extra Grande      Sabores Regular               Fresca
## 1358         Extra Grande      Sabores Regular         Manzana Lift
## 1359         Extra Grande      Sabores Regular         Manzana Lift
## 1360         Extra Grande      Sabores Regular         Manzana Lift
## 1361         Extra Grande      Sabores Regular         Manzana Lift
## 1362         Extra Grande      Sabores Regular               Senzao
## 1363         Extra Grande      Sabores Regular        Sidral Mundet
## 1364         Extra Grande      Sabores Regular        Sidral Mundet
## 1365         Extra Grande      Sabores Regular        Sidral Mundet
## 1366         Extra Grande      Sabores Regular        Sidral Mundet
## 1367         Extra Grande      Sabores Regular        Sidral Mundet
## 1368         Extra Grande      Sabores Regular               Sprite
## 1369         Extra Grande      Sabores Regular               Sprite
## 1370         Extra Grande      Sabores Regular               Sprite
## 1371         Extra Grande      Sabores Regular               Sprite
## 1372         Extra Grande      Sabores Regular               Sprite
## 1373         Extra Grande      Sabores Regular               Sprite
## 1374         Extra Grande      Sabores Regular               Sprite
## 1375         Extra Grande           Té Regular             Fuze Tea
## 1376         Extra Grande           Té Regular             Fuze Tea
## 1377         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1378         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1379         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1380         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1381         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1382         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1383         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1384         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1385         Extra Grande      Agua Saborizada          Ciel Exprim
## 1386         Extra Grande      Agua Saborizada            Ciel Mini
## 1387         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1388         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1389         Extra Grande     Bebidas de Fruta               Frutsi
## 1390         Extra Grande     Bebidas de Fruta                Pulpy
## 1391         Extra Grande     Bebidas de Fruta           Valle Frut
## 1392         Extra Grande     Bebidas de Fruta           Valle Frut
## 1393         Extra Grande     Bebidas de Fruta           Valle Frut
## 1394         Extra Grande     Bebidas de Fruta           Valle Frut
## 1395         Extra Grande  Bebidas Energeticas                 Burn
## 1396         Extra Grande  Bebidas Energeticas              Glacéau
## 1397         Extra Grande          Colas Light       Coca-Cola Life
## 1398         Extra Grande          Colas Light      Coca-Cola Light
## 1399         Extra Grande          Colas Light      Coca-Cola Light
## 1400         Extra Grande          Colas Light      Coca-Cola Light
## 1401         Extra Grande          Colas Light      Coca-Cola Light
## 1402         Extra Grande          Colas Light      Coca-Cola Light
## 1403         Extra Grande          Colas Light      Coca-Cola Light
## 1404         Extra Grande          Colas Light      Coca-Cola Light
## 1405         Extra Grande          Colas Light      Coca-Cola Light
## 1406         Extra Grande          Colas Light       Coca-Cola Zero
## 1407         Extra Grande          Colas Light       Coca-Cola Zero
## 1408         Extra Grande          Colas Light       Coca-Cola Zero
## 1409         Extra Grande          Colas Light       Coca-Cola Zero
## 1410         Extra Grande          Colas Light       Coca-Cola Zero
## 1411         Extra Grande        Colas Regular            Coca-Cola
## 1412         Extra Grande        Colas Regular            Coca-Cola
## 1413         Extra Grande        Colas Regular            Coca-Cola
## 1414         Extra Grande        Colas Regular            Coca-Cola
## 1415         Extra Grande        Colas Regular            Coca-Cola
## 1416         Extra Grande        Colas Regular            Coca-Cola
## 1417         Extra Grande        Colas Regular            Coca-Cola
## 1418         Extra Grande        Colas Regular            Coca-Cola
## 1419         Extra Grande        Colas Regular            Coca-Cola
## 1420         Extra Grande        Colas Regular            Coca-Cola
## 1421         Extra Grande        Colas Regular            Coca-Cola
## 1422         Extra Grande        Colas Regular            Coca-Cola
## 1423         Extra Grande        Colas Regular            Coca-Cola
## 1424         Extra Grande        Colas Regular            Coca-Cola
## 1425         Extra Grande        Colas Regular            Coca-Cola
## 1426         Extra Grande        Colas Regular            Coca-Cola
## 1427         Extra Grande        Colas Regular            Coca-Cola
## 1428         Extra Grande   Isotónicos Regular             Powerade
## 1429         Extra Grande   Isotónicos Regular             Powerade
## 1430         Extra Grande   Isotónicos Regular             Powerade
## 1431         Extra Grande     Jugos y Néctares            Del Valle
## 1432         Extra Grande     Jugos y Néctares            Del Valle
## 1433         Extra Grande     Jugos y Néctares            Del Valle
## 1434         Extra Grande     Jugos y Néctares            Del Valle
## 1435         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1436         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1437         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1438         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1439         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1440         Extra Grande        Sabores Light          Sprite Zero
## 1441         Extra Grande      Sabores Regular     Del Valle y Nada
## 1442         Extra Grande      Sabores Regular                Fanta
## 1443         Extra Grande      Sabores Regular                Fanta
## 1444         Extra Grande      Sabores Regular                Fanta
## 1445         Extra Grande      Sabores Regular                Fanta
## 1446         Extra Grande      Sabores Regular                Fanta
## 1447         Extra Grande      Sabores Regular                Fanta
## 1448         Extra Grande      Sabores Regular                Fanta
## 1449         Extra Grande      Sabores Regular               Fresca
## 1450         Extra Grande      Sabores Regular               Fresca
## 1451         Extra Grande      Sabores Regular               Fresca
## 1452         Extra Grande      Sabores Regular               Fresca
## 1453         Extra Grande      Sabores Regular               Fresca
## 1454         Extra Grande      Sabores Regular               Fresca
## 1455         Extra Grande      Sabores Regular               Fresca
## 1456         Extra Grande      Sabores Regular         Manzana Lift
## 1457         Extra Grande      Sabores Regular         Manzana Lift
## 1458         Extra Grande      Sabores Regular         Manzana Lift
## 1459         Extra Grande      Sabores Regular         Manzana Lift
## 1460         Extra Grande      Sabores Regular         Manzana Lift
## 1461         Extra Grande      Sabores Regular         Manzana Lift
## 1462         Extra Grande      Sabores Regular               Senzao
## 1463         Extra Grande      Sabores Regular        Sidral Mundet
## 1464         Extra Grande      Sabores Regular        Sidral Mundet
## 1465         Extra Grande      Sabores Regular        Sidral Mundet
## 1466         Extra Grande      Sabores Regular        Sidral Mundet
## 1467         Extra Grande      Sabores Regular        Sidral Mundet
## 1468         Extra Grande      Sabores Regular        Sidral Mundet
## 1469         Extra Grande      Sabores Regular        Sidral Mundet
## 1470         Extra Grande      Sabores Regular               Sprite
## 1471         Extra Grande      Sabores Regular               Sprite
## 1472         Extra Grande      Sabores Regular               Sprite
## 1473         Extra Grande      Sabores Regular               Sprite
## 1474         Extra Grande      Sabores Regular               Sprite
## 1475         Extra Grande      Sabores Regular               Sprite
## 1476         Extra Grande      Sabores Regular               Sprite
## 1477         Extra Grande      Sabores Regular               Sprite
## 1478         Extra Grande             Té Light       Fuze Tea Light
## 1479         Extra Grande           Té Regular             Fuze Tea
## 1480         Extra Grande           Té Regular             Fuze Tea
## 1481         Extra Grande           Té Regular             Fuze Tea
## 1482         Extra Grande           Té Regular             Fuze Tea
## 1483         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1484         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1485         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1486         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1487         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1488         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1489         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1490         Extra Grande      Agua Saborizada          Ciel Exprim
## 1491         Extra Grande      Agua Saborizada      Ciel Saborizada
## 1492         Extra Grande     Bebidas de Fruta               Bebere
## 1493         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1494         Extra Grande     Bebidas de Fruta               Frutsi
## 1495         Extra Grande     Bebidas de Fruta                Pulpy
## 1496         Extra Grande     Bebidas de Fruta           Valle Frut
## 1497         Extra Grande     Bebidas de Fruta           Valle Frut
## 1498         Extra Grande     Bebidas de Fruta           Valle Frut
## 1499         Extra Grande     Bebidas de Fruta           Valle Frut
## 1500         Extra Grande  Bebidas Energeticas                 Burn
## 1501         Extra Grande  Bebidas Energeticas                 Burn
## 1502         Extra Grande  Bebidas Energeticas              Glacéau
## 1503         Extra Grande          Colas Light      Coca-Cola Light
## 1504         Extra Grande          Colas Light      Coca-Cola Light
## 1505         Extra Grande          Colas Light      Coca-Cola Light
## 1506         Extra Grande          Colas Light      Coca-Cola Light
## 1507         Extra Grande          Colas Light      Coca-Cola Light
## 1508         Extra Grande          Colas Light      Coca-Cola Light
## 1509         Extra Grande          Colas Light      Coca-Cola Light
## 1510         Extra Grande          Colas Light       Coca-Cola Zero
## 1511         Extra Grande          Colas Light       Coca-Cola Zero
## 1512         Extra Grande          Colas Light       Coca-Cola Zero
## 1513         Extra Grande        Colas Regular            Coca-Cola
## 1514         Extra Grande        Colas Regular            Coca-Cola
## 1515         Extra Grande        Colas Regular            Coca-Cola
## 1516         Extra Grande        Colas Regular            Coca-Cola
## 1517         Extra Grande        Colas Regular            Coca-Cola
## 1518         Extra Grande        Colas Regular            Coca-Cola
## 1519         Extra Grande        Colas Regular            Coca-Cola
## 1520         Extra Grande        Colas Regular            Coca-Cola
## 1521         Extra Grande        Colas Regular            Coca-Cola
## 1522         Extra Grande        Colas Regular            Coca-Cola
## 1523         Extra Grande        Colas Regular            Coca-Cola
## 1524         Extra Grande        Colas Regular            Coca-Cola
## 1525         Extra Grande        Colas Regular            Coca-Cola
## 1526         Extra Grande        Colas Regular            Coca-Cola
## 1527         Extra Grande        Colas Regular            Coca-Cola
## 1528         Extra Grande     Isotónicos Light        Powerade Zero
## 1529         Extra Grande   Isotónicos Regular             Powerade
## 1530         Extra Grande   Isotónicos Regular             Powerade
## 1531         Extra Grande   Isotónicos Regular             Powerade
## 1532         Extra Grande     Jugos y Néctares            Del Valle
## 1533         Extra Grande     Jugos y Néctares            Del Valle
## 1534         Extra Grande     Jugos y Néctares            Del Valle
## 1535         Extra Grande     Jugos y Néctares            Del Valle
## 1536         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1537         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1538         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1539         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1540         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1541         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1542         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1543         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1544         Extra Grande        Sabores Light          Sprite Zero
## 1545         Extra Grande      Sabores Regular     Del Valle y Nada
## 1546         Extra Grande      Sabores Regular                Fanta
## 1547         Extra Grande      Sabores Regular                Fanta
## 1548         Extra Grande      Sabores Regular                Fanta
## 1549         Extra Grande      Sabores Regular                Fanta
## 1550         Extra Grande      Sabores Regular                Fanta
## 1551         Extra Grande      Sabores Regular                Fanta
## 1552         Extra Grande      Sabores Regular               Fresca
## 1553         Extra Grande      Sabores Regular               Fresca
## 1554         Extra Grande      Sabores Regular               Fresca
## 1555         Extra Grande      Sabores Regular               Fresca
## 1556         Extra Grande      Sabores Regular               Fresca
## 1557         Extra Grande      Sabores Regular               Fresca
## 1558         Extra Grande      Sabores Regular         Manzana Lift
## 1559         Extra Grande      Sabores Regular         Manzana Lift
## 1560         Extra Grande      Sabores Regular         Manzana Lift
## 1561         Extra Grande      Sabores Regular         Manzana Lift
## 1562         Extra Grande      Sabores Regular         Manzana Lift
## 1563         Extra Grande      Sabores Regular               Senzao
## 1564         Extra Grande      Sabores Regular        Sidral Mundet
## 1565         Extra Grande      Sabores Regular        Sidral Mundet
## 1566         Extra Grande      Sabores Regular        Sidral Mundet
## 1567         Extra Grande      Sabores Regular        Sidral Mundet
## 1568         Extra Grande      Sabores Regular        Sidral Mundet
## 1569         Extra Grande      Sabores Regular        Sidral Mundet
## 1570         Extra Grande      Sabores Regular               Sprite
## 1571         Extra Grande      Sabores Regular               Sprite
## 1572         Extra Grande      Sabores Regular               Sprite
## 1573         Extra Grande      Sabores Regular               Sprite
## 1574         Extra Grande      Sabores Regular               Sprite
## 1575         Extra Grande      Sabores Regular               Sprite
## 1576         Extra Grande           Té Regular             Fuze Tea
## 1577         Extra Grande           Té Regular             Fuze Tea
## 1578         Extra Grande           Té Regular             Fuze Tea
## 1579         Extra Grande           Té Regular             Fuze Tea
## 1580         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1581         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1582         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1583         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1584         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1585         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1586         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1587         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1588         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1589         Extra Grande      Agua Saborizada          Ciel Exprim
## 1590         Extra Grande      Agua Saborizada            Ciel Mini
## 1591         Extra Grande      Agua Saborizada      Ciel Saborizada
## 1592         Extra Grande     Bebidas de Fruta               Bebere
## 1593         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1594         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1595         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1596         Extra Grande     Bebidas de Fruta               Frutsi
## 1597         Extra Grande     Bebidas de Fruta                Pulpy
## 1598         Extra Grande     Bebidas de Fruta           Valle Frut
## 1599         Extra Grande     Bebidas de Fruta           Valle Frut
## 1600         Extra Grande     Bebidas de Fruta           Valle Frut
## 1601         Extra Grande     Bebidas de Fruta           Valle Frut
## 1602         Extra Grande     Bebidas de Fruta           Valle Frut
## 1603         Extra Grande  Bebidas Energeticas                 Burn
## 1604         Extra Grande  Bebidas Energeticas                 Burn
## 1605         Extra Grande  Bebidas Energeticas              Glacéau
## 1606         Extra Grande          Colas Light       Coca-Cola Life
## 1607         Extra Grande          Colas Light      Coca-Cola Light
## 1608         Extra Grande          Colas Light      Coca-Cola Light
## 1609         Extra Grande          Colas Light       Coca-Cola Zero
## 1610         Extra Grande        Colas Regular            Coca-Cola
## 1611         Extra Grande        Colas Regular            Coca-Cola
## 1612         Extra Grande        Colas Regular            Coca-Cola
## 1613         Extra Grande        Colas Regular            Coca-Cola
## 1614         Extra Grande        Colas Regular            Coca-Cola
## 1615         Extra Grande        Colas Regular            Coca-Cola
## 1616         Extra Grande        Colas Regular            Coca-Cola
## 1617         Extra Grande        Colas Regular            Coca-Cola
## 1618         Extra Grande        Colas Regular            Coca-Cola
## 1619         Extra Grande        Colas Regular            Coca-Cola
## 1620         Extra Grande        Colas Regular            Coca-Cola
## 1621         Extra Grande        Colas Regular            Coca-Cola
## 1622         Extra Grande        Colas Regular            Coca-Cola
## 1623         Extra Grande        Colas Regular            Coca-Cola
## 1624         Extra Grande        Colas Regular            Coca-Cola
## 1625         Extra Grande        Colas Regular            Coca-Cola
## 1626         Extra Grande        Colas Regular            Coca-Cola
## 1627         Extra Grande        Colas Regular            Coca-Cola
## 1628         Extra Grande     Isotónicos Light        Powerade Zero
## 1629         Extra Grande   Isotónicos Regular             Powerade
## 1630         Extra Grande   Isotónicos Regular             Powerade
## 1631         Extra Grande   Isotónicos Regular             Powerade
## 1632         Extra Grande     Jugos y Néctares            Del Valle
## 1633         Extra Grande     Jugos y Néctares            Del Valle
## 1634         Extra Grande     Jugos y Néctares            Del Valle
## 1635         Extra Grande     Jugos y Néctares            Del Valle
## 1636         Extra Grande     Jugos y Néctares            Del Valle
## 1637         Extra Grande     Jugos y Néctares            Del Valle
## 1638         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1639         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1640         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1641         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1642         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1643         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1644         Extra Grande      Sabores Regular     Del Valle y Nada
## 1645         Extra Grande      Sabores Regular     Del Valle y Nada
## 1646         Extra Grande      Sabores Regular                Fanta
## 1647         Extra Grande      Sabores Regular                Fanta
## 1648         Extra Grande      Sabores Regular                Fanta
## 1649         Extra Grande      Sabores Regular                Fanta
## 1650         Extra Grande      Sabores Regular                Fanta
## 1651         Extra Grande      Sabores Regular                Fanta
## 1652         Extra Grande      Sabores Regular                Fanta
## 1653         Extra Grande      Sabores Regular                Fanta
## 1654         Extra Grande      Sabores Regular                Fanta
## 1655         Extra Grande      Sabores Regular                Fanta
## 1656         Extra Grande      Sabores Regular               Fresca
## 1657         Extra Grande      Sabores Regular               Fresca
## 1658         Extra Grande      Sabores Regular               Fresca
## 1659         Extra Grande      Sabores Regular               Fresca
## 1660         Extra Grande      Sabores Regular               Fresca
## 1661         Extra Grande      Sabores Regular               Fresca
## 1662         Extra Grande      Sabores Regular               Fresca
## 1663         Extra Grande      Sabores Regular               Fresca
## 1664         Extra Grande      Sabores Regular               Fresca
## 1665         Extra Grande      Sabores Regular               Fresca
## 1666         Extra Grande      Sabores Regular               Fresca
## 1667         Extra Grande      Sabores Regular         Manzana Lift
## 1668         Extra Grande      Sabores Regular         Manzana Lift
## 1669         Extra Grande      Sabores Regular         Manzana Lift
## 1670         Extra Grande      Sabores Regular         Manzana Lift
## 1671         Extra Grande      Sabores Regular         Manzana Lift
## 1672         Extra Grande      Sabores Regular         Manzana Lift
## 1673         Extra Grande      Sabores Regular         Manzana Lift
## 1674         Extra Grande      Sabores Regular         Manzana Lift
## 1675         Extra Grande      Sabores Regular               Senzao
## 1676         Extra Grande      Sabores Regular        Sidral Mundet
## 1677         Extra Grande      Sabores Regular        Sidral Mundet
## 1678         Extra Grande      Sabores Regular        Sidral Mundet
## 1679         Extra Grande      Sabores Regular        Sidral Mundet
## 1680         Extra Grande      Sabores Regular        Sidral Mundet
## 1681         Extra Grande      Sabores Regular        Sidral Mundet
## 1682         Extra Grande      Sabores Regular        Sidral Mundet
## 1683         Extra Grande      Sabores Regular               Sprite
## 1684         Extra Grande      Sabores Regular               Sprite
## 1685         Extra Grande      Sabores Regular               Sprite
## 1686         Extra Grande      Sabores Regular               Sprite
## 1687         Extra Grande      Sabores Regular               Sprite
## 1688         Extra Grande      Sabores Regular               Sprite
## 1689         Extra Grande      Sabores Regular               Sprite
## 1690         Extra Grande      Sabores Regular               Sprite
## 1691         Extra Grande      Sabores Regular               Sprite
## 1692         Extra Grande      Sabores Regular               Sprite
## 1693         Extra Grande      Sabores Regular               Sprite
## 1694         Extra Grande           Té Regular             Fuze Tea
## 1695         Extra Grande           Té Regular             Fuze Tea
## 1696         Extra Grande           Té Regular             Fuze Tea
## 1697         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1698         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1699         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1700         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1701         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1702         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1703         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1704         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1705         Extra Grande      Agua Saborizada          Ciel Exprim
## 1706         Extra Grande      Agua Saborizada            Ciel Mini
## 1707         Extra Grande      Agua Saborizada      Ciel Saborizada
## 1708         Extra Grande     Bebidas de Fruta               Bebere
## 1709         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1710         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1711         Extra Grande     Bebidas de Fruta               Frutsi
## 1712         Extra Grande     Bebidas de Fruta                Pulpy
## 1713         Extra Grande     Bebidas de Fruta           Valle Frut
## 1714         Extra Grande     Bebidas de Fruta           Valle Frut
## 1715         Extra Grande     Bebidas de Fruta           Valle Frut
## 1716         Extra Grande     Bebidas de Fruta           Valle Frut
## 1717         Extra Grande     Bebidas de Fruta           Valle Frut
## 1718         Extra Grande     Bebidas de Fruta           Valle Frut
## 1719         Extra Grande  Bebidas Energeticas                 Burn
## 1720         Extra Grande  Bebidas Energeticas                 Burn
## 1721         Extra Grande  Bebidas Energeticas              Glacéau
## 1722         Extra Grande          Colas Light       Coca-Cola Life
## 1723         Extra Grande          Colas Light       Coca-Cola Life
## 1724         Extra Grande          Colas Light       Coca-Cola Life
## 1725         Extra Grande          Colas Light       Coca-Cola Life
## 1726         Extra Grande          Colas Light      Coca-Cola Light
## 1727         Extra Grande          Colas Light      Coca-Cola Light
## 1728         Extra Grande          Colas Light      Coca-Cola Light
## 1729         Extra Grande          Colas Light      Coca-Cola Light
## 1730         Extra Grande          Colas Light      Coca-Cola Light
## 1731         Extra Grande          Colas Light      Coca-Cola Light
## 1732         Extra Grande          Colas Light      Coca-Cola Light
## 1733         Extra Grande          Colas Light      Coca-Cola Light
## 1734         Extra Grande          Colas Light      Coca-Cola Light
## 1735         Extra Grande          Colas Light       Coca-Cola Zero
## 1736         Extra Grande          Colas Light       Coca-Cola Zero
## 1737         Extra Grande          Colas Light       Coca-Cola Zero
## 1738         Extra Grande          Colas Light       Coca-Cola Zero
## 1739         Extra Grande          Colas Light       Coca-Cola Zero
## 1740         Extra Grande        Colas Regular            Coca-Cola
## 1741         Extra Grande        Colas Regular            Coca-Cola
## 1742         Extra Grande        Colas Regular            Coca-Cola
## 1743         Extra Grande        Colas Regular            Coca-Cola
## 1744         Extra Grande        Colas Regular            Coca-Cola
## 1745         Extra Grande        Colas Regular            Coca-Cola
## 1746         Extra Grande        Colas Regular            Coca-Cola
## 1747         Extra Grande        Colas Regular            Coca-Cola
## 1748         Extra Grande        Colas Regular            Coca-Cola
## 1749         Extra Grande        Colas Regular            Coca-Cola
## 1750         Extra Grande        Colas Regular            Coca-Cola
## 1751         Extra Grande        Colas Regular            Coca-Cola
## 1752         Extra Grande        Colas Regular            Coca-Cola
## 1753         Extra Grande        Colas Regular            Coca-Cola
## 1754         Extra Grande        Colas Regular            Coca-Cola
## 1755         Extra Grande        Colas Regular            Coca-Cola
## 1756         Extra Grande        Colas Regular            Coca-Cola
## 1757         Extra Grande        Colas Regular            Coca-Cola
## 1758         Extra Grande        Colas Regular            Coca-Cola
## 1759         Extra Grande        Colas Regular            Coca-Cola
## 1760         Extra Grande     Isotónicos Light        Powerade Zero
## 1761         Extra Grande   Isotónicos Regular             Powerade
## 1762         Extra Grande   Isotónicos Regular             Powerade
## 1763         Extra Grande   Isotónicos Regular             Powerade
## 1764         Extra Grande     Jugos y Néctares            Del Valle
## 1765         Extra Grande     Jugos y Néctares            Del Valle
## 1766         Extra Grande     Jugos y Néctares            Del Valle
## 1767         Extra Grande     Jugos y Néctares            Del Valle
## 1768         Extra Grande     Jugos y Néctares            Del Valle
## 1769         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1770         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1771         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1772         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1773         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1774         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1775         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1776         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1777         Extra Grande        Sabores Light          Sprite Zero
## 1778         Extra Grande      Sabores Regular     Del Valle y Nada
## 1779         Extra Grande      Sabores Regular     Del Valle y Nada
## 1780         Extra Grande      Sabores Regular                Fanta
## 1781         Extra Grande      Sabores Regular                Fanta
## 1782         Extra Grande      Sabores Regular                Fanta
## 1783         Extra Grande      Sabores Regular                Fanta
## 1784         Extra Grande      Sabores Regular                Fanta
## 1785         Extra Grande      Sabores Regular                Fanta
## 1786         Extra Grande      Sabores Regular                Fanta
## 1787         Extra Grande      Sabores Regular                Fanta
## 1788         Extra Grande      Sabores Regular               Fresca
## 1789         Extra Grande      Sabores Regular               Fresca
## 1790         Extra Grande      Sabores Regular               Fresca
## 1791         Extra Grande      Sabores Regular               Fresca
## 1792         Extra Grande      Sabores Regular               Fresca
## 1793         Extra Grande      Sabores Regular               Fresca
## 1794         Extra Grande      Sabores Regular         Manzana Lift
## 1795         Extra Grande      Sabores Regular         Manzana Lift
## 1796         Extra Grande      Sabores Regular         Manzana Lift
## 1797         Extra Grande      Sabores Regular         Manzana Lift
## 1798         Extra Grande      Sabores Regular         Manzana Lift
## 1799         Extra Grande      Sabores Regular         Manzana Lift
## 1800         Extra Grande      Sabores Regular         Manzana Lift
## 1801         Extra Grande      Sabores Regular               Senzao
## 1802         Extra Grande      Sabores Regular        Sidral Mundet
## 1803         Extra Grande      Sabores Regular        Sidral Mundet
## 1804         Extra Grande      Sabores Regular        Sidral Mundet
## 1805         Extra Grande      Sabores Regular        Sidral Mundet
## 1806         Extra Grande      Sabores Regular        Sidral Mundet
## 1807         Extra Grande      Sabores Regular        Sidral Mundet
## 1808         Extra Grande      Sabores Regular               Sprite
## 1809         Extra Grande      Sabores Regular               Sprite
## 1810         Extra Grande      Sabores Regular               Sprite
## 1811         Extra Grande      Sabores Regular               Sprite
## 1812         Extra Grande      Sabores Regular               Sprite
## 1813         Extra Grande      Sabores Regular               Sprite
## 1814         Extra Grande      Sabores Regular               Sprite
## 1815         Extra Grande      Sabores Regular               Sprite
## 1816         Extra Grande      Sabores Regular               Sprite
## 1817         Extra Grande      Sabores Regular               Sprite
## 1818         Extra Grande      Sabores Regular               Sprite
## 1819         Extra Grande             Té Light       Fuze Tea Light
## 1820         Extra Grande           Té Regular             Fuze Tea
## 1821         Extra Grande           Té Regular             Fuze Tea
## 1822         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1823         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1824         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1825         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1826         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1827         Extra Grande      Agua Saborizada            Ciel Mini
## 1828         Extra Grande      Agua Saborizada      Ciel Saborizada
## 1829         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1830         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1831         Extra Grande     Bebidas de Fruta               Frutsi
## 1832         Extra Grande     Bebidas de Fruta                Pulpy
## 1833         Extra Grande     Bebidas de Fruta           Valle Frut
## 1834         Extra Grande     Bebidas de Fruta           Valle Frut
## 1835         Extra Grande     Bebidas de Fruta           Valle Frut
## 1836         Extra Grande     Bebidas de Fruta           Valle Frut
## 1837         Extra Grande          Colas Light       Coca-Cola Life
## 1838         Extra Grande          Colas Light       Coca-Cola Life
## 1839         Extra Grande          Colas Light      Coca-Cola Light
## 1840         Extra Grande          Colas Light      Coca-Cola Light
## 1841         Extra Grande          Colas Light      Coca-Cola Light
## 1842         Extra Grande          Colas Light      Coca-Cola Light
## 1843         Extra Grande          Colas Light      Coca-Cola Light
## 1844         Extra Grande          Colas Light      Coca-Cola Light
## 1845         Extra Grande          Colas Light      Coca-Cola Light
## 1846         Extra Grande          Colas Light      Coca-Cola Light
## 1847         Extra Grande          Colas Light      Coca-Cola Light
## 1848         Extra Grande          Colas Light      Coca-Cola Light
## 1849         Extra Grande          Colas Light       Coca-Cola Zero
## 1850         Extra Grande          Colas Light       Coca-Cola Zero
## 1851         Extra Grande          Colas Light       Coca-Cola Zero
## 1852         Extra Grande          Colas Light       Coca-Cola Zero
## 1853         Extra Grande        Colas Regular            Coca-Cola
## 1854         Extra Grande        Colas Regular            Coca-Cola
## 1855         Extra Grande        Colas Regular            Coca-Cola
## 1856         Extra Grande        Colas Regular            Coca-Cola
## 1857         Extra Grande        Colas Regular            Coca-Cola
## 1858         Extra Grande        Colas Regular            Coca-Cola
## 1859         Extra Grande        Colas Regular            Coca-Cola
## 1860         Extra Grande        Colas Regular            Coca-Cola
## 1861         Extra Grande        Colas Regular            Coca-Cola
## 1862         Extra Grande        Colas Regular            Coca-Cola
## 1863         Extra Grande        Colas Regular            Coca-Cola
## 1864         Extra Grande        Colas Regular            Coca-Cola
## 1865         Extra Grande        Colas Regular            Coca-Cola
## 1866         Extra Grande        Colas Regular            Coca-Cola
## 1867         Extra Grande        Colas Regular            Coca-Cola
## 1868         Extra Grande        Colas Regular            Coca-Cola
## 1869         Extra Grande   Isotónicos Regular             Powerade
## 1870         Extra Grande   Isotónicos Regular             Powerade
## 1871         Extra Grande   Isotónicos Regular             Powerade
## 1872         Extra Grande     Jugos y Néctares            Del Valle
## 1873         Extra Grande     Jugos y Néctares            Del Valle
## 1874         Extra Grande     Jugos y Néctares            Del Valle
## 1875         Extra Grande     Jugos y Néctares            Del Valle
## 1876         Extra Grande     Jugos y Néctares            Del Valle
## 1877         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1878         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1879         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1880         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1881         Extra Grande        Sabores Light          Sprite Zero
## 1882         Extra Grande      Sabores Regular     Del Valle y Nada
## 1883         Extra Grande      Sabores Regular     Del Valle y Nada
## 1884         Extra Grande      Sabores Regular                Fanta
## 1885         Extra Grande      Sabores Regular                Fanta
## 1886         Extra Grande      Sabores Regular                Fanta
## 1887         Extra Grande      Sabores Regular                Fanta
## 1888         Extra Grande      Sabores Regular                Fanta
## 1889         Extra Grande      Sabores Regular                Fanta
## 1890         Extra Grande      Sabores Regular                Fanta
## 1891         Extra Grande      Sabores Regular                Fanta
## 1892         Extra Grande      Sabores Regular               Fresca
## 1893         Extra Grande      Sabores Regular               Fresca
## 1894         Extra Grande      Sabores Regular               Fresca
## 1895         Extra Grande      Sabores Regular               Fresca
## 1896         Extra Grande      Sabores Regular               Fresca
## 1897         Extra Grande      Sabores Regular               Fresca
## 1898         Extra Grande      Sabores Regular               Fresca
## 1899         Extra Grande      Sabores Regular         Manzana Lift
## 1900         Extra Grande      Sabores Regular         Manzana Lift
## 1901         Extra Grande      Sabores Regular         Manzana Lift
## 1902         Extra Grande      Sabores Regular         Manzana Lift
## 1903         Extra Grande      Sabores Regular         Manzana Lift
## 1904         Extra Grande      Sabores Regular               Senzao
## 1905         Extra Grande      Sabores Regular        Sidral Mundet
## 1906         Extra Grande      Sabores Regular        Sidral Mundet
## 1907         Extra Grande      Sabores Regular        Sidral Mundet
## 1908         Extra Grande      Sabores Regular        Sidral Mundet
## 1909         Extra Grande      Sabores Regular        Sidral Mundet
## 1910         Extra Grande      Sabores Regular        Sidral Mundet
## 1911         Extra Grande      Sabores Regular        Sidral Mundet
## 1912         Extra Grande      Sabores Regular               Sprite
## 1913         Extra Grande      Sabores Regular               Sprite
## 1914         Extra Grande      Sabores Regular               Sprite
## 1915         Extra Grande      Sabores Regular               Sprite
## 1916         Extra Grande      Sabores Regular               Sprite
## 1917         Extra Grande      Sabores Regular               Sprite
## 1918         Extra Grande      Sabores Regular               Sprite
## 1919         Extra Grande      Sabores Regular               Sprite
## 1920         Extra Grande      Sabores Regular               Sprite
## 1921         Extra Grande           Té Regular             Fuze Tea
## 1922         Extra Grande           Té Regular             Fuze Tea
## 1923         Extra Grande         Agua Mineral    Ciel Mineralizada
## 1924         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1925         Extra Grande         Agua Mineral      Topo Chico A.M.
## 1926         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1927         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1928         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1929         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1930         Extra Grande      Agua Purificada Ciel Agua Purificada
## 1931         Extra Grande      Agua Saborizada            Ciel Mini
## 1932         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1933         Extra Grande     Bebidas de Fruta       Delaware Punch
## 1934         Extra Grande     Bebidas de Fruta               Frutsi
## 1935         Extra Grande     Bebidas de Fruta                Pulpy
## 1936         Extra Grande     Bebidas de Fruta           Valle Frut
## 1937         Extra Grande     Bebidas de Fruta           Valle Frut
## 1938         Extra Grande     Bebidas de Fruta           Valle Frut
## 1939         Extra Grande     Bebidas de Fruta           Valle Frut
## 1940         Extra Grande     Bebidas de Fruta           Valle Frut
## 1941         Extra Grande  Bebidas Energeticas                 Burn
## 1942         Extra Grande  Bebidas Energeticas                 Burn
## 1943         Extra Grande  Bebidas Energeticas              Glacéau
## 1944         Extra Grande          Colas Light      Coca-Cola Light
## 1945         Extra Grande          Colas Light      Coca-Cola Light
## 1946         Extra Grande          Colas Light      Coca-Cola Light
## 1947         Extra Grande        Colas Regular            Coca-Cola
## 1948         Extra Grande        Colas Regular            Coca-Cola
## 1949         Extra Grande        Colas Regular            Coca-Cola
## 1950         Extra Grande        Colas Regular            Coca-Cola
## 1951         Extra Grande        Colas Regular            Coca-Cola
## 1952         Extra Grande        Colas Regular            Coca-Cola
## 1953         Extra Grande        Colas Regular            Coca-Cola
## 1954         Extra Grande        Colas Regular            Coca-Cola
## 1955         Extra Grande        Colas Regular            Coca-Cola
## 1956         Extra Grande        Colas Regular            Coca-Cola
## 1957         Extra Grande        Colas Regular            Coca-Cola
## 1958         Extra Grande        Colas Regular            Coca-Cola
## 1959         Extra Grande        Colas Regular            Coca-Cola
## 1960         Extra Grande        Colas Regular            Coca-Cola
## 1961         Extra Grande        Colas Regular            Coca-Cola
## 1962         Extra Grande     Isotónicos Light        Powerade Zero
## 1963         Extra Grande   Isotónicos Regular             Powerade
## 1964         Extra Grande   Isotónicos Regular             Powerade
## 1965         Extra Grande   Isotónicos Regular             Powerade
## 1966         Extra Grande     Jugos y Néctares            Del Valle
## 1967         Extra Grande     Jugos y Néctares            Del Valle
## 1968         Extra Grande     Jugos y Néctares            Del Valle
## 1969         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 1970         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1971         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 1972         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 1973         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 1974         Extra Grande    Leche UHT Regular    Santa Clara Light
## 1975         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 1976         Extra Grande        Sabores Light    Manzana Lift Zero
## 1977         Extra Grande      Sabores Regular     Del Valle y Nada
## 1978         Extra Grande      Sabores Regular                Fanta
## 1979         Extra Grande      Sabores Regular                Fanta
## 1980         Extra Grande      Sabores Regular                Fanta
## 1981         Extra Grande      Sabores Regular                Fanta
## 1982         Extra Grande      Sabores Regular                Fanta
## 1983         Extra Grande      Sabores Regular                Fanta
## 1984         Extra Grande      Sabores Regular                Fanta
## 1985         Extra Grande      Sabores Regular                Fanta
## 1986         Extra Grande      Sabores Regular                Fanta
## 1987         Extra Grande      Sabores Regular                Fanta
## 1988         Extra Grande      Sabores Regular               Fresca
## 1989         Extra Grande      Sabores Regular               Fresca
## 1990         Extra Grande      Sabores Regular               Fresca
## 1991         Extra Grande      Sabores Regular               Fresca
## 1992         Extra Grande      Sabores Regular               Fresca
## 1993         Extra Grande      Sabores Regular               Fresca
## 1994         Extra Grande      Sabores Regular               Fresca
## 1995         Extra Grande      Sabores Regular               Fresca
## 1996         Extra Grande      Sabores Regular               Fresca
## 1997         Extra Grande      Sabores Regular               Fresca
## 1998         Extra Grande      Sabores Regular         Manzana Lift
## 1999         Extra Grande      Sabores Regular         Manzana Lift
## 2000         Extra Grande      Sabores Regular         Manzana Lift
## 2001         Extra Grande      Sabores Regular         Manzana Lift
## 2002         Extra Grande      Sabores Regular         Manzana Lift
## 2003         Extra Grande      Sabores Regular         Manzana Lift
## 2004         Extra Grande      Sabores Regular         Manzana Lift
## 2005         Extra Grande      Sabores Regular         Manzana Lift
## 2006         Extra Grande      Sabores Regular               Senzao
## 2007         Extra Grande      Sabores Regular        Sidral Mundet
## 2008         Extra Grande      Sabores Regular        Sidral Mundet
## 2009         Extra Grande      Sabores Regular        Sidral Mundet
## 2010         Extra Grande      Sabores Regular        Sidral Mundet
## 2011         Extra Grande      Sabores Regular               Sprite
## 2012         Extra Grande      Sabores Regular               Sprite
## 2013         Extra Grande      Sabores Regular               Sprite
## 2014         Extra Grande      Sabores Regular               Sprite
## 2015         Extra Grande      Sabores Regular               Sprite
## 2016         Extra Grande      Sabores Regular               Sprite
## 2017         Extra Grande      Sabores Regular               Sprite
## 2018         Extra Grande      Sabores Regular               Sprite
## 2019         Extra Grande      Sabores Regular               Sprite
## 2020         Extra Grande      Sabores Regular               Sprite
## 2021         Extra Grande           Té Regular             Fuze Tea
## 2022         Extra Grande           Té Regular             Fuze Tea
## 2023         Extra Grande           Té Regular             Fuze Tea
## 2024         Extra Grande           Té Regular             Fuze Tea
## 2025         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2026         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2027         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2028         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2029         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2030         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2031         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2032         Extra Grande      Agua Saborizada          Ciel Exprim
## 2033         Extra Grande      Agua Saborizada            Ciel Mini
## 2034         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2035         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2036         Extra Grande     Bebidas de Fruta               Bebere
## 2037         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2038         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2039         Extra Grande     Bebidas de Fruta               Frutsi
## 2040         Extra Grande     Bebidas de Fruta                Pulpy
## 2041         Extra Grande     Bebidas de Fruta           Valle Frut
## 2042         Extra Grande     Bebidas de Fruta           Valle Frut
## 2043         Extra Grande     Bebidas de Fruta           Valle Frut
## 2044         Extra Grande     Bebidas de Fruta           Valle Frut
## 2045         Extra Grande     Bebidas de Fruta           Valle Frut
## 2046         Extra Grande  Bebidas Energeticas                 Burn
## 2047         Extra Grande  Bebidas Energeticas                 Burn
## 2048         Extra Grande  Bebidas Energeticas              Glacéau
## 2049         Extra Grande          Colas Light       Coca-Cola Life
## 2050         Extra Grande          Colas Light       Coca-Cola Life
## 2051         Extra Grande          Colas Light       Coca-Cola Life
## 2052         Extra Grande          Colas Light      Coca-Cola Light
## 2053         Extra Grande          Colas Light      Coca-Cola Light
## 2054         Extra Grande          Colas Light      Coca-Cola Light
## 2055         Extra Grande          Colas Light      Coca-Cola Light
## 2056         Extra Grande          Colas Light      Coca-Cola Light
## 2057         Extra Grande          Colas Light      Coca-Cola Light
## 2058         Extra Grande          Colas Light      Coca-Cola Light
## 2059         Extra Grande          Colas Light      Coca-Cola Light
## 2060         Extra Grande          Colas Light       Coca-Cola Zero
## 2061         Extra Grande          Colas Light       Coca-Cola Zero
## 2062         Extra Grande          Colas Light       Coca-Cola Zero
## 2063         Extra Grande          Colas Light       Coca-Cola Zero
## 2064         Extra Grande        Colas Regular            Coca-Cola
## 2065         Extra Grande        Colas Regular            Coca-Cola
## 2066         Extra Grande        Colas Regular            Coca-Cola
## 2067         Extra Grande        Colas Regular            Coca-Cola
## 2068         Extra Grande        Colas Regular            Coca-Cola
## 2069         Extra Grande        Colas Regular            Coca-Cola
## 2070         Extra Grande        Colas Regular            Coca-Cola
## 2071         Extra Grande        Colas Regular            Coca-Cola
## 2072         Extra Grande        Colas Regular            Coca-Cola
## 2073         Extra Grande        Colas Regular            Coca-Cola
## 2074         Extra Grande        Colas Regular            Coca-Cola
## 2075         Extra Grande        Colas Regular            Coca-Cola
## 2076         Extra Grande        Colas Regular            Coca-Cola
## 2077         Extra Grande        Colas Regular            Coca-Cola
## 2078         Extra Grande        Colas Regular            Coca-Cola
## 2079         Extra Grande        Colas Regular            Coca-Cola
## 2080         Extra Grande        Colas Regular            Coca-Cola
## 2081         Extra Grande     Isotónicos Light        Powerade Zero
## 2082         Extra Grande   Isotónicos Regular             Powerade
## 2083         Extra Grande   Isotónicos Regular             Powerade
## 2084         Extra Grande   Isotónicos Regular             Powerade
## 2085         Extra Grande     Jugos y Néctares            Del Valle
## 2086         Extra Grande     Jugos y Néctares            Del Valle
## 2087         Extra Grande     Jugos y Néctares            Del Valle
## 2088         Extra Grande     Jugos y Néctares            Del Valle
## 2089         Extra Grande     Jugos y Néctares            Del Valle
## 2090         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2091         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2092         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2093         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 2094         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 2095         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 2096         Extra Grande    Leche UHT Regular    Santa Clara Light
## 2097         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2098         Extra Grande        Sabores Light          Sprite Zero
## 2099         Extra Grande      Sabores Regular     Del Valle y Nada
## 2100         Extra Grande      Sabores Regular     Del Valle y Nada
## 2101         Extra Grande      Sabores Regular     Del Valle y Nada
## 2102         Extra Grande      Sabores Regular                Fanta
## 2103         Extra Grande      Sabores Regular                Fanta
## 2104         Extra Grande      Sabores Regular                Fanta
## 2105         Extra Grande      Sabores Regular                Fanta
## 2106         Extra Grande      Sabores Regular                Fanta
## 2107         Extra Grande      Sabores Regular                Fanta
## 2108         Extra Grande      Sabores Regular                Fanta
## 2109         Extra Grande      Sabores Regular                Fanta
## 2110         Extra Grande      Sabores Regular                Fanta
## 2111         Extra Grande      Sabores Regular                Fanta
## 2112         Extra Grande      Sabores Regular               Fresca
## 2113         Extra Grande      Sabores Regular               Fresca
## 2114         Extra Grande      Sabores Regular               Fresca
## 2115         Extra Grande      Sabores Regular               Fresca
## 2116         Extra Grande      Sabores Regular               Fresca
## 2117         Extra Grande      Sabores Regular               Fresca
## 2118         Extra Grande      Sabores Regular               Fresca
## 2119         Extra Grande      Sabores Regular               Fresca
## 2120         Extra Grande      Sabores Regular               Fresca
## 2121         Extra Grande      Sabores Regular               Fresca
## 2122         Extra Grande      Sabores Regular         Manzana Lift
## 2123         Extra Grande      Sabores Regular         Manzana Lift
## 2124         Extra Grande      Sabores Regular         Manzana Lift
## 2125         Extra Grande      Sabores Regular         Manzana Lift
## 2126         Extra Grande      Sabores Regular         Manzana Lift
## 2127         Extra Grande      Sabores Regular         Manzana Lift
## 2128         Extra Grande      Sabores Regular         Manzana Lift
## 2129         Extra Grande      Sabores Regular         Manzana Lift
## 2130         Extra Grande      Sabores Regular               Senzao
## 2131         Extra Grande      Sabores Regular        Sidral Mundet
## 2132         Extra Grande      Sabores Regular        Sidral Mundet
## 2133         Extra Grande      Sabores Regular        Sidral Mundet
## 2134         Extra Grande      Sabores Regular        Sidral Mundet
## 2135         Extra Grande      Sabores Regular        Sidral Mundet
## 2136         Extra Grande      Sabores Regular        Sidral Mundet
## 2137         Extra Grande      Sabores Regular        Sidral Mundet
## 2138         Extra Grande      Sabores Regular               Sprite
## 2139         Extra Grande      Sabores Regular               Sprite
## 2140         Extra Grande      Sabores Regular               Sprite
## 2141         Extra Grande      Sabores Regular               Sprite
## 2142         Extra Grande      Sabores Regular               Sprite
## 2143         Extra Grande      Sabores Regular               Sprite
## 2144         Extra Grande      Sabores Regular               Sprite
## 2145         Extra Grande      Sabores Regular               Sprite
## 2146         Extra Grande      Sabores Regular               Sprite
## 2147         Extra Grande      Sabores Regular               Sprite
## 2148         Extra Grande      Sabores Regular               Sprite
## 2149         Extra Grande           Té Regular             Fuze Tea
## 2150         Extra Grande           Té Regular             Fuze Tea
## 2151         Extra Grande           Té Regular             Fuze Tea
## 2152         Extra Grande           Té Regular             Fuze Tea
## 2153         Extra Grande           Té Regular             Fuze Tea
## 2154         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2155         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2156         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2157         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2158         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2159         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2160         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2161         Extra Grande      Agua Saborizada            Ciel Mini
## 2162         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2163         Extra Grande     Bebidas de Fruta               Frutsi
## 2164         Extra Grande     Bebidas de Fruta           Valle Frut
## 2165         Extra Grande     Bebidas de Fruta           Valle Frut
## 2166         Extra Grande     Bebidas de Fruta           Valle Frut
## 2167         Extra Grande  Bebidas Energeticas                 Burn
## 2168         Extra Grande          Colas Light      Coca-Cola Light
## 2169         Extra Grande          Colas Light      Coca-Cola Light
## 2170         Extra Grande          Colas Light      Coca-Cola Light
## 2171         Extra Grande          Colas Light      Coca-Cola Light
## 2172         Extra Grande        Colas Regular            Coca-Cola
## 2173         Extra Grande        Colas Regular            Coca-Cola
## 2174         Extra Grande        Colas Regular            Coca-Cola
## 2175         Extra Grande        Colas Regular            Coca-Cola
## 2176         Extra Grande        Colas Regular            Coca-Cola
## 2177         Extra Grande        Colas Regular            Coca-Cola
## 2178         Extra Grande        Colas Regular            Coca-Cola
## 2179         Extra Grande        Colas Regular            Coca-Cola
## 2180         Extra Grande        Colas Regular            Coca-Cola
## 2181         Extra Grande        Colas Regular            Coca-Cola
## 2182         Extra Grande        Colas Regular            Coca-Cola
## 2183         Extra Grande        Colas Regular            Coca-Cola
## 2184         Extra Grande        Colas Regular            Coca-Cola
## 2185         Extra Grande        Colas Regular            Coca-Cola
## 2186         Extra Grande        Colas Regular            Coca-Cola
## 2187         Extra Grande        Colas Regular            Coca-Cola
## 2188         Extra Grande        Colas Regular            Coca-Cola
## 2189         Extra Grande        Colas Regular            Coca-Cola
## 2190         Extra Grande   Isotónicos Regular             Powerade
## 2191         Extra Grande   Isotónicos Regular             Powerade
## 2192         Extra Grande   Isotónicos Regular             Powerade
## 2193         Extra Grande     Jugos y Néctares            Del Valle
## 2194         Extra Grande     Jugos y Néctares            Del Valle
## 2195         Extra Grande     Jugos y Néctares            Del Valle
## 2196         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2197         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2198         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2199         Extra Grande      Sabores Regular     Del Valle y Nada
## 2200         Extra Grande      Sabores Regular     Del Valle y Nada
## 2201         Extra Grande      Sabores Regular                Fanta
## 2202         Extra Grande      Sabores Regular                Fanta
## 2203         Extra Grande      Sabores Regular                Fanta
## 2204         Extra Grande      Sabores Regular                Fanta
## 2205         Extra Grande      Sabores Regular                Fanta
## 2206         Extra Grande      Sabores Regular                Fanta
## 2207         Extra Grande      Sabores Regular                Fanta
## 2208         Extra Grande      Sabores Regular                Fanta
## 2209         Extra Grande      Sabores Regular                Fanta
## 2210         Extra Grande      Sabores Regular               Fresca
## 2211         Extra Grande      Sabores Regular               Fresca
## 2212         Extra Grande      Sabores Regular               Fresca
## 2213         Extra Grande      Sabores Regular               Fresca
## 2214         Extra Grande      Sabores Regular               Fresca
## 2215         Extra Grande      Sabores Regular               Fresca
## 2216         Extra Grande      Sabores Regular               Fresca
## 2217         Extra Grande      Sabores Regular         Manzana Lift
## 2218         Extra Grande      Sabores Regular         Manzana Lift
## 2219         Extra Grande      Sabores Regular         Manzana Lift
## 2220         Extra Grande      Sabores Regular         Manzana Lift
## 2221         Extra Grande      Sabores Regular         Manzana Lift
## 2222         Extra Grande      Sabores Regular         Manzana Lift
## 2223         Extra Grande      Sabores Regular        Sidral Mundet
## 2224         Extra Grande      Sabores Regular        Sidral Mundet
## 2225         Extra Grande      Sabores Regular        Sidral Mundet
## 2226         Extra Grande      Sabores Regular               Sprite
## 2227         Extra Grande      Sabores Regular               Sprite
## 2228         Extra Grande      Sabores Regular               Sprite
## 2229         Extra Grande      Sabores Regular               Sprite
## 2230         Extra Grande      Sabores Regular               Sprite
## 2231         Extra Grande      Sabores Regular               Sprite
## 2232         Extra Grande      Sabores Regular               Sprite
## 2233         Extra Grande      Sabores Regular               Sprite
## 2234         Extra Grande           Té Regular             Fuze Tea
## 2235         Extra Grande           Té Regular             Fuze Tea
## 2236         Extra Grande           Té Regular             Fuze Tea
## 2237         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2238         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2239         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2240         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2241         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2242         Extra Grande      Agua Saborizada            Ciel Mini
## 2243         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2244         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2245         Extra Grande     Bebidas de Fruta               Frutsi
## 2246         Extra Grande     Bebidas de Fruta                Pulpy
## 2247         Extra Grande     Bebidas de Fruta           Valle Frut
## 2248         Extra Grande     Bebidas de Fruta           Valle Frut
## 2249         Extra Grande     Bebidas de Fruta           Valle Frut
## 2250         Extra Grande          Colas Light      Coca-Cola Light
## 2251         Extra Grande          Colas Light      Coca-Cola Light
## 2252         Extra Grande          Colas Light      Coca-Cola Light
## 2253         Extra Grande        Colas Regular            Coca-Cola
## 2254         Extra Grande        Colas Regular            Coca-Cola
## 2255         Extra Grande        Colas Regular            Coca-Cola
## 2256         Extra Grande        Colas Regular            Coca-Cola
## 2257         Extra Grande        Colas Regular            Coca-Cola
## 2258         Extra Grande        Colas Regular            Coca-Cola
## 2259         Extra Grande        Colas Regular            Coca-Cola
## 2260         Extra Grande        Colas Regular            Coca-Cola
## 2261         Extra Grande        Colas Regular            Coca-Cola
## 2262         Extra Grande        Colas Regular            Coca-Cola
## 2263         Extra Grande        Colas Regular            Coca-Cola
## 2264         Extra Grande        Colas Regular            Coca-Cola
## 2265         Extra Grande        Colas Regular            Coca-Cola
## 2266         Extra Grande        Colas Regular            Coca-Cola
## 2267         Extra Grande   Isotónicos Regular             Powerade
## 2268         Extra Grande   Isotónicos Regular             Powerade
## 2269         Extra Grande   Isotónicos Regular             Powerade
## 2270         Extra Grande     Jugos y Néctares            Del Valle
## 2271         Extra Grande     Jugos y Néctares            Del Valle
## 2272         Extra Grande     Jugos y Néctares            Del Valle
## 2273         Extra Grande     Jugos y Néctares            Del Valle
## 2274         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2275         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 2276         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2277         Extra Grande      Sabores Regular     Del Valle y Nada
## 2278         Extra Grande      Sabores Regular                Fanta
## 2279         Extra Grande      Sabores Regular                Fanta
## 2280         Extra Grande      Sabores Regular                Fanta
## 2281         Extra Grande      Sabores Regular                Fanta
## 2282         Extra Grande      Sabores Regular                Fanta
## 2283         Extra Grande      Sabores Regular               Fresca
## 2284         Extra Grande      Sabores Regular               Fresca
## 2285         Extra Grande      Sabores Regular               Fresca
## 2286         Extra Grande      Sabores Regular               Fresca
## 2287         Extra Grande      Sabores Regular         Manzana Lift
## 2288         Extra Grande      Sabores Regular         Manzana Lift
## 2289         Extra Grande      Sabores Regular         Manzana Lift
## 2290         Extra Grande      Sabores Regular               Senzao
## 2291         Extra Grande      Sabores Regular        Sidral Mundet
## 2292         Extra Grande      Sabores Regular        Sidral Mundet
## 2293         Extra Grande      Sabores Regular        Sidral Mundet
## 2294         Extra Grande      Sabores Regular        Sidral Mundet
## 2295         Extra Grande      Sabores Regular        Sidral Mundet
## 2296         Extra Grande      Sabores Regular               Sprite
## 2297         Extra Grande      Sabores Regular               Sprite
## 2298         Extra Grande      Sabores Regular               Sprite
## 2299         Extra Grande      Sabores Regular               Sprite
## 2300         Extra Grande      Sabores Regular               Sprite
## 2301         Extra Grande      Sabores Regular               Sprite
## 2302         Extra Grande           Té Regular             Fuze Tea
## 2303         Extra Grande           Té Regular             Fuze Tea
## 2304         Extra Grande           Té Regular             Fuze Tea
## 2305         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2306         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2307         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2308         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2309         Extra Grande      Agua Saborizada          Ciel Exprim
## 2310         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2311         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2312         Extra Grande     Bebidas de Fruta               Bebere
## 2313         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2314         Extra Grande     Bebidas de Fruta               Frutsi
## 2315         Extra Grande     Bebidas de Fruta                Pulpy
## 2316         Extra Grande     Bebidas de Fruta           Valle Frut
## 2317         Extra Grande     Bebidas de Fruta           Valle Frut
## 2318         Extra Grande     Bebidas de Fruta           Valle Frut
## 2319         Extra Grande     Bebidas de Fruta           Valle Frut
## 2320         Extra Grande  Bebidas Energeticas              Glacéau
## 2321         Extra Grande          Colas Light       Coca-Cola Life
## 2322         Extra Grande          Colas Light      Coca-Cola Light
## 2323         Extra Grande          Colas Light      Coca-Cola Light
## 2324         Extra Grande          Colas Light      Coca-Cola Light
## 2325         Extra Grande          Colas Light      Coca-Cola Light
## 2326         Extra Grande          Colas Light      Coca-Cola Light
## 2327         Extra Grande          Colas Light      Coca-Cola Light
## 2328         Extra Grande          Colas Light       Coca-Cola Zero
## 2329         Extra Grande          Colas Light       Coca-Cola Zero
## 2330         Extra Grande          Colas Light       Coca-Cola Zero
## 2331         Extra Grande          Colas Light       Coca-Cola Zero
## 2332         Extra Grande        Colas Regular            Coca-Cola
## 2333         Extra Grande        Colas Regular            Coca-Cola
## 2334         Extra Grande        Colas Regular            Coca-Cola
## 2335         Extra Grande        Colas Regular            Coca-Cola
## 2336         Extra Grande        Colas Regular            Coca-Cola
## 2337         Extra Grande        Colas Regular            Coca-Cola
## 2338         Extra Grande        Colas Regular            Coca-Cola
## 2339         Extra Grande        Colas Regular            Coca-Cola
## 2340         Extra Grande        Colas Regular            Coca-Cola
## 2341         Extra Grande        Colas Regular            Coca-Cola
## 2342         Extra Grande        Colas Regular            Coca-Cola
## 2343         Extra Grande        Colas Regular            Coca-Cola
## 2344         Extra Grande        Colas Regular            Coca-Cola
## 2345         Extra Grande        Colas Regular            Coca-Cola
## 2346         Extra Grande   Isotónicos Regular             Powerade
## 2347         Extra Grande   Isotónicos Regular             Powerade
## 2348         Extra Grande     Jugos y Néctares            Del Valle
## 2349         Extra Grande     Jugos y Néctares            Del Valle
## 2350         Extra Grande     Jugos y Néctares            Del Valle
## 2351         Extra Grande     Jugos y Néctares            Del Valle
## 2352         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2353         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2354         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2355         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2356         Extra Grande        Sabores Light          Sprite Zero
## 2357         Extra Grande      Sabores Regular     Del Valle y Nada
## 2358         Extra Grande      Sabores Regular     Del Valle y Nada
## 2359         Extra Grande      Sabores Regular                Fanta
## 2360         Extra Grande      Sabores Regular                Fanta
## 2361         Extra Grande      Sabores Regular                Fanta
## 2362         Extra Grande      Sabores Regular                Fanta
## 2363         Extra Grande      Sabores Regular                Fanta
## 2364         Extra Grande      Sabores Regular                Fanta
## 2365         Extra Grande      Sabores Regular               Fresca
## 2366         Extra Grande      Sabores Regular               Fresca
## 2367         Extra Grande      Sabores Regular               Fresca
## 2368         Extra Grande      Sabores Regular               Fresca
## 2369         Extra Grande      Sabores Regular               Fresca
## 2370         Extra Grande      Sabores Regular         Manzana Lift
## 2371         Extra Grande      Sabores Regular         Manzana Lift
## 2372         Extra Grande      Sabores Regular         Manzana Lift
## 2373         Extra Grande      Sabores Regular         Manzana Lift
## 2374         Extra Grande      Sabores Regular        Sidral Mundet
## 2375         Extra Grande      Sabores Regular        Sidral Mundet
## 2376         Extra Grande      Sabores Regular        Sidral Mundet
## 2377         Extra Grande      Sabores Regular               Sprite
## 2378         Extra Grande      Sabores Regular               Sprite
## 2379         Extra Grande      Sabores Regular               Sprite
## 2380         Extra Grande      Sabores Regular               Sprite
## 2381         Extra Grande      Sabores Regular               Sprite
## 2382         Extra Grande      Sabores Regular               Sprite
## 2383         Extra Grande      Sabores Regular               Sprite
## 2384         Extra Grande      Sabores Regular               Sprite
## 2385         Extra Grande           Té Regular             Fuze Tea
## 2386         Extra Grande           Té Regular             Fuze Tea
## 2387         Extra Grande           Té Regular             Fuze Tea
## 2388         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2389         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2390         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2391         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2392         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2393         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2394         Extra Grande      Agua Saborizada          Ciel Exprim
## 2395         Extra Grande      Agua Saborizada            Ciel Mini
## 2396         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2397         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2398         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2399         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2400         Extra Grande     Bebidas de Fruta               Frutsi
## 2401         Extra Grande     Bebidas de Fruta                Pulpy
## 2402         Extra Grande     Bebidas de Fruta           Valle Frut
## 2403         Extra Grande     Bebidas de Fruta           Valle Frut
## 2404         Extra Grande     Bebidas de Fruta           Valle Frut
## 2405         Extra Grande     Bebidas de Fruta           Valle Frut
## 2406         Extra Grande     Bebidas de Fruta           Valle Frut
## 2407         Extra Grande  Bebidas Energeticas                 Burn
## 2408         Extra Grande  Bebidas Energeticas                 Burn
## 2409         Extra Grande  Bebidas Energeticas              Glacéau
## 2410         Extra Grande          Colas Light       Coca-Cola Life
## 2411         Extra Grande          Colas Light       Coca-Cola Life
## 2412         Extra Grande          Colas Light       Coca-Cola Life
## 2413         Extra Grande          Colas Light      Coca-Cola Light
## 2414         Extra Grande          Colas Light      Coca-Cola Light
## 2415         Extra Grande          Colas Light      Coca-Cola Light
## 2416         Extra Grande          Colas Light      Coca-Cola Light
## 2417         Extra Grande          Colas Light      Coca-Cola Light
## 2418         Extra Grande          Colas Light      Coca-Cola Light
## 2419         Extra Grande          Colas Light       Coca-Cola Zero
## 2420         Extra Grande          Colas Light       Coca-Cola Zero
## 2421         Extra Grande          Colas Light       Coca-Cola Zero
## 2422         Extra Grande          Colas Light       Coca-Cola Zero
## 2423         Extra Grande        Colas Regular            Coca-Cola
## 2424         Extra Grande        Colas Regular            Coca-Cola
## 2425         Extra Grande        Colas Regular            Coca-Cola
## 2426         Extra Grande        Colas Regular            Coca-Cola
## 2427         Extra Grande        Colas Regular            Coca-Cola
## 2428         Extra Grande        Colas Regular            Coca-Cola
## 2429         Extra Grande        Colas Regular            Coca-Cola
## 2430         Extra Grande        Colas Regular            Coca-Cola
## 2431         Extra Grande        Colas Regular            Coca-Cola
## 2432         Extra Grande        Colas Regular            Coca-Cola
## 2433         Extra Grande        Colas Regular            Coca-Cola
## 2434         Extra Grande        Colas Regular            Coca-Cola
## 2435         Extra Grande        Colas Regular            Coca-Cola
## 2436         Extra Grande        Colas Regular            Coca-Cola
## 2437         Extra Grande        Colas Regular            Coca-Cola
## 2438         Extra Grande     Isotónicos Light        Powerade Zero
## 2439         Extra Grande   Isotónicos Regular             Powerade
## 2440         Extra Grande   Isotónicos Regular             Powerade
## 2441         Extra Grande   Isotónicos Regular             Powerade
## 2442         Extra Grande     Jugos y Néctares            Del Valle
## 2443         Extra Grande     Jugos y Néctares            Del Valle
## 2444         Extra Grande     Jugos y Néctares            Del Valle
## 2445         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2446         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2447         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2448         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 2449         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 2450         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 2451         Extra Grande    Leche UHT Regular    Santa Clara Light
## 2452         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2453         Extra Grande        Sabores Light          Sprite Zero
## 2454         Extra Grande      Sabores Regular     Del Valle y Nada
## 2455         Extra Grande      Sabores Regular     Del Valle y Nada
## 2456         Extra Grande      Sabores Regular                Fanta
## 2457         Extra Grande      Sabores Regular                Fanta
## 2458         Extra Grande      Sabores Regular                Fanta
## 2459         Extra Grande      Sabores Regular                Fanta
## 2460         Extra Grande      Sabores Regular                Fanta
## 2461         Extra Grande      Sabores Regular                Fanta
## 2462         Extra Grande      Sabores Regular                Fanta
## 2463         Extra Grande      Sabores Regular                Fanta
## 2464         Extra Grande      Sabores Regular                Fanta
## 2465         Extra Grande      Sabores Regular               Fresca
## 2466         Extra Grande      Sabores Regular               Fresca
## 2467         Extra Grande      Sabores Regular               Fresca
## 2468         Extra Grande      Sabores Regular               Fresca
## 2469         Extra Grande      Sabores Regular               Fresca
## 2470         Extra Grande      Sabores Regular               Fresca
## 2471         Extra Grande      Sabores Regular               Fresca
## 2472         Extra Grande      Sabores Regular               Fresca
## 2473         Extra Grande      Sabores Regular               Fresca
## 2474         Extra Grande      Sabores Regular         Manzana Lift
## 2475         Extra Grande      Sabores Regular         Manzana Lift
## 2476         Extra Grande      Sabores Regular         Manzana Lift
## 2477         Extra Grande      Sabores Regular         Manzana Lift
## 2478         Extra Grande      Sabores Regular         Manzana Lift
## 2479         Extra Grande      Sabores Regular         Manzana Lift
## 2480         Extra Grande      Sabores Regular               Senzao
## 2481         Extra Grande      Sabores Regular        Sidral Mundet
## 2482         Extra Grande      Sabores Regular        Sidral Mundet
## 2483         Extra Grande      Sabores Regular        Sidral Mundet
## 2484         Extra Grande      Sabores Regular        Sidral Mundet
## 2485         Extra Grande      Sabores Regular        Sidral Mundet
## 2486         Extra Grande      Sabores Regular        Sidral Mundet
## 2487         Extra Grande      Sabores Regular               Sprite
## 2488         Extra Grande      Sabores Regular               Sprite
## 2489         Extra Grande      Sabores Regular               Sprite
## 2490         Extra Grande      Sabores Regular               Sprite
## 2491         Extra Grande      Sabores Regular               Sprite
## 2492         Extra Grande      Sabores Regular               Sprite
## 2493         Extra Grande      Sabores Regular               Sprite
## 2494         Extra Grande      Sabores Regular               Sprite
## 2495         Extra Grande      Sabores Regular               Sprite
## 2496         Extra Grande      Sabores Regular               Sprite
## 2497         Extra Grande           Té Regular             Fuze Tea
## 2498         Extra Grande           Té Regular             Fuze Tea
## 2499         Extra Grande           Té Regular             Fuze Tea
## 2500         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2501         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2502         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2503         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2504         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2505         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2506         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2507         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2508         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2509         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2510         Extra Grande      Agua Saborizada          Ciel Exprim
## 2511         Extra Grande      Agua Saborizada          Ciel Exprim
## 2512         Extra Grande      Agua Saborizada            Ciel Mini
## 2513         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2514         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2515         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2516         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2517         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2518         Extra Grande     Bebidas de Fruta               Frutsi
## 2519         Extra Grande     Bebidas de Fruta                Pulpy
## 2520         Extra Grande     Bebidas de Fruta           Valle Frut
## 2521         Extra Grande     Bebidas de Fruta           Valle Frut
## 2522         Extra Grande     Bebidas de Fruta           Valle Frut
## 2523         Extra Grande     Bebidas de Fruta           Valle Frut
## 2524         Extra Grande     Bebidas de Fruta           Valle Frut
## 2525         Extra Grande  Bebidas Energeticas                 Burn
## 2526         Extra Grande  Bebidas Energeticas                 Burn
## 2527         Extra Grande  Bebidas Energeticas              Glacéau
## 2528         Extra Grande          Colas Light       Coca-Cola Life
## 2529         Extra Grande          Colas Light       Coca-Cola Life
## 2530         Extra Grande          Colas Light      Coca-Cola Light
## 2531         Extra Grande          Colas Light      Coca-Cola Light
## 2532         Extra Grande          Colas Light      Coca-Cola Light
## 2533         Extra Grande          Colas Light      Coca-Cola Light
## 2534         Extra Grande          Colas Light      Coca-Cola Light
## 2535         Extra Grande          Colas Light      Coca-Cola Light
## 2536         Extra Grande          Colas Light       Coca-Cola Zero
## 2537         Extra Grande          Colas Light       Coca-Cola Zero
## 2538         Extra Grande          Colas Light       Coca-Cola Zero
## 2539         Extra Grande          Colas Light       Coca-Cola Zero
## 2540         Extra Grande          Colas Light       Coca-Cola Zero
## 2541         Extra Grande        Colas Regular            Coca-Cola
## 2542         Extra Grande        Colas Regular            Coca-Cola
## 2543         Extra Grande        Colas Regular            Coca-Cola
## 2544         Extra Grande        Colas Regular            Coca-Cola
## 2545         Extra Grande        Colas Regular            Coca-Cola
## 2546         Extra Grande        Colas Regular            Coca-Cola
## 2547         Extra Grande        Colas Regular            Coca-Cola
## 2548         Extra Grande        Colas Regular            Coca-Cola
## 2549         Extra Grande        Colas Regular            Coca-Cola
## 2550         Extra Grande        Colas Regular            Coca-Cola
## 2551         Extra Grande        Colas Regular            Coca-Cola
## 2552         Extra Grande        Colas Regular            Coca-Cola
## 2553         Extra Grande        Colas Regular            Coca-Cola
## 2554         Extra Grande        Colas Regular            Coca-Cola
## 2555         Extra Grande        Colas Regular            Coca-Cola
## 2556         Extra Grande        Colas Regular            Coca-Cola
## 2557         Extra Grande        Colas Regular            Coca-Cola
## 2558         Extra Grande        Colas Regular            Coca-Cola
## 2559         Extra Grande        Colas Regular            Coca-Cola
## 2560         Extra Grande     Isotónicos Light        Powerade Zero
## 2561         Extra Grande   Isotónicos Regular             Powerade
## 2562         Extra Grande   Isotónicos Regular             Powerade
## 2563         Extra Grande   Isotónicos Regular             Powerade
## 2564         Extra Grande     Jugos y Néctares            Del Valle
## 2565         Extra Grande     Jugos y Néctares            Del Valle
## 2566         Extra Grande     Jugos y Néctares            Del Valle
## 2567         Extra Grande     Jugos y Néctares            Del Valle
## 2568         Extra Grande     Jugos y Néctares            Del Valle
## 2569         Extra Grande     Jugos y Néctares            Del Valle
## 2570         Extra Grande     Jugos y Néctares            Del Valle
## 2571         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2572         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2573         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2574         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 2575         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2576         Extra Grande        Sabores Light    Manzana Lift Zero
## 2577         Extra Grande        Sabores Light          Sprite Zero
## 2578         Extra Grande      Sabores Regular     Del Valle y Nada
## 2579         Extra Grande      Sabores Regular     Del Valle y Nada
## 2580         Extra Grande      Sabores Regular     Del Valle y Nada
## 2581         Extra Grande      Sabores Regular                Fanta
## 2582         Extra Grande      Sabores Regular                Fanta
## 2583         Extra Grande      Sabores Regular                Fanta
## 2584         Extra Grande      Sabores Regular                Fanta
## 2585         Extra Grande      Sabores Regular                Fanta
## 2586         Extra Grande      Sabores Regular                Fanta
## 2587         Extra Grande      Sabores Regular                Fanta
## 2588         Extra Grande      Sabores Regular                Fanta
## 2589         Extra Grande      Sabores Regular                Fanta
## 2590         Extra Grande      Sabores Regular                Fanta
## 2591         Extra Grande      Sabores Regular                Fanta
## 2592         Extra Grande      Sabores Regular               Fresca
## 2593         Extra Grande      Sabores Regular               Fresca
## 2594         Extra Grande      Sabores Regular               Fresca
## 2595         Extra Grande      Sabores Regular               Fresca
## 2596         Extra Grande      Sabores Regular               Fresca
## 2597         Extra Grande      Sabores Regular               Fresca
## 2598         Extra Grande      Sabores Regular               Fresca
## 2599         Extra Grande      Sabores Regular               Fresca
## 2600         Extra Grande      Sabores Regular               Fresca
## 2601         Extra Grande      Sabores Regular               Fresca
## 2602         Extra Grande      Sabores Regular               Fresca
## 2603         Extra Grande      Sabores Regular         Manzana Lift
## 2604         Extra Grande      Sabores Regular         Manzana Lift
## 2605         Extra Grande      Sabores Regular         Manzana Lift
## 2606         Extra Grande      Sabores Regular         Manzana Lift
## 2607         Extra Grande      Sabores Regular         Manzana Lift
## 2608         Extra Grande      Sabores Regular         Manzana Lift
## 2609         Extra Grande      Sabores Regular         Manzana Lift
## 2610         Extra Grande      Sabores Regular         Manzana Lift
## 2611         Extra Grande      Sabores Regular         Manzana Lift
## 2612         Extra Grande      Sabores Regular               Senzao
## 2613         Extra Grande      Sabores Regular        Sidral Mundet
## 2614         Extra Grande      Sabores Regular        Sidral Mundet
## 2615         Extra Grande      Sabores Regular        Sidral Mundet
## 2616         Extra Grande      Sabores Regular        Sidral Mundet
## 2617         Extra Grande      Sabores Regular        Sidral Mundet
## 2618         Extra Grande      Sabores Regular        Sidral Mundet
## 2619         Extra Grande      Sabores Regular        Sidral Mundet
## 2620         Extra Grande      Sabores Regular               Sprite
## 2621         Extra Grande      Sabores Regular               Sprite
## 2622         Extra Grande      Sabores Regular               Sprite
## 2623         Extra Grande      Sabores Regular               Sprite
## 2624         Extra Grande      Sabores Regular               Sprite
## 2625         Extra Grande      Sabores Regular               Sprite
## 2626         Extra Grande      Sabores Regular               Sprite
## 2627         Extra Grande      Sabores Regular               Sprite
## 2628         Extra Grande      Sabores Regular               Sprite
## 2629         Extra Grande      Sabores Regular               Sprite
## 2630         Extra Grande      Sabores Regular               Sprite
## 2631         Extra Grande           Té Regular             Fuze Tea
## 2632         Extra Grande           Té Regular             Fuze Tea
## 2633         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2634         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2635         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2636         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2637         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2638         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2639         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2640         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2641         Extra Grande      Agua Saborizada          Ciel Exprim
## 2642         Extra Grande      Agua Saborizada          Ciel Exprim
## 2643         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2644         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2645         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2646         Extra Grande     Bebidas de Fruta               Frutsi
## 2647         Extra Grande     Bebidas de Fruta                Pulpy
## 2648         Extra Grande     Bebidas de Fruta           Valle Frut
## 2649         Extra Grande     Bebidas de Fruta           Valle Frut
## 2650         Extra Grande     Bebidas de Fruta           Valle Frut
## 2651         Extra Grande     Bebidas de Fruta           Valle Frut
## 2652         Extra Grande     Bebidas de Fruta           Valle Frut
## 2653         Extra Grande  Bebidas Energeticas                 Burn
## 2654         Extra Grande          Colas Light       Coca-Cola Life
## 2655         Extra Grande          Colas Light       Coca-Cola Life
## 2656         Extra Grande          Colas Light       Coca-Cola Life
## 2657         Extra Grande          Colas Light       Coca-Cola Life
## 2658         Extra Grande          Colas Light       Coca-Cola Life
## 2659         Extra Grande          Colas Light      Coca-Cola Light
## 2660         Extra Grande          Colas Light      Coca-Cola Light
## 2661         Extra Grande          Colas Light      Coca-Cola Light
## 2662         Extra Grande          Colas Light      Coca-Cola Light
## 2663         Extra Grande          Colas Light      Coca-Cola Light
## 2664         Extra Grande          Colas Light      Coca-Cola Light
## 2665         Extra Grande          Colas Light       Coca-Cola Zero
## 2666         Extra Grande          Colas Light       Coca-Cola Zero
## 2667         Extra Grande          Colas Light       Coca-Cola Zero
## 2668         Extra Grande          Colas Light       Coca-Cola Zero
## 2669         Extra Grande        Colas Regular            Coca-Cola
## 2670         Extra Grande        Colas Regular            Coca-Cola
## 2671         Extra Grande        Colas Regular            Coca-Cola
## 2672         Extra Grande        Colas Regular            Coca-Cola
## 2673         Extra Grande        Colas Regular            Coca-Cola
## 2674         Extra Grande        Colas Regular            Coca-Cola
## 2675         Extra Grande        Colas Regular            Coca-Cola
## 2676         Extra Grande        Colas Regular            Coca-Cola
## 2677         Extra Grande        Colas Regular            Coca-Cola
## 2678         Extra Grande        Colas Regular            Coca-Cola
## 2679         Extra Grande        Colas Regular            Coca-Cola
## 2680         Extra Grande        Colas Regular            Coca-Cola
## 2681         Extra Grande        Colas Regular            Coca-Cola
## 2682         Extra Grande        Colas Regular            Coca-Cola
## 2683         Extra Grande        Colas Regular            Coca-Cola
## 2684         Extra Grande        Colas Regular            Coca-Cola
## 2685         Extra Grande        Colas Regular            Coca-Cola
## 2686         Extra Grande     Isotónicos Light        Powerade Zero
## 2687         Extra Grande   Isotónicos Regular             Powerade
## 2688         Extra Grande   Isotónicos Regular             Powerade
## 2689         Extra Grande   Isotónicos Regular             Powerade
## 2690         Extra Grande     Jugos y Néctares            Del Valle
## 2691         Extra Grande     Jugos y Néctares            Del Valle
## 2692         Extra Grande     Jugos y Néctares            Del Valle
## 2693         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2694         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2695         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2696         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 2697         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2698         Extra Grande        Sabores Light          Sprite Zero
## 2699         Extra Grande      Sabores Regular     Del Valle y Nada
## 2700         Extra Grande      Sabores Regular     Del Valle y Nada
## 2701         Extra Grande      Sabores Regular     Del Valle y Nada
## 2702         Extra Grande      Sabores Regular                Fanta
## 2703         Extra Grande      Sabores Regular                Fanta
## 2704         Extra Grande      Sabores Regular                Fanta
## 2705         Extra Grande      Sabores Regular                Fanta
## 2706         Extra Grande      Sabores Regular                Fanta
## 2707         Extra Grande      Sabores Regular                Fanta
## 2708         Extra Grande      Sabores Regular                Fanta
## 2709         Extra Grande      Sabores Regular                Fanta
## 2710         Extra Grande      Sabores Regular                Fanta
## 2711         Extra Grande      Sabores Regular                Fanta
## 2712         Extra Grande      Sabores Regular               Fresca
## 2713         Extra Grande      Sabores Regular               Fresca
## 2714         Extra Grande      Sabores Regular               Fresca
## 2715         Extra Grande      Sabores Regular               Fresca
## 2716         Extra Grande      Sabores Regular               Fresca
## 2717         Extra Grande      Sabores Regular               Fresca
## 2718         Extra Grande      Sabores Regular               Fresca
## 2719         Extra Grande      Sabores Regular               Fresca
## 2720         Extra Grande      Sabores Regular         Manzana Lift
## 2721         Extra Grande      Sabores Regular         Manzana Lift
## 2722         Extra Grande      Sabores Regular         Manzana Lift
## 2723         Extra Grande      Sabores Regular         Manzana Lift
## 2724         Extra Grande      Sabores Regular         Manzana Lift
## 2725         Extra Grande      Sabores Regular         Manzana Lift
## 2726         Extra Grande      Sabores Regular         Manzana Lift
## 2727         Extra Grande      Sabores Regular         Manzana Lift
## 2728         Extra Grande      Sabores Regular         Manzana Lift
## 2729         Extra Grande      Sabores Regular               Senzao
## 2730         Extra Grande      Sabores Regular        Sidral Mundet
## 2731         Extra Grande      Sabores Regular        Sidral Mundet
## 2732         Extra Grande      Sabores Regular        Sidral Mundet
## 2733         Extra Grande      Sabores Regular        Sidral Mundet
## 2734         Extra Grande      Sabores Regular        Sidral Mundet
## 2735         Extra Grande      Sabores Regular        Sidral Mundet
## 2736         Extra Grande      Sabores Regular               Sprite
## 2737         Extra Grande      Sabores Regular               Sprite
## 2738         Extra Grande      Sabores Regular               Sprite
## 2739         Extra Grande      Sabores Regular               Sprite
## 2740         Extra Grande      Sabores Regular               Sprite
## 2741         Extra Grande      Sabores Regular               Sprite
## 2742         Extra Grande      Sabores Regular               Sprite
## 2743         Extra Grande      Sabores Regular               Sprite
## 2744         Extra Grande      Sabores Regular               Sprite
## 2745         Extra Grande      Sabores Regular               Sprite
## 2746         Extra Grande           Té Regular             Fuze Tea
## 2747         Extra Grande           Té Regular             Fuze Tea
## 2748         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2749         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2750         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2751         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2752         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2753         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2754         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2755         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2756         Extra Grande      Agua Saborizada          Ciel Exprim
## 2757         Extra Grande      Agua Saborizada            Ciel Mini
## 2758         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2759         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2760         Extra Grande     Bebidas de Fruta               Frutsi
## 2761         Extra Grande     Bebidas de Fruta                Pulpy
## 2762         Extra Grande     Bebidas de Fruta           Valle Frut
## 2763         Extra Grande     Bebidas de Fruta           Valle Frut
## 2764         Extra Grande     Bebidas de Fruta           Valle Frut
## 2765         Extra Grande  Bebidas Energeticas                 Burn
## 2766         Extra Grande  Bebidas Energeticas                 Burn
## 2767         Extra Grande  Bebidas Energeticas              Glacéau
## 2768         Extra Grande          Colas Light      Coca-Cola Light
## 2769         Extra Grande          Colas Light      Coca-Cola Light
## 2770         Extra Grande        Colas Regular            Coca-Cola
## 2771         Extra Grande        Colas Regular            Coca-Cola
## 2772         Extra Grande        Colas Regular            Coca-Cola
## 2773         Extra Grande        Colas Regular            Coca-Cola
## 2774         Extra Grande        Colas Regular            Coca-Cola
## 2775         Extra Grande        Colas Regular            Coca-Cola
## 2776         Extra Grande        Colas Regular            Coca-Cola
## 2777         Extra Grande        Colas Regular            Coca-Cola
## 2778         Extra Grande        Colas Regular            Coca-Cola
## 2779         Extra Grande        Colas Regular            Coca-Cola
## 2780         Extra Grande        Colas Regular            Coca-Cola
## 2781         Extra Grande        Colas Regular            Coca-Cola
## 2782         Extra Grande        Colas Regular            Coca-Cola
## 2783         Extra Grande   Isotónicos Regular             Powerade
## 2784         Extra Grande   Isotónicos Regular             Powerade
## 2785         Extra Grande   Isotónicos Regular             Powerade
## 2786         Extra Grande     Jugos y Néctares            Del Valle
## 2787         Extra Grande     Jugos y Néctares            Del Valle
## 2788         Extra Grande     Jugos y Néctares            Del Valle
## 2789         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2790         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2791         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2792         Extra Grande        Sabores Light          Sprite Zero
## 2793         Extra Grande      Sabores Regular     Del Valle y Nada
## 2794         Extra Grande      Sabores Regular     Del Valle y Nada
## 2795         Extra Grande      Sabores Regular                Fanta
## 2796         Extra Grande      Sabores Regular                Fanta
## 2797         Extra Grande      Sabores Regular                Fanta
## 2798         Extra Grande      Sabores Regular                Fanta
## 2799         Extra Grande      Sabores Regular                Fanta
## 2800         Extra Grande      Sabores Regular                Fanta
## 2801         Extra Grande      Sabores Regular                Fanta
## 2802         Extra Grande      Sabores Regular               Fresca
## 2803         Extra Grande      Sabores Regular               Fresca
## 2804         Extra Grande      Sabores Regular               Fresca
## 2805         Extra Grande      Sabores Regular               Fresca
## 2806         Extra Grande      Sabores Regular               Fresca
## 2807         Extra Grande      Sabores Regular               Fresca
## 2808         Extra Grande      Sabores Regular               Fresca
## 2809         Extra Grande      Sabores Regular         Manzana Lift
## 2810         Extra Grande      Sabores Regular         Manzana Lift
## 2811         Extra Grande      Sabores Regular         Manzana Lift
## 2812         Extra Grande      Sabores Regular         Manzana Lift
## 2813         Extra Grande      Sabores Regular         Manzana Lift
## 2814         Extra Grande      Sabores Regular               Senzao
## 2815         Extra Grande      Sabores Regular        Sidral Mundet
## 2816         Extra Grande      Sabores Regular        Sidral Mundet
## 2817         Extra Grande      Sabores Regular        Sidral Mundet
## 2818         Extra Grande      Sabores Regular        Sidral Mundet
## 2819         Extra Grande      Sabores Regular               Sprite
## 2820         Extra Grande      Sabores Regular               Sprite
## 2821         Extra Grande      Sabores Regular               Sprite
## 2822         Extra Grande      Sabores Regular               Sprite
## 2823         Extra Grande      Sabores Regular               Sprite
## 2824         Extra Grande      Sabores Regular               Sprite
## 2825         Extra Grande      Sabores Regular               Sprite
## 2826         Extra Grande           Té Regular             Fuze Tea
## 2827         Extra Grande           Té Regular             Fuze Tea
## 2828         Extra Grande           Té Regular             Fuze Tea
## 2829         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2830         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2831         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2832         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2833         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2834         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2835         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2836         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2837         Extra Grande      Agua Saborizada            Ciel Mini
## 2838         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2839         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2840         Extra Grande     Bebidas de Fruta               Frutsi
## 2841         Extra Grande     Bebidas de Fruta                Pulpy
## 2842         Extra Grande     Bebidas de Fruta           Valle Frut
## 2843         Extra Grande     Bebidas de Fruta           Valle Frut
## 2844         Extra Grande     Bebidas de Fruta           Valle Frut
## 2845         Extra Grande     Bebidas de Fruta           Valle Frut
## 2846         Extra Grande  Bebidas Energeticas                 Burn
## 2847         Extra Grande  Bebidas Energeticas                 Burn
## 2848         Extra Grande  Bebidas Energeticas              Glacéau
## 2849         Extra Grande          Colas Light       Coca-Cola Life
## 2850         Extra Grande          Colas Light      Coca-Cola Light
## 2851         Extra Grande          Colas Light      Coca-Cola Light
## 2852         Extra Grande          Colas Light      Coca-Cola Light
## 2853         Extra Grande          Colas Light      Coca-Cola Light
## 2854         Extra Grande          Colas Light      Coca-Cola Light
## 2855         Extra Grande          Colas Light      Coca-Cola Light
## 2856         Extra Grande          Colas Light       Coca-Cola Zero
## 2857         Extra Grande          Colas Light       Coca-Cola Zero
## 2858         Extra Grande          Colas Light       Coca-Cola Zero
## 2859         Extra Grande          Colas Light       Coca-Cola Zero
## 2860         Extra Grande          Colas Light       Coca-Cola Zero
## 2861         Extra Grande        Colas Regular            Coca-Cola
## 2862         Extra Grande        Colas Regular            Coca-Cola
## 2863         Extra Grande        Colas Regular            Coca-Cola
## 2864         Extra Grande        Colas Regular            Coca-Cola
## 2865         Extra Grande        Colas Regular            Coca-Cola
## 2866         Extra Grande        Colas Regular            Coca-Cola
## 2867         Extra Grande        Colas Regular            Coca-Cola
## 2868         Extra Grande        Colas Regular            Coca-Cola
## 2869         Extra Grande        Colas Regular            Coca-Cola
## 2870         Extra Grande        Colas Regular            Coca-Cola
## 2871         Extra Grande        Colas Regular            Coca-Cola
## 2872         Extra Grande        Colas Regular            Coca-Cola
## 2873         Extra Grande        Colas Regular            Coca-Cola
## 2874         Extra Grande        Colas Regular            Coca-Cola
## 2875         Extra Grande        Colas Regular            Coca-Cola
## 2876         Extra Grande        Colas Regular            Coca-Cola
## 2877         Extra Grande     Isotónicos Light        Powerade Zero
## 2878         Extra Grande   Isotónicos Regular             Powerade
## 2879         Extra Grande   Isotónicos Regular             Powerade
## 2880         Extra Grande   Isotónicos Regular             Powerade
## 2881         Extra Grande     Jugos y Néctares            Del Valle
## 2882         Extra Grande     Jugos y Néctares            Del Valle
## 2883         Extra Grande     Jugos y Néctares            Del Valle
## 2884         Extra Grande     Jugos y Néctares            Del Valle
## 2885         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2886         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 2887         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 2888         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 2889         Extra Grande        Sabores Light  Sidral Mundet Light
## 2890         Extra Grande      Sabores Regular     Del Valle y Nada
## 2891         Extra Grande      Sabores Regular     Del Valle y Nada
## 2892         Extra Grande      Sabores Regular                Fanta
## 2893         Extra Grande      Sabores Regular                Fanta
## 2894         Extra Grande      Sabores Regular                Fanta
## 2895         Extra Grande      Sabores Regular                Fanta
## 2896         Extra Grande      Sabores Regular                Fanta
## 2897         Extra Grande      Sabores Regular                Fanta
## 2898         Extra Grande      Sabores Regular                Fanta
## 2899         Extra Grande      Sabores Regular                Fanta
## 2900         Extra Grande      Sabores Regular                Fanta
## 2901         Extra Grande      Sabores Regular               Fresca
## 2902         Extra Grande      Sabores Regular               Fresca
## 2903         Extra Grande      Sabores Regular               Fresca
## 2904         Extra Grande      Sabores Regular               Fresca
## 2905         Extra Grande      Sabores Regular               Fresca
## 2906         Extra Grande      Sabores Regular               Fresca
## 2907         Extra Grande      Sabores Regular               Fresca
## 2908         Extra Grande      Sabores Regular               Fresca
## 2909         Extra Grande      Sabores Regular               Fresca
## 2910         Extra Grande      Sabores Regular         Manzana Lift
## 2911         Extra Grande      Sabores Regular         Manzana Lift
## 2912         Extra Grande      Sabores Regular         Manzana Lift
## 2913         Extra Grande      Sabores Regular         Manzana Lift
## 2914         Extra Grande      Sabores Regular         Manzana Lift
## 2915         Extra Grande      Sabores Regular         Manzana Lift
## 2916         Extra Grande      Sabores Regular               Senzao
## 2917         Extra Grande      Sabores Regular        Sidral Mundet
## 2918         Extra Grande      Sabores Regular        Sidral Mundet
## 2919         Extra Grande      Sabores Regular        Sidral Mundet
## 2920         Extra Grande      Sabores Regular        Sidral Mundet
## 2921         Extra Grande      Sabores Regular        Sidral Mundet
## 2922         Extra Grande      Sabores Regular               Sprite
## 2923         Extra Grande      Sabores Regular               Sprite
## 2924         Extra Grande      Sabores Regular               Sprite
## 2925         Extra Grande      Sabores Regular               Sprite
## 2926         Extra Grande      Sabores Regular               Sprite
## 2927         Extra Grande      Sabores Regular               Sprite
## 2928         Extra Grande      Sabores Regular               Sprite
## 2929         Extra Grande      Sabores Regular               Sprite
## 2930         Extra Grande      Sabores Regular               Sprite
## 2931         Extra Grande           Té Regular             Fuze Tea
## 2932         Extra Grande           Té Regular             Fuze Tea
## 2933         Extra Grande           Té Regular             Fuze Tea
## 2934         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2935         Extra Grande         Agua Mineral    Ciel Mineralizada
## 2936         Extra Grande         Agua Mineral      Topo Chico A.M.
## 2937         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2938         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2939         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2940         Extra Grande      Agua Purificada Ciel Agua Purificada
## 2941         Extra Grande      Agua Saborizada          Ciel Exprim
## 2942         Extra Grande      Agua Saborizada          Ciel Exprim
## 2943         Extra Grande      Agua Saborizada          Ciel Exprim
## 2944         Extra Grande      Agua Saborizada            Ciel Mini
## 2945         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2946         Extra Grande      Agua Saborizada      Ciel Saborizada
## 2947         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2948         Extra Grande     Bebidas de Fruta       Delaware Punch
## 2949         Extra Grande     Bebidas de Fruta               Frutsi
## 2950         Extra Grande     Bebidas de Fruta                Pulpy
## 2951         Extra Grande     Bebidas de Fruta           Valle Frut
## 2952         Extra Grande     Bebidas de Fruta           Valle Frut
## 2953         Extra Grande     Bebidas de Fruta           Valle Frut
## 2954         Extra Grande     Bebidas de Fruta           Valle Frut
## 2955         Extra Grande     Bebidas de Fruta           Valle Frut
## 2956         Extra Grande  Bebidas Energeticas                 Burn
## 2957         Extra Grande  Bebidas Energeticas                 Burn
## 2958         Extra Grande  Bebidas Energeticas              Glacéau
## 2959         Extra Grande          Colas Light       Coca-Cola Life
## 2960         Extra Grande          Colas Light      Coca-Cola Light
## 2961         Extra Grande          Colas Light      Coca-Cola Light
## 2962         Extra Grande          Colas Light      Coca-Cola Light
## 2963         Extra Grande          Colas Light      Coca-Cola Light
## 2964         Extra Grande          Colas Light      Coca-Cola Light
## 2965         Extra Grande          Colas Light      Coca-Cola Light
## 2966         Extra Grande          Colas Light      Coca-Cola Light
## 2967         Extra Grande          Colas Light      Coca-Cola Light
## 2968         Extra Grande          Colas Light      Coca-Cola Light
## 2969         Extra Grande          Colas Light       Coca-Cola Zero
## 2970         Extra Grande          Colas Light       Coca-Cola Zero
## 2971         Extra Grande          Colas Light       Coca-Cola Zero
## 2972         Extra Grande          Colas Light       Coca-Cola Zero
## 2973         Extra Grande        Colas Regular            Coca-Cola
## 2974         Extra Grande        Colas Regular            Coca-Cola
## 2975         Extra Grande        Colas Regular            Coca-Cola
## 2976         Extra Grande        Colas Regular            Coca-Cola
## 2977         Extra Grande        Colas Regular            Coca-Cola
## 2978         Extra Grande        Colas Regular            Coca-Cola
## 2979         Extra Grande        Colas Regular            Coca-Cola
## 2980         Extra Grande        Colas Regular            Coca-Cola
## 2981         Extra Grande        Colas Regular            Coca-Cola
## 2982         Extra Grande        Colas Regular            Coca-Cola
## 2983         Extra Grande        Colas Regular            Coca-Cola
## 2984         Extra Grande        Colas Regular            Coca-Cola
## 2985         Extra Grande        Colas Regular            Coca-Cola
## 2986         Extra Grande        Colas Regular            Coca-Cola
## 2987         Extra Grande        Colas Regular            Coca-Cola
## 2988         Extra Grande        Colas Regular            Coca-Cola
## 2989         Extra Grande        Colas Regular            Coca-Cola
## 2990         Extra Grande     Isotónicos Light        Powerade Zero
## 2991         Extra Grande   Isotónicos Regular             Powerade
## 2992         Extra Grande   Isotónicos Regular             Powerade
## 2993         Extra Grande   Isotónicos Regular             Powerade
## 2994         Extra Grande     Jugos y Néctares            Del Valle
## 2995         Extra Grande     Jugos y Néctares            Del Valle
## 2996         Extra Grande     Jugos y Néctares            Del Valle
## 2997         Extra Grande     Jugos y Néctares            Del Valle
## 2998         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 2999         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3000         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3001         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 3002         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 3003         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3004         Extra Grande        Sabores Light          Sprite Zero
## 3005         Extra Grande      Sabores Regular     Del Valle y Nada
## 3006         Extra Grande      Sabores Regular                Fanta
## 3007         Extra Grande      Sabores Regular                Fanta
## 3008         Extra Grande      Sabores Regular                Fanta
## 3009         Extra Grande      Sabores Regular                Fanta
## 3010         Extra Grande      Sabores Regular                Fanta
## 3011         Extra Grande      Sabores Regular                Fanta
## 3012         Extra Grande      Sabores Regular                Fanta
## 3013         Extra Grande      Sabores Regular                Fanta
## 3014         Extra Grande      Sabores Regular               Fresca
## 3015         Extra Grande      Sabores Regular               Fresca
## 3016         Extra Grande      Sabores Regular               Fresca
## 3017         Extra Grande      Sabores Regular               Fresca
## 3018         Extra Grande      Sabores Regular               Fresca
## 3019         Extra Grande      Sabores Regular               Fresca
## 3020         Extra Grande      Sabores Regular               Fresca
## 3021         Extra Grande      Sabores Regular               Fresca
## 3022         Extra Grande      Sabores Regular               Fresca
## 3023         Extra Grande      Sabores Regular         Manzana Lift
## 3024         Extra Grande      Sabores Regular         Manzana Lift
## 3025         Extra Grande      Sabores Regular         Manzana Lift
## 3026         Extra Grande      Sabores Regular         Manzana Lift
## 3027         Extra Grande      Sabores Regular         Manzana Lift
## 3028         Extra Grande      Sabores Regular               Senzao
## 3029         Extra Grande      Sabores Regular        Sidral Mundet
## 3030         Extra Grande      Sabores Regular        Sidral Mundet
## 3031         Extra Grande      Sabores Regular        Sidral Mundet
## 3032         Extra Grande      Sabores Regular        Sidral Mundet
## 3033         Extra Grande      Sabores Regular        Sidral Mundet
## 3034         Extra Grande      Sabores Regular        Sidral Mundet
## 3035         Extra Grande      Sabores Regular        Sidral Mundet
## 3036         Extra Grande      Sabores Regular        Sidral Mundet
## 3037         Extra Grande      Sabores Regular               Sprite
## 3038         Extra Grande      Sabores Regular               Sprite
## 3039         Extra Grande      Sabores Regular               Sprite
## 3040         Extra Grande      Sabores Regular               Sprite
## 3041         Extra Grande      Sabores Regular               Sprite
## 3042         Extra Grande      Sabores Regular               Sprite
## 3043         Extra Grande      Sabores Regular               Sprite
## 3044         Extra Grande      Sabores Regular               Sprite
## 3045         Extra Grande             Té Light       Fuze Tea Light
## 3046         Extra Grande           Té Regular             Fuze Tea
## 3047         Extra Grande           Té Regular             Fuze Tea
## 3048         Extra Grande           Té Regular             Fuze Tea
## 3049         Extra Grande           Té Regular             Fuze Tea
## 3050         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3051         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3052         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3053         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3054         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3055         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3056         Extra Grande     Bebidas de Fruta               Frutsi
## 3057         Extra Grande     Bebidas de Fruta                Pulpy
## 3058         Extra Grande     Bebidas de Fruta           Valle Frut
## 3059         Extra Grande     Bebidas de Fruta           Valle Frut
## 3060         Extra Grande  Bebidas Energeticas                 Burn
## 3061         Extra Grande          Colas Light       Coca-Cola Life
## 3062         Extra Grande          Colas Light       Coca-Cola Life
## 3063         Extra Grande          Colas Light      Coca-Cola Light
## 3064         Extra Grande          Colas Light      Coca-Cola Light
## 3065         Extra Grande          Colas Light      Coca-Cola Light
## 3066         Extra Grande          Colas Light      Coca-Cola Light
## 3067         Extra Grande          Colas Light      Coca-Cola Light
## 3068         Extra Grande          Colas Light       Coca-Cola Zero
## 3069         Extra Grande        Colas Regular            Coca-Cola
## 3070         Extra Grande        Colas Regular            Coca-Cola
## 3071         Extra Grande        Colas Regular            Coca-Cola
## 3072         Extra Grande        Colas Regular            Coca-Cola
## 3073         Extra Grande        Colas Regular            Coca-Cola
## 3074         Extra Grande        Colas Regular            Coca-Cola
## 3075         Extra Grande        Colas Regular            Coca-Cola
## 3076         Extra Grande        Colas Regular            Coca-Cola
## 3077         Extra Grande        Colas Regular            Coca-Cola
## 3078         Extra Grande        Colas Regular            Coca-Cola
## 3079         Extra Grande        Colas Regular            Coca-Cola
## 3080         Extra Grande        Colas Regular            Coca-Cola
## 3081         Extra Grande        Colas Regular            Coca-Cola
## 3082         Extra Grande        Colas Regular            Coca-Cola
## 3083         Extra Grande        Colas Regular            Coca-Cola
## 3084         Extra Grande        Colas Regular            Coca-Cola
## 3085         Extra Grande   Isotónicos Regular             Powerade
## 3086         Extra Grande   Isotónicos Regular             Powerade
## 3087         Extra Grande     Jugos y Néctares            Del Valle
## 3088         Extra Grande     Jugos y Néctares            Del Valle
## 3089         Extra Grande     Jugos y Néctares            Del Valle
## 3090         Extra Grande     Jugos y Néctares            Del Valle
## 3091         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3092         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 3093         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3094         Extra Grande        Sabores Light          Sprite Zero
## 3095         Extra Grande      Sabores Regular     Del Valle y Nada
## 3096         Extra Grande      Sabores Regular                Fanta
## 3097         Extra Grande      Sabores Regular                Fanta
## 3098         Extra Grande      Sabores Regular                Fanta
## 3099         Extra Grande      Sabores Regular                Fanta
## 3100         Extra Grande      Sabores Regular                Fanta
## 3101         Extra Grande      Sabores Regular                Fanta
## 3102         Extra Grande      Sabores Regular                Fanta
## 3103         Extra Grande      Sabores Regular               Fresca
## 3104         Extra Grande      Sabores Regular               Fresca
## 3105         Extra Grande      Sabores Regular               Fresca
## 3106         Extra Grande      Sabores Regular               Fresca
## 3107         Extra Grande      Sabores Regular         Manzana Lift
## 3108         Extra Grande      Sabores Regular         Manzana Lift
## 3109         Extra Grande      Sabores Regular         Manzana Lift
## 3110         Extra Grande      Sabores Regular         Manzana Lift
## 3111         Extra Grande      Sabores Regular        Sidral Mundet
## 3112         Extra Grande      Sabores Regular        Sidral Mundet
## 3113         Extra Grande      Sabores Regular        Sidral Mundet
## 3114         Extra Grande      Sabores Regular        Sidral Mundet
## 3115         Extra Grande      Sabores Regular        Sidral Mundet
## 3116         Extra Grande      Sabores Regular               Sprite
## 3117         Extra Grande      Sabores Regular               Sprite
## 3118         Extra Grande      Sabores Regular               Sprite
## 3119         Extra Grande      Sabores Regular               Sprite
## 3120         Extra Grande      Sabores Regular               Sprite
## 3121         Extra Grande      Sabores Regular               Sprite
## 3122         Extra Grande      Sabores Regular               Sprite
## 3123         Extra Grande           Té Regular             Fuze Tea
## 3124         Extra Grande           Té Regular             Fuze Tea
## 3125         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3126         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3127         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3128         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3129         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3130         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3131         Extra Grande      Agua Saborizada          Ciel Exprim
## 3132         Extra Grande      Agua Saborizada            Ciel Mini
## 3133         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3134         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3135         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3136         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3137         Extra Grande     Bebidas de Fruta               Frutsi
## 3138         Extra Grande     Bebidas de Fruta                Pulpy
## 3139         Extra Grande     Bebidas de Fruta           Valle Frut
## 3140         Extra Grande     Bebidas de Fruta           Valle Frut
## 3141         Extra Grande     Bebidas de Fruta           Valle Frut
## 3142         Extra Grande     Bebidas de Fruta           Valle Frut
## 3143         Extra Grande     Bebidas de Fruta           Valle Frut
## 3144         Extra Grande          Colas Light       Coca-Cola Life
## 3145         Extra Grande          Colas Light       Coca-Cola Life
## 3146         Extra Grande          Colas Light      Coca-Cola Light
## 3147         Extra Grande          Colas Light      Coca-Cola Light
## 3148         Extra Grande          Colas Light      Coca-Cola Light
## 3149         Extra Grande          Colas Light      Coca-Cola Light
## 3150         Extra Grande          Colas Light      Coca-Cola Light
## 3151         Extra Grande          Colas Light      Coca-Cola Light
## 3152         Extra Grande          Colas Light       Coca-Cola Zero
## 3153         Extra Grande          Colas Light       Coca-Cola Zero
## 3154         Extra Grande          Colas Light       Coca-Cola Zero
## 3155         Extra Grande          Colas Light       Coca-Cola Zero
## 3156         Extra Grande        Colas Regular            Coca-Cola
## 3157         Extra Grande        Colas Regular            Coca-Cola
## 3158         Extra Grande        Colas Regular            Coca-Cola
## 3159         Extra Grande        Colas Regular            Coca-Cola
## 3160         Extra Grande        Colas Regular            Coca-Cola
## 3161         Extra Grande        Colas Regular            Coca-Cola
## 3162         Extra Grande        Colas Regular            Coca-Cola
## 3163         Extra Grande        Colas Regular            Coca-Cola
## 3164         Extra Grande        Colas Regular            Coca-Cola
## 3165         Extra Grande        Colas Regular            Coca-Cola
## 3166         Extra Grande        Colas Regular            Coca-Cola
## 3167         Extra Grande        Colas Regular            Coca-Cola
## 3168         Extra Grande        Colas Regular            Coca-Cola
## 3169         Extra Grande        Colas Regular            Coca-Cola
## 3170         Extra Grande        Colas Regular            Coca-Cola
## 3171         Extra Grande        Colas Regular            Coca-Cola
## 3172         Extra Grande        Colas Regular            Coca-Cola
## 3173         Extra Grande     Isotónicos Light        Powerade Zero
## 3174         Extra Grande   Isotónicos Regular             Powerade
## 3175         Extra Grande   Isotónicos Regular             Powerade
## 3176         Extra Grande   Isotónicos Regular             Powerade
## 3177         Extra Grande     Jugos y Néctares            Del Valle
## 3178         Extra Grande     Jugos y Néctares            Del Valle
## 3179         Extra Grande     Jugos y Néctares            Del Valle
## 3180         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3181         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3182         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3183         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3184         Extra Grande        Sabores Light          Sprite Zero
## 3185         Extra Grande      Sabores Regular     Del Valle y Nada
## 3186         Extra Grande      Sabores Regular                Fanta
## 3187         Extra Grande      Sabores Regular                Fanta
## 3188         Extra Grande      Sabores Regular                Fanta
## 3189         Extra Grande      Sabores Regular                Fanta
## 3190         Extra Grande      Sabores Regular                Fanta
## 3191         Extra Grande      Sabores Regular                Fanta
## 3192         Extra Grande      Sabores Regular                Fanta
## 3193         Extra Grande      Sabores Regular                Fanta
## 3194         Extra Grande      Sabores Regular                Fanta
## 3195         Extra Grande      Sabores Regular               Fresca
## 3196         Extra Grande      Sabores Regular               Fresca
## 3197         Extra Grande      Sabores Regular               Fresca
## 3198         Extra Grande      Sabores Regular               Fresca
## 3199         Extra Grande      Sabores Regular               Fresca
## 3200         Extra Grande      Sabores Regular               Fresca
## 3201         Extra Grande      Sabores Regular               Fresca
## 3202         Extra Grande      Sabores Regular         Manzana Lift
## 3203         Extra Grande      Sabores Regular         Manzana Lift
## 3204         Extra Grande      Sabores Regular         Manzana Lift
## 3205         Extra Grande      Sabores Regular         Manzana Lift
## 3206         Extra Grande      Sabores Regular         Manzana Lift
## 3207         Extra Grande      Sabores Regular         Manzana Lift
## 3208         Extra Grande      Sabores Regular               Senzao
## 3209         Extra Grande      Sabores Regular        Sidral Mundet
## 3210         Extra Grande      Sabores Regular        Sidral Mundet
## 3211         Extra Grande      Sabores Regular        Sidral Mundet
## 3212         Extra Grande      Sabores Regular        Sidral Mundet
## 3213         Extra Grande      Sabores Regular               Sprite
## 3214         Extra Grande      Sabores Regular               Sprite
## 3215         Extra Grande      Sabores Regular               Sprite
## 3216         Extra Grande      Sabores Regular               Sprite
## 3217         Extra Grande      Sabores Regular               Sprite
## 3218         Extra Grande      Sabores Regular               Sprite
## 3219         Extra Grande      Sabores Regular               Sprite
## 3220         Extra Grande      Sabores Regular               Sprite
## 3221         Extra Grande      Sabores Regular               Sprite
## 3222         Extra Grande           Té Regular             Fuze Tea
## 3223         Extra Grande           Té Regular             Fuze Tea
## 3224         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3225         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3226         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3227         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3228         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3229         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3230         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3231         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3232         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3233         Extra Grande      Agua Saborizada          Ciel Exprim
## 3234         Extra Grande      Agua Saborizada          Ciel Exprim
## 3235         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3236         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3237         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3238         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3239         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3240         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3241         Extra Grande     Bebidas de Fruta               Frutsi
## 3242         Extra Grande     Bebidas de Fruta                Pulpy
## 3243         Extra Grande     Bebidas de Fruta           Valle Frut
## 3244         Extra Grande     Bebidas de Fruta           Valle Frut
## 3245         Extra Grande     Bebidas de Fruta           Valle Frut
## 3246         Extra Grande     Bebidas de Fruta           Valle Frut
## 3247         Extra Grande  Bebidas Energeticas                 Burn
## 3248         Extra Grande  Bebidas Energeticas                 Burn
## 3249         Extra Grande  Bebidas Energeticas              Glacéau
## 3250         Extra Grande          Colas Light       Coca-Cola Life
## 3251         Extra Grande          Colas Light       Coca-Cola Life
## 3252         Extra Grande          Colas Light      Coca-Cola Light
## 3253         Extra Grande          Colas Light      Coca-Cola Light
## 3254         Extra Grande          Colas Light      Coca-Cola Light
## 3255         Extra Grande          Colas Light      Coca-Cola Light
## 3256         Extra Grande          Colas Light      Coca-Cola Light
## 3257         Extra Grande          Colas Light      Coca-Cola Light
## 3258         Extra Grande          Colas Light      Coca-Cola Light
## 3259         Extra Grande          Colas Light      Coca-Cola Light
## 3260         Extra Grande          Colas Light       Coca-Cola Zero
## 3261         Extra Grande          Colas Light       Coca-Cola Zero
## 3262         Extra Grande          Colas Light       Coca-Cola Zero
## 3263         Extra Grande        Colas Regular            Coca-Cola
## 3264         Extra Grande        Colas Regular            Coca-Cola
## 3265         Extra Grande        Colas Regular            Coca-Cola
## 3266         Extra Grande        Colas Regular            Coca-Cola
## 3267         Extra Grande        Colas Regular            Coca-Cola
## 3268         Extra Grande        Colas Regular            Coca-Cola
## 3269         Extra Grande        Colas Regular            Coca-Cola
## 3270         Extra Grande        Colas Regular            Coca-Cola
## 3271         Extra Grande        Colas Regular            Coca-Cola
## 3272         Extra Grande        Colas Regular            Coca-Cola
## 3273         Extra Grande        Colas Regular            Coca-Cola
## 3274         Extra Grande        Colas Regular            Coca-Cola
## 3275         Extra Grande        Colas Regular            Coca-Cola
## 3276         Extra Grande        Colas Regular            Coca-Cola
## 3277         Extra Grande        Colas Regular            Coca-Cola
## 3278         Extra Grande        Colas Regular            Coca-Cola
## 3279         Extra Grande        Colas Regular            Coca-Cola
## 3280         Extra Grande        Colas Regular            Coca-Cola
## 3281         Extra Grande   Isotónicos Regular             Powerade
## 3282         Extra Grande   Isotónicos Regular             Powerade
## 3283         Extra Grande   Isotónicos Regular             Powerade
## 3284         Extra Grande     Jugos y Néctares            Del Valle
## 3285         Extra Grande     Jugos y Néctares            Del Valle
## 3286         Extra Grande     Jugos y Néctares            Del Valle
## 3287         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3288         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3289         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3290         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 3291         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 3292         Extra Grande    Leche UHT Regular    Santa Clara Light
## 3293         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3294         Extra Grande        Sabores Light          Sprite Zero
## 3295         Extra Grande      Sabores Regular     Del Valle y Nada
## 3296         Extra Grande      Sabores Regular                Fanta
## 3297         Extra Grande      Sabores Regular                Fanta
## 3298         Extra Grande      Sabores Regular                Fanta
## 3299         Extra Grande      Sabores Regular                Fanta
## 3300         Extra Grande      Sabores Regular                Fanta
## 3301         Extra Grande      Sabores Regular                Fanta
## 3302         Extra Grande      Sabores Regular                Fanta
## 3303         Extra Grande      Sabores Regular                Fanta
## 3304         Extra Grande      Sabores Regular                Fanta
## 3305         Extra Grande      Sabores Regular                Fanta
## 3306         Extra Grande      Sabores Regular                Fanta
## 3307         Extra Grande      Sabores Regular                Fanta
## 3308         Extra Grande      Sabores Regular               Fresca
## 3309         Extra Grande      Sabores Regular               Fresca
## 3310         Extra Grande      Sabores Regular               Fresca
## 3311         Extra Grande      Sabores Regular               Fresca
## 3312         Extra Grande      Sabores Regular               Fresca
## 3313         Extra Grande      Sabores Regular               Fresca
## 3314         Extra Grande      Sabores Regular               Fresca
## 3315         Extra Grande      Sabores Regular               Fresca
## 3316         Extra Grande      Sabores Regular               Fresca
## 3317         Extra Grande      Sabores Regular         Manzana Lift
## 3318         Extra Grande      Sabores Regular         Manzana Lift
## 3319         Extra Grande      Sabores Regular         Manzana Lift
## 3320         Extra Grande      Sabores Regular         Manzana Lift
## 3321         Extra Grande      Sabores Regular         Manzana Lift
## 3322         Extra Grande      Sabores Regular         Manzana Lift
## 3323         Extra Grande      Sabores Regular         Manzana Lift
## 3324         Extra Grande      Sabores Regular               Senzao
## 3325         Extra Grande      Sabores Regular        Sidral Mundet
## 3326         Extra Grande      Sabores Regular        Sidral Mundet
## 3327         Extra Grande      Sabores Regular        Sidral Mundet
## 3328         Extra Grande      Sabores Regular        Sidral Mundet
## 3329         Extra Grande      Sabores Regular        Sidral Mundet
## 3330         Extra Grande      Sabores Regular        Sidral Mundet
## 3331         Extra Grande      Sabores Regular               Sprite
## 3332         Extra Grande      Sabores Regular               Sprite
## 3333         Extra Grande      Sabores Regular               Sprite
## 3334         Extra Grande      Sabores Regular               Sprite
## 3335         Extra Grande      Sabores Regular               Sprite
## 3336         Extra Grande      Sabores Regular               Sprite
## 3337         Extra Grande      Sabores Regular               Sprite
## 3338         Extra Grande      Sabores Regular               Sprite
## 3339         Extra Grande      Sabores Regular               Sprite
## 3340         Extra Grande      Sabores Regular               Sprite
## 3341         Extra Grande           Té Regular             Fuze Tea
## 3342         Extra Grande           Té Regular             Fuze Tea
## 3343         Extra Grande           Té Regular             Fuze Tea
## 3344         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3345         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3346         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3347         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3348         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3349         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3350         Extra Grande     Bebidas de Fruta               Frutsi
## 3351         Extra Grande     Bebidas de Fruta                Pulpy
## 3352         Extra Grande     Bebidas de Fruta           Valle Frut
## 3353         Extra Grande     Bebidas de Fruta           Valle Frut
## 3354         Extra Grande     Bebidas de Fruta           Valle Frut
## 3355         Extra Grande     Bebidas de Fruta           Valle Frut
## 3356         Extra Grande  Bebidas Energeticas                 Burn
## 3357         Extra Grande  Bebidas Energeticas                 Burn
## 3358         Extra Grande          Colas Light       Coca-Cola Life
## 3359         Extra Grande          Colas Light      Coca-Cola Light
## 3360         Extra Grande          Colas Light      Coca-Cola Light
## 3361         Extra Grande        Colas Regular            Coca-Cola
## 3362         Extra Grande        Colas Regular            Coca-Cola
## 3363         Extra Grande        Colas Regular            Coca-Cola
## 3364         Extra Grande        Colas Regular            Coca-Cola
## 3365         Extra Grande        Colas Regular            Coca-Cola
## 3366         Extra Grande        Colas Regular            Coca-Cola
## 3367         Extra Grande        Colas Regular            Coca-Cola
## 3368         Extra Grande        Colas Regular            Coca-Cola
## 3369         Extra Grande        Colas Regular            Coca-Cola
## 3370         Extra Grande        Colas Regular            Coca-Cola
## 3371         Extra Grande     Isotónicos Light        Powerade Zero
## 3372         Extra Grande   Isotónicos Regular             Powerade
## 3373         Extra Grande   Isotónicos Regular             Powerade
## 3374         Extra Grande   Isotónicos Regular             Powerade
## 3375         Extra Grande     Jugos y Néctares            Del Valle
## 3376         Extra Grande     Jugos y Néctares            Del Valle
## 3377         Extra Grande     Jugos y Néctares            Del Valle
## 3378         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3379         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3380         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3381         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3382         Extra Grande      Sabores Regular                Fanta
## 3383         Extra Grande      Sabores Regular                Fanta
## 3384         Extra Grande      Sabores Regular                Fanta
## 3385         Extra Grande      Sabores Regular                Fanta
## 3386         Extra Grande      Sabores Regular                Fanta
## 3387         Extra Grande      Sabores Regular                Fanta
## 3388         Extra Grande      Sabores Regular               Fresca
## 3389         Extra Grande      Sabores Regular               Fresca
## 3390         Extra Grande      Sabores Regular               Fresca
## 3391         Extra Grande      Sabores Regular               Fresca
## 3392         Extra Grande      Sabores Regular               Fresca
## 3393         Extra Grande      Sabores Regular         Manzana Lift
## 3394         Extra Grande      Sabores Regular         Manzana Lift
## 3395         Extra Grande      Sabores Regular         Manzana Lift
## 3396         Extra Grande      Sabores Regular         Manzana Lift
## 3397         Extra Grande      Sabores Regular        Sidral Mundet
## 3398         Extra Grande      Sabores Regular        Sidral Mundet
## 3399         Extra Grande      Sabores Regular        Sidral Mundet
## 3400         Extra Grande      Sabores Regular               Sprite
## 3401         Extra Grande      Sabores Regular               Sprite
## 3402         Extra Grande      Sabores Regular               Sprite
## 3403         Extra Grande      Sabores Regular               Sprite
## 3404         Extra Grande      Sabores Regular               Sprite
## 3405         Extra Grande      Sabores Regular               Sprite
## 3406         Extra Grande           Té Regular             Fuze Tea
## 3407         Extra Grande           Té Regular             Fuze Tea
## 3408         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3409         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3410         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3411         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3412         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3413         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3414         Extra Grande      Agua Saborizada          Ciel Exprim
## 3415         Extra Grande      Agua Saborizada          Ciel Exprim
## 3416         Extra Grande      Agua Saborizada            Ciel Mini
## 3417         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3418         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3419         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3420         Extra Grande     Bebidas de Fruta               Frutsi
## 3421         Extra Grande     Bebidas de Fruta                Pulpy
## 3422         Extra Grande     Bebidas de Fruta           Valle Frut
## 3423         Extra Grande     Bebidas de Fruta           Valle Frut
## 3424         Extra Grande     Bebidas de Fruta           Valle Frut
## 3425         Extra Grande     Bebidas de Fruta           Valle Frut
## 3426         Extra Grande     Bebidas de Fruta           Valle Frut
## 3427         Extra Grande     Bebidas de Fruta           Valle Frut
## 3428         Extra Grande  Bebidas Energeticas                 Burn
## 3429         Extra Grande  Bebidas Energeticas                 Burn
## 3430         Extra Grande  Bebidas Energeticas              Glacéau
## 3431         Extra Grande          Colas Light       Coca-Cola Life
## 3432         Extra Grande          Colas Light       Coca-Cola Life
## 3433         Extra Grande          Colas Light       Coca-Cola Life
## 3434         Extra Grande          Colas Light       Coca-Cola Life
## 3435         Extra Grande          Colas Light      Coca-Cola Light
## 3436         Extra Grande          Colas Light      Coca-Cola Light
## 3437         Extra Grande          Colas Light      Coca-Cola Light
## 3438         Extra Grande          Colas Light      Coca-Cola Light
## 3439         Extra Grande          Colas Light      Coca-Cola Light
## 3440         Extra Grande          Colas Light       Coca-Cola Zero
## 3441         Extra Grande          Colas Light       Coca-Cola Zero
## 3442         Extra Grande          Colas Light       Coca-Cola Zero
## 3443         Extra Grande          Colas Light       Coca-Cola Zero
## 3444         Extra Grande        Colas Regular            Coca-Cola
## 3445         Extra Grande        Colas Regular            Coca-Cola
## 3446         Extra Grande        Colas Regular            Coca-Cola
## 3447         Extra Grande        Colas Regular            Coca-Cola
## 3448         Extra Grande        Colas Regular            Coca-Cola
## 3449         Extra Grande        Colas Regular            Coca-Cola
## 3450         Extra Grande        Colas Regular            Coca-Cola
## 3451         Extra Grande        Colas Regular            Coca-Cola
## 3452         Extra Grande        Colas Regular            Coca-Cola
## 3453         Extra Grande        Colas Regular            Coca-Cola
## 3454         Extra Grande        Colas Regular            Coca-Cola
## 3455         Extra Grande        Colas Regular            Coca-Cola
## 3456         Extra Grande        Colas Regular            Coca-Cola
## 3457         Extra Grande        Colas Regular            Coca-Cola
## 3458         Extra Grande        Colas Regular            Coca-Cola
## 3459         Extra Grande        Colas Regular            Coca-Cola
## 3460         Extra Grande        Colas Regular            Coca-Cola
## 3461         Extra Grande        Colas Regular            Coca-Cola
## 3462         Extra Grande     Isotónicos Light        Powerade Zero
## 3463         Extra Grande   Isotónicos Regular             Powerade
## 3464         Extra Grande   Isotónicos Regular             Powerade
## 3465         Extra Grande   Isotónicos Regular             Powerade
## 3466         Extra Grande     Jugos y Néctares            Del Valle
## 3467         Extra Grande     Jugos y Néctares            Del Valle
## 3468         Extra Grande     Jugos y Néctares            Del Valle
## 3469         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3470         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3471         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3472         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 3473         Extra Grande Leche UHT Especializ Santa Clara Deslacto
## 3474         Extra Grande    Leche UHT Regular   Santa Clara Entera
## 3475         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3476         Extra Grande        Sabores Light          Sprite Zero
## 3477         Extra Grande      Sabores Regular     Del Valle y Nada
## 3478         Extra Grande      Sabores Regular     Del Valle y Nada
## 3479         Extra Grande      Sabores Regular     Del Valle y Nada
## 3480         Extra Grande      Sabores Regular                Fanta
## 3481         Extra Grande      Sabores Regular                Fanta
## 3482         Extra Grande      Sabores Regular                Fanta
## 3483         Extra Grande      Sabores Regular                Fanta
## 3484         Extra Grande      Sabores Regular                Fanta
## 3485         Extra Grande      Sabores Regular                Fanta
## 3486         Extra Grande      Sabores Regular                Fanta
## 3487         Extra Grande      Sabores Regular                Fanta
## 3488         Extra Grande      Sabores Regular                Fanta
## 3489         Extra Grande      Sabores Regular               Fresca
## 3490         Extra Grande      Sabores Regular               Fresca
## 3491         Extra Grande      Sabores Regular               Fresca
## 3492         Extra Grande      Sabores Regular               Fresca
## 3493         Extra Grande      Sabores Regular               Fresca
## 3494         Extra Grande      Sabores Regular               Fresca
## 3495         Extra Grande      Sabores Regular               Fresca
## 3496         Extra Grande      Sabores Regular               Fresca
## 3497         Extra Grande      Sabores Regular               Fresca
## 3498         Extra Grande      Sabores Regular         Manzana Lift
## 3499         Extra Grande      Sabores Regular         Manzana Lift
## 3500         Extra Grande      Sabores Regular         Manzana Lift
## 3501         Extra Grande      Sabores Regular         Manzana Lift
## 3502         Extra Grande      Sabores Regular         Manzana Lift
## 3503         Extra Grande      Sabores Regular         Manzana Lift
## 3504         Extra Grande      Sabores Regular         Manzana Lift
## 3505         Extra Grande      Sabores Regular               Senzao
## 3506         Extra Grande      Sabores Regular        Sidral Mundet
## 3507         Extra Grande      Sabores Regular        Sidral Mundet
## 3508         Extra Grande      Sabores Regular        Sidral Mundet
## 3509         Extra Grande      Sabores Regular        Sidral Mundet
## 3510         Extra Grande      Sabores Regular        Sidral Mundet
## 3511         Extra Grande      Sabores Regular               Sprite
## 3512         Extra Grande      Sabores Regular               Sprite
## 3513         Extra Grande      Sabores Regular               Sprite
## 3514         Extra Grande      Sabores Regular               Sprite
## 3515         Extra Grande      Sabores Regular               Sprite
## 3516         Extra Grande      Sabores Regular               Sprite
## 3517         Extra Grande      Sabores Regular               Sprite
## 3518         Extra Grande      Sabores Regular               Sprite
## 3519         Extra Grande      Sabores Regular               Sprite
## 3520         Extra Grande             Té Light       Fuze Tea Light
## 3521         Extra Grande           Té Regular             Fuze Tea
## 3522         Extra Grande           Té Regular             Fuze Tea
## 3523         Extra Grande           Té Regular             Fuze Tea
## 3524         Extra Grande           Té Regular             Fuze Tea
## 3525         Extra Grande           Té Regular             Fuze Tea
## 3526         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3527         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3528         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3529         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3530         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3531         Extra Grande      Agua Saborizada            Ciel Mini
## 3532         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3533         Extra Grande     Bebidas de Fruta               Frutsi
## 3534         Extra Grande     Bebidas de Fruta           Valle Frut
## 3535         Extra Grande     Bebidas de Fruta           Valle Frut
## 3536         Extra Grande     Bebidas de Fruta           Valle Frut
## 3537         Extra Grande          Colas Light       Coca-Cola Life
## 3538         Extra Grande          Colas Light      Coca-Cola Light
## 3539         Extra Grande          Colas Light      Coca-Cola Light
## 3540         Extra Grande          Colas Light      Coca-Cola Light
## 3541         Extra Grande          Colas Light      Coca-Cola Light
## 3542         Extra Grande          Colas Light      Coca-Cola Light
## 3543         Extra Grande          Colas Light      Coca-Cola Light
## 3544         Extra Grande          Colas Light      Coca-Cola Light
## 3545         Extra Grande          Colas Light       Coca-Cola Zero
## 3546         Extra Grande        Colas Regular            Coca-Cola
## 3547         Extra Grande        Colas Regular            Coca-Cola
## 3548         Extra Grande        Colas Regular            Coca-Cola
## 3549         Extra Grande        Colas Regular            Coca-Cola
## 3550         Extra Grande        Colas Regular            Coca-Cola
## 3551         Extra Grande        Colas Regular            Coca-Cola
## 3552         Extra Grande        Colas Regular            Coca-Cola
## 3553         Extra Grande        Colas Regular            Coca-Cola
## 3554         Extra Grande        Colas Regular            Coca-Cola
## 3555         Extra Grande        Colas Regular            Coca-Cola
## 3556         Extra Grande        Colas Regular            Coca-Cola
## 3557         Extra Grande        Colas Regular            Coca-Cola
## 3558         Extra Grande        Colas Regular            Coca-Cola
## 3559         Extra Grande        Colas Regular            Coca-Cola
## 3560         Extra Grande        Colas Regular            Coca-Cola
## 3561         Extra Grande     Isotónicos Light        Powerade Zero
## 3562         Extra Grande   Isotónicos Regular             Powerade
## 3563         Extra Grande   Isotónicos Regular             Powerade
## 3564         Extra Grande   Isotónicos Regular             Powerade
## 3565         Extra Grande     Jugos y Néctares            Del Valle
## 3566         Extra Grande     Jugos y Néctares            Del Valle
## 3567         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3568         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3569         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3570         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3571         Extra Grande      Sabores Regular     Del Valle y Nada
## 3572         Extra Grande      Sabores Regular     Del Valle y Nada
## 3573         Extra Grande      Sabores Regular                Fanta
## 3574         Extra Grande      Sabores Regular                Fanta
## 3575         Extra Grande      Sabores Regular                Fanta
## 3576         Extra Grande      Sabores Regular                Fanta
## 3577         Extra Grande      Sabores Regular                Fanta
## 3578         Extra Grande      Sabores Regular                Fanta
## 3579         Extra Grande      Sabores Regular               Fresca
## 3580         Extra Grande      Sabores Regular               Fresca
## 3581         Extra Grande      Sabores Regular               Fresca
## 3582         Extra Grande      Sabores Regular               Fresca
## 3583         Extra Grande      Sabores Regular               Fresca
## 3584         Extra Grande      Sabores Regular               Fresca
## 3585         Extra Grande      Sabores Regular               Fresca
## 3586         Extra Grande      Sabores Regular         Manzana Lift
## 3587         Extra Grande      Sabores Regular         Manzana Lift
## 3588         Extra Grande      Sabores Regular         Manzana Lift
## 3589         Extra Grande      Sabores Regular         Manzana Lift
## 3590         Extra Grande      Sabores Regular        Sidral Mundet
## 3591         Extra Grande      Sabores Regular        Sidral Mundet
## 3592         Extra Grande      Sabores Regular        Sidral Mundet
## 3593         Extra Grande      Sabores Regular        Sidral Mundet
## 3594         Extra Grande      Sabores Regular        Sidral Mundet
## 3595         Extra Grande      Sabores Regular               Sprite
## 3596         Extra Grande      Sabores Regular               Sprite
## 3597         Extra Grande      Sabores Regular               Sprite
## 3598         Extra Grande      Sabores Regular               Sprite
## 3599         Extra Grande      Sabores Regular               Sprite
## 3600         Extra Grande      Sabores Regular               Sprite
## 3601         Extra Grande           Té Regular             Fuze Tea
## 3602         Extra Grande           Té Regular             Fuze Tea
## 3603         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3604         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3605         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3606         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3607         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3608         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3609         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3610         Extra Grande      Agua Saborizada          Ciel Exprim
## 3611         Extra Grande      Agua Saborizada            Ciel Mini
## 3612         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3613         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3614         Extra Grande     Bebidas de Fruta               Frutsi
## 3615         Extra Grande     Bebidas de Fruta                Pulpy
## 3616         Extra Grande     Bebidas de Fruta           Valle Frut
## 3617         Extra Grande     Bebidas de Fruta           Valle Frut
## 3618         Extra Grande     Bebidas de Fruta           Valle Frut
## 3619         Extra Grande     Bebidas de Fruta           Valle Frut
## 3620         Extra Grande  Bebidas Energeticas                 Burn
## 3621         Extra Grande  Bebidas Energeticas                 Burn
## 3622         Extra Grande  Bebidas Energeticas              Glacéau
## 3623         Extra Grande          Colas Light       Coca-Cola Life
## 3624         Extra Grande          Colas Light       Coca-Cola Life
## 3625         Extra Grande          Colas Light      Coca-Cola Light
## 3626         Extra Grande          Colas Light      Coca-Cola Light
## 3627         Extra Grande          Colas Light      Coca-Cola Light
## 3628         Extra Grande          Colas Light      Coca-Cola Light
## 3629         Extra Grande          Colas Light      Coca-Cola Light
## 3630         Extra Grande          Colas Light       Coca-Cola Zero
## 3631         Extra Grande          Colas Light       Coca-Cola Zero
## 3632         Extra Grande          Colas Light       Coca-Cola Zero
## 3633         Extra Grande        Colas Regular            Coca-Cola
## 3634         Extra Grande        Colas Regular            Coca-Cola
## 3635         Extra Grande        Colas Regular            Coca-Cola
## 3636         Extra Grande        Colas Regular            Coca-Cola
## 3637         Extra Grande        Colas Regular            Coca-Cola
## 3638         Extra Grande        Colas Regular            Coca-Cola
## 3639         Extra Grande        Colas Regular            Coca-Cola
## 3640         Extra Grande        Colas Regular            Coca-Cola
## 3641         Extra Grande        Colas Regular            Coca-Cola
## 3642         Extra Grande        Colas Regular            Coca-Cola
## 3643         Extra Grande        Colas Regular            Coca-Cola
## 3644         Extra Grande        Colas Regular            Coca-Cola
## 3645         Extra Grande        Colas Regular            Coca-Cola
## 3646         Extra Grande        Colas Regular            Coca-Cola
## 3647         Extra Grande        Colas Regular            Coca-Cola
## 3648         Extra Grande        Colas Regular            Coca-Cola
## 3649         Extra Grande     Isotónicos Light        Powerade Zero
## 3650         Extra Grande   Isotónicos Regular             Powerade
## 3651         Extra Grande   Isotónicos Regular             Powerade
## 3652         Extra Grande   Isotónicos Regular             Powerade
## 3653         Extra Grande     Jugos y Néctares            Del Valle
## 3654         Extra Grande     Jugos y Néctares            Del Valle
## 3655         Extra Grande     Jugos y Néctares            Del Valle
## 3656         Extra Grande     Jugos y Néctares            Del Valle
## 3657         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3658         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3659         Extra Grande        Sabores Light          Sprite Zero
## 3660         Extra Grande      Sabores Regular     Del Valle y Nada
## 3661         Extra Grande      Sabores Regular     Del Valle y Nada
## 3662         Extra Grande      Sabores Regular                Fanta
## 3663         Extra Grande      Sabores Regular                Fanta
## 3664         Extra Grande      Sabores Regular                Fanta
## 3665         Extra Grande      Sabores Regular                Fanta
## 3666         Extra Grande      Sabores Regular                Fanta
## 3667         Extra Grande      Sabores Regular                Fanta
## 3668         Extra Grande      Sabores Regular                Fanta
## 3669         Extra Grande      Sabores Regular               Fresca
## 3670         Extra Grande      Sabores Regular               Fresca
## 3671         Extra Grande      Sabores Regular               Fresca
## 3672         Extra Grande      Sabores Regular               Fresca
## 3673         Extra Grande      Sabores Regular               Fresca
## 3674         Extra Grande      Sabores Regular               Fresca
## 3675         Extra Grande      Sabores Regular               Fresca
## 3676         Extra Grande      Sabores Regular         Manzana Lift
## 3677         Extra Grande      Sabores Regular         Manzana Lift
## 3678         Extra Grande      Sabores Regular         Manzana Lift
## 3679         Extra Grande      Sabores Regular         Manzana Lift
## 3680         Extra Grande      Sabores Regular         Manzana Lift
## 3681         Extra Grande      Sabores Regular               Senzao
## 3682         Extra Grande      Sabores Regular        Sidral Mundet
## 3683         Extra Grande      Sabores Regular        Sidral Mundet
## 3684         Extra Grande      Sabores Regular        Sidral Mundet
## 3685         Extra Grande      Sabores Regular        Sidral Mundet
## 3686         Extra Grande      Sabores Regular        Sidral Mundet
## 3687         Extra Grande      Sabores Regular               Sprite
## 3688         Extra Grande      Sabores Regular               Sprite
## 3689         Extra Grande      Sabores Regular               Sprite
## 3690         Extra Grande      Sabores Regular               Sprite
## 3691         Extra Grande      Sabores Regular               Sprite
## 3692         Extra Grande      Sabores Regular               Sprite
## 3693         Extra Grande      Sabores Regular               Sprite
## 3694         Extra Grande           Té Regular             Fuze Tea
## 3695         Extra Grande           Té Regular             Fuze Tea
## 3696         Extra Grande           Té Regular             Fuze Tea
## 3697         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3698         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3699         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3700         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3701         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3702         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3703         Extra Grande      Agua Saborizada          Ciel Exprim
## 3704         Extra Grande      Agua Saborizada            Ciel Mini
## 3705         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3706         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3707         Extra Grande     Bebidas de Fruta               Frutsi
## 3708         Extra Grande     Bebidas de Fruta                Pulpy
## 3709         Extra Grande     Bebidas de Fruta           Valle Frut
## 3710         Extra Grande     Bebidas de Fruta           Valle Frut
## 3711         Extra Grande     Bebidas de Fruta           Valle Frut
## 3712         Extra Grande     Bebidas de Fruta           Valle Frut
## 3713         Extra Grande     Bebidas de Fruta           Valle Frut
## 3714         Extra Grande  Bebidas Energeticas                 Burn
## 3715         Extra Grande  Bebidas Energeticas                 Burn
## 3716         Extra Grande  Bebidas Energeticas              Glacéau
## 3717         Extra Grande          Colas Light       Coca-Cola Life
## 3718         Extra Grande          Colas Light       Coca-Cola Life
## 3719         Extra Grande          Colas Light       Coca-Cola Life
## 3720         Extra Grande          Colas Light      Coca-Cola Light
## 3721         Extra Grande          Colas Light      Coca-Cola Light
## 3722         Extra Grande          Colas Light      Coca-Cola Light
## 3723         Extra Grande          Colas Light      Coca-Cola Light
## 3724         Extra Grande          Colas Light       Coca-Cola Zero
## 3725         Extra Grande          Colas Light       Coca-Cola Zero
## 3726         Extra Grande        Colas Regular            Coca-Cola
## 3727         Extra Grande        Colas Regular            Coca-Cola
## 3728         Extra Grande        Colas Regular            Coca-Cola
## 3729         Extra Grande        Colas Regular            Coca-Cola
## 3730         Extra Grande        Colas Regular            Coca-Cola
## 3731         Extra Grande        Colas Regular            Coca-Cola
## 3732         Extra Grande        Colas Regular            Coca-Cola
## 3733         Extra Grande        Colas Regular            Coca-Cola
## 3734         Extra Grande        Colas Regular            Coca-Cola
## 3735         Extra Grande        Colas Regular            Coca-Cola
## 3736         Extra Grande        Colas Regular            Coca-Cola
## 3737         Extra Grande        Colas Regular            Coca-Cola
## 3738         Extra Grande        Colas Regular            Coca-Cola
## 3739         Extra Grande        Colas Regular            Coca-Cola
## 3740         Extra Grande        Colas Regular            Coca-Cola
## 3741         Extra Grande        Colas Regular            Coca-Cola
## 3742         Extra Grande   Isotónicos Regular             Powerade
## 3743         Extra Grande   Isotónicos Regular             Powerade
## 3744         Extra Grande     Jugos y Néctares            Del Valle
## 3745         Extra Grande     Jugos y Néctares            Del Valle
## 3746         Extra Grande     Jugos y Néctares            Del Valle
## 3747         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3748         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3749         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3750         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3751         Extra Grande        Sabores Light  Sidral Mundet Light
## 3752         Extra Grande      Sabores Regular     Del Valle y Nada
## 3753         Extra Grande      Sabores Regular                Fanta
## 3754         Extra Grande      Sabores Regular                Fanta
## 3755         Extra Grande      Sabores Regular                Fanta
## 3756         Extra Grande      Sabores Regular                Fanta
## 3757         Extra Grande      Sabores Regular                Fanta
## 3758         Extra Grande      Sabores Regular                Fanta
## 3759         Extra Grande      Sabores Regular                Fanta
## 3760         Extra Grande      Sabores Regular                Fanta
## 3761         Extra Grande      Sabores Regular               Fresca
## 3762         Extra Grande      Sabores Regular               Fresca
## 3763         Extra Grande      Sabores Regular               Fresca
## 3764         Extra Grande      Sabores Regular               Fresca
## 3765         Extra Grande      Sabores Regular               Fresca
## 3766         Extra Grande      Sabores Regular               Fresca
## 3767         Extra Grande      Sabores Regular               Fresca
## 3768         Extra Grande      Sabores Regular               Fresca
## 3769         Extra Grande      Sabores Regular         Manzana Lift
## 3770         Extra Grande      Sabores Regular         Manzana Lift
## 3771         Extra Grande      Sabores Regular         Manzana Lift
## 3772         Extra Grande      Sabores Regular         Manzana Lift
## 3773         Extra Grande      Sabores Regular         Manzana Lift
## 3774         Extra Grande      Sabores Regular         Manzana Lift
## 3775         Extra Grande      Sabores Regular        Sidral Mundet
## 3776         Extra Grande      Sabores Regular        Sidral Mundet
## 3777         Extra Grande      Sabores Regular        Sidral Mundet
## 3778         Extra Grande      Sabores Regular        Sidral Mundet
## 3779         Extra Grande      Sabores Regular        Sidral Mundet
## 3780         Extra Grande      Sabores Regular        Sidral Mundet
## 3781         Extra Grande      Sabores Regular               Sprite
## 3782         Extra Grande      Sabores Regular               Sprite
## 3783         Extra Grande      Sabores Regular               Sprite
## 3784         Extra Grande      Sabores Regular               Sprite
## 3785         Extra Grande      Sabores Regular               Sprite
## 3786         Extra Grande      Sabores Regular               Sprite
## 3787         Extra Grande      Sabores Regular               Sprite
## 3788         Extra Grande      Sabores Regular               Sprite
## 3789         Extra Grande           Té Regular             Fuze Tea
## 3790         Extra Grande           Té Regular             Fuze Tea
## 3791         Extra Grande           Té Regular             Fuze Tea
## 3792         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3793         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3794         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3795         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3796         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3797         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3798         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3799         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3800         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3801         Extra Grande      Agua Saborizada          Ciel Exprim
## 3802         Extra Grande      Agua Saborizada            Ciel Mini
## 3803         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3804         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3805         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3806         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3807         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3808         Extra Grande     Bebidas de Fruta               Frutsi
## 3809         Extra Grande     Bebidas de Fruta                Pulpy
## 3810         Extra Grande     Bebidas de Fruta           Valle Frut
## 3811         Extra Grande     Bebidas de Fruta           Valle Frut
## 3812         Extra Grande     Bebidas de Fruta           Valle Frut
## 3813         Extra Grande     Bebidas de Fruta           Valle Frut
## 3814         Extra Grande     Bebidas de Fruta           Valle Frut
## 3815         Extra Grande  Bebidas Energeticas                 Burn
## 3816         Extra Grande  Bebidas Energeticas                 Burn
## 3817         Extra Grande  Bebidas Energeticas              Glacéau
## 3818         Extra Grande          Colas Light       Coca-Cola Life
## 3819         Extra Grande          Colas Light      Coca-Cola Light
## 3820         Extra Grande          Colas Light      Coca-Cola Light
## 3821         Extra Grande          Colas Light      Coca-Cola Light
## 3822         Extra Grande        Colas Regular            Coca-Cola
## 3823         Extra Grande        Colas Regular            Coca-Cola
## 3824         Extra Grande        Colas Regular            Coca-Cola
## 3825         Extra Grande        Colas Regular            Coca-Cola
## 3826         Extra Grande        Colas Regular            Coca-Cola
## 3827         Extra Grande        Colas Regular            Coca-Cola
## 3828         Extra Grande        Colas Regular            Coca-Cola
## 3829         Extra Grande        Colas Regular            Coca-Cola
## 3830         Extra Grande        Colas Regular            Coca-Cola
## 3831         Extra Grande        Colas Regular            Coca-Cola
## 3832         Extra Grande        Colas Regular            Coca-Cola
## 3833         Extra Grande        Colas Regular            Coca-Cola
## 3834         Extra Grande        Colas Regular            Coca-Cola
## 3835         Extra Grande        Colas Regular            Coca-Cola
## 3836         Extra Grande     Isotónicos Light        Powerade Zero
## 3837         Extra Grande   Isotónicos Regular             Powerade
## 3838         Extra Grande   Isotónicos Regular             Powerade
## 3839         Extra Grande   Isotónicos Regular             Powerade
## 3840         Extra Grande     Jugos y Néctares            Del Valle
## 3841         Extra Grande     Jugos y Néctares            Del Valle
## 3842         Extra Grande     Jugos y Néctares            Del Valle
## 3843         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3844         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3845         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3846         Extra Grande    Leche UHT Regular    Santa Clara Light
## 3847         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3848         Extra Grande        Sabores Light  Sidral Mundet Light
## 3849         Extra Grande      Sabores Regular     Del Valle y Nada
## 3850         Extra Grande      Sabores Regular                Fanta
## 3851         Extra Grande      Sabores Regular                Fanta
## 3852         Extra Grande      Sabores Regular                Fanta
## 3853         Extra Grande      Sabores Regular                Fanta
## 3854         Extra Grande      Sabores Regular                Fanta
## 3855         Extra Grande      Sabores Regular                Fanta
## 3856         Extra Grande      Sabores Regular                Fanta
## 3857         Extra Grande      Sabores Regular                Fanta
## 3858         Extra Grande      Sabores Regular                Fanta
## 3859         Extra Grande      Sabores Regular                Fanta
## 3860         Extra Grande      Sabores Regular               Fresca
## 3861         Extra Grande      Sabores Regular               Fresca
## 3862         Extra Grande      Sabores Regular               Fresca
## 3863         Extra Grande      Sabores Regular               Fresca
## 3864         Extra Grande      Sabores Regular               Fresca
## 3865         Extra Grande      Sabores Regular               Fresca
## 3866         Extra Grande      Sabores Regular               Fresca
## 3867         Extra Grande      Sabores Regular               Fresca
## 3868         Extra Grande      Sabores Regular               Fresca
## 3869         Extra Grande      Sabores Regular               Fresca
## 3870         Extra Grande      Sabores Regular         Manzana Lift
## 3871         Extra Grande      Sabores Regular         Manzana Lift
## 3872         Extra Grande      Sabores Regular         Manzana Lift
## 3873         Extra Grande      Sabores Regular         Manzana Lift
## 3874         Extra Grande      Sabores Regular         Manzana Lift
## 3875         Extra Grande      Sabores Regular         Manzana Lift
## 3876         Extra Grande      Sabores Regular         Manzana Lift
## 3877         Extra Grande      Sabores Regular        Sidral Mundet
## 3878         Extra Grande      Sabores Regular        Sidral Mundet
## 3879         Extra Grande      Sabores Regular        Sidral Mundet
## 3880         Extra Grande      Sabores Regular        Sidral Mundet
## 3881         Extra Grande      Sabores Regular        Sidral Mundet
## 3882         Extra Grande      Sabores Regular        Sidral Mundet
## 3883         Extra Grande      Sabores Regular               Sprite
## 3884         Extra Grande      Sabores Regular               Sprite
## 3885         Extra Grande      Sabores Regular               Sprite
## 3886         Extra Grande      Sabores Regular               Sprite
## 3887         Extra Grande      Sabores Regular               Sprite
## 3888         Extra Grande      Sabores Regular               Sprite
## 3889         Extra Grande      Sabores Regular               Sprite
## 3890         Extra Grande      Sabores Regular               Sprite
## 3891         Extra Grande      Sabores Regular               Sprite
## 3892         Extra Grande      Sabores Regular               Sprite
## 3893         Extra Grande           Té Regular             Fuze Tea
## 3894         Extra Grande           Té Regular             Fuze Tea
## 3895         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3896         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3897         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3898         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3899         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3900         Extra Grande      Agua Saborizada            Ciel Mini
## 3901         Extra Grande      Agua Saborizada      Ciel Saborizada
## 3902         Extra Grande     Bebidas de Fruta               Bebere
## 3903         Extra Grande     Bebidas de Fruta       Delaware Punch
## 3904         Extra Grande     Bebidas de Fruta               Frutsi
## 3905         Extra Grande     Bebidas de Fruta                Pulpy
## 3906         Extra Grande     Bebidas de Fruta           Valle Frut
## 3907         Extra Grande     Bebidas de Fruta           Valle Frut
## 3908         Extra Grande     Bebidas de Fruta           Valle Frut
## 3909         Extra Grande     Bebidas de Fruta           Valle Frut
## 3910         Extra Grande     Bebidas de Fruta           Valle Frut
## 3911         Extra Grande     Bebidas de Fruta           Valle Frut
## 3912         Extra Grande  Bebidas Energeticas                 Burn
## 3913         Extra Grande  Bebidas Energeticas                 Burn
## 3914         Extra Grande  Bebidas Energeticas              Glacéau
## 3915         Extra Grande          Colas Light       Coca-Cola Life
## 3916         Extra Grande          Colas Light       Coca-Cola Life
## 3917         Extra Grande          Colas Light      Coca-Cola Light
## 3918         Extra Grande          Colas Light      Coca-Cola Light
## 3919         Extra Grande          Colas Light      Coca-Cola Light
## 3920         Extra Grande          Colas Light      Coca-Cola Light
## 3921         Extra Grande          Colas Light      Coca-Cola Light
## 3922         Extra Grande          Colas Light       Coca-Cola Zero
## 3923         Extra Grande        Colas Regular            Coca-Cola
## 3924         Extra Grande        Colas Regular            Coca-Cola
## 3925         Extra Grande        Colas Regular            Coca-Cola
## 3926         Extra Grande        Colas Regular            Coca-Cola
## 3927         Extra Grande        Colas Regular            Coca-Cola
## 3928         Extra Grande        Colas Regular            Coca-Cola
## 3929         Extra Grande        Colas Regular            Coca-Cola
## 3930         Extra Grande        Colas Regular            Coca-Cola
## 3931         Extra Grande        Colas Regular            Coca-Cola
## 3932         Extra Grande        Colas Regular            Coca-Cola
## 3933         Extra Grande        Colas Regular            Coca-Cola
## 3934         Extra Grande        Colas Regular            Coca-Cola
## 3935         Extra Grande        Colas Regular            Coca-Cola
## 3936         Extra Grande        Colas Regular            Coca-Cola
## 3937         Extra Grande   Isotónicos Regular             Powerade
## 3938         Extra Grande   Isotónicos Regular             Powerade
## 3939         Extra Grande   Isotónicos Regular             Powerade
## 3940         Extra Grande     Jugos y Néctares            Del Valle
## 3941         Extra Grande     Jugos y Néctares            Del Valle
## 3942         Extra Grande     Jugos y Néctares            Del Valle
## 3943         Extra Grande     Jugos y Néctares            Del Valle
## 3944         Extra Grande     Jugos y Néctares            Del Valle
## 3945         Extra Grande     Jugos y Néctares Del Valle Nutridefen
## 3946         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3947         Extra Grande     Jugos y Néctares    Del Valle Reserva
## 3948         Extra Grande Leche UHT Saborizada Santa Clara Saboriza
## 3949         Extra Grande      Sabores Regular     Del Valle y Nada
## 3950         Extra Grande      Sabores Regular                Fanta
## 3951         Extra Grande      Sabores Regular                Fanta
## 3952         Extra Grande      Sabores Regular                Fanta
## 3953         Extra Grande      Sabores Regular                Fanta
## 3954         Extra Grande      Sabores Regular                Fanta
## 3955         Extra Grande      Sabores Regular                Fanta
## 3956         Extra Grande      Sabores Regular                Fanta
## 3957         Extra Grande      Sabores Regular                Fanta
## 3958         Extra Grande      Sabores Regular               Fresca
## 3959         Extra Grande      Sabores Regular               Fresca
## 3960         Extra Grande      Sabores Regular               Fresca
## 3961         Extra Grande      Sabores Regular               Fresca
## 3962         Extra Grande      Sabores Regular               Fresca
## 3963         Extra Grande      Sabores Regular               Fresca
## 3964         Extra Grande      Sabores Regular               Fresca
## 3965         Extra Grande      Sabores Regular               Fresca
## 3966         Extra Grande      Sabores Regular         Manzana Lift
## 3967         Extra Grande      Sabores Regular         Manzana Lift
## 3968         Extra Grande      Sabores Regular         Manzana Lift
## 3969         Extra Grande      Sabores Regular         Manzana Lift
## 3970         Extra Grande      Sabores Regular         Manzana Lift
## 3971         Extra Grande      Sabores Regular         Manzana Lift
## 3972         Extra Grande      Sabores Regular        Sidral Mundet
## 3973         Extra Grande      Sabores Regular        Sidral Mundet
## 3974         Extra Grande      Sabores Regular        Sidral Mundet
## 3975         Extra Grande      Sabores Regular        Sidral Mundet
## 3976         Extra Grande      Sabores Regular        Sidral Mundet
## 3977         Extra Grande      Sabores Regular        Sidral Mundet
## 3978         Extra Grande      Sabores Regular               Sprite
## 3979         Extra Grande      Sabores Regular               Sprite
## 3980         Extra Grande      Sabores Regular               Sprite
## 3981         Extra Grande      Sabores Regular               Sprite
## 3982         Extra Grande      Sabores Regular               Sprite
## 3983         Extra Grande      Sabores Regular               Sprite
## 3984         Extra Grande      Sabores Regular               Sprite
## 3985         Extra Grande      Sabores Regular               Sprite
## 3986         Extra Grande           Té Regular             Fuze Tea
## 3987         Extra Grande           Té Regular             Fuze Tea
## 3988         Extra Grande           Té Regular             Fuze Tea
## 3989         Extra Grande           Té Regular             Fuze Tea
## 3990         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3991         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3992         Extra Grande         Agua Mineral    Ciel Mineralizada
## 3993         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3994         Extra Grande         Agua Mineral      Topo Chico A.M.
## 3995         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3996         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3997         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3998         Extra Grande      Agua Purificada Ciel Agua Purificada
## 3999         Extra Grande      Agua Purificada Ciel Agua Purificada
##          Presentacion     Tamaño Retornable_NR Enero Febrero Marzo Abril Mayo
## 1           600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2        1 Ltro. N.R. Individual No Retornable    NA       2     8     4    4
## 3         1.5 Lts. NR Individual No Retornable    NA      NA     3     6    3
## 4           600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 5      300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 6        1 Ltro. N.R. Individual No Retornable    NA      NA     1    NA   NA
## 7      250 ml. NR PET Individual No Retornable     1      NA    NA    NA    0
## 8           600 ml NR Individual No Retornable    NA       1    NA     1   NA
## 9      250 ml. NR PET Individual No Retornable     3       3     4     4    4
## 10          400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 11       1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 12    100 ml NR Tetra Individual No Retornable     0      NA    NA    NA   NA
## 13      12 Oz. NR Pet Individual No Retornable    NA       2     1     2    1
## 14          2 Lts. NR   Familiar No Retornable     3       3     3     3    3
## 15        Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 16       1 Ltro. N.R.   Familiar No Retornable     4      NA    NA     2   NA
## 17         2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 18   500 ml NR Vidrio Individual No Retornable     6      NA    NA     4   NA
## 19       1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 20       1.250 Lts NR   Familiar No Retornable    13      13     8    21   29
## 21        1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 22       1.5 Lts. Ret   Familiar    Retornable    41      38    44    76   57
## 23      12 Oz. NR Pet Individual No Retornable    15      11     9    18   17
## 24         12 Oz. Ret Individual    Retornable     5       2     2     3    3
## 25          2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   NA
## 26         2 Lts. Ret   Familiar    Retornable    14       6     8    14    3
## 27        2.5 Lts. NR   Familiar No Retornable    14      21    28    32   14
## 28   2.5 Lts. Ret Pet   Familiar    Retornable    99      81    81   109   81
## 29   500 ml NR Vidrio Individual No Retornable    25       6    11    27   27
## 30         500 ml Ret Individual    Retornable    95      74    80   129  106
## 31           8 Oz. NR Individual No Retornable     3       2     1     3    4
## 32               Lata Individual No Retornable     2       3     2     3    5
## 33        Lata 16 Oz. Individual No Retornable     6      NA     4     2    4
## 34        Lata 235 ml Individual No Retornable     3       1    NA     1    1
## 35          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 36       1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 37      500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 38          600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 39       250 ml Tetra Individual No Retornable     2       0     0     0    0
## 40      413 ml NR VId Individual No Retornable     1       1     1     0    1
## 41     250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 42     300 ML. NR PET Individual No Retornable     0      NA    NA     0   NA
## 43      1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 44       200 ml Tetra Individual No Retornable    NA      NA     0     0    0
## 45          600 ml NR Individual No Retornable     1       1    NA     1    1
## 46        Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 47       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 48          2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 49     250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 50          400 ml NR Individual No Retornable    NA      NA     0    NA    1
## 51         500 ml Ret Individual    Retornable     1      NA     1     2    2
## 52          600 ml NR Individual No Retornable     2      NA     1     2    1
## 53               Lata Individual No Retornable     0      NA    NA     0   NA
## 54        Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 55       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 56     250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 57          400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 58         500 ml Ret Individual    Retornable     1      NA     1     2    2
## 59          600 ml NR Individual No Retornable    NA       1    NA    NA    2
## 60               Lata Individual No Retornable     0      NA    NA     0   NA
## 61        Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 62     250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 63          400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 64         500 ml Ret Individual    Retornable     1      NA     1     2    2
## 65          600 ml NR Individual No Retornable    NA       1    NA     1    1
## 66               Lata Individual No Retornable     0      NA    NA     0   NA
## 67       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 68          2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 69         500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 70          600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 71        Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 72       1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 73          2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 74     250 ml. NR PET Individual No Retornable     0      NA    NA     1    0
## 75          400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 76         500 ml Ret Individual    Retornable     1      NA     1     2    4
## 77          600 ml NR Individual No Retornable     1       2     3     2    4
## 78               Lata Individual No Retornable     0      NA    NA     0   NA
## 79        Lata 235 ml Individual No Retornable    NA      NA     0     0   NA
## 80      500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 81          600 ml NR Individual No Retornable     1       1     1     1    1
## 82          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 83        1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 84          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 85       1 Ltro. N.R. Individual No Retornable     2       8     4     8    4
## 86        1.5 Lts. NR Individual No Retornable     3      NA     3     6    6
## 87          5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 88          600 ml NR Individual No Retornable     5       3     3    NA    3
## 89          600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 90     300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 91      500 ml NR PET Individual No Retornable    NA      NA     1    NA   NA
## 92     250 ml. NR PET Individual No Retornable     2       3     3     3    4
## 93          400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 94       1 Ltro. N.R.   Familiar No Retornable     1      NA    NA     1    1
## 95      12 Oz. NR Pet Individual No Retornable     2      NA    NA     1    2
## 96          2 Lts. NR   Familiar No Retornable     3       3     6     3    3
## 97        Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 98        Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 99      500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 100  500 ml NR Vidrio Individual No Retornable     2       4    NA     2    2
## 101       Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 102      1 Ltro. N.R.   Familiar No Retornable     2       2     2     2   NA
## 103         2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 104        2 Lts. Ret   Familiar    Retornable    NA      NA     3    NA   NA
## 105         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 106  500 ml NR Vidrio Individual No Retornable     2       2     2     2    4
## 107          8 Oz. NR Individual No Retornable     1      NA    NA    NA   NA
## 108       Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 109  500 ml NR Vidrio Individual No Retornable    NA      NA    NA     2   NA
## 110       Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 111      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 112      1.250 Lts NR   Familiar No Retornable     3      NA     3     8   NA
## 113       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 114      1.5 Lts. Ret   Familiar    Retornable     6       3     6     6    3
## 115     12 Oz. NR Pet Individual No Retornable     3       3     5     3    8
## 116         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 117        2 Lts. Ret   Familiar    Retornable     3       3     3     6    3
## 118       2.5 Lts. NR   Familiar No Retornable     7      NA     4    NA   NA
## 119  2.5 Lts. Ret Pet   Familiar    Retornable    46      39    35    32   53
## 120     500 ml NR PET Individual No Retornable     2       4     4     6    4
## 121  500 ml NR Vidrio Individual No Retornable     8      13    11     6   13
## 122        500 ml Ret Individual    Retornable    49      46    46    38   46
## 123          8 Oz. NR Individual No Retornable     5       3     3     5    3
## 124              Lata Individual No Retornable     2       2     2     2    2
## 125       Lata 235 ml Individual No Retornable     3       3     4     2    2
## 126      1 Ltro. N.R. Individual No Retornable     1       1    NA     1    3
## 127     500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 128         600 ml NR Individual No Retornable     1       1    NA     2    4
## 129      250 ml Tetra Individual No Retornable     0       0     1     0    0
## 130     413 ml NR VId Individual No Retornable     3      NA     1     1    1
## 131     500 ml NR PET Individual No Retornable    NA       2    NA    NA   NA
## 132    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 133      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 134    300 ML. NR PET Individual No Retornable     1       0    NA     0   NA
## 135     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 136      200 ml Tetra Individual No Retornable    NA       1    NA     0    0
## 137         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 138         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 139       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 140      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 141         2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 142         400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 143        500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 144         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 145       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 146      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 147         2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 148         400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 149        500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 150         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 151       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 152       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 153         2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 154         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 155        500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 156         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 157         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 158      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 159         2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 160         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 161        500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 162         600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 163       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 164       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 165      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 166         2 Lts. NR   Familiar No Retornable     1      NA     1     1    3
## 167         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 168        500 ml Ret Individual    Retornable     1      NA    NA     1    1
## 169         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 170       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 171     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 172         600 ml NR Individual No Retornable     1      NA     1    NA    3
## 173         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 174         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 175      1 Ltro. N.R. Individual No Retornable     2      27     6    15   17
## 176       1.5 Lts. NR Individual No Retornable     6      41    10    16   38
## 177    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 178     350 ML NR PET Individual No Retornable    NA      NA    NA    NA    1
## 179         600 ml NR Individual No Retornable    NA       5     8     5   15
## 180       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 181    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 182       1.5 Lts. NR Individual No Retornable    NA      NA    NA     6   NA
## 183         600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 184         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 185    250 ml. NR PET Individual No Retornable     4       1     1     3    5
## 186         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 187      1 Ltro. N.R.   Familiar No Retornable     1       1    NA     3    4
## 188     12 Oz. NR Pet Individual No Retornable     2       2    NA     1    2
## 189         2 Lts. NR   Familiar No Retornable     6       6     6    17    6
## 190       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 191       Lata 450 ml Individual No Retornable    NA      NA    NA     1   NA
## 192     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 193      1 Ltro. N.R.   Familiar No Retornable    NA       6    NA    NA   NA
## 194        12 Oz. Ret Individual    Retornable    NA       2    NA    NA   NA
## 195  500 ml NR Vidrio Individual No Retornable     2       2    NA    NA   NA
## 196       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 197      1 Ltro. N.R.   Familiar No Retornable     6       6     8    11    8
## 198        12 Oz. Ret Individual    Retornable     2       3    NA    NA   NA
## 199         2 Lts. NR   Familiar No Retornable     3      11     3     6    6
## 200        2 Lts. Ret   Familiar    Retornable     8       8     6    11   11
## 201       2.5 Lts. NR   Familiar No Retornable     4       7     7     7   11
## 202         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 203  500 ml NR Vidrio Individual No Retornable    11      11    11    13   11
## 204          8 Oz. NR Individual No Retornable     2       3    NA     1    1
## 205              Lata Individual No Retornable    NA      NA    NA     2    3
## 206       Lata 235 ml Individual No Retornable    NA       1    NA     1   NA
## 207      1 Ltro. N.R.   Familiar No Retornable    NA       2     2    NA    2
## 208     12 Oz. NR Pet Individual No Retornable    NA      NA     0    NA   NA
## 209         2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 210  500 ml NR Vidrio Individual No Retornable    NA       4     2     2    2
## 211      1 Ltro. N.R.   Familiar No Retornable    17      11    15    11   13
## 212      1.250 Lts NR   Familiar No Retornable     8      11    29     8   13
## 213       1.5 Lts. NR   Familiar No Retornable    NA       3     3    13    6
## 214      1.5 Lts. Ret   Familiar    Retornable    16      16    19    10   22
## 215     12 Oz. NR Pet Individual No Retornable     9       8     8     6    9
## 216        12 Oz. Ret Individual    Retornable     2       3     3     3    3
## 217         2 Lts. NR   Familiar No Retornable     6       6     6    14   17
## 218        2 Lts. Ret   Familiar    Retornable     6       8     6     8    8
## 219       2.5 Lts. NR   Familiar No Retornable    18      28    25    39   28
## 220  2.5 Lts. Ret Pet   Familiar    Retornable    56      53    32    56   56
## 221         400 ml NR Individual No Retornable    NA      NA    NA     5    2
## 222     500 ml NR PET Individual No Retornable     4       2     4     6    4
## 223  500 ml NR Vidrio Individual No Retornable    21      21    15    27   25
## 224        500 ml Ret Individual    Retornable    57      53    49    87   57
## 225          8 Oz. NR Individual No Retornable     3       7     6     9    8
## 226              Lata Individual No Retornable     5      11    NA     3    6
## 227       Lata 16 Oz. Individual No Retornable     2      10    NA    NA   NA
## 228       Lata 235 ml Individual No Retornable     1       5     4     4    3
## 229      1 Ltro. N.R. Individual No Retornable     1       1     2     2    2
## 230     500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 231         600 ml NR Individual No Retornable     3      NA     2     4    4
## 232     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 233   125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 234      250 ml Tetra Individual No Retornable     2       0    NA     0    0
## 235    250 ML. NR VID Individual No Retornable     1      NA    NA    NA    0
## 236     413 ml NR VId Individual No Retornable     6       5     3     3    4
## 237    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 238      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 239     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 240     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    2
## 241      200 ml Tetra Individual No Retornable     0       0    NA     0    0
## 242         600 ml NR Individual No Retornable     1      NA    NA     1    1
## 243       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 244         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 245      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 246         2 Lts. NR   Familiar No Retornable     3       4     3     3    6
## 247       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    4
## 248         400 ml NR Individual No Retornable    NA       1     1    NA    2
## 249        500 ml Ret Individual    Retornable     2       1     2     2    1
## 250         600 ml NR Individual No Retornable    NA       1     3     1    2
## 251       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 252         2 Lts. NR   Familiar No Retornable    NA       1    NA     6    3
## 253       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    4
## 254         400 ml NR Individual No Retornable    NA       1    NA     1    1
## 255        500 ml Ret Individual    Retornable    NA       1    NA    NA    1
## 256         600 ml NR Individual No Retornable    NA       1     1     3    1
## 257       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 258         2 Lts. NR   Familiar No Retornable    NA       1    NA     3    3
## 259       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     2    4
## 260         400 ml NR Individual No Retornable    NA       1     1    NA    4
## 261        500 ml Ret Individual    Retornable    NA       1     2    NA    1
## 262         600 ml NR Individual No Retornable    NA       1     2     2    1
## 263         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 264         2 Lts. NR   Familiar No Retornable     3      11    NA     6    3
## 265       2.5 Lts. NR   Familiar No Retornable    NA       4    NA     4   NA
## 266        500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 267         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 268       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 269      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 270         2 Lts. NR   Familiar No Retornable     6      10     8     8   11
## 271       2.5 Lts. NR   Familiar No Retornable    NA       4    NA     2    7
## 272         400 ml NR Individual No Retornable     0       1     2     0    8
## 273        500 ml Ret Individual    Retornable     2       3    NA     2    3
## 274         600 ml NR Individual No Retornable     2       2     4     3    2
## 275       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 276     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 277         600 ml NR Individual No Retornable     4       6     1     2    4
## 278       Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 279         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 280         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 281       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 282         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 283      1 Ltro. N.R. Individual No Retornable     4      11    66     2    2
## 284       1.5 Lts. NR Individual No Retornable     6       3    67     3    3
## 285    300 ML. NR PET Individual No Retornable    NA      NA    NA     0    0
## 286         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 287         600 ml NR Individual No Retornable    NA      NA    51    NA   NA
## 288      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 289       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 290         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 291    300 ML. NR PET Individual No Retornable    NA       0     2    NA    3
## 292      1 Ltro. N.R. Individual No Retornable    NA      NA     2     2    3
## 293       1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 294         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 295    250 ml. NR PET Individual No Retornable     1      NA    NA     1   NA
## 296         600 ml NR Individual No Retornable     3      NA     1     1   NA
## 297    250 ml. NR PET Individual No Retornable     4       1     6     5    5
## 298         400 ml NR Individual No Retornable     0      NA     1    NA   NA
## 299      1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 300      1 Ltro. N.R. Individual No Retornable    NA      NA     2    NA   NA
## 301     12 Oz. NR Pet Individual No Retornable    NA       2     4     1    1
## 302         2 Lts. NR   Familiar No Retornable    NA       6     8     6   NA
## 303         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 304       Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 305       Lata 450 ml Individual No Retornable    NA      NA    NA     1    1
## 306     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 307      1 Ltro. N.R.   Familiar No Retornable     2       6    NA    NA   NA
## 308     237 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 309  500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 310      1 Ltro. N.R.   Familiar No Retornable    NA      27    NA    27   NA
## 311         2 Lts. NR   Familiar No Retornable    48      NA    NA    70   NA
## 312       2.5 Lts. NR   Familiar No Retornable    14      18     4    56   NA
## 313  500 ml NR Vidrio Individual No Retornable    13      25    32    25   NA
## 314          8 Oz. NR Individual No Retornable     2       3     2    16   NA
## 315              Lata Individual No Retornable     2      NA    NA    NA    2
## 316      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 317          8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 318      1 Ltro. N.R.   Familiar No Retornable    36      27    NA    27   NA
## 319      1.250 Lts NR   Familiar No Retornable    NA      45    NA    34   NA
## 320       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 321      1.5 Lts. Ret   Familiar    Retornable    44       3    22    98   86
## 322     12 Oz. NR Pet Individual No Retornable     3      17    12    18   21
## 323        12 Oz. Ret Individual    Retornable    23      NA    NA    NA   NA
## 324         2 Lts. NR   Familiar No Retornable     8      42    NA    42   NA
## 325        2 Lts. Ret   Familiar    Retornable    NA       6    NA     8    6
## 326       2.5 Lts. NR   Familiar No Retornable    63      46   187     4   56
## 327  2.5 Lts. Ret Pet   Familiar    Retornable   240     222   278    42   95
## 328     500 ml NR PET Individual No Retornable     6       4     4     6    6
## 329  500 ml NR Vidrio Individual No Retornable    11      85    -4    25   53
## 330        500 ml Ret Individual    Retornable   192     129   205   499   11
## 331          8 Oz. NR Individual No Retornable    13      NA    15    13   NA
## 332              Lata Individual No Retornable    NA      NA     3    NA   NA
## 333       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA    4
## 334       Lata 235 ml Individual No Retornable     1      15    NA    NA   NA
## 335         600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 336      1 Ltro. N.R. Individual No Retornable     1       2     1     5    1
## 337     500 ml NR PET Individual No Retornable    NA      NA     1     2    1
## 338         600 ml NR Individual No Retornable     1       3     3     5    2
## 339     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 340   125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 341      250 ml Tetra Individual No Retornable     2       2     0     1    1
## 342    250 ML. NR VID Individual No Retornable    NA      NA    NA    NA    0
## 343     413 ml NR VId Individual No Retornable     3       2    12     1    4
## 344     500 ml NR PET Individual No Retornable     3       1     1     4    2
## 345    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 346      1 Ltro. N.R.   Familiar No Retornable     4      NA     2     2    2
## 347    300 ML. NR PET Individual No Retornable     1      NA     1     1    1
## 348     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 349     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 350      200 ml Tetra Individual No Retornable    NA       1     1     0    0
## 351         600 ml NR Individual No Retornable     1       1     1     2    3
## 352       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 353         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 354       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 355      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 356        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 357         2 Lts. NR   Familiar No Retornable    NA      11    31     3    8
## 358        2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA    6
## 359    250 ml. NR PET Individual No Retornable     0       3    NA    NA   NA
## 360         400 ml NR Individual No Retornable    NA       2     1     1    2
## 361        500 ml Ret Individual    Retornable     2      NA     7     2    8
## 362         600 ml NR Individual No Retornable     1       1     3     1    1
## 363       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 364      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 365         2 Lts. NR   Familiar No Retornable    NA       6    NA     3    6
## 366    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 367         400 ml NR Individual No Retornable     1       1    NA     1    2
## 368        500 ml Ret Individual    Retornable     2      NA     3    NA    6
## 369         600 ml NR Individual No Retornable     1      NA     1     1    1
## 370       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 371      1 Ltro. N.R.   Familiar No Retornable     2       2    NA     2    2
## 372        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 373         2 Lts. NR   Familiar No Retornable    NA      NA    NA    11    3
## 374    250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 375         400 ml NR Individual No Retornable    NA       2    NA     1    2
## 376     500 ml NR PET Individual No Retornable    NA      NA    NA     2   NA
## 377        500 ml Ret Individual    Retornable    NA      NA     7    NA    2
## 378         600 ml NR Individual No Retornable    NA       1     1     1   NA
## 379         600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 380      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 381         2 Lts. NR   Familiar No Retornable     8      11    28    NA   NA
## 382         400 ml NR Individual No Retornable    NA       1     0    NA    2
## 383        500 ml Ret Individual    Retornable    NA      NA     2    NA    6
## 384         600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 385       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 386      1 Ltro. N.R.   Familiar No Retornable     4       2     4     2    2
## 387       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 388      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 389        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 390         2 Lts. NR   Familiar No Retornable    NA      11    42    11   NA
## 391        2 Lts. Ret   Familiar    Retornable    NA      NA     6     6    6
## 392    250 ml. NR PET Individual No Retornable     0       3    NA    NA   NA
## 393         400 ml NR Individual No Retornable    NA       1     1     1    0
## 394     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 395        500 ml Ret Individual    Retornable     2       2     7    NA    6
## 396         600 ml NR Individual No Retornable     3      NA     7     6    1
## 397       Lata 235 ml Individual No Retornable    NA       2    NA    NA   NA
## 398     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 399         600 ml NR Individual No Retornable     1       6    11     5   10
## 400       Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 401       Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 402         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 403       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 404         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 405      1 Ltro. N.R. Individual No Retornable     4       2     2     4    4
## 406       1.5 Lts. NR Individual No Retornable     6       3     3    10    3
## 407         600 ml NR Individual No Retornable     3      NA    NA    NA    3
## 408      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 409    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 410      1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 411    250 ml. NR PET Individual No Retornable     0      NA     0     1   NA
## 412     500 ml NR PET Individual No Retornable    NA      NA     2    NA   NA
## 413         600 ml NR Individual No Retornable     1       1     1    NA    1
## 414    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 415         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 416      1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2    1
## 417      1 Ltro. N.R. Individual No Retornable     2      NA     2    NA   NA
## 418     12 Oz. NR Pet Individual No Retornable     2       1     1     1    2
## 419         2 Lts. NR   Familiar No Retornable     6       6     3     6    6
## 420         600 ml NR Individual No Retornable    NA      NA     3    NA    1
## 421       Lata 235 ml Individual No Retornable    NA       0     1     1    1
## 422       Lata 237 ml Individual No Retornable     1      NA    NA    NA   NA
## 423       Lata 450 ml Individual No Retornable     1       1     1     1    1
## 424     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 425  500 ml NR Vidrio Individual No Retornable     2      NA     2     2    2
## 426      1 Ltro. N.R.   Familiar No Retornable    11      11    17    11    8
## 427         2 Lts. NR   Familiar No Retornable     3       6     8    11   11
## 428       2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 429         400 ml NR Individual No Retornable     2       2     3     3    3
## 430  500 ml NR Vidrio Individual No Retornable    17      13    15     8   15
## 431          8 Oz. NR Individual No Retornable     1       1     2     1    1
## 432      1 Ltro. N.R.   Familiar No Retornable     2      NA     4     2    2
## 433         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 434  500 ml NR Vidrio Individual No Retornable     2       2     4     4    2
## 435          8 Oz. NR Individual No Retornable     1       1     1    NA   NA
## 436      1 Ltro. N.R.   Familiar No Retornable    21      NA    NA    NA    2
## 437      1.250 Lts NR   Familiar No Retornable    16      34    45    45   32
## 438       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 439      1.5 Lts. Ret   Familiar    Retornable    22      13    29    44   10
## 440     12 Oz. NR Pet Individual No Retornable     9       6    15    12   14
## 441        12 Oz. Ret Individual    Retornable     8       5     5     8    5
## 442         2 Lts. NR   Familiar No Retornable     3       3     6    13    3
## 443        2 Lts. Ret   Familiar    Retornable     6       3     3     8    3
## 444       2.5 Lts. NR   Familiar No Retornable    49      60    49    63   60
## 445  2.5 Lts. Ret Pet   Familiar    Retornable   102      70   116   134  130
## 446     500 ml NR PET Individual No Retornable     4       6     4     8    6
## 447  500 ml NR Vidrio Individual No Retornable    27      23    42    40   32
## 448        500 ml Ret Individual    Retornable    72      55    70    80   91
## 449         710 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 450          8 Oz. NR Individual No Retornable    21      14    15    15   16
## 451              Lata Individual No Retornable     2       3     3     2    2
## 452       Lata 235 ml Individual No Retornable     3       3     3     3    2
## 453         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 454      1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 455     500 ml NR PET Individual No Retornable     1       1    NA     2   NA
## 456         600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 457      250 ml Tetra Individual No Retornable     1       0     0     0    0
## 458    250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 459     413 ml NR VId Individual No Retornable     2      NA     3     1    1
## 460    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 461      1 Ltro. N.R.   Familiar No Retornable     2      NA     2    NA    2
## 462    300 ML. NR PET Individual No Retornable     1      NA    NA    NA    0
## 463     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 464     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 465      200 ml Tetra Individual No Retornable     1       0     0     0    0
## 466         600 ml NR Individual No Retornable     3       1     1     2    3
## 467         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 468       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 469      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 470         2 Lts. NR   Familiar No Retornable     3      NA     1    NA   NA
## 471       2.5 Lts. NR   Familiar No Retornable    NA      NA     7     4    4
## 472    250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 473         400 ml NR Individual No Retornable     1      NA     0     0    1
## 474     500 ml NR PET Individual No Retornable    NA       2    NA    NA    2
## 475        500 ml Ret Individual    Retornable    NA       2    NA     3    2
## 476         600 ml NR Individual No Retornable     1       1    NA     2    1
## 477       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 478      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 479         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA    3
## 480       2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 481    250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 482         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 483     500 ml NR PET Individual No Retornable     2      NA    NA    NA   NA
## 484        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 485         600 ml NR Individual No Retornable     1      NA     1     1    1
## 486       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 487         2 Lts. NR   Familiar No Retornable    NA      NA     1     3    3
## 488       2.5 Lts. NR   Familiar No Retornable    NA       4     4     7   NA
## 489    250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 490         400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 491     500 ml NR PET Individual No Retornable    NA       2    NA    NA    2
## 492        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 493         600 ml NR Individual No Retornable     1       2     1     3    1
## 494     500 ml NR PET Individual No Retornable    NA       2    NA    NA   NA
## 495         600 ml NR Individual No Retornable     1      NA     2    NA   NA
## 496      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 497         2 Lts. NR   Familiar No Retornable    NA       3    NA     3   NA
## 498       2.5 Lts. NR   Familiar No Retornable    NA       4    11     7    4
## 499    250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 500         400 ml NR Individual No Retornable    NA       0    NA    NA    0
## 501         600 ml NR Individual No Retornable     1      NA     1    NA    1
## 502       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 503      1 Ltro. N.R.   Familiar No Retornable     4      NA    NA     2   NA
## 504      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 505         2 Lts. NR   Familiar No Retornable     3      NA     1    NA   NA
## 506       2.5 Lts. NR   Familiar No Retornable     4      NA    11     4    7
## 507    250 ml. NR PET Individual No Retornable     0      NA     0    NA   NA
## 508         400 ml NR Individual No Retornable    NA      NA    NA     0    1
## 509     500 ml NR PET Individual No Retornable    NA       2    NA     2   NA
## 510        500 ml Ret Individual    Retornable     2       2     2     1   NA
## 511         600 ml NR Individual No Retornable     2       2     1     3    3
## 512       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 513         600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 514         600 ml NR Individual No Retornable     3       1     6     3    1
## 515         2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 516         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 517         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 518      1 Ltro. N.R. Individual No Retornable     2       8   150     2    2
## 519       1.5 Lts. NR Individual No Retornable     3       6    10     3    3
## 520    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 521         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 522         600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 523         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 524    300 ML. NR PET Individual No Retornable    NA      NA    NA     0   NA
## 525      1 Ltro. N.R. Individual No Retornable    NA      NA     1    NA   NA
## 526    250 ml. NR PET Individual No Retornable     1       1     1     0    0
## 527         600 ml NR Individual No Retornable     2       1     3     1    1
## 528    250 ml. NR PET Individual No Retornable    NA      NA    NA     2    2
## 529         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 530      1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 531      1 Ltro. N.R. Individual No Retornable     2       2    NA    NA   NA
## 532     12 Oz. NR Pet Individual No Retornable    NA       1     1     1    1
## 533         2 Lts. NR   Familiar No Retornable    NA       8    11     8    6
## 534         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 535       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 536       Lata 450 ml Individual No Retornable    NA       1    NA    NA   NA
## 537     500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 538      1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 539     237 ml NR Vid Individual No Retornable    NA       1    NA    NA   NA
## 540  500 ml NR Vidrio Individual No Retornable     2       4    NA    NA    2
## 541      1 Ltro. N.R.   Familiar No Retornable    11      13    13    13   42
## 542        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 543         2 Lts. NR   Familiar No Retornable    14      17    11    11   11
## 544        2 Lts. Ret   Familiar    Retornable     8       8    14    14    8
## 545       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 546  500 ml NR Vidrio Individual No Retornable    15      17    17    21   17
## 547          8 Oz. NR Individual No Retornable     2       1     3     2    3
## 548              Lata Individual No Retornable     2       2     2    NA   NA
## 549      1 Ltro. N.R.   Familiar No Retornable     2       4     4     4    2
## 550         2 Lts. NR   Familiar No Retornable    11      14    14    17   14
## 551  500 ml NR Vidrio Individual No Retornable     2       4     6     4    4
## 552       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 553      1 Ltro. N.R.   Familiar No Retornable    13      17    17    19   51
## 554      1.250 Lts NR   Familiar No Retornable    16      16    11    11    8
## 555       1.5 Lts. NR   Familiar No Retornable    13      16    16    10    6
## 556      1.5 Lts. Ret   Familiar    Retornable    32      32    48    35  120
## 557     12 Oz. NR Pet Individual No Retornable     9       6    12    14   11
## 558        12 Oz. Ret Individual    Retornable     5      NA     5     5    5
## 559         2 Lts. NR   Familiar No Retornable    17      14    14    18   20
## 560        2 Lts. Ret   Familiar    Retornable    11      11    11     6   14
## 561       2.5 Lts. NR   Familiar No Retornable    25      60    74   116  190
## 562  2.5 Lts. Ret Pet   Familiar    Retornable   120     106   116   113  225
## 563  500 ml NR Vidrio Individual No Retornable    23      25    21    38   55
## 564        500 ml Ret Individual    Retornable    80      82    97    97  222
## 565       6.5 Oz. Ret Individual    Retornable    NA       1     1    NA   NA
## 566          8 Oz. NR Individual No Retornable     3       5     6     6   20
## 567              Lata Individual No Retornable     6       3     6     6   24
## 568       Lata 16 Oz. Individual No Retornable     4       6     4     8    2
## 569       Lata 235 ml Individual No Retornable     2       4     4     4    5
## 570      1 Ltro. N.R. Individual No Retornable    NA       1     1     1    2
## 571     500 ml NR PET Individual No Retornable    NA       1    NA    NA   NA
## 572         600 ml NR Individual No Retornable     1       1    NA     3    1
## 573      250 ml Tetra Individual No Retornable     1       0     0     0    0
## 574     413 ml NR VId Individual No Retornable    NA      NA     3    NA    1
## 575      1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2   NA
## 576    300 ML. NR PET Individual No Retornable     1       1     1    NA   NA
## 577     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 578      200 ml Tetra Individual No Retornable    NA       0     0     1    1
## 579         600 ml NR Individual No Retornable     1       1     1     2    1
## 580         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 581       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 582      1 Ltro. N.R.   Familiar No Retornable     2       2     2     2    4
## 583      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 584         2 Lts. NR   Familiar No Retornable    NA      NA     4     3    6
## 585       2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 586    250 ml. NR PET Individual No Retornable     1       1     1     0    0
## 587         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 588        500 ml Ret Individual    Retornable     1       2     1     1    1
## 589         600 ml NR Individual No Retornable     1       3     1     2    2
## 590       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 591      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 592         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 593    250 ml. NR PET Individual No Retornable     1       0     1     0    0
## 594         400 ml NR Individual No Retornable     0      NA    NA    NA    0
## 595        500 ml Ret Individual    Retornable     1      NA     1     1    1
## 596         600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 597       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 598      1 Ltro. N.R.   Familiar No Retornable    NA      NA     4    NA   NA
## 599         2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 600    250 ml. NR PET Individual No Retornable     1       1     1     0    0
## 601         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 602        500 ml Ret Individual    Retornable     1      NA     1     1    1
## 603         600 ml NR Individual No Retornable    NA      NA     2     1    1
## 604         600 ml NR Individual No Retornable     2       1    NA    NA    1
## 605      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 606         2 Lts. NR   Familiar No Retornable    NA       3    NA     3   NA
## 607       2.5 Lts. NR   Familiar No Retornable     4       7     7    NA   NA
## 608         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 609         600 ml NR Individual No Retornable     1      NA    NA    NA    3
## 610       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 611      1 Ltro. N.R.   Familiar No Retornable     8       6     8     8    4
## 612      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 613         2 Lts. NR   Familiar No Retornable     3      NA     4    NA    6
## 614       2.5 Lts. NR   Familiar No Retornable    NA       7     4     7   NA
## 615    250 ml. NR PET Individual No Retornable     1       1     1     0    0
## 616         400 ml NR Individual No Retornable     0       0     0     1    0
## 617        500 ml Ret Individual    Retornable     1      NA     1     1    1
## 618         600 ml NR Individual No Retornable     1       3     3     3    3
## 619       Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 620     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 621         600 ml NR Individual No Retornable     3      18     2     1   11
## 622       Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 623       Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 624         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 625         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 626      1 Ltro. N.R. Individual No Retornable     6      15     2     2    8
## 627       1.5 Lts. NR Individual No Retornable    10      13     3     6   10
## 628    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 629         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 630         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 631    300 ML. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 632     500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 633    250 ml. NR PET Individual No Retornable     7       6     5     7    4
## 634         400 ml NR Individual No Retornable     3       2     3     3    2
## 635      1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 636      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA    2
## 637     12 Oz. NR Pet Individual No Retornable    NA       1     1     2    1
## 638         2 Lts. NR   Familiar No Retornable     3       3    14    25   17
## 639         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 640       Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 641       Lata 450 ml Individual No Retornable    NA      NA     1     1    3
## 642     500 ml NR PET Individual No Retornable     3      NA     2     1    3
## 643      1 Ltro. N.R.   Familiar No Retornable     2       6     6    NA   NA
## 644     237 ml NR Vid Individual No Retornable     2      NA    NA     1   NA
## 645  500 ml NR Vidrio Individual No Retornable     4      NA     4     6    2
## 646      1 Ltro. N.R.   Familiar No Retornable    44      66    40    46   72
## 647        12 Oz. Ret Individual    Retornable    14      11    11    14   15
## 648         2 Lts. NR   Familiar No Retornable    99     116    68    76  113
## 649        2 Lts. Ret   Familiar    Retornable    82      76    82    82  104
## 650       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 651  500 ml NR Vidrio Individual No Retornable    42      40    40    68   46
## 652          8 Oz. NR Individual No Retornable    15      16    16    18   17
## 653              Lata Individual No Retornable     8       8     9     8    9
## 654         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 655      1 Ltro. N.R.   Familiar No Retornable     6       8     8     4    4
## 656         2 Lts. NR   Familiar No Retornable    34      14    37    31   42
## 657  500 ml NR Vidrio Individual No Retornable     6       2     6     4    4
## 658          8 Oz. NR Individual No Retornable    NA      NA     1    NA   NA
## 659      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    8
## 660      1.250 Lts NR   Familiar No Retornable    98     114    69    87   74
## 661       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 662      1.5 Lts. Ret   Familiar    Retornable     3       6     3     3    3
## 663     12 Oz. NR Pet Individual No Retornable     9       6     6    14    9
## 664        12 Oz. Ret Individual    Retornable    17      14    14    17   12
## 665         2 Lts. NR   Familiar No Retornable    82      96    54    93   85
## 666        2 Lts. Ret   Familiar    Retornable    34      31    23    56   34
## 667       2.5 Lts. NR   Familiar No Retornable   109     180   127   106  169
## 668  2.5 Lts. Ret Pet   Familiar    Retornable   120     116   144   173  183
## 669         400 ml NR Individual No Retornable     2      NA    NA    NA    2
## 670  500 ml NR Vidrio Individual No Retornable    44      38    61    89   87
## 671        500 ml Ret Individual    Retornable    82      78    72   123   53
## 672          8 Oz. NR Individual No Retornable    30      20    21    30   29
## 673              Lata Individual No Retornable     6       5     9     6    8
## 674       Lata 16 Oz. Individual No Retornable     2      NA     4     4    2
## 675       Lata 235 ml Individual No Retornable    NA       2     2     4    1
## 676         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 677      1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 678     500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 679     1 Ltro. Tetra   Familiar No Retornable    23      19    15    20   13
## 680      250 ml Tetra Individual No Retornable     0       0     0     0    0
## 681    250 ML. NR VID Individual No Retornable     4       3     5     2    3
## 682     413 ml NR VId Individual No Retornable     5      20    19    NA   37
## 683    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 684      1 Ltro. N.R.   Familiar No Retornable     4       4     4     2    4
## 685     1 Ltro. Tetra   Familiar No Retornable     2       2     2     2   NA
## 686     1 Ltro. Tetra   Familiar No Retornable     2       1     3     3    2
## 687     1 Ltro. Tetra   Familiar No Retornable     4       2     1     3    2
## 688     1 Ltro. Tetra   Familiar No Retornable     2       2     3     3    1
## 689      200 ml Tetra Individual No Retornable     0       1     0     0    0
## 690         600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 691         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 692         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 693         600 ml NR Individual No Retornable     8       5     9    14    7
## 694         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 695        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 696         2 Lts. NR   Familiar No Retornable    NA       3     8     6   20
## 697        2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 698         400 ml NR Individual No Retornable    NA      NA     0    NA    1
## 699        500 ml Ret Individual    Retornable     1       2    NA     1   NA
## 700         600 ml NR Individual No Retornable     1       4     1     3    4
## 701       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 702         2 Lts. NR   Familiar No Retornable    NA       3     8     8    3
## 703         400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 704        500 ml Ret Individual    Retornable     1      NA    NA     1   NA
## 705         600 ml NR Individual No Retornable    NA       4     3     2    2
## 706       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 707         2 Lts. NR   Familiar No Retornable    NA      NA     6     3   NA
## 708         400 ml NR Individual No Retornable     0       0    NA    NA   NA
## 709        500 ml Ret Individual    Retornable     1      NA    NA     1   NA
## 710         600 ml NR Individual No Retornable     1       5     3     3    1
## 711         600 ml NR Individual No Retornable     1       2     4     4    1
## 712         2 Lts. NR   Familiar No Retornable     8      14     6    17   20
## 713         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 714        500 ml Ret Individual    Retornable    NA      NA    NA    NA    2
## 715         600 ml NR Individual No Retornable     1       3     3     3    4
## 716       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 717        12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 718         2 Lts. NR   Familiar No Retornable     3      14    17    20   11
## 719    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 720         400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 721        500 ml Ret Individual    Retornable     1      NA     2     3   NA
## 722         600 ml NR Individual No Retornable     1       5     5     3    3
## 723       Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 724         600 ml NR Individual No Retornable     5      NA     1     3   NA
## 725     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 726         600 ml NR Individual No Retornable    16      13    13    22   14
## 727         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 728         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 729      1 Ltro. N.R. Individual No Retornable     6      55    11    NA   25
## 730       1.5 Lts. NR Individual No Retornable    NA      38     6    NA   48
## 731     355 Ml NR Pet Individual No Retornable     2      20    NA    NA    8
## 732         5 Lts. NR   Familiar No Retornable    35     106    28    25   49
## 733         600 ml NR Individual No Retornable     8      33    NA    13   18
## 734      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 735         473 ml NR Individual No Retornable     2      NA    NA     1   NA
## 736    250 ml. NR PET Individual No Retornable     3      NA     3     1   NA
## 737         600 ml NR Individual No Retornable     3       5    NA    NA   NA
## 738    250 ml. NR PET Individual No Retornable     8       8     2     2    4
## 739         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 740      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 741      1 Ltro. N.R. Individual No Retornable    NA      NA     4     2   NA
## 742     12 Oz. NR Pet Individual No Retornable    NA       2     2    NA   NA
## 743         2 Lts. NR   Familiar No Retornable    11      17     6    17    6
## 744         600 ml NR Individual No Retornable     3       3     3    NA    3
## 745       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 746       Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 747     500 ml NR PET Individual No Retornable     3      NA     3    NA    3
## 748      1 Ltro. N.R.   Familiar No Retornable     6      NA     6    NA   NA
## 749     237 ml NR Vid Individual No Retornable    NA      NA     1     1   NA
## 750  500 ml NR Vidrio Individual No Retornable     2       2     6     8    4
## 751         600 ml NR Individual No Retornable    NA      NA    NA     5   13
## 752              Lata Individual No Retornable    NA       2     2     2   NA
## 753      1 Ltro. N.R.   Familiar No Retornable    72      72    59   127   87
## 754         2 Lts. NR   Familiar No Retornable    37     155   189    NA  121
## 755  500 ml NR Vidrio Individual No Retornable    38      68    38    74   82
## 756         600 ml NR Individual No Retornable    NA       5     8     5   10
## 757          8 Oz. NR Individual No Retornable    15      11    21    NA   40
## 758              Lata Individual No Retornable     6       5    11     9   17
## 759         600 ml NR Individual No Retornable     8       5     5     8    5
## 760       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 761      1 Ltro. N.R.   Familiar No Retornable    11      15    13    15   17
## 762         2 Lts. NR   Familiar No Retornable    17      23    28    31   17
## 763  500 ml NR Vidrio Individual No Retornable     4       4     6     6    6
## 764         600 ml NR Individual No Retornable     5       8     5     8    8
## 765          8 Oz. NR Individual No Retornable     2       2     1     1    2
## 766              Lata Individual No Retornable    NA       2     2    NA    3
## 767      1 Ltro. N.R.   Familiar No Retornable    95     159    32   161  118
## 768      1.250 Lts NR   Familiar No Retornable    NA      NA    58    90   21
## 769       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 770      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA     3    3
## 771     12 Oz. NR Pet Individual No Retornable     3      NA    NA    NA   NA
## 772         2 Lts. NR   Familiar No Retornable   163     217   355   107  192
## 773       2.5 Lts. NR   Familiar No Retornable   123     240   335   183  243
## 774  2.5 Lts. Ret Pet   Familiar    Retornable    46     204   190   134  183
## 775         400 ml NR Individual No Retornable    27      24    41     8   71
## 776     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 777  500 ml NR Vidrio Individual No Retornable    68      76   135   120  116
## 778        500 ml Ret Individual    Retornable   154     139    95   224   87
## 779       6.5 Oz. Ret Individual    Retornable     2       1    NA    NA   NA
## 780         600 ml NR Individual No Retornable    28      10    20    20   20
## 781          8 Oz. NR Individual No Retornable    24      22    35    10   68
## 782              Lata Individual No Retornable    18      18    24    21   41
## 783       Lata 16 Oz. Individual No Retornable    10      NA    NA     4    6
## 784         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 785      1 Ltro. N.R. Individual No Retornable    NA      NA     1     2    2
## 786     500 ml NR PET Individual No Retornable     2       2     2    NA    3
## 787         600 ml NR Individual No Retornable    NA      NA     3     3   NA
## 788     1 Ltro. Tetra   Familiar No Retornable    20      13     9    13   30
## 789      250 ml Tetra Individual No Retornable     8      NA     4    NA    2
## 790    250 ML. NR VID Individual No Retornable     3       1     2    NA    2
## 791     413 ml NR VId Individual No Retornable    20      24    19    NA   NA
## 792       Lata 335 ml Individual No Retornable    NA       1    NA    NA   NA
## 793      1 Ltro. N.R.   Familiar No Retornable     4       4    NA     2    4
## 794    300 ML. NR PET Individual No Retornable     2       1     1     1    0
## 795     1 Ltro. Tetra   Familiar No Retornable    13      10    14     8   10
## 796     1 Ltro. Tetra   Familiar No Retornable     6       3    10    11    8
## 797     1 Ltro. Tetra   Familiar No Retornable    10       6     7    12   10
## 798     1 Ltro. Tetra   Familiar No Retornable    11       5     4     7    6
## 799      200 ml Tetra Individual No Retornable     2       2     3     1    6
## 800         600 ml NR Individual No Retornable     5       3    NA    NA    8
## 801         600 ml NR Individual No Retornable    NA       5     3     3    3
## 802         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 803         600 ml NR Individual No Retornable     5       5     5    10    3
## 804         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 805         2 Lts. NR   Familiar No Retornable    NA       6     6    14   NA
## 806    250 ml. NR PET Individual No Retornable     1       3     3     1    1
## 807         400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 808         600 ml NR Individual No Retornable     3      NA    NA     3    8
## 809         2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    3
## 810    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 811         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 812         600 ml NR Individual No Retornable     3      NA    NA     3    5
## 813         2 Lts. NR   Familiar No Retornable    NA      11    NA    11    3
## 814    250 ml. NR PET Individual No Retornable     3      NA     1     3    3
## 815         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 816         600 ml NR Individual No Retornable     3      NA    NA     3    5
## 817         600 ml NR Individual No Retornable    NA       3    NA     3    5
## 818         2 Lts. NR   Familiar No Retornable    NA       8     3    11    3
## 819    250 ml. NR PET Individual No Retornable     3      NA     1    NA    1
## 820         400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 821        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 822         600 ml NR Individual No Retornable     3       5    NA     5    5
## 823      1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 824         2 Lts. NR   Familiar No Retornable    NA      14     8    48    6
## 825       2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 826    250 ml. NR PET Individual No Retornable     5       1     3     4    4
## 827         400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 828        500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 829         600 ml NR Individual No Retornable     3      NA     3    NA   10
## 830         600 ml NR Individual No Retornable     5       6     3     7    4
## 831     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 832         600 ml NR Individual No Retornable    15      18    16     6   21
## 833       Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 834         600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 835         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 836      1 Ltro. N.R. Individual No Retornable    13      19    17    13   15
## 837       1.5 Lts. NR Individual No Retornable    10      19    19    19   29
## 838         600 ml NR Individual No Retornable     3       5     5     5    8
## 839      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 840    300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 841    250 ml. NR PET Individual No Retornable     0       0     1     0   NA
## 842         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 843    250 ml. NR PET Individual No Retornable     1      NA    NA     0    0
## 844      1 Ltro. N.R.   Familiar No Retornable    NA       1    NA    NA    5
## 845      1 Ltro. N.R. Individual No Retornable    NA      NA     2     2    4
## 846     12 Oz. NR Pet Individual No Retornable    NA       2     2     1    1
## 847         2 Lts. NR   Familiar No Retornable     6       3     6     6   11
## 848         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 849       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 850       Lata 450 ml Individual No Retornable    NA       3    NA     1    1
## 851        12 Oz. Ret Individual    Retornable    NA      NA     2    NA    2
## 852     237 ml NR Vid Individual No Retornable    NA      NA    NA    NA   NA
## 853  500 ml NR Vidrio Individual No Retornable     2      NA     2    NA   NA
## 854       Lata 235 ml Individual No Retornable     1      NA    NA    NA   NA
## 855      1 Ltro. N.R.   Familiar No Retornable    23      25    21    21   27
## 856        12 Oz. Ret Individual    Retornable    15      17    18    15   23
## 857         2 Lts. NR   Familiar No Retornable    28      20    14    20   17
## 858        2 Lts. Ret   Familiar    Retornable    23      20    25    23   34
## 859         400 ml NR Individual No Retornable     7       8     5     7   10
## 860  500 ml NR Vidrio Individual No Retornable    19      19    23    23   23
## 861          8 Oz. NR Individual No Retornable     3       5     2     7    4
## 862              Lata Individual No Retornable     5       6     6     8    8
## 863      1 Ltro. N.R.   Familiar No Retornable     6      13     8     6    8
## 864         2 Lts. NR   Familiar No Retornable    NA      NA     3     6    3
## 865         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 866  500 ml NR Vidrio Individual No Retornable     4       4     6     8    8
## 867          8 Oz. NR Individual No Retornable     1       2    NA     1    2
## 868      1 Ltro. N.R.   Familiar No Retornable     4       2     2    NA   NA
## 869      1.250 Lts NR   Familiar No Retornable    45      61    40    53   55
## 870       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 871      1.5 Lts. Ret   Familiar    Retornable     3       3     3     6    3
## 872     12 Oz. NR Pet Individual No Retornable    14      14    11    11   14
## 873        12 Oz. Ret Individual    Retornable    11      12    11    11    9
## 874         2 Lts. NR   Familiar No Retornable    NA       6    NA     6   NA
## 875        2 Lts. Ret   Familiar    Retornable    23      14    11     8    8
## 876       2.5 Lts. NR   Familiar No Retornable    63      56    63    67   63
## 877  2.5 Lts. Ret Pet   Familiar    Retornable   190     208   116   201  240
## 878         400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 879  500 ml NR Vidrio Individual No Retornable    36      32    38    34   38
## 880        500 ml Ret Individual    Retornable    80      80    59    85   87
## 881          8 Oz. NR Individual No Retornable    12      13     6    15   12
## 882              Lata Individual No Retornable     8       6     9     9   11
## 883       Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 884       Lata 235 ml Individual No Retornable    NA       2     1    NA   NA
## 885         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 886      1 Ltro. N.R. Individual No Retornable    NA       1     1     1    7
## 887     500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 888         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 889     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 890      250 ml Tetra Individual No Retornable     1       0     0     0    0
## 891    250 ML. NR VID Individual No Retornable    NA       0    NA    NA    1
## 892     413 ml NR VId Individual No Retornable     3       3     2     3    3
## 893    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 894      1 Ltro. N.R.   Familiar No Retornable     2       2     4     2    4
## 895     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 896     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 897      200 ml Tetra Individual No Retornable     0       0     0     0    1
## 898         600 ml NR Individual No Retornable     3       4     4     4    4
## 899         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 900       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 901      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 902         2 Lts. NR   Familiar No Retornable     3       3     1     4    4
## 903    250 ml. NR PET Individual No Retornable     0       0     1     0   NA
## 904         400 ml NR Individual No Retornable    NA       0     0    NA   NA
## 905        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 906         600 ml NR Individual No Retornable     1       1     1     1    1
## 907       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 908         2 Lts. NR   Familiar No Retornable     3      NA     1     4    9
## 909    250 ml. NR PET Individual No Retornable     0       0     0     0   NA
## 910         400 ml NR Individual No Retornable     0      NA    NA     0   NA
## 911        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 912         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 913       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 914         2 Lts. NR   Familiar No Retornable    NA      NA     1     1    1
## 915    250 ml. NR PET Individual No Retornable     0       0     1     0   NA
## 916         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 917        500 ml Ret Individual    Retornable    NA       2    NA     1    2
## 918         600 ml NR Individual No Retornable    NA       2     1     1    1
## 919         600 ml NR Individual No Retornable     1       4     1     1    3
## 920         2 Lts. NR   Familiar No Retornable    NA       6     8     3    6
## 921    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 922        500 ml Ret Individual    Retornable     2      NA     2    NA    2
## 923       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 924      1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 925         2 Lts. NR   Familiar No Retornable     6       8     4     9   18
## 926    250 ml. NR PET Individual No Retornable     0       0     1     0   NA
## 927         400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 928        500 ml Ret Individual    Retornable    NA      NA    NA     1   NA
## 929         600 ml NR Individual No Retornable     4       4     4     3    4
## 930       Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 931     500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 932         600 ml NR Individual No Retornable    NA      NA    NA     1   10
## 933       Lata 453 ml Individual No Retornable    NA       0    NA    NA   NA
## 934         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 935       1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 936         600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 937      1 Ltro. N.R. Individual No Retornable     2       2     2     6    2
## 938       1.5 Lts. NR Individual No Retornable     3       3     3     3    3
## 939         5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 940      1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 941    300 ML. NR PET Individual No Retornable    NA      NA     1     1    1
## 942    250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 943         600 ml NR Individual No Retornable     1      NA     1     4    1
## 944    250 ml. NR PET Individual No Retornable     1      NA     2     1   NA
## 945         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 946      1 Ltro. N.R.   Familiar No Retornable     1       1     1    NA    1
## 947      1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    4
## 948     12 Oz. NR Pet Individual No Retornable    NA       2     1     1    1
## 949         600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 950      1 Ltro. N.R.   Familiar No Retornable     2       2     2    NA   NA
## 951  500 ml NR Vidrio Individual No Retornable     4       4     2     2   NA
## 952      1 Ltro. N.R.   Familiar No Retornable    25      30    27    27   36
## 953        12 Oz. Ret Individual    Retornable     8       6     5     3    6
## 954         2 Lts. NR   Familiar No Retornable    39      28    31    37   39
## 955        2 Lts. Ret   Familiar    Retornable    28      28    17    25   28
## 956  500 ml NR Vidrio Individual No Retornable    25      25    11    19   21
## 957         600 ml NR Individual No Retornable     5      10    10    10    8
## 958          8 Oz. NR Individual No Retornable     4       5     4     4    6
## 959              Lata Individual No Retornable     5       9     5     5    8
## 960       Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 961      1 Ltro. N.R.   Familiar No Retornable     4       8     6     8    8
## 962         2 Lts. NR   Familiar No Retornable     6       6    14    11    8
## 963  500 ml NR Vidrio Individual No Retornable    NA      NA     2     4    4
## 964         600 ml NR Individual No Retornable     5       3     3     5    5
## 965          8 Oz. NR Individual No Retornable     1       1     3     1    3
## 966      1 Ltro. N.R.   Familiar No Retornable    34      34    34    42   42
## 967      1.250 Lts NR   Familiar No Retornable     3      NA    NA    NA   NA
## 968       1.5 Lts. NR   Familiar No Retornable    25      22    22    22   29
## 969      1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 970     12 Oz. NR Pet Individual No Retornable     6       8    11     8   11
## 971        12 Oz. Ret Individual    Retornable    11       5     3     6    2
## 972         2 Lts. NR   Familiar No Retornable    NA      NA    NA    11   NA
## 973        2 Lts. Ret   Familiar    Retornable     3       3     3    NA    3
## 974       2.5 Lts. NR   Familiar No Retornable    49      88    77    95  130
## 975  2.5 Lts. Ret Pet   Familiar    Retornable    49      70    67    53   39
## 976         400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 977     500 ml NR PET Individual No Retornable    13      13    11    15   17
## 978  500 ml NR Vidrio Individual No Retornable    27      44    59    19   36
## 979        500 ml Ret Individual    Retornable    36      42    38    55   30
## 980       6.5 Oz. Ret Individual    Retornable     2       2     2     2    2
## 981         710 ml NR Individual No Retornable    15      12     9    12   12
## 982          8 Oz. NR Individual No Retornable    15      17    17    23   22
## 983              Lata Individual No Retornable     3       6     3     9    3
## 984       Lata 16 Oz. Individual No Retornable     4       6     2     6    2
## 985       Lata 235 ml Individual No Retornable     3       4     2     3    2
## 986         600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 987      1 Ltro. N.R. Individual No Retornable     1       1     1     1    2
## 988     500 ml NR PET Individual No Retornable    NA       1    NA     1   NA
## 989         600 ml NR Individual No Retornable     4      NA     3     1    2
## 990     1 Ltro. Tetra   Familiar No Retornable     4       4     5     2    4
## 991   125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 992      250 ml Tetra Individual No Retornable     1       0     2     0    0
## 993    250 ML. NR VID Individual No Retornable     2       3     2     1    2
## 994     413 ml NR VId Individual No Retornable     6       1     4     3    8
## 995       Lata 335 ml Individual No Retornable    NA      NA    NA    NA   NA
## 996    250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 997      1 Ltro. N.R.   Familiar No Retornable    NA       4     4     4    2
## 998    300 ML. NR PET Individual No Retornable     2      NA     1     1    1
## 999     1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1000    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1001    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1002     200 ml Tetra Individual No Retornable     1       1     1     0    1
## 1003        600 ml NR Individual No Retornable     4       1     3     2    4
## 1004      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1005        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1006      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1007     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2   NA
## 1008        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 1009        400 ml NR Individual No Retornable    NA      NA     0     0    1
## 1010    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1011       500 ml Ret Individual    Retornable    NA      NA    NA     2   NA
## 1012        600 ml NR Individual No Retornable     1       2     2     1    3
## 1013      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1014     1 Ltro. N.R.   Familiar No Retornable     2      NA     2    NA   NA
## 1015      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1016     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1017        2 Lts. NR   Familiar No Retornable    NA       3     3     3    6
## 1018        400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 1019       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1020        600 ml NR Individual No Retornable     1       1    NA     1    3
## 1021      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1022     1 Ltro. N.R.   Familiar No Retornable     4      NA    NA     2    2
## 1023        2 Lts. NR   Familiar No Retornable    NA       3     3     3    3
## 1024    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1025       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 1026        600 ml NR Individual No Retornable     3      NA     2     1    1
## 1027        600 ml NR Individual No Retornable     3       1     3     1   NA
## 1028        2 Lts. NR   Familiar No Retornable     6       6    14    14   14
## 1029        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 1030       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1031        600 ml NR Individual No Retornable     3       1     5     1    3
## 1032      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1033     1 Ltro. N.R.   Familiar No Retornable     4      NA     2     4    4
## 1034        2 Lts. NR   Familiar No Retornable     3       6     8     3   14
## 1035   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1036        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1037       500 ml Ret Individual    Retornable    NA       2     2    NA    2
## 1038        600 ml NR Individual No Retornable     1       3     1     2    3
## 1039      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1040        600 ml NR Individual No Retornable     8      11     5     4    6
## 1041      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1042       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1043        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1044        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1045     1 Ltro. N.R. Individual No Retornable     4       4     2     2    2
## 1046      1.5 Lts. NR Individual No Retornable     3       3     3     3    3
## 1047     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1048   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1049   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1050        600 ml NR Individual No Retornable    NA      NA     2    NA   NA
## 1051   250 ml. NR PET Individual No Retornable     1       1     1     1    4
## 1052        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1053     1 Ltro. N.R.   Familiar No Retornable     1       1     1     2    1
## 1054     1 Ltro. N.R. Individual No Retornable    NA      NA     2    NA   NA
## 1055    12 Oz. NR Pet Individual No Retornable     2       1     2     2    1
## 1056        2 Lts. NR   Familiar No Retornable    NA      NA    11    NA   NA
## 1057        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1058      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1059    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1060        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1061      Lata 235 ml Individual No Retornable     1      NA     1     1   NA
## 1062     1 Ltro. N.R.   Familiar No Retornable    11       8    13    13   11
## 1063        2 Lts. NR   Familiar No Retornable     8       8     3     6    3
## 1064       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1065 500 ml NR Vidrio Individual No Retornable    21      21    19    23   25
## 1066         8 Oz. NR Individual No Retornable    NA      NA    NA    NA    1
## 1067      Lata 235 ml Individual No Retornable    NA       1     1     1   NA
## 1068        600 ml NR Individual No Retornable     2       1     2     3    3
## 1069     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1070     1.250 Lts NR   Familiar No Retornable    21      24    29    37   29
## 1071      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1072     1.5 Lts. Ret   Familiar    Retornable     3       3     3    13    6
## 1073    12 Oz. NR Pet Individual No Retornable     5       6     8    11    5
## 1074       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1075        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1076      2.5 Lts. NR   Familiar No Retornable    35      53    53    60   42
## 1077 2.5 Lts. Ret Pet   Familiar    Retornable    70      74    70    95   81
## 1078 500 ml NR Vidrio Individual No Retornable    23      25    30    38   27
## 1079       500 ml Ret Individual    Retornable    74      72    89    95   91
## 1080      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1081         8 Oz. NR Individual No Retornable     3       2     4     8    5
## 1082             Lata Individual No Retornable     3       2     5     5    3
## 1083      Lata 235 ml Individual No Retornable     2       2     2     2    2
## 1084     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1085    500 ml NR PET Individual No Retornable     1       1    NA     1    1
## 1086        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 1087     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1088   250 ML. NR VID Individual No Retornable    NA       1    NA    NA    0
## 1089    413 ml NR VId Individual No Retornable     2       3     2     5    5
## 1090   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1091    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1092    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1093    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1094    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1095     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1096        600 ml NR Individual No Retornable     3       1     3     4    3
## 1097        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1098        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1099   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1100        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 1101       500 ml Ret Individual    Retornable     2      NA    NA    NA   NA
## 1102        600 ml NR Individual No Retornable     1       2     3     4    3
## 1103      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 1104      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1105        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1106   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1107        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 1108       500 ml Ret Individual    Retornable    NA      NA    NA     2   NA
## 1109        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1110      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 1111        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1112   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1113        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1114       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1115        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1116        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1117        2 Lts. NR   Familiar No Retornable    NA      NA     3     3    3
## 1118        400 ml NR Individual No Retornable     0      NA    NA     0   NA
## 1119       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1120        600 ml NR Individual No Retornable     1      NA     3     3    3
## 1121      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 1122        2 Lts. NR   Familiar No Retornable     3       3     3    NA   NA
## 1123   250 ml. NR PET Individual No Retornable    NA       0    NA    NA   NA
## 1124        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1125       500 ml Ret Individual    Retornable    NA      NA     2    NA    2
## 1126        600 ml NR Individual No Retornable     1       2     3     4    3
## 1127      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 1128        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1129    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1130        600 ml NR Individual No Retornable     3      NA     3    NA   NA
## 1131      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1132      Lata 453 ml Individual No Retornable    NA       0    NA    NA   NA
## 1133        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1134        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1135     1 Ltro. N.R. Individual No Retornable     2       2     2     2    4
## 1136      1.5 Lts. NR Individual No Retornable     3       3     3     3    6
## 1137        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1138        600 ml NR Individual No Retornable    NA       3    NA    NA    3
## 1139     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1140   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1141   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1142   250 ml. NR PET Individual No Retornable     2       3     3     5    3
## 1143        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1144     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     2    1
## 1145     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1146    12 Oz. NR Pet Individual No Retornable    NA       2     2     2    1
## 1147        2 Lts. NR   Familiar No Retornable     3      NA    NA     3   NA
## 1148      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1149      Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1150    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1151      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1152     1 Ltro. N.R.   Familiar No Retornable     4      11    13     8   11
## 1153        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1154      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1155 500 ml NR Vidrio Individual No Retornable     2       8     6    11    8
## 1156         8 Oz. NR Individual No Retornable     2       1     2     1    2
## 1157             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1158     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1159     1.250 Lts NR   Familiar No Retornable    21      26    37    26   24
## 1160      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1161     1.5 Lts. Ret   Familiar    Retornable     6       6    16     6   25
## 1162    12 Oz. NR Pet Individual No Retornable    12       9     6    11   12
## 1163        2 Lts. NR   Familiar No Retornable    NA      NA     3     6   NA
## 1164      2.5 Lts. NR   Familiar No Retornable     7      11    18    32   35
## 1165 2.5 Lts. Ret Pet   Familiar    Retornable   155     113   159   169  180
## 1166    500 ml NR PET Individual No Retornable    NA       2    NA    NA   NA
## 1167 500 ml NR Vidrio Individual No Retornable    17      15    21    19   25
## 1168       500 ml Ret Individual    Retornable   106      74    95   114   95
## 1169         8 Oz. NR Individual No Retornable     4       1     4     4    4
## 1170             Lata Individual No Retornable     2       3     3     3    3
## 1171      Lata 16 Oz. Individual No Retornable    NA       2     4     4    2
## 1172      Lata 235 ml Individual No Retornable    NA       1    NA     1    2
## 1173     1 Ltro. N.R. Individual No Retornable     1       1     1     3    1
## 1174    500 ml NR PET Individual No Retornable     1      NA    NA     1   NA
## 1175        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1176    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1177     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1178    413 ml NR VId Individual No Retornable     4       2     2     3    2
## 1179   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1180     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2    2
## 1181   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA    0
## 1182    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1183    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1184    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1185     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1186        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1187        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1188        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1189        600 ml NR Individual No Retornable     2      NA    NA    NA   NA
## 1190        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1191        2 Lts. NR   Familiar No Retornable    NA       1     1     3    1
## 1192   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1193        400 ml NR Individual No Retornable    NA       0     0    NA   NA
## 1194       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 1195        600 ml NR Individual No Retornable     2       1     1     1    2
## 1196             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1197      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1198      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1199        2 Lts. NR   Familiar No Retornable    NA       1     1    NA    1
## 1200   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1201       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 1202        600 ml NR Individual No Retornable    NA       1     1     1    1
## 1203             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1204      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1205        2 Lts. NR   Familiar No Retornable    NA       1     4    NA    1
## 1206   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1207        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1208       500 ml Ret Individual    Retornable    NA       1     1    NA    1
## 1209        600 ml NR Individual No Retornable     2       1     1     1    1
## 1210             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1211        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1212        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 1213      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1214      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1215        2 Lts. NR   Familiar No Retornable     3       1     4    NA    1
## 1216   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1217        400 ml NR Individual No Retornable     0      NA     0     0    0
## 1218       500 ml Ret Individual    Retornable     4       1     1    NA    1
## 1219        600 ml NR Individual No Retornable     2       1     1     1    2
## 1220             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 1221      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1222        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1223        600 ml NR Individual No Retornable    NA       4     3     4   10
## 1224      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1225        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1226        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1227     1 Ltro. N.R. Individual No Retornable     2       2     6     2    2
## 1228      1.5 Lts. NR Individual No Retornable    NA       3     6     3   10
## 1229        600 ml NR Individual No Retornable    NA       3     3    NA    3
## 1230        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1231   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1232   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1233        600 ml NR Individual No Retornable     1       1     1     1   NA
## 1234   250 ml. NR PET Individual No Retornable     0       1    NA    NA   NA
## 1235        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1236     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1237    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 1238     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     2    2
## 1239       12 Oz. Ret Individual    Retornable    NA       2    NA    NA    2
## 1240        2 Lts. NR   Familiar No Retornable    NA       3     3     3    3
## 1241 500 ml NR Vidrio Individual No Retornable     6       4     2     4    6
## 1242         8 Oz. NR Individual No Retornable    NA       1     2     2    3
## 1243     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1244     1.250 Lts NR   Familiar No Retornable     5      11    13     8   11
## 1245      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1246     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 1247    12 Oz. NR Pet Individual No Retornable     5       3     6     3    6
## 1248      2.5 Lts. NR   Familiar No Retornable    NA       4    14    14   25
## 1249 2.5 Lts. Ret Pet   Familiar    Retornable    21      42    42    56   63
## 1250 500 ml NR Vidrio Individual No Retornable     8      13    13    11   13
## 1251       500 ml Ret Individual    Retornable    23      42    40    40   44
## 1252         8 Oz. NR Individual No Retornable     1       2     2     2    1
## 1253             Lata Individual No Retornable    NA      NA     2    NA    2
## 1254      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 1255     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1256    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1257     250 ml Tetra Individual No Retornable     0       0     0    NA   NA
## 1258   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA    0
## 1259    413 ml NR VId Individual No Retornable     3       6     1     5    4
## 1260      Lata 335 ml Individual No Retornable     1      NA    NA    NA   NA
## 1261     200 ml Tetra Individual No Retornable     0       0     0    NA   NA
## 1262        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1263      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1264       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1265        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1266   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1267        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1268       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 1269        600 ml NR Individual No Retornable     1       2     1     1    1
## 1270      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 1271     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    2
## 1272   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1273        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1274       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 1275      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 1276   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1277        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 1278       500 ml Ret Individual    Retornable     1      NA    NA    NA   NA
## 1279        600 ml NR Individual No Retornable     2       1     1     1   NA
## 1280       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1281        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1282      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 1283     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1284        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA    3
## 1285   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 1286        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 1287       500 ml Ret Individual    Retornable     1       2    NA    NA   NA
## 1288        600 ml NR Individual No Retornable     2       2     1     3    1
## 1289      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 1290        600 ml NR Individual No Retornable     1      NA     1    NA    1
## 1291        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1292        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1293     1 Ltro. N.R. Individual No Retornable     2      NA     4     2    4
## 1294      1.5 Lts. NR Individual No Retornable     3      NA     6     3    6
## 1295        600 ml NR Individual No Retornable    NA      NA     3    NA   NA
## 1296        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1297   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1298   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1299        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1300   250 ml. NR PET Individual No Retornable     3       1     4     3    1
## 1301        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1302     1 Ltro. N.R.   Familiar No Retornable     1      NA     1     1    1
## 1303    12 Oz. NR Pet Individual No Retornable     2      NA     1     1    1
## 1304    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1305 500 ml NR Vidrio Individual No Retornable     2       2    NA     4    2
## 1306      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 1307     1 Ltro. N.R.   Familiar No Retornable    11       8     8    13   15
## 1308       12 Oz. Ret Individual    Retornable    NA      NA     2    NA   NA
## 1309        2 Lts. NR   Familiar No Retornable    NA       6    NA     6    3
## 1310       2 Lts. Ret   Familiar    Retornable     6       8     6    11    8
## 1311      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1312        400 ml NR Individual No Retornable    NA      NA     2     3    3
## 1313 500 ml NR Vidrio Individual No Retornable     4       2     6     8   11
## 1314        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 1315         8 Oz. NR Individual No Retornable     1       1    NA     1    2
## 1316             Lata Individual No Retornable    NA       2    NA     2    2
## 1317     1 Ltro. N.R.   Familiar No Retornable     4      NA     2     2    2
## 1318 500 ml NR Vidrio Individual No Retornable    NA      NA     2     4    4
## 1319        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 1320     1 Ltro. N.R.   Familiar No Retornable    13      11    11     8   17
## 1321     1.250 Lts NR   Familiar No Retornable    13      11    16    18   11
## 1322      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1323     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 1324    12 Oz. NR Pet Individual No Retornable     5      11     9     8   11
## 1325        2 Lts. NR   Familiar No Retornable     6       3     3     6    3
## 1326       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     6   NA
## 1327      2.5 Lts. NR   Familiar No Retornable    NA      18    21    21   25
## 1328 2.5 Lts. Ret Pet   Familiar    Retornable    92      88    81    99   81
## 1329 500 ml NR Vidrio Individual No Retornable    11       6     8    15   11
## 1330       500 ml Ret Individual    Retornable    34      49    59    59   44
## 1331         8 Oz. NR Individual No Retornable     9       7    11     8   14
## 1332             Lata Individual No Retornable     6       5     5     6    8
## 1333      Lata 235 ml Individual No Retornable     2      NA     1    NA   NA
## 1334     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1335    500 ml NR PET Individual No Retornable     1      NA     2    NA   NA
## 1336        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1337     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1338    413 ml NR VId Individual No Retornable    NA      NA     2    NA   NA
## 1339    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1340    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1341     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1342        600 ml NR Individual No Retornable     1       1     1     1    1
## 1343        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1344     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     2   NA
## 1345        2 Lts. NR   Familiar No Retornable    NA       3     6     6    8
## 1346   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1347        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1348       500 ml Ret Individual    Retornable    NA       2    NA     3    1
## 1349        600 ml NR Individual No Retornable     1       1     1     3    1
## 1350      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 1351      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1352        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1353   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1354        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1355       500 ml Ret Individual    Retornable    NA      NA    NA     1    1
## 1356        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1357      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 1358   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1359        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 1360       500 ml Ret Individual    Retornable    NA      NA    NA     1    1
## 1361        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1362        600 ml NR Individual No Retornable     1       1     1     1    2
## 1363        2 Lts. NR   Familiar No Retornable     3       3    11     6    8
## 1364        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 1365       500 ml Ret Individual    Retornable     2      NA     2    NA    2
## 1366        600 ml NR Individual No Retornable    NA       1     1     3    1
## 1367      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 1368     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2    2
## 1369        2 Lts. NR   Familiar No Retornable    NA      NA     6    NA    8
## 1370   250 ml. NR PET Individual No Retornable     0      NA    NA     0    0
## 1371        400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 1372       500 ml Ret Individual    Retornable    NA      NA     2     3    1
## 1373        600 ml NR Individual No Retornable     2       2     1     1    1
## 1374      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 1375    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1376        600 ml NR Individual No Retornable     1       1    NA    NA    1
## 1377        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1378      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1379        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1380     1 Ltro. N.R. Individual No Retornable    19     108     2     2   13
## 1381      1.5 Lts. NR Individual No Retornable    16      73     3     3   16
## 1382    355 Ml NR Pet Individual No Retornable     3      18    NA    NA   NA
## 1383        5 Lts. NR   Familiar No Retornable     7      NA    NA    NA   NA
## 1384        600 ml NR Individual No Retornable     8      48    NA    NA   NA
## 1385     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1386   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1387   250 ml. NR PET Individual No Retornable     1       1     1     1    0
## 1388        600 ml NR Individual No Retornable     1       1     1     1   NA
## 1389   250 ml. NR PET Individual No Retornable     3       1    NA     2    2
## 1390        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1391     1 Ltro. N.R.   Familiar No Retornable     1      NA    NA     1    2
## 1392     1 Ltro. N.R. Individual No Retornable    NA       2     4    NA   NA
## 1393    12 Oz. NR Pet Individual No Retornable     2       2     3     1    2
## 1394        2 Lts. NR   Familiar No Retornable    NA       8     8     3    6
## 1395      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1396    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1397 500 ml NR Vidrio Individual No Retornable     4       4     2     2    6
## 1398     1 Ltro. N.R.   Familiar No Retornable    15       8    15    15   13
## 1399       12 Oz. Ret Individual    Retornable     2       2     2     2    2
## 1400      2.5 Lts. NR   Familiar No Retornable    11       7    11     4    7
## 1401        400 ml NR Individual No Retornable     3       3     5     3    2
## 1402 500 ml NR Vidrio Individual No Retornable    15      15    17    19   30
## 1403         8 Oz. NR Individual No Retornable     4       6     5     7    9
## 1404             Lata Individual No Retornable     3       2     5     5    3
## 1405      Lata 235 ml Individual No Retornable     1       2     2     1   NA
## 1406     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     2    2
## 1407        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 1408 500 ml NR Vidrio Individual No Retornable     4       2     4     6    8
## 1409        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1410         8 Oz. NR Individual No Retornable     1      NA    NA    NA   NA
## 1411     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1412     1.250 Lts NR   Familiar No Retornable    40      26    40    45   21
## 1413      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1414     1.5 Lts. Ret   Familiar    Retornable    25      35    73    54   16
## 1415    12 Oz. NR Pet Individual No Retornable    17      15    21    39   12
## 1416       12 Oz. Ret Individual    Retornable    NA       2     3     3    3
## 1417        2 Lts. NR   Familiar No Retornable     3      NA    NA     6   NA
## 1418      2.5 Lts. NR   Familiar No Retornable    42      28    81     4   NA
## 1419 2.5 Lts. Ret Pet   Familiar    Retornable   151     127   151   134  229
## 1420    500 ml NR PET Individual No Retornable     4       4     4    NA   NA
## 1421 500 ml NR Vidrio Individual No Retornable    36      36    44    30   32
## 1422       500 ml Ret Individual    Retornable    82      68    85    91   97
## 1423      6.5 Oz. Ret Individual    Retornable     2       1     1     1    1
## 1424         8 Oz. NR Individual No Retornable     9       8    13     9   13
## 1425             Lata Individual No Retornable     9       6     6     8    9
## 1426      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 1427      Lata 235 ml Individual No Retornable     7       7     5     4    5
## 1428     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 1429    500 ml NR PET Individual No Retornable    NA      NA    NA     1    1
## 1430        600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 1431    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1432     250 ml Tetra Individual No Retornable     3       0     0     0    0
## 1433   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 1434    413 ml NR VId Individual No Retornable     2      NA     2     1    1
## 1435   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1436     1 Ltro. N.R.   Familiar No Retornable    NA       2     4    NA    2
## 1437   300 ML. NR PET Individual No Retornable    NA       3     1     2   NA
## 1438    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1439     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1440        600 ml NR Individual No Retornable     5      NA    NA    NA    3
## 1441        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1442        2 Lts. NR   Familiar No Retornable    NA      NA     1     3    6
## 1443      2.5 Lts. NR   Familiar No Retornable     4       4     7    NA    4
## 1444   250 ml. NR PET Individual No Retornable     1       1     1     1    0
## 1445        400 ml NR Individual No Retornable     0       1     2     1    3
## 1446       500 ml Ret Individual    Retornable     2      NA     3     2    4
## 1447        600 ml NR Individual No Retornable     1       1     1     2    2
## 1448      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 1449      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1450        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA    1
## 1451   250 ml. NR PET Individual No Retornable     0       1     1     0    0
## 1452        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1453       500 ml Ret Individual    Retornable    NA       2     1    NA   NA
## 1454        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1455      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 1456        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA    1
## 1457      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1458   250 ml. NR PET Individual No Retornable     1       1     1     1    0
## 1459        400 ml NR Individual No Retornable    NA      NA     0     1   NA
## 1460       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 1461        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1462        600 ml NR Individual No Retornable     3       1     1     3    2
## 1463     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1464        2 Lts. NR   Familiar No Retornable     3      NA     3    NA    3
## 1465      2.5 Lts. NR   Familiar No Retornable    11      NA    11    NA   NA
## 1466        400 ml NR Individual No Retornable    NA       1    NA     0    3
## 1467       500 ml Ret Individual    Retornable     4       2    11     4    6
## 1468        600 ml NR Individual No Retornable     3      NA    NA     1    3
## 1469      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 1470      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1471        2 Lts. NR   Familiar No Retornable    NA       6     1    NA    4
## 1472      2.5 Lts. NR   Familiar No Retornable    11       4     7     7    7
## 1473   250 ml. NR PET Individual No Retornable     1       1     1     1    0
## 1474        400 ml NR Individual No Retornable     1       2     2     2    1
## 1475       500 ml Ret Individual    Retornable     2      NA     1     2   11
## 1476        600 ml NR Individual No Retornable     3       1     1     3    1
## 1477      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 1478        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1479    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1480        600 ml NR Individual No Retornable     6      10     4     4    6
## 1481      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1482      Lata 453 ml Individual No Retornable    NA       0    NA    NA   NA
## 1483        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1484        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1485        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1486     1 Ltro. N.R. Individual No Retornable     6      27    11     4    2
## 1487      1.5 Lts. NR Individual No Retornable     3       3    10    13    3
## 1488        5 Lts. NR   Familiar No Retornable    18      28    14    14   28
## 1489        600 ml NR Individual No Retornable    NA      10    NA     8   NA
## 1490        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1491      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1492        473 ml NR Individual No Retornable     1       1     1     2    3
## 1493        600 ml NR Individual No Retornable     4       3     3     3    4
## 1494   250 ml. NR PET Individual No Retornable     6       2    NA     2    6
## 1495        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1496     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 1497    12 Oz. NR Pet Individual No Retornable    NA       1     2     1    1
## 1498        2 Lts. NR   Familiar No Retornable    NA      37    NA    28   NA
## 1499        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1500      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1501      Lata 450 ml Individual No Retornable    NA      NA    NA    NA    1
## 1502    500 ml NR PET Individual No Retornable    NA       3    NA     1    1
## 1503     1 Ltro. N.R.   Familiar No Retornable     6       8     8     8   13
## 1504        2 Lts. NR   Familiar No Retornable     6       6     3    14    8
## 1505       2 Lts. Ret   Familiar    Retornable     6      NA     3     3    6
## 1506        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1507 500 ml NR Vidrio Individual No Retornable    17      32    17    21   40
## 1508         8 Oz. NR Individual No Retornable     2       1     4     3    3
## 1509             Lata Individual No Retornable    NA       2    NA     2    2
## 1510     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1511 500 ml NR Vidrio Individual No Retornable     2      NA     2     2    2
## 1512        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1513     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1514     1.250 Lts NR   Familiar No Retornable    48      71    32    42   77
## 1515      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1516     1.5 Lts. Ret   Familiar    Retornable    22      19    25    25   29
## 1517    12 Oz. NR Pet Individual No Retornable    17      12    15    15   30
## 1518        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   NA
## 1519       2 Lts. Ret   Familiar    Retornable    11       6     8     8   14
## 1520      2.5 Lts. NR   Familiar No Retornable    49      88    49    88  102
## 1521 2.5 Lts. Ret Pet   Familiar    Retornable    74     232    42   144  236
## 1522 500 ml NR Vidrio Individual No Retornable    25      53    11    19   44
## 1523       500 ml Ret Individual    Retornable    23     101    25    80  118
## 1524         8 Oz. NR Individual No Retornable     6       4     8     7    6
## 1525             Lata Individual No Retornable     5       5     3     7    6
## 1526      Lata 16 Oz. Individual No Retornable     2      NA    NA    NA   NA
## 1527      Lata 235 ml Individual No Retornable     6       6     4     6    4
## 1528        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1529     1 Ltro. N.R. Individual No Retornable    NA       2     1     1    1
## 1530    500 ml NR PET Individual No Retornable    NA      NA    NA     1    1
## 1531        600 ml NR Individual No Retornable     8      NA    NA    NA    3
## 1532    1 Ltro. Tetra   Familiar No Retornable     4      NA     4     2    2
## 1533     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 1534   250 ML. NR VID Individual No Retornable     1       2    NA     3    2
## 1535    413 ml NR VId Individual No Retornable     3      22    NA     1   NA
## 1536   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1537     1 Ltro. N.R.   Familiar No Retornable     4       2     2     2    4
## 1538   300 ML. NR PET Individual No Retornable     1       1     0     1    0
## 1539    1 Ltro. Tetra   Familiar No Retornable     1       1    NA    NA   NA
## 1540    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1541    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1542    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1543     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 1544        600 ml NR Individual No Retornable     6       1     3     3    4
## 1545        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1546      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1547        2 Lts. NR   Familiar No Retornable     6       6     6     8    6
## 1548        400 ml NR Individual No Retornable     0       0    NA    NA   NA
## 1549       500 ml Ret Individual    Retornable    NA      NA     1     2    1
## 1550        600 ml NR Individual No Retornable     4       3     3     4    4
## 1551      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1552      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1553        2 Lts. NR   Familiar No Retornable    NA       3     6     3    8
## 1554        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 1555       500 ml Ret Individual    Retornable    NA      NA     1    NA    1
## 1556        600 ml NR Individual No Retornable     4       1     3     3    2
## 1557      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1558      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1559   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1560        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1561       500 ml Ret Individual    Retornable     2      NA     1    NA    1
## 1562        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1563        600 ml NR Individual No Retornable     2       1     3     3    4
## 1564       12 Oz. Ret Individual    Retornable    NA       2    NA    NA   NA
## 1565        2 Lts. NR   Familiar No Retornable     3      17     8    14   20
## 1566        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 1567       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1568        600 ml NR Individual No Retornable     4       3     4     4    4
## 1569      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1570      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1571        2 Lts. NR   Familiar No Retornable    NA      23     3    14   23
## 1572        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1573       500 ml Ret Individual    Retornable    NA      NA     1    NA    1
## 1574        600 ml NR Individual No Retornable     4       3     4     4    4
## 1575      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 1576    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1577        600 ml NR Individual No Retornable     6       8     7    13   10
## 1578      Lata 222 ml Individual No Retornable    NA      NA     3    NA   NA
## 1579      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1580        2 Lts. NR   Familiar No Retornable    NA       3    11    NA    3
## 1581        600 ml NR Individual No Retornable     3      NA     5     5    3
## 1582        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1583     1 Ltro. N.R. Individual No Retornable     6      15    21     2    2
## 1584      1.5 Lts. NR Individual No Retornable    10       6    16    13    6
## 1585   300 ML. NR PET Individual No Retornable    NA      NA     2     1   NA
## 1586    355 Ml NR Pet Individual No Retornable     3       3     5    NA    3
## 1587        5 Lts. NR   Familiar No Retornable     4       4     4    NA    7
## 1588        600 ml NR Individual No Retornable     5       8    10     3    5
## 1589     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 1590   300 ML. NR PET Individual No Retornable     4       5     4     3    2
## 1591      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1592        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1593   250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 1594    500 ml NR PET Individual No Retornable    NA      NA     2    NA   NA
## 1595        600 ml NR Individual No Retornable     3       3    NA    NA    1
## 1596   250 ml. NR PET Individual No Retornable     7       5     4     7   NA
## 1597        400 ml NR Individual No Retornable     1       1    NA    NA   NA
## 1598     1 Ltro. N.R.   Familiar No Retornable     1       3     1     1    1
## 1599     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 1600    12 Oz. NR Pet Individual No Retornable     3       3     1     1    2
## 1601        2 Lts. NR   Familiar No Retornable     8      17     3    20    6
## 1602        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1603      Lata 235 ml Individual No Retornable    NA      NA     0    NA   NA
## 1604      Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1605    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1606      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 1607 500 ml NR Vidrio Individual No Retornable     4       2     8    NA    8
## 1608      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 1609 500 ml NR Vidrio Individual No Retornable     2      NA    NA     2   NA
## 1610     1 Ltro. N.R.   Familiar No Retornable    NA       4     2     6   NA
## 1611     1.250 Lts NR   Familiar No Retornable    21      11    29    NA   11
## 1612      1.5 Lts. NR   Familiar No Retornable    25      25    25     3   29
## 1613     1.5 Lts. Ret   Familiar    Retornable    25      32    16    38   29
## 1614     1.750 Lts NR   Familiar No Retornable    NA      NA    NA     2   NA
## 1615    12 Oz. NR Pet Individual No Retornable    15      17    27    30   26
## 1616       12 Oz. Ret Individual    Retornable    NA      NA    NA     3   NA
## 1617        2 Lts. NR   Familiar No Retornable    NA       3    NA     6   NA
## 1618       2 Lts. Ret   Familiar    Retornable    NA       6     3    NA   NA
## 1619      2.5 Lts. NR   Familiar No Retornable    70     116   102    77   67
## 1620 2.5 Lts. Ret Pet   Familiar    Retornable    56      88   106    42   74
## 1621    500 ml NR PET Individual No Retornable     2       2    15    NA   NA
## 1622 500 ml NR Vidrio Individual No Retornable    19       6    27    23    4
## 1623       500 ml Ret Individual    Retornable    72      85    82   139  104
## 1624         8 Oz. NR Individual No Retornable     4       4     4     3    4
## 1625             Lata Individual No Retornable     2       2     6     5   NA
## 1626      Lata 16 Oz. Individual No Retornable     6       4     6     2    6
## 1627      Lata 235 ml Individual No Retornable     8       7     8     3    8
## 1628        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1629     1 Ltro. N.R. Individual No Retornable     1       1     1     8    4
## 1630    500 ml NR PET Individual No Retornable     3      NA     1     5    2
## 1631        600 ml NR Individual No Retornable    10       4     5    15   13
## 1632    1 Ltro. Tetra   Familiar No Retornable    NA      NA     2     1    1
## 1633  125 ml NR Tetra Individual No Retornable     1       1     1    NA    1
## 1634     250 ml Tetra Individual No Retornable     4       2     2     1    0
## 1635   250 ML. NR VID Individual No Retornable     1       3    NA    NA    2
## 1636    413 ml NR VId Individual No Retornable    14      11     7    10   16
## 1637      Lata 335 ml Individual No Retornable    NA      NA     1    NA   NA
## 1638   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1639     1 Ltro. N.R.   Familiar No Retornable    NA       2     4     2    2
## 1640   300 ML. NR PET Individual No Retornable     1       0     1     1   NA
## 1641    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1642    1 Ltro. Tetra   Familiar No Retornable     1      NA    NA    NA   NA
## 1643     200 ml Tetra Individual No Retornable     0       0     1     0    0
## 1644        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1645      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1646      1.5 Lts. NR   Familiar No Retornable    NA       4    NA    NA   NA
## 1647     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1648        2 Lts. NR   Familiar No Retornable     3      NA    11     6    6
## 1649       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     1   NA
## 1650      2.5 Lts. NR   Familiar No Retornable     7       7     7     8    7
## 1651   250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 1652        400 ml NR Individual No Retornable     3       5     5     3    8
## 1653       500 ml Ret Individual    Retornable    NA       1     2     2   NA
## 1654        600 ml NR Individual No Retornable     3       6    NA     2   NA
## 1655      Lata 235 ml Individual No Retornable    NA       1     1    NA    2
## 1656      1.5 Lts. NR   Familiar No Retornable     3       2    NA    NA   NA
## 1657     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1658        2 Lts. NR   Familiar No Retornable    NA       6     8     8   11
## 1659       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     1   NA
## 1660      2.5 Lts. NR   Familiar No Retornable     7      25    18     1    4
## 1661   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 1662        400 ml NR Individual No Retornable     5       2     9     5    8
## 1663    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1664       500 ml Ret Individual    Retornable    NA       3     2     2    2
## 1665        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1666      Lata 235 ml Individual No Retornable    NA       1     1    NA    2
## 1667      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 1668        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1669       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     1   NA
## 1670      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 1671   250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 1672        400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 1673       500 ml Ret Individual    Retornable    NA       1     2     2    2
## 1674        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1675        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1676     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1677        2 Lts. NR   Familiar No Retornable    NA      NA     6    NA    8
## 1678      2.5 Lts. NR   Familiar No Retornable     7       4     4     4   NA
## 1679        400 ml NR Individual No Retornable    NA      NA     3     0    4
## 1680       500 ml Ret Individual    Retornable     2      NA    NA    NA    6
## 1681        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1682      Lata 235 ml Individual No Retornable    NA       1     1    NA    2
## 1683      1.5 Lts. NR   Familiar No Retornable    NA       2    NA    NA   NA
## 1684     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1685     1.750 Lts NR   Familiar No Retornable    NA      NA    NA     2   NA
## 1686        2 Lts. NR   Familiar No Retornable     3      NA     6     3    8
## 1687       2 Lts. Ret   Familiar    Retornable    NA      NA    NA     1   NA
## 1688      2.5 Lts. NR   Familiar No Retornable    NA      14     4     4    7
## 1689   250 ml. NR PET Individual No Retornable     1       0     1    NA    0
## 1690        400 ml NR Individual No Retornable     2       3     5     3    5
## 1691       500 ml Ret Individual    Retornable    NA       3     2     2    2
## 1692        600 ml NR Individual No Retornable    NA       2    NA    NA   NA
## 1693      Lata 235 ml Individual No Retornable    NA       1     1    NA    2
## 1694        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 1695      Lata 222 ml Individual No Retornable    NA       0    NA    NA   NA
## 1696      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1697        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA    3
## 1698        600 ml NR Individual No Retornable     1       4    NA     5    5
## 1699        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1700     1 Ltro. N.R. Individual No Retornable     2      95     2     2   27
## 1701      1.5 Lts. NR Individual No Retornable     6     101     3    16   35
## 1702   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1703        5 Lts. NR   Familiar No Retornable     7      14    NA    18    7
## 1704        600 ml NR Individual No Retornable     5      36    NA     8   10
## 1705        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1706   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1707        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1708        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1709   250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 1710        600 ml NR Individual No Retornable     5       4    NA    NA   NA
## 1711   250 ml. NR PET Individual No Retornable    NA       2    NA     1   NA
## 1712        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1713     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 1714     1 Ltro. N.R. Individual No Retornable     2       4     2     2    4
## 1715  100 ml NR Tetra Individual No Retornable    NA       4    NA    NA   NA
## 1716    12 Oz. NR Pet Individual No Retornable    NA       2     1     1   NA
## 1717        2 Lts. NR   Familiar No Retornable     3       8     3    11    3
## 1718        600 ml NR Individual No Retornable    NA      NA    NA     3    1
## 1719      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1720      Lata 450 ml Individual No Retornable     1      NA     1    NA   NA
## 1721    500 ml NR PET Individual No Retornable     3      NA    NA    NA   NA
## 1722     1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 1723    237 ml NR Vid Individual No Retornable     1      NA    NA    NA   NA
## 1724 500 ml NR Vidrio Individual No Retornable     4       2     2     2    4
## 1725      Lata 235 ml Individual No Retornable    NA       1    NA     1   NA
## 1726     1 Ltro. N.R.   Familiar No Retornable    23      23    30    40   42
## 1727       12 Oz. Ret Individual    Retornable     6       8     6     9   14
## 1728        2 Lts. NR   Familiar No Retornable    28      31    37    34   59
## 1729       2 Lts. Ret   Familiar    Retornable     6       6     8     8   11
## 1730        400 ml NR Individual No Retornable     3      14     5    19   14
## 1731 500 ml NR Vidrio Individual No Retornable    36      40    34    32   49
## 1732         8 Oz. NR Individual No Retornable     3       4     3     8    8
## 1733             Lata Individual No Retornable     3       3     3     5    5
## 1734      Lata 235 ml Individual No Retornable    NA      NA    NA     1   NA
## 1735     1 Ltro. N.R.   Familiar No Retornable     8       4     8     8   11
## 1736        2 Lts. NR   Familiar No Retornable     8       8    11    11    8
## 1737 500 ml NR Vidrio Individual No Retornable     6       6     6     2    6
## 1738         8 Oz. NR Individual No Retornable    NA       2    NA     1    1
## 1739             Lata Individual No Retornable    NA      NA    NA     2   NA
## 1740     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    4
## 1741     1.250 Lts NR   Familiar No Retornable    53      53    53    90   69
## 1742      1.5 Lts. NR   Familiar No Retornable    NA       6     6     6    6
## 1743     1.5 Lts. Ret   Familiar    Retornable     3       3     3    NA    3
## 1744    12 Oz. NR Pet Individual No Retornable    17      17    17    21   32
## 1745       12 Oz. Ret Individual    Retornable    17      17    20    27   29
## 1746        2 Lts. NR   Familiar No Retornable    28      28    25    62   73
## 1747       2 Lts. Ret   Familiar    Retornable     6       6     6     8   14
## 1748      2.5 Lts. NR   Familiar No Retornable    81      85    77    70   85
## 1749 2.5 Lts. Ret Pet   Familiar    Retornable    35      28    32    28   28
## 1750        400 ml NR Individual No Retornable     7       2     3    NA    5
## 1751    500 ml NR PET Individual No Retornable    21      15    13    25   15
## 1752 500 ml NR Vidrio Individual No Retornable    49      55    38    49   72
## 1753       500 ml Ret Individual    Retornable    55      53    38    57   80
## 1754      6.5 Oz. Ret Individual    Retornable     2       2     1     2    2
## 1755        710 ml NR Individual No Retornable     6       3     9    18   18
## 1756         8 Oz. NR Individual No Retornable    13      13    12    20   22
## 1757             Lata Individual No Retornable     5       6     6     8    8
## 1758      Lata 16 Oz. Individual No Retornable     2       2     4     6    8
## 1759      Lata 235 ml Individual No Retornable     4       6     4     5    6
## 1760        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1761     1 Ltro. N.R. Individual No Retornable     2       1     1     1    2
## 1762    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1763        600 ml NR Individual No Retornable     1      NA     2     3    3
## 1764    1 Ltro. Tetra   Familiar No Retornable     2       1     1     5    2
## 1765     250 ml Tetra Individual No Retornable     2       1     2     1   NA
## 1766   250 ML. NR VID Individual No Retornable     1       1     1     2    2
## 1767    413 ml NR VId Individual No Retornable     3      13    NA     1    2
## 1768      Lata 335 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1769   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1770     1 Ltro. N.R.   Familiar No Retornable     2       2     2     6    2
## 1771   300 ML. NR PET Individual No Retornable     0       1    NA     1    1
## 1772    1 Ltro. Tetra   Familiar No Retornable     1       4     7    NA    3
## 1773    1 Ltro. Tetra   Familiar No Retornable     1       3     4     3   NA
## 1774    1 Ltro. Tetra   Familiar No Retornable     4       1     7    NA   NA
## 1775    1 Ltro. Tetra   Familiar No Retornable     5       2     6     5    5
## 1776     200 ml Tetra Individual No Retornable     1       1     0     1    1
## 1777        600 ml NR Individual No Retornable     3       4     5     8    9
## 1778        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1779      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1780     1 Ltro. N.R.   Familiar No Retornable     2       2     2     4    4
## 1781     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1782        2 Lts. NR   Familiar No Retornable    NA      NA     3     3   11
## 1783   250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 1784        400 ml NR Individual No Retornable     2       2     4     3    6
## 1785       500 ml Ret Individual    Retornable     1       1     1     1    3
## 1786        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1787      Lata 235 ml Individual No Retornable    NA       1     1     0    0
## 1788     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1789        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1790   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 1791        400 ml NR Individual No Retornable     1      NA     1    NA   NA
## 1792       500 ml Ret Individual    Retornable     1       1     1     1    3
## 1793      Lata 235 ml Individual No Retornable    NA       1     1     0    0
## 1794     1 Ltro. N.R.   Familiar No Retornable     2       2     2    NA   NA
## 1795        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1796   250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 1797        400 ml NR Individual No Retornable     1      NA     4    NA    2
## 1798    500 ml NR PET Individual No Retornable     2      NA    NA    NA   NA
## 1799       500 ml Ret Individual    Retornable     1       1     1     1    3
## 1800        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 1801        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 1802     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1803        2 Lts. NR   Familiar No Retornable     6       3     3     3    6
## 1804        400 ml NR Individual No Retornable    NA      NA     2     2    2
## 1805       500 ml Ret Individual    Retornable     2       2    NA     2    2
## 1806        600 ml NR Individual No Retornable    NA      NA     1     4    1
## 1807      Lata 235 ml Individual No Retornable    NA       1     1     0    0
## 1808     1 Ltro. N.R.   Familiar No Retornable     6       6     4     4    4
## 1809      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1810     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1811       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1812        2 Lts. NR   Familiar No Retornable     8       6     6     6    3
## 1813   250 ml. NR PET Individual No Retornable     1       0     0     0    0
## 1814        400 ml NR Individual No Retornable     4      NA     4     5    7
## 1815    500 ml NR PET Individual No Retornable     4      NA    NA    NA   NA
## 1816       500 ml Ret Individual    Retornable     1       1     1     1    3
## 1817        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1818      Lata 235 ml Individual No Retornable    NA       1     1     0    0
## 1819        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1820        600 ml NR Individual No Retornable     6       2     3    10    7
## 1821      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1822        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1823     1 Ltro. N.R. Individual No Retornable     2       8     6     6   13
## 1824      1.5 Lts. NR Individual No Retornable     6       6     3     6    6
## 1825        5 Lts. NR   Familiar No Retornable    11       7     4     7    7
## 1826        600 ml NR Individual No Retornable     3       3     3     3    5
## 1827   300 ML. NR PET Individual No Retornable     1       1     1     1    0
## 1828        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 1829   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1830        600 ml NR Individual No Retornable     1       2     1     1    3
## 1831   250 ml. NR PET Individual No Retornable     1       0     1     1    2
## 1832        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1833     1 Ltro. N.R.   Familiar No Retornable    NA       1     1    NA   NA
## 1834     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 1835    12 Oz. NR Pet Individual No Retornable    NA       2     1     1   NA
## 1836        2 Lts. NR   Familiar No Retornable     3       3    NA     3    3
## 1837 500 ml NR Vidrio Individual No Retornable     2      NA    NA    NA   NA
## 1838      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1839     1 Ltro. N.R.   Familiar No Retornable     6      13     8    13   11
## 1840       12 Oz. Ret Individual    Retornable     5       3     3     5    3
## 1841        2 Lts. NR   Familiar No Retornable     6       8     6     6   11
## 1842       2 Lts. Ret   Familiar    Retornable     6       3     3    11    6
## 1843      2.5 Lts. NR   Familiar No Retornable     7       4     4     4    7
## 1844        400 ml NR Individual No Retornable    12      12     8    17   15
## 1845 500 ml NR Vidrio Individual No Retornable     8       6     6    13   11
## 1846         8 Oz. NR Individual No Retornable     1       1     1    NA    1
## 1847             Lata Individual No Retornable     5       2     5     5    6
## 1848      Lata 235 ml Individual No Retornable     1      NA     1    NA    1
## 1849     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA    2
## 1850        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 1851 500 ml NR Vidrio Individual No Retornable     2      NA     4    NA    2
## 1852         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 1853     1 Ltro. N.R.   Familiar No Retornable     4       6     8     8   13
## 1854     1.250 Lts NR   Familiar No Retornable    11      11    16    11   18
## 1855      1.5 Lts. NR   Familiar No Retornable     6       6    10     6    6
## 1856     1.5 Lts. Ret   Familiar    Retornable     3       3     3    NA    3
## 1857    12 Oz. NR Pet Individual No Retornable     3       3     3     5    2
## 1858       12 Oz. Ret Individual    Retornable     6       6     6     6    9
## 1859        2 Lts. NR   Familiar No Retornable     8      23     8    17   23
## 1860       2 Lts. Ret   Familiar    Retornable     8       6     6    14    8
## 1861      2.5 Lts. NR   Familiar No Retornable     7      18    14    11   18
## 1862 2.5 Lts. Ret Pet   Familiar    Retornable    25      56    35    53   53
## 1863 500 ml NR Vidrio Individual No Retornable    21      25    19    23   23
## 1864       500 ml Ret Individual    Retornable    23      15    53     8   36
## 1865         8 Oz. NR Individual No Retornable     5       7     6     6    8
## 1866             Lata Individual No Retornable     2       5     2     5    2
## 1867      Lata 16 Oz. Individual No Retornable    NA      NA     2    NA    2
## 1868      Lata 235 ml Individual No Retornable     2       7     5     2    4
## 1869     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 1870    500 ml NR PET Individual No Retornable     1       2     1     2    2
## 1871        600 ml NR Individual No Retornable     1      NA     1     1    2
## 1872    1 Ltro. Tetra   Familiar No Retornable     5       2     3     2    3
## 1873     250 ml Tetra Individual No Retornable     2       0     0    NA   NA
## 1874   250 ML. NR VID Individual No Retornable     1       1     1     1    1
## 1875    413 ml NR VId Individual No Retornable     2       1     1     2    1
## 1876    500 ml NR PET Individual No Retornable     6       2     2     5    3
## 1877     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     2   NA
## 1878   300 ML. NR PET Individual No Retornable    NA       1     0     1    1
## 1879    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1880     200 ml Tetra Individual No Retornable     0       0     0    NA   NA
## 1881        600 ml NR Individual No Retornable     4       4     2     4    3
## 1882        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1883      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1884     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1885       12 Oz. Ret Individual    Retornable     2      NA     2     2    2
## 1886        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    6
## 1887   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1888        400 ml NR Individual No Retornable     0      NA    NA     1   NA
## 1889       500 ml Ret Individual    Retornable     2      NA     2    NA   NA
## 1890        600 ml NR Individual No Retornable    NA       1     1     3    1
## 1891      Lata 235 ml Individual No Retornable    NA       1     0     0   NA
## 1892     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1893       12 Oz. Ret Individual    Retornable     0      NA    NA    NA   NA
## 1894        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1895   250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 1896       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1897        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 1898      Lata 235 ml Individual No Retornable    NA       1     0     0   NA
## 1899       12 Oz. Ret Individual    Retornable     0       2    NA    NA   NA
## 1900   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1901        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1902       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 1903        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1904        600 ml NR Individual No Retornable     1       1     3     1    2
## 1905     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1906       12 Oz. Ret Individual    Retornable    NA      NA    NA     2   NA
## 1907        2 Lts. NR   Familiar No Retornable     3       6     3     3    3
## 1908        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 1909       500 ml Ret Individual    Retornable     2       2     2    NA    2
## 1910        600 ml NR Individual No Retornable     1       1     1     3    1
## 1911      Lata 235 ml Individual No Retornable    NA       1     0     0   NA
## 1912     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     4   NA
## 1913     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1914       12 Oz. Ret Individual    Retornable     2      NA     2     2    3
## 1915        2 Lts. NR   Familiar No Retornable    NA       3     6     3    3
## 1916   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 1917        400 ml NR Individual No Retornable    NA       0     2     1    1
## 1918       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 1919        600 ml NR Individual No Retornable     1       4     3     3    3
## 1920      Lata 235 ml Individual No Retornable    NA       1     0     0   NA
## 1921        600 ml NR Individual No Retornable     4       3     6     3   10
## 1922      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1923        600 ml NR Individual No Retornable     2      NA     1     1    1
## 1924      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 1925        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1926     1 Ltro. N.R. Individual No Retornable     4       2    NA     4   11
## 1927      1.5 Lts. NR Individual No Retornable     3       3    NA    10   13
## 1928   300 ML. NR PET Individual No Retornable    NA      NA     1     0   NA
## 1929        5 Lts. NR   Familiar No Retornable     4      NA    NA    NA   NA
## 1930        600 ml NR Individual No Retornable     8      NA    NA    NA   NA
## 1931   300 ML. NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1932   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 1933        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 1934   250 ml. NR PET Individual No Retornable     1      NA    NA     2    1
## 1935        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1936     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 1937     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA    2
## 1938    12 Oz. NR Pet Individual No Retornable    NA       1    NA     1    1
## 1939        2 Lts. NR   Familiar No Retornable    NA      NA     3     3    6
## 1940        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 1941      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 1942      Lata 450 ml Individual No Retornable     1      NA    NA    NA    1
## 1943    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 1944     1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 1945 500 ml NR Vidrio Individual No Retornable     2       2     4    NA   NA
## 1946      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1947     1 Ltro. N.R.   Familiar No Retornable    11      11    11     2   13
## 1948     1.250 Lts NR   Familiar No Retornable     8       8     8     8   13
## 1949      1.5 Lts. NR   Familiar No Retornable    16       3     6     6   13
## 1950     1.5 Lts. Ret   Familiar    Retornable    10       6     3     6    6
## 1951    12 Oz. NR Pet Individual No Retornable     2       2     3     2    2
## 1952        2 Lts. NR   Familiar No Retornable    NA      NA    NA     1   NA
## 1953      2.5 Lts. NR   Familiar No Retornable    63      39    35    11   95
## 1954 2.5 Lts. Ret Pet   Familiar    Retornable    25      21    14    11    4
## 1955    500 ml NR PET Individual No Retornable     4       6     6     2    4
## 1956 500 ml NR Vidrio Individual No Retornable    15      11    13     6   15
## 1957       500 ml Ret Individual    Retornable    40      27    25    25   19
## 1958         8 Oz. NR Individual No Retornable     1       1     1    NA   NA
## 1959             Lata Individual No Retornable     6       2     3    NA    3
## 1960      Lata 16 Oz. Individual No Retornable     2       4     4     2    6
## 1961      Lata 235 ml Individual No Retornable     5       3     3     2    4
## 1962        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 1963     1 Ltro. N.R. Individual No Retornable    NA       1    NA     1    1
## 1964    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1965        600 ml NR Individual No Retornable    NA      NA    NA     2   NA
## 1966     250 ml Tetra Individual No Retornable    NA       0     0     2    0
## 1967   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 1968    413 ml NR VId Individual No Retornable    NA      NA    NA     3    0
## 1969   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 1970     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 1971   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 1972    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA    1
## 1973    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA     1    2
## 1974    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 1975     200 ml Tetra Individual No Retornable    NA       0     0     0    0
## 1976        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 1977      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 1978      1.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 1979     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1980        2 Lts. NR   Familiar No Retornable     4       1    NA     1   NA
## 1981      2.5 Lts. NR   Familiar No Retornable     2       3     1     2   NA
## 1982   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 1983        400 ml NR Individual No Retornable    NA      NA     1    NA    0
## 1984       500 ml Ret Individual    Retornable     1       1    NA     1    3
## 1985        600 ml NR Individual No Retornable     1       1     1    NA    1
## 1986             Lata Individual No Retornable     0      NA    NA    NA   NA
## 1987      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 1988      1.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 1989     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 1990        2 Lts. NR   Familiar No Retornable     1       1     3     1    8
## 1991      2.5 Lts. NR   Familiar No Retornable     9       3     4     5    4
## 1992   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 1993        400 ml NR Individual No Retornable     1       0     1     0    1
## 1994       500 ml Ret Individual    Retornable     3       3     2     1    5
## 1995        600 ml NR Individual No Retornable     2       3     1     1    1
## 1996             Lata Individual No Retornable     0      NA    NA    NA   NA
## 1997      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 1998      1.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 1999        2 Lts. NR   Familiar No Retornable     1       1    NA     1   NA
## 2000      2.5 Lts. NR   Familiar No Retornable     2       3     3     2   NA
## 2001   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 2002        400 ml NR Individual No Retornable     1      NA     0     0    0
## 2003       500 ml Ret Individual    Retornable     1       1    NA     1    3
## 2004        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2005             Lata Individual No Retornable     0      NA    NA    NA   NA
## 2006        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2007     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2008   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2009       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2010      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 2011      1.5 Lts. NR   Familiar No Retornable     2       2     2     2    2
## 2012     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2013        2 Lts. NR   Familiar No Retornable     1       1    NA     1    6
## 2014      2.5 Lts. NR   Familiar No Retornable     2       3     3     2   NA
## 2015   250 ml. NR PET Individual No Retornable     0       0     0    NA    0
## 2016        400 ml NR Individual No Retornable     1       0     1     0    1
## 2017       500 ml Ret Individual    Retornable     1       1    NA     1    3
## 2018        600 ml NR Individual No Retornable     4       2     1    NA    1
## 2019             Lata Individual No Retornable     0      NA    NA    NA   NA
## 2020      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 2021    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2022        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2023      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2024      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2025        600 ml NR Individual No Retornable     1       1    NA    NA   NA
## 2026        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2027     1 Ltro. N.R. Individual No Retornable    15      49    40    25   59
## 2028      1.5 Lts. NR Individual No Retornable    10      13    NA    10   60
## 2029   300 ML. NR PET Individual No Retornable    NA      NA     0    NA    0
## 2030        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2031        600 ml NR Individual No Retornable    13      25    13    15   10
## 2032        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2033   300 ML. NR PET Individual No Retornable     1       3    NA    NA    2
## 2034     1 Ltro. N.R. Individual No Retornable     3       6     1     2    8
## 2035        600 ml NR Individual No Retornable     6       3     2    NA    8
## 2036        473 ml NR Individual No Retornable     1       3     1     1    2
## 2037   250 ml. NR PET Individual No Retornable     0       2    NA    NA   NA
## 2038        600 ml NR Individual No Retornable     8       5     3     3    5
## 2039   250 ml. NR PET Individual No Retornable     8       8     5     6   12
## 2040        400 ml NR Individual No Retornable     0       1     1     0    0
## 2041     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     1    1
## 2042     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA    2
## 2043    12 Oz. NR Pet Individual No Retornable    NA      NA     1     1    1
## 2044        2 Lts. NR   Familiar No Retornable     8       6     8     6   14
## 2045        600 ml NR Individual No Retornable     3       1    NA    NA   NA
## 2046      Lata 235 ml Individual No Retornable     1       0     1     1    2
## 2047      Lata 450 ml Individual No Retornable     2       4     4     4   11
## 2048    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2049     1 Ltro. N.R.   Familiar No Retornable    NA       4    NA    NA   NA
## 2050    237 ml NR Vid Individual No Retornable     1       2     1    NA    1
## 2051 500 ml NR Vidrio Individual No Retornable    NA       2    NA     2    2
## 2052     1 Ltro. N.R.   Familiar No Retornable     8       6    17    NA   15
## 2053       12 Oz. Ret Individual    Retornable     2       3     3     2    5
## 2054        2 Lts. NR   Familiar No Retornable    14      14    14    20   23
## 2055       2 Lts. Ret   Familiar    Retornable     3       8     6    14   11
## 2056 500 ml NR Vidrio Individual No Retornable     6      17    13    17   30
## 2057         8 Oz. NR Individual No Retornable     7       4     8     7    6
## 2058             Lata Individual No Retornable    NA      NA    NA     2    2
## 2059      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2060     1 Ltro. N.R.   Familiar No Retornable     4       6    11    NA    8
## 2061        2 Lts. NR   Familiar No Retornable     8       8     3     8    6
## 2062 500 ml NR Vidrio Individual No Retornable    NA       6    NA     4    4
## 2063         8 Oz. NR Individual No Retornable    NA       2    NA    NA   NA
## 2064     1 Ltro. N.R.   Familiar No Retornable    11      17    23    NA   38
## 2065     1.250 Lts NR   Familiar No Retornable    40      61    63    NA   66
## 2066      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2067     1.5 Lts. Ret   Familiar    Retornable    10       3     6     6    6
## 2068    12 Oz. NR Pet Individual No Retornable    27      20    30    15   27
## 2069       12 Oz. Ret Individual    Retornable     2      18    18    NA    3
## 2070        2 Lts. NR   Familiar No Retornable    42      59    34    42   28
## 2071       2 Lts. Ret   Familiar    Retornable    14      17    14     8   17
## 2072      2.5 Lts. NR   Familiar No Retornable    63     194    85    42   92
## 2073 2.5 Lts. Ret Pet   Familiar    Retornable    32      56    63    42   56
## 2074    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2075 500 ml NR Vidrio Individual No Retornable    46      95    51    25   78
## 2076       500 ml Ret Individual    Retornable    53      91    59   114   95
## 2077         8 Oz. NR Individual No Retornable    14      24    12     8   17
## 2078             Lata Individual No Retornable     3       5    14     2    8
## 2079      Lata 16 Oz. Individual No Retornable    NA       6    12     2    6
## 2080      Lata 235 ml Individual No Retornable     4       4    11     4    7
## 2081        600 ml NR Individual No Retornable    NA       3     2     3    3
## 2082     1 Ltro. N.R. Individual No Retornable     4       3     2     3    8
## 2083    500 ml NR PET Individual No Retornable     8       6     5     6    7
## 2084        600 ml NR Individual No Retornable     8       8     8    10   11
## 2085    1 Ltro. Tetra   Familiar No Retornable     6       2     2    NA    4
## 2086  125 ml NR Tetra Individual No Retornable     1       1     0     1    2
## 2087     250 ml Tetra Individual No Retornable     5       1     1     2    0
## 2088   250 ML. NR VID Individual No Retornable     7       6    NA     2    5
## 2089    413 ml NR VId Individual No Retornable    14      19    10    13   19
## 2090   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2091     1 Ltro. N.R.   Familiar No Retornable     2      NA     4     2    2
## 2092   300 ML. NR PET Individual No Retornable     2       3     0     1    2
## 2093    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2094    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2095    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2096    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2097     200 ml Tetra Individual No Retornable    NA      NA    NA     0    0
## 2098        600 ml NR Individual No Retornable     2       2    NA     3    1
## 2099      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2100        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2101      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2102      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2103     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2104        2 Lts. NR   Familiar No Retornable    NA       6     3     6    1
## 2105      2.5 Lts. NR   Familiar No Retornable     4       4    NA    NA   14
## 2106   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2107        400 ml NR Individual No Retornable     0       0     1     1    1
## 2108       500 ml Ret Individual    Retornable     1       1     6     1    2
## 2109        600 ml NR Individual No Retornable     3       2     4     4    3
## 2110             Lata Individual No Retornable    NA      NA     0     0   NA
## 2111      Lata 235 ml Individual No Retornable    NA       1     0    NA   NA
## 2112      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2113     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2114        2 Lts. NR   Familiar No Retornable     3      NA     6     3    1
## 2115      2.5 Lts. NR   Familiar No Retornable    NA       4    NA     4   18
## 2116   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2117        400 ml NR Individual No Retornable     0       0     0     1   NA
## 2118       500 ml Ret Individual    Retornable     1       1     2     5   NA
## 2119        600 ml NR Individual No Retornable     4       4     6     4    5
## 2120             Lata Individual No Retornable    NA      NA     0     0   NA
## 2121      Lata 235 ml Individual No Retornable    NA       1     0    NA   NA
## 2122      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2123        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2124      2.5 Lts. NR   Familiar No Retornable    NA       4    NA    NA   NA
## 2125   250 ml. NR PET Individual No Retornable     0       0    NA    NA   NA
## 2126        400 ml NR Individual No Retornable     0      NA     0     1   NA
## 2127       500 ml Ret Individual    Retornable     1       1    NA     1   NA
## 2128        600 ml NR Individual No Retornable     1       3     1     2    1
## 2129             Lata Individual No Retornable    NA      NA     0     0   NA
## 2130        600 ml NR Individual No Retornable     3       3     4     4    3
## 2131     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2132        2 Lts. NR   Familiar No Retornable    NA      11     8    NA    1
## 2133      2.5 Lts. NR   Familiar No Retornable     7       4    NA    NA   21
## 2134        400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2135       500 ml Ret Individual    Retornable    NA      NA     4    NA    2
## 2136        600 ml NR Individual No Retornable     4       5     3     5    4
## 2137      Lata 235 ml Individual No Retornable    NA       1     0    NA   NA
## 2138      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    1
## 2139     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2140       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2141        2 Lts. NR   Familiar No Retornable    NA      11     6    NA    1
## 2142      2.5 Lts. NR   Familiar No Retornable     7      11    NA     4   28
## 2143   250 ml. NR PET Individual No Retornable     0       0    NA    NA    3
## 2144        400 ml NR Individual No Retornable     1      NA     1     1   NA
## 2145       500 ml Ret Individual    Retornable     1       1    NA     3    6
## 2146        600 ml NR Individual No Retornable     4       8     6     5    8
## 2147             Lata Individual No Retornable    NA      NA     0     0   NA
## 2148      Lata 235 ml Individual No Retornable    NA       1     0    NA   NA
## 2149     1 Ltro. N.R. Individual No Retornable    NA       1     1    NA   NA
## 2150    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2151        600 ml NR Individual No Retornable    30      50    25    37   36
## 2152      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2153      Lata 453 ml Individual No Retornable    NA       1     1     3    7
## 2154        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2155        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2156        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2157     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    2
## 2158      1.5 Lts. NR Individual No Retornable    NA      NA    NA     3    3
## 2159   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2160        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 2161   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2162   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2163   250 ml. NR PET Individual No Retornable     1      NA     1     1   NA
## 2164     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 2165    12 Oz. NR Pet Individual No Retornable    NA       1     1     1   NA
## 2166        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 2167      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2168     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     4    2
## 2169        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2170       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2171 500 ml NR Vidrio Individual No Retornable   142      25    NA     6   66
## 2172     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2173     1.250 Lts NR   Familiar No Retornable   124      85    NA    26   95
## 2174      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2175     1.5 Lts. Ret   Familiar    Retornable   206     117    25    63   86
## 2176    12 Oz. NR Pet Individual No Retornable    11       8     2    23   15
## 2177       12 Oz. Ret Individual    Retornable    15      NA    NA    NA   32
## 2178        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   17
## 2179       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2180      2.5 Lts. NR   Familiar No Retornable   310     113    NA    14   46
## 2181 2.5 Lts. Ret Pet   Familiar    Retornable   778     419    67   335  257
## 2182        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2183    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    2
## 2184 500 ml NR Vidrio Individual No Retornable   152      38    NA    70   82
## 2185       500 ml Ret Individual    Retornable   934     579   254   311  353
## 2186         8 Oz. NR Individual No Retornable     8       6     2    17    5
## 2187             Lata Individual No Retornable     2       2     2    NA    2
## 2188      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 2189      Lata 235 ml Individual No Retornable    NA       1    NA    NA    3
## 2190     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 2191    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2192        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 2193     250 ml Tetra Individual No Retornable     0       0    NA     0   NA
## 2194   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 2195    413 ml NR VId Individual No Retornable     1      NA    NA     5   NA
## 2196   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2197     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2198     200 ml Tetra Individual No Retornable    NA       0    NA     0   NA
## 2199        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2200      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2201      1.5 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2202     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2203       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2204        2 Lts. NR   Familiar No Retornable    NA       6     1     3   20
## 2205   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 2206        400 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2207       500 ml Ret Individual    Retornable    10       7     2     3   16
## 2208        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2209      Lata 235 ml Individual No Retornable    NA      NA    NA     0    1
## 2210      1.5 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2211       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2212        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA    3
## 2213   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2214        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2215       500 ml Ret Individual    Retornable   223      64    32    73   29
## 2216      Lata 235 ml Individual No Retornable    NA      NA    NA     0    1
## 2217      1.5 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2218       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2219        2 Lts. NR   Familiar No Retornable    NA      NA     1    NA   NA
## 2220   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2221        400 ml NR Individual No Retornable    NA      NA    NA     0    1
## 2222       500 ml Ret Individual    Retornable   244       1    21    39   45
## 2223        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   11
## 2224       500 ml Ret Individual    Retornable     4      NA     4     4   NA
## 2225      Lata 235 ml Individual No Retornable    NA      NA    NA     0    1
## 2226      1.5 Lts. NR   Familiar No Retornable     1      NA    NA    NA   NA
## 2227     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2228       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2229        2 Lts. NR   Familiar No Retornable     3      NA     4    NA    8
## 2230   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2231        400 ml NR Individual No Retornable    NA      NA    NA     0    1
## 2232       500 ml Ret Individual    Retornable     1       5     4    22   20
## 2233      Lata 235 ml Individual No Retornable    NA      NA    NA     0    1
## 2234        600 ml NR Individual No Retornable    NA      NA    NA    NA    3
## 2235      Lata 222 ml Individual No Retornable    NA      NA     4    NA   NA
## 2236      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2237        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2238        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2239     1 Ltro. N.R. Individual No Retornable     2       4     4    NA    2
## 2240      1.5 Lts. NR Individual No Retornable     3      19     3    NA    3
## 2241        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2242   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2243     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     1   NA
## 2244        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2245   250 ml. NR PET Individual No Retornable     2       3     1     4    3
## 2246        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2247     1 Ltro. N.R.   Familiar No Retornable    NA       3     1    NA    1
## 2248    12 Oz. NR Pet Individual No Retornable    NA       3     1    NA    1
## 2249        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 2250     1 Ltro. N.R.   Familiar No Retornable     8       2     2     6    2
## 2251 500 ml NR Vidrio Individual No Retornable     4       2     4     8    6
## 2252         8 Oz. NR Individual No Retornable    NA       1    NA     1    1
## 2253     1 Ltro. N.R.   Familiar No Retornable    13       4     6     4    8
## 2254     1.250 Lts NR   Familiar No Retornable     3       3    NA     3   NA
## 2255      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2256     1.5 Lts. Ret   Familiar    Retornable    22       3     6    48    3
## 2257    12 Oz. NR Pet Individual No Retornable     5       5     5    12    2
## 2258      2.5 Lts. NR   Familiar No Retornable    NA      NA     7    35   28
## 2259 2.5 Lts. Ret Pet   Familiar    Retornable    74      81    74    85   21
## 2260        400 ml NR Individual No Retornable     3       3     2     2   NA
## 2261    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2262 500 ml NR Vidrio Individual No Retornable     6       4     6    11   13
## 2263       500 ml Ret Individual    Retornable   116      93   118   123  110
## 2264         8 Oz. NR Individual No Retornable     2       3     2     4    4
## 2265      Lata 16 Oz. Individual No Retornable     2       2    NA     4   NA
## 2266      Lata 235 ml Individual No Retornable     2       2     2     1   NA
## 2267     1 Ltro. N.R. Individual No Retornable    NA       1     1    NA    1
## 2268    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2269        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2270  125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 2271     250 ml Tetra Individual No Retornable     0       4     0    NA    0
## 2272   250 ML. NR VID Individual No Retornable     1      NA    NA    NA   NA
## 2273    413 ml NR VId Individual No Retornable     5       5     5     4    7
## 2274   300 ML. NR PET Individual No Retornable    NA      NA    NA     0    1
## 2275    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2276     200 ml Tetra Individual No Retornable     0       0     0    NA    0
## 2277        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2278        2 Lts. NR   Familiar No Retornable    NA       1    NA    NA   NA
## 2279        400 ml NR Individual No Retornable     0       0     0     0    0
## 2280       500 ml Ret Individual    Retornable    NA       2     2    NA   NA
## 2281        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2282      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 2283        2 Lts. NR   Familiar No Retornable    NA       1    NA     3   NA
## 2284        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2285       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2286      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 2287        2 Lts. NR   Familiar No Retornable     3       6    NA    11    3
## 2288        400 ml NR Individual No Retornable     0      NA     0     0   NA
## 2289       500 ml Ret Individual    Retornable     2       2     2     6    6
## 2290        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2291     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2292        2 Lts. NR   Familiar No Retornable    NA       3     3     3   NA
## 2293        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 2294       500 ml Ret Individual    Retornable    NA       2    NA    NA   NA
## 2295      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 2296     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2297        2 Lts. NR   Familiar No Retornable     6       1     3     8   NA
## 2298        400 ml NR Individual No Retornable     0       0     0     0   NA
## 2299       500 ml Ret Individual    Retornable     4       4     2     6    8
## 2300        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2301      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 2302    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2303        600 ml NR Individual No Retornable     1       3     3    NA    1
## 2304      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2305        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2306     1 Ltro. N.R. Individual No Retornable    17       8    NA     2    2
## 2307      1.5 Lts. NR Individual No Retornable    22       3    NA     3    3
## 2308        600 ml NR Individual No Retornable     3       3    NA    NA   NA
## 2309     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2310     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2311        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 2312        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2313   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2314   250 ml. NR PET Individual No Retornable     3       4     1     2    3
## 2315        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2316     1 Ltro. N.R.   Familiar No Retornable    NA       1    NA     1   NA
## 2317     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2318    12 Oz. NR Pet Individual No Retornable    NA       1     1     1   NA
## 2319        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2320    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2321 500 ml NR Vidrio Individual No Retornable     2      NA     4    NA    2
## 2322     1 Ltro. N.R.   Familiar No Retornable    13      38    19    25   19
## 2323       12 Oz. Ret Individual    Retornable     3      NA     3     2    3
## 2324        2 Lts. NR   Familiar No Retornable    48      39    76     3   51
## 2325 500 ml NR Vidrio Individual No Retornable     8       4    32    NA   11
## 2326         8 Oz. NR Individual No Retornable     2       1     2     2    3
## 2327             Lata Individual No Retornable     2       3    NA     5    2
## 2328     1 Ltro. N.R.   Familiar No Retornable     6       4     6     2    8
## 2329 500 ml NR Vidrio Individual No Retornable     2       4     4    NA    6
## 2330        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 2331         8 Oz. NR Individual No Retornable     2      NA     2     1   NA
## 2332     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2333     1.250 Lts NR   Familiar No Retornable    58      69    53    71   50
## 2334      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2335     1.5 Lts. Ret   Familiar    Retornable     3       3     6     3    3
## 2336     1.750 Lts NR   Familiar No Retornable    NA      NA    NA     5   NA
## 2337    12 Oz. NR Pet Individual No Retornable     9      23     5    23    5
## 2338        2 Lts. NR   Familiar No Retornable    NA      NA    34    34    6
## 2339      2.5 Lts. NR   Familiar No Retornable    NA     201   187    42  180
## 2340 2.5 Lts. Ret Pet   Familiar    Retornable    67      95   148   130   46
## 2341 500 ml NR Vidrio Individual No Retornable    36      25    27    NA   49
## 2342       500 ml Ret Individual    Retornable    53      59    34   125   34
## 2343         8 Oz. NR Individual No Retornable     6       6     5     7   10
## 2344             Lata Individual No Retornable     3      24    NA     4    5
## 2345      Lata 16 Oz. Individual No Retornable     2      NA    NA    NA   NA
## 2346     1 Ltro. N.R. Individual No Retornable    NA       1     1    NA   NA
## 2347    500 ml NR PET Individual No Retornable    NA      NA     1     1   NA
## 2348  125 ml NR Tetra Individual No Retornable     1      NA    NA    NA   NA
## 2349     250 ml Tetra Individual No Retornable     2       0     0     0   NA
## 2350   250 ML. NR VID Individual No Retornable     2       1     1    NA    2
## 2351    413 ml NR VId Individual No Retornable     6       5    18     4   11
## 2352   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2353     1 Ltro. N.R.   Familiar No Retornable     4       4     4     4    6
## 2354   300 ML. NR PET Individual No Retornable    NA       2    NA     1    1
## 2355     200 ml Tetra Individual No Retornable    NA       0     0    NA    0
## 2356        600 ml NR Individual No Retornable     3      NA    NA    NA    1
## 2357        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2358      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2359     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2360        2 Lts. NR   Familiar No Retornable     6       8     6    17   NA
## 2361   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2362        400 ml NR Individual No Retornable     0      NA     2     0    0
## 2363       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2364        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2365     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2366        2 Lts. NR   Familiar No Retornable    NA      NA     6    NA    8
## 2367   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2368        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2369       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2370        2 Lts. NR   Familiar No Retornable    NA      NA     3     6   NA
## 2371   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2372        400 ml NR Individual No Retornable     0      NA     2    NA   NA
## 2373       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2374     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2375        2 Lts. NR   Familiar No Retornable    NA       8    11     8    6
## 2376       500 ml Ret Individual    Retornable     6       2    13     6    8
## 2377      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2378     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2379     1.750 Lts NR   Familiar No Retornable    NA      NA    NA     5   NA
## 2380        2 Lts. NR   Familiar No Retornable     3      14    14    14   31
## 2381   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2382        400 ml NR Individual No Retornable     0       0     2    NA   NA
## 2383       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2384        600 ml NR Individual No Retornable     3       1     1     1    1
## 2385    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2386        600 ml NR Individual No Retornable     2      16    NA    NA    9
## 2387      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2388        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2389        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2390        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2391     1 Ltro. N.R. Individual No Retornable     2       4     6    19    6
## 2392      1.5 Lts. NR Individual No Retornable     3      16    35    25   32
## 2393        600 ml NR Individual No Retornable    NA      NA     3    NA    3
## 2394        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2395   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2396     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2397      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2398        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2399        600 ml NR Individual No Retornable     1      NA    NA     1    1
## 2400   250 ml. NR PET Individual No Retornable    11       1     8     6   16
## 2401        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2402     1 Ltro. N.R.   Familiar No Retornable     1       1     3     2    2
## 2403     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 2404    12 Oz. NR Pet Individual No Retornable    NA       1     2     1    1
## 2405        2 Lts. NR   Familiar No Retornable    23      14     8    17   11
## 2406        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2407      Lata 235 ml Individual No Retornable     0       0     0     0    0
## 2408      Lata 450 ml Individual No Retornable    NA       1     1     2    1
## 2409    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2410    237 ml NR Vid Individual No Retornable    NA      NA    NA     1   NA
## 2411 500 ml NR Vidrio Individual No Retornable    NA      NA    NA     4    4
## 2412      Lata 235 ml Individual No Retornable     1      NA    NA    NA    1
## 2413     1 Ltro. N.R.   Familiar No Retornable    21       2    23    13   32
## 2414        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2415      2.5 Lts. NR   Familiar No Retornable    32      25    53     7   92
## 2416 500 ml NR Vidrio Individual No Retornable    17      21    13    13   32
## 2417         8 Oz. NR Individual No Retornable     4       2    NA    NA    3
## 2418             Lata Individual No Retornable     2       2    NA    NA   NA
## 2419     1 Ltro. N.R.   Familiar No Retornable     6       2     2     8    8
## 2420        2 Lts. NR   Familiar No Retornable    11      23     3    14   NA
## 2421 500 ml NR Vidrio Individual No Retornable    13      15    13     4    8
## 2422         8 Oz. NR Individual No Retornable     2      NA    NA    NA    4
## 2423     1 Ltro. N.R.   Familiar No Retornable     2      NA    11     2   NA
## 2424     1.250 Lts NR   Familiar No Retornable    NA     161   172    11  198
## 2425      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2426     1.5 Lts. Ret   Familiar    Retornable    54      48    54   105   73
## 2427    12 Oz. NR Pet Individual No Retornable    12       5     2     5    2
## 2428        2 Lts. NR   Familiar No Retornable    NA      NA    NA     6   NA
## 2429      2.5 Lts. NR   Familiar No Retornable   190     229   204    NA  324
## 2430 2.5 Lts. Ret Pet   Familiar    Retornable   151     229   215   148  204
## 2431    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    2
## 2432 500 ml NR Vidrio Individual No Retornable    40      51    38    27   91
## 2433       500 ml Ret Individual    Retornable    34     116     2    87  144
## 2434         8 Oz. NR Individual No Retornable    21       9    10    11   22
## 2435             Lata Individual No Retornable     6      12    NA     9   12
## 2436      Lata 16 Oz. Individual No Retornable     6      12     6    NA   24
## 2437      Lata 235 ml Individual No Retornable     2       5    NA    NA    3
## 2438        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2439     1 Ltro. N.R. Individual No Retornable    NA       1     1     5    1
## 2440    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2441        600 ml NR Individual No Retornable     3       1    NA     3    4
## 2442     250 ml Tetra Individual No Retornable     0       0     0     1    1
## 2443   250 ML. NR VID Individual No Retornable    NA       1    NA    NA    0
## 2444    413 ml NR VId Individual No Retornable     4       4     5     3    8
## 2445   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2446     1 Ltro. N.R.   Familiar No Retornable     2       2     2     4   NA
## 2447   300 ML. NR PET Individual No Retornable     1       1     0     1    1
## 2448    1 Ltro. Tetra   Familiar No Retornable     2       1     3     3    2
## 2449    1 Ltro. Tetra   Familiar No Retornable     2       1     2     3    2
## 2450    1 Ltro. Tetra   Familiar No Retornable     2       1     5     3    6
## 2451    1 Ltro. Tetra   Familiar No Retornable     2       1     3     3    2
## 2452     200 ml Tetra Individual No Retornable     0       2     2     2    3
## 2453        600 ml NR Individual No Retornable     1       3     3     3    1
## 2454        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2455      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2456     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2457      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2458     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2459        2 Lts. NR   Familiar No Retornable    NA      17    NA     3    1
## 2460      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     3    5
## 2461        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 2462       500 ml Ret Individual    Retornable     2       2     1     5    2
## 2463        600 ml NR Individual No Retornable     3       2     3     3    3
## 2464      Lata 235 ml Individual No Retornable    NA       1    NA     0    0
## 2465     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2466      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2467     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2468        2 Lts. NR   Familiar No Retornable    NA      11    11     3    1
## 2469      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     3    5
## 2470        400 ml NR Individual No Retornable     0      NA    NA     0   NA
## 2471       500 ml Ret Individual    Retornable     2       2     3     5    4
## 2472        600 ml NR Individual No Retornable     4       2    NA    NA    4
## 2473      Lata 235 ml Individual No Retornable    NA       1    NA     0    0
## 2474      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2475        2 Lts. NR   Familiar No Retornable    NA      11    11    NA    1
## 2476      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     3    9
## 2477        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 2478       500 ml Ret Individual    Retornable     2      NA     1     5    2
## 2479        600 ml NR Individual No Retornable     1       2    NA     2    3
## 2480        600 ml NR Individual No Retornable     3       2     3     1    1
## 2481     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2482        2 Lts. NR   Familiar No Retornable    NA      17    NA     3    3
## 2483      2.5 Lts. NR   Familiar No Retornable     4      NA    NA    NA    4
## 2484       500 ml Ret Individual    Retornable    NA       4     2    NA   NA
## 2485        600 ml NR Individual No Retornable     3      NA    NA     1   NA
## 2486      Lata 235 ml Individual No Retornable    NA       1    NA     0    0
## 2487     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2488      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2489     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2490        2 Lts. NR   Familiar No Retornable     3      17    25    20    1
## 2491      2.5 Lts. NR   Familiar No Retornable    NA      NA     4     3    5
## 2492        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2493    500 ml NR PET Individual No Retornable    NA      NA    NA     4   NA
## 2494       500 ml Ret Individual    Retornable     2      NA     1     5    2
## 2495        600 ml NR Individual No Retornable     2      NA    NA     2    3
## 2496      Lata 235 ml Individual No Retornable    NA       1    NA     0    0
## 2497    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2498        600 ml NR Individual No Retornable    13      12    12     7   11
## 2499      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2500        2 Lts. NR   Familiar No Retornable    NA      NA     3     3    3
## 2501        600 ml NR Individual No Retornable     5       5     5     8    5
## 2502      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2503        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2504     1 Ltro. N.R. Individual No Retornable    17      21    40    15   59
## 2505      1.5 Lts. NR Individual No Retornable     3      19    38    44   76
## 2506   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2507    355 Ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2508        5 Lts. NR   Familiar No Retornable    11      NA     4    14   21
## 2509        600 ml NR Individual No Retornable    20      23    23    15   20
## 2510     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2511        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2512   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2513     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2514      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2515   250 ml. NR PET Individual No Retornable     2       2     2     2    2
## 2516    500 ml NR PET Individual No Retornable    NA      NA     2     2   NA
## 2517        600 ml NR Individual No Retornable     5       3     3     3    5
## 2518   250 ml. NR PET Individual No Retornable     4       1     0     8    5
## 2519        400 ml NR Individual No Retornable     2       2    NA     3   NA
## 2520     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1   NA
## 2521     1 Ltro. N.R. Individual No Retornable    NA       2     2     4    2
## 2522    12 Oz. NR Pet Individual No Retornable    NA       2     2     2    1
## 2523        2 Lts. NR   Familiar No Retornable     8       8     8     8    8
## 2524        600 ml NR Individual No Retornable     8       8     3     8    3
## 2525      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2526      Lata 450 ml Individual No Retornable    NA      NA    NA     1    1
## 2527    500 ml NR PET Individual No Retornable     2      NA    NA    NA   NA
## 2528 500 ml NR Vidrio Individual No Retornable    NA       2    NA     2    2
## 2529      Lata 235 ml Individual No Retornable     2       2     2     3    2
## 2530     1 Ltro. N.R.   Familiar No Retornable     2       2     4     2    6
## 2531        2 Lts. NR   Familiar No Retornable    11       6    14    NA    8
## 2532 500 ml NR Vidrio Individual No Retornable    11       4    19    11   21
## 2533        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 2534         8 Oz. NR Individual No Retornable     3      NA     1     3    2
## 2535             Lata Individual No Retornable    NA      NA    NA     2   NA
## 2536     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2537    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 2538        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 2539        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2540 500 ml NR Vidrio Individual No Retornable    NA      NA     2     2    2
## 2541     1 Ltro. N.R.   Familiar No Retornable    80      87    85    80  156
## 2542     1.250 Lts NR   Familiar No Retornable     5       8    26     8   11
## 2543      1.5 Lts. NR   Familiar No Retornable     3       3    22     6   16
## 2544     1.5 Lts. Ret   Familiar    Retornable    22      22    22    22   32
## 2545    12 Oz. NR Pet Individual No Retornable    33      20    24    14   41
## 2546       12 Oz. Ret Individual    Retornable     3      NA     2     3    3
## 2547        2 Lts. NR   Familiar No Retornable    31      14    17    14   25
## 2548       2 Lts. Ret   Familiar    Retornable     8       6    20     3   23
## 2549      2.5 Lts. NR   Familiar No Retornable   183     240   137   275  303
## 2550 2.5 Lts. Ret Pet   Familiar    Retornable    21      32    63    39   42
## 2551    500 ml NR PET Individual No Retornable    49      44    51    55   53
## 2552 500 ml NR Vidrio Individual No Retornable    78      51   131    78  125
## 2553       500 ml Ret Individual    Retornable   129      74    89   120  201
## 2554      6.5 Oz. Ret Individual    Retornable    NA      NA    NA     1   NA
## 2555        710 ml NR Individual No Retornable     3       6     9    NA    3
## 2556         8 Oz. NR Individual No Retornable    14      15    17    12   16
## 2557             Lata Individual No Retornable    20      11    18    11   24
## 2558      Lata 16 Oz. Individual No Retornable     8      10    10     8   18
## 2559      Lata 235 ml Individual No Retornable     6       6     4     5    7
## 2560        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2561     1 Ltro. N.R. Individual No Retornable     1       2     1     3    1
## 2562    500 ml NR PET Individual No Retornable    NA       1     2     2   NA
## 2563        600 ml NR Individual No Retornable     4       4     3     4    7
## 2564     250 ml Tetra Individual No Retornable     1       0     0     0    0
## 2565   250 ML. NR VID Individual No Retornable     1      NA    NA     1    1
## 2566   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2567    413 ml NR VId Individual No Retornable     8       3     2     3    6
## 2568    500 ml NR PET Individual No Retornable    NA      NA     2     2   NA
## 2569      Lata 335 ml Individual No Retornable    NA       1    NA    NA   NA
## 2570      Lata 453 ml Individual No Retornable     2       2     2    NA    1
## 2571   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 2572     1 Ltro. N.R.   Familiar No Retornable     2       6    NA     6    2
## 2573   300 ML. NR PET Individual No Retornable     1       1     1     1    1
## 2574    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2575     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 2576        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2577        600 ml NR Individual No Retornable     3      NA     5     8   10
## 2578      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2579        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2580      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2581     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA    4
## 2582      1.5 Lts. NR   Familiar No Retornable     2       2     4     6    4
## 2583     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2584        2 Lts. NR   Familiar No Retornable     3       6     7     4   NA
## 2585      2.5 Lts. NR   Familiar No Retornable    11      NA    11     4    4
## 2586   250 ml. NR PET Individual No Retornable     5       2     3     2    2
## 2587        400 ml NR Individual No Retornable     3       8     4     9    6
## 2588       500 ml Ret Individual    Retornable     4       2     5     5   10
## 2589        600 ml NR Individual No Retornable    11       3    18    13   18
## 2590             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2591      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 2592     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 2593      1.5 Lts. NR   Familiar No Retornable     2       2     4     6    4
## 2594     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2595        2 Lts. NR   Familiar No Retornable    NA       6    15     4    3
## 2596      2.5 Lts. NR   Familiar No Retornable     4       4    14     7   14
## 2597   250 ml. NR PET Individual No Retornable     1       1     1     1    2
## 2598        400 ml NR Individual No Retornable     2       1     2     4    7
## 2599       500 ml Ret Individual    Retornable     2       2     9     5   12
## 2600        600 ml NR Individual No Retornable     4      NA    13    10   13
## 2601             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2602      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 2603     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 2604      1.5 Lts. NR   Familiar No Retornable     2       2     4     6    4
## 2605        2 Lts. NR   Familiar No Retornable     3       3     7     6   NA
## 2606      2.5 Lts. NR   Familiar No Retornable     4      NA    11     7   NA
## 2607   250 ml. NR PET Individual No Retornable     3       2     2     2    2
## 2608        400 ml NR Individual No Retornable     2       1     2     3    7
## 2609       500 ml Ret Individual    Retornable     4       2     7     5   10
## 2610        600 ml NR Individual No Retornable     8      NA     8     8    8
## 2611             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2612        600 ml NR Individual No Retornable    NA      NA     8     5   NA
## 2613     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2614        2 Lts. NR   Familiar No Retornable    NA       3    NA     6    6
## 2615      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 2616        400 ml NR Individual No Retornable     2       1    NA     2   NA
## 2617       500 ml Ret Individual    Retornable    NA      NA     2    NA    2
## 2618        600 ml NR Individual No Retornable    NA      NA    NA     4   NA
## 2619      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 2620     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA     2    2
## 2621      1.5 Lts. NR   Familiar No Retornable     2       2     4     6    4
## 2622     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2623        2 Lts. NR   Familiar No Retornable    NA       6     7     6    6
## 2624      2.5 Lts. NR   Familiar No Retornable     4       4    14     7    7
## 2625   250 ml. NR PET Individual No Retornable     3       2     4     2    3
## 2626        400 ml NR Individual No Retornable     2       3     3     6    5
## 2627       500 ml Ret Individual    Retornable     4       2     9     7   12
## 2628        600 ml NR Individual No Retornable     9      NA    15    10   20
## 2629             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2630      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 2631    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2632        600 ml NR Individual No Retornable     3      NA    NA    NA    3
## 2633       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2634        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2635      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2636        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2637     1 Ltro. N.R. Individual No Retornable     2       4     8     6    2
## 2638      1.5 Lts. NR Individual No Retornable     3       6    13    10   NA
## 2639   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2640        600 ml NR Individual No Retornable     3       8     5     3    3
## 2641     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2642        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2643        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 2644   250 ml. NR PET Individual No Retornable     0       0     1     0    0
## 2645        600 ml NR Individual No Retornable     1       1     1     3    3
## 2646   250 ml. NR PET Individual No Retornable     3       4     1     0    3
## 2647        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2648     1 Ltro. N.R.   Familiar No Retornable     1       2     3    NA   NA
## 2649     1 Ltro. N.R. Individual No Retornable     2      NA     2     4    2
## 2650    12 Oz. NR Pet Individual No Retornable     2       2     2     1   NA
## 2651        2 Lts. NR   Familiar No Retornable     3       8    11    20   14
## 2652        600 ml NR Individual No Retornable     3      NA    NA     4    3
## 2653      Lata 450 ml Individual No Retornable    NA      NA     1    NA    1
## 2654     1 Ltro. N.R.   Familiar No Retornable     4       4     2    NA   NA
## 2655    237 ml NR Vid Individual No Retornable     1      NA    NA     1   NA
## 2656 500 ml NR Vidrio Individual No Retornable     2      NA     6    NA   NA
## 2657             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2658      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 2659     1 Ltro. N.R.   Familiar No Retornable    17      23    30    30   21
## 2660        2 Lts. NR   Familiar No Retornable    20      31    31    25   23
## 2661       2 Lts. Ret   Familiar    Retornable    NA       3     3     3    3
## 2662 500 ml NR Vidrio Individual No Retornable    13      17    17    17   19
## 2663         8 Oz. NR Individual No Retornable     4       3     2     4    5
## 2664             Lata Individual No Retornable    NA       3     2     2   NA
## 2665     1 Ltro. N.R.   Familiar No Retornable     4       6     8     2    6
## 2666        2 Lts. NR   Familiar No Retornable    11       8     6     6    8
## 2667 500 ml NR Vidrio Individual No Retornable     2       4     4     2    2
## 2668         8 Oz. NR Individual No Retornable    NA       1     1     1    2
## 2669     1 Ltro. N.R.   Familiar No Retornable    82      78    68    74   95
## 2670     1.250 Lts NR   Familiar No Retornable    34      26    24    29   26
## 2671      1.5 Lts. NR   Familiar No Retornable    16      16    25    25   19
## 2672     1.5 Lts. Ret   Familiar    Retornable    38      35    44    44   32
## 2673    12 Oz. NR Pet Individual No Retornable    26      20    20    27   24
## 2674        2 Lts. NR   Familiar No Retornable    45      54    54    37   68
## 2675       2 Lts. Ret   Familiar    Retornable    25      25    25    17   17
## 2676      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   11
## 2677 2.5 Lts. Ret Pet   Familiar    Retornable   261     208   151   208  271
## 2678    500 ml NR PET Individual No Retornable    17      17     8    11    6
## 2679 500 ml NR Vidrio Individual No Retornable    NA       2    NA    NA   30
## 2680       500 ml Ret Individual    Retornable   129      91    76    89  101
## 2681        710 ml NR Individual No Retornable    12       6    12     6   12
## 2682         8 Oz. NR Individual No Retornable    12      12     9    14   11
## 2683             Lata Individual No Retornable    11       9     8     9   11
## 2684      Lata 16 Oz. Individual No Retornable     8      10     8     8    8
## 2685      Lata 235 ml Individual No Retornable     7       8     6     5    8
## 2686        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 2687     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 2688    500 ml NR PET Individual No Retornable     1       4     2     3    2
## 2689        600 ml NR Individual No Retornable    NA       3     4     6    8
## 2690     250 ml Tetra Individual No Retornable     1      NA    NA    NA   NA
## 2691   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 2692    413 ml NR VId Individual No Retornable     3      NA     4     7    4
## 2693   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2694     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     4    2
## 2695   300 ML. NR PET Individual No Retornable     0       1    NA     0    0
## 2696    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2697     200 ml Tetra Individual No Retornable     0      NA    NA    NA   NA
## 2698        600 ml NR Individual No Retornable     3       3     4     2    2
## 2699      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2700        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2701      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2702     1 Ltro. N.R.   Familiar No Retornable     4       2     4     2    2
## 2703      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2704        2 Lts. NR   Familiar No Retornable     1      NA     4     4    3
## 2705      2.5 Lts. NR   Familiar No Retornable     4       6     6     1    7
## 2706   250 ml. NR PET Individual No Retornable     0       0     1     0    0
## 2707        400 ml NR Individual No Retornable     0      NA     1    NA   NA
## 2708       500 ml Ret Individual    Retornable     2       3     2     3    2
## 2709        600 ml NR Individual No Retornable     3       4     3     4    4
## 2710             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2711      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2712      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2713        2 Lts. NR   Familiar No Retornable     1      NA     1     4    3
## 2714      2.5 Lts. NR   Familiar No Retornable     1       3     3     1   NA
## 2715   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 2716       500 ml Ret Individual    Retornable     2       3     2     3    2
## 2717        600 ml NR Individual No Retornable     1       3     1     1    3
## 2718             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2719      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2720     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2721      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2722        2 Lts. NR   Familiar No Retornable     1      NA     1     1   NA
## 2723      2.5 Lts. NR   Familiar No Retornable     4       3     3     1   NA
## 2724   250 ml. NR PET Individual No Retornable     0       0     1     0    0
## 2725        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2726       500 ml Ret Individual    Retornable     2       3     2     3    2
## 2727        600 ml NR Individual No Retornable     3       3     1     1    1
## 2728             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2729        600 ml NR Individual No Retornable     1       2     3     1    2
## 2730        2 Lts. NR   Familiar No Retornable    NA      NA     3     3   NA
## 2731      2.5 Lts. NR   Familiar No Retornable     4       4     4    NA    4
## 2732        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 2733       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2734        600 ml NR Individual No Retornable    NA       3    NA     3    3
## 2735      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2736     1 Ltro. N.R.   Familiar No Retornable     6       2     6     4    2
## 2737      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2738        2 Lts. NR   Familiar No Retornable     1      NA     4     6    3
## 2739      2.5 Lts. NR   Familiar No Retornable     8       8    10     3    7
## 2740   250 ml. NR PET Individual No Retornable     0       0     1     0    0
## 2741        400 ml NR Individual No Retornable     0      NA    NA    NA    3
## 2742       500 ml Ret Individual    Retornable     2       3     2     3    2
## 2743        600 ml NR Individual No Retornable     4       4     4     6    4
## 2744             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 2745      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2746        600 ml NR Individual No Retornable     6      10     4    10   10
## 2747      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2748       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 2749        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2750        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2751     1 Ltro. N.R. Individual No Retornable     4       6     8     2    6
## 2752      1.5 Lts. NR Individual No Retornable     3       6    10    10    3
## 2753   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2754        5 Lts. NR   Familiar No Retornable     4       7     4     4   NA
## 2755        600 ml NR Individual No Retornable     3       5     5    NA    3
## 2756        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2757   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2758   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2759        600 ml NR Individual No Retornable     1       1     1     1    1
## 2760   250 ml. NR PET Individual No Retornable     2       4     3     3    4
## 2761        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2762     1 Ltro. N.R.   Familiar No Retornable    NA      NA     1     1    1
## 2763    12 Oz. NR Pet Individual No Retornable    NA       3     1     1    1
## 2764        2 Lts. NR   Familiar No Retornable     6       3     3    NA    3
## 2765      Lata 235 ml Individual No Retornable    NA      NA    NA     0    0
## 2766      Lata 450 ml Individual No Retornable     1      NA    NA     1   NA
## 2767    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2768     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2   NA
## 2769 500 ml NR Vidrio Individual No Retornable    NA       2    NA     2    2
## 2770     1 Ltro. N.R.   Familiar No Retornable    11       6    13     8   13
## 2771      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2772     1.5 Lts. Ret   Familiar    Retornable     3       3     3     3    3
## 2773    12 Oz. NR Pet Individual No Retornable     8       5     5     6    6
## 2774       12 Oz. Ret Individual    Retornable     3       3     3     5    5
## 2775        2 Lts. NR   Familiar No Retornable    11       8    11    14    8
## 2776      2.5 Lts. NR   Familiar No Retornable    28      35    46    49   39
## 2777 2.5 Lts. Ret Pet   Familiar    Retornable    21      18    18    11   14
## 2778 500 ml NR Vidrio Individual No Retornable    23      15    23    23   21
## 2779       500 ml Ret Individual    Retornable    23      21    32    42   42
## 2780         8 Oz. NR Individual No Retornable     1       2     2     3    3
## 2781             Lata Individual No Retornable     2       2     3     3    2
## 2782      Lata 235 ml Individual No Retornable     2       1     2     2    2
## 2783     1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 2784    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2785        600 ml NR Individual No Retornable     1       1     1    NA    1
## 2786     250 ml Tetra Individual No Retornable    NA      NA     0     0    0
## 2787   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 2788    413 ml NR VId Individual No Retornable     1       1     1     3    3
## 2789   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2790   300 ML. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2791     200 ml Tetra Individual No Retornable    NA      NA     0     0    0
## 2792        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 2793        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2794      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2795     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2796        2 Lts. NR   Familiar No Retornable     3       3    NA     3   NA
## 2797   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2798        400 ml NR Individual No Retornable     1       0     0     0    3
## 2799       500 ml Ret Individual    Retornable     1       1     1     2   NA
## 2800        600 ml NR Individual No Retornable     4       2     3     3    4
## 2801      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2802     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2803        2 Lts. NR   Familiar No Retornable     6       6    NA     3    3
## 2804   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2805        400 ml NR Individual No Retornable     1       0     0     1    1
## 2806       500 ml Ret Individual    Retornable     1       1     3     2    2
## 2807        600 ml NR Individual No Retornable     3       1     2     2    2
## 2808      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2809        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2810   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2811        400 ml NR Individual No Retornable     0      NA     0     0    1
## 2812       500 ml Ret Individual    Retornable     1       1     1     2   NA
## 2813        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 2814        600 ml NR Individual No Retornable    NA      NA     1    NA    1
## 2815     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2816        2 Lts. NR   Familiar No Retornable    NA      NA     3     3   NA
## 2817        400 ml NR Individual No Retornable     0      NA    NA    NA   NA
## 2818      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2819     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2820        2 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2821   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 2822        400 ml NR Individual No Retornable     1       1    NA     1    1
## 2823       500 ml Ret Individual    Retornable     3       1     1     2   NA
## 2824        600 ml NR Individual No Retornable     3       1     3     1    3
## 2825      Lata 235 ml Individual No Retornable    NA       0     0    NA    0
## 2826    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2827        600 ml NR Individual No Retornable     2       1     1     3    3
## 2828      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2829        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2830        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2831      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2832        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2833     1 Ltro. N.R. Individual No Retornable    NA       8     2     2   55
## 2834      1.5 Lts. NR Individual No Retornable    NA       3     3     3    3
## 2835        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2836        600 ml NR Individual No Retornable    10      20    NA    10   15
## 2837   300 ML. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 2838   250 ml. NR PET Individual No Retornable    NA       1     1     1    2
## 2839        600 ml NR Individual No Retornable    NA       3    NA     3    3
## 2840   250 ml. NR PET Individual No Retornable     4       6     2     3   10
## 2841        400 ml NR Individual No Retornable    NA       0     0     1    0
## 2842     1 Ltro. N.R.   Familiar No Retornable     2       1     1    NA    2
## 2843     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2   NA
## 2844    12 Oz. NR Pet Individual No Retornable    NA       2     1     2    1
## 2845        2 Lts. NR   Familiar No Retornable     8      14    NA     6   11
## 2846      Lata 235 ml Individual No Retornable     0       0     1     1    1
## 2847      Lata 450 ml Individual No Retornable    NA      NA     1     3    2
## 2848    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2849 500 ml NR Vidrio Individual No Retornable     4       2    NA     4    2
## 2850     1 Ltro. N.R.   Familiar No Retornable     6       4     2     6    6
## 2851        2 Lts. NR   Familiar No Retornable    11      14     8     8   17
## 2852        400 ml NR Individual No Retornable     2       2    NA     2    2
## 2853 500 ml NR Vidrio Individual No Retornable     8      21     4     8    6
## 2854         8 Oz. NR Individual No Retornable     1      NA    NA     1    1
## 2855             Lata Individual No Retornable    NA      NA     2    NA   NA
## 2856     1 Ltro. N.R.   Familiar No Retornable     2       2     6    NA    2
## 2857 500 ml NR Vidrio Individual No Retornable     4       2     6     2    2
## 2858         8 Oz. NR Individual No Retornable    NA       1    NA    NA   NA
## 2859             Lata Individual No Retornable    NA       2    NA    NA   NA
## 2860      Lata 235 ml Individual No Retornable     1       3    NA    NA   NA
## 2861     1 Ltro. N.R.   Familiar No Retornable    NA      25    42    42   70
## 2862     1.250 Lts NR   Familiar No Retornable    NA      NA    11     8   40
## 2863      1.5 Lts. NR   Familiar No Retornable    NA      NA    13    16   51
## 2864     1.5 Lts. Ret   Familiar    Retornable    98      48    41   288    3
## 2865    12 Oz. NR Pet Individual No Retornable     5      18     6    36    5
## 2866        2 Lts. NR   Familiar No Retornable    NA      NA    NA     8    3
## 2867       2 Lts. Ret   Familiar    Retornable     6       3     3     8    8
## 2868      2.5 Lts. NR   Familiar No Retornable    NA     144   120    NA  190
## 2869 2.5 Lts. Ret Pet   Familiar    Retornable   130     338   247   416   77
## 2870    500 ml NR PET Individual No Retornable     2       8     8    19   34
## 2871 500 ml NR Vidrio Individual No Retornable     6     167    NA    NA   97
## 2872       500 ml Ret Individual    Retornable   101     251   222   839   44
## 2873         8 Oz. NR Individual No Retornable    NA       2     4     4    7
## 2874             Lata Individual No Retornable    NA      NA     8    21   18
## 2875      Lata 16 Oz. Individual No Retornable    NA      NA     6    14   28
## 2876      Lata 235 ml Individual No Retornable     9       4     7     8    3
## 2877        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 2878     1 Ltro. N.R. Individual No Retornable     1       1     1     1    5
## 2879    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 2880        600 ml NR Individual No Retornable     1       3     2    NA    3
## 2881  125 ml NR Tetra Individual No Retornable     1      NA    NA    NA   NA
## 2882     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 2883   250 ML. NR VID Individual No Retornable     2       2     1    NA    1
## 2884    413 ml NR VId Individual No Retornable    10      21    NA     2   18
## 2885     1 Ltro. N.R.   Familiar No Retornable     2       2     2     2   NA
## 2886   300 ML. NR PET Individual No Retornable     0       1     1     1    1
## 2887    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2888     200 ml Tetra Individual No Retornable     0       1     2     0    1
## 2889        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2890      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2891      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2892     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2    2
## 2893      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2894     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2895        2 Lts. NR   Familiar No Retornable     3      14     6    14    6
## 2896   250 ml. NR PET Individual No Retornable     3       1     1     1    1
## 2897        400 ml NR Individual No Retornable    NA      NA     2    NA    2
## 2898       500 ml Ret Individual    Retornable     8       3    15    35   NA
## 2899        600 ml NR Individual No Retornable     5       3     3     3    5
## 2900      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 2901     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 2902      1.5 Lts. NR   Familiar No Retornable    NA       3    NA    NA   NA
## 2903     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2904        2 Lts. NR   Familiar No Retornable    NA       6     6     8    3
## 2905   250 ml. NR PET Individual No Retornable     1       1     0     0    1
## 2906        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2907       500 ml Ret Individual    Retornable     4       5    13    31   NA
## 2908        600 ml NR Individual No Retornable     3       3    NA     3    3
## 2909      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 2910      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2911        2 Lts. NR   Familiar No Retornable     3      NA    NA     3    3
## 2912   250 ml. NR PET Individual No Retornable     1       1     1     1    1
## 2913        400 ml NR Individual No Retornable    NA      NA    NA    NA    2
## 2914       500 ml Ret Individual    Retornable     2       3     6    35   NA
## 2915        600 ml NR Individual No Retornable     3       3    NA    NA   NA
## 2916        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2917     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2918        2 Lts. NR   Familiar No Retornable     6       3     3    NA   NA
## 2919        400 ml NR Individual No Retornable    NA      NA     2    NA   NA
## 2920       500 ml Ret Individual    Retornable     8       4     4    11   NA
## 2921      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 2922     1 Ltro. N.R.   Familiar No Retornable     6       4    NA     2    4
## 2923      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2924     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 2925        2 Lts. NR   Familiar No Retornable    NA      14     8    20   20
## 2926   250 ml. NR PET Individual No Retornable     3       1     1     1    2
## 2927        400 ml NR Individual No Retornable     0       2     3     2    2
## 2928       500 ml Ret Individual    Retornable     4       9    15    45    2
## 2929        600 ml NR Individual No Retornable     8       3     3     5    8
## 2930      Lata 235 ml Individual No Retornable    NA       1    NA     1    1
## 2931    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 2932        600 ml NR Individual No Retornable    NA       3    NA    NA    6
## 2933      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2934        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2935        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2936        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2937     1 Ltro. N.R. Individual No Retornable     6      11    15    11   13
## 2938      1.5 Lts. NR Individual No Retornable     6      13    25    22   19
## 2939   300 ML. NR PET Individual No Retornable    NA      NA    NA     0    0
## 2940        600 ml NR Individual No Retornable     5       3     3     8    5
## 2941     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 2942      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2943        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 2944   300 ML. NR PET Individual No Retornable     1       1     2     1    1
## 2945     1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 2946      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 2947   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 2948        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 2949   250 ml. NR PET Individual No Retornable     5       5     1     5    3
## 2950        400 ml NR Individual No Retornable     0      NA    NA    NA    1
## 2951     1 Ltro. N.R.   Familiar No Retornable    NA       3     1     2    5
## 2952     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 2953    12 Oz. NR Pet Individual No Retornable    NA       1     1     2    2
## 2954        2 Lts. NR   Familiar No Retornable    NA      11    NA     8    6
## 2955        600 ml NR Individual No Retornable     3      NA    NA    NA   NA
## 2956      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 2957      Lata 450 ml Individual No Retornable     1       1    NA     1    1
## 2958    500 ml NR PET Individual No Retornable     1      NA     1     1    2
## 2959 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 2960     1 Ltro. N.R.   Familiar No Retornable    19      15    19    17   21
## 2961        2 Lts. NR   Familiar No Retornable     6      NA     3     6    3
## 2962       2 Lts. Ret   Familiar    Retornable     6      NA    NA    NA   NA
## 2963      2.5 Lts. NR   Familiar No Retornable    25      21    21    28   28
## 2964        400 ml NR Individual No Retornable     3       3     3     2    2
## 2965 500 ml NR Vidrio Individual No Retornable    21      13    13    13   11
## 2966         8 Oz. NR Individual No Retornable    NA      NA     1     1   NA
## 2967             Lata Individual No Retornable     2      NA    NA    NA    2
## 2968      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 2969     1 Ltro. N.R.   Familiar No Retornable    11       6     6     4    6
## 2970        2 Lts. NR   Familiar No Retornable     3       6     6     6    6
## 2971 500 ml NR Vidrio Individual No Retornable     8       4     6     6    6
## 2972      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 2973     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA     2    2
## 2974     1.250 Lts NR   Familiar No Retornable    71      69    77    87   61
## 2975      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 2976     1.5 Lts. Ret   Familiar    Retornable    44      38    29    25   29
## 2977    12 Oz. NR Pet Individual No Retornable     3       5     6     9    9
## 2978        2 Lts. NR   Familiar No Retornable    31      23    31    46   31
## 2979       2 Lts. Ret   Familiar    Retornable     6      NA    NA     8    3
## 2980      2.5 Lts. NR   Familiar No Retornable    63     130    85   162  116
## 2981 2.5 Lts. Ret Pet   Familiar    Retornable    56     162    70   197  169
## 2982        400 ml NR Individual No Retornable     5      NA    NA    NA   NA
## 2983    500 ml NR PET Individual No Retornable     2       2     6    11    8
## 2984 500 ml NR Vidrio Individual No Retornable    25      53    61    59   49
## 2985       500 ml Ret Individual    Retornable   144     137   139   273   91
## 2986         8 Oz. NR Individual No Retornable     9       4     7     7    6
## 2987             Lata Individual No Retornable     3       5     2     5    3
## 2988      Lata 16 Oz. Individual No Retornable     2      NA     4     4    6
## 2989      Lata 235 ml Individual No Retornable     3       5     5     6    4
## 2990        600 ml NR Individual No Retornable    NA       1    NA     1   NA
## 2991     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    4
## 2992    500 ml NR PET Individual No Retornable     1      NA     1     2    1
## 2993        600 ml NR Individual No Retornable     1      NA    NA     2    1
## 2994    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 2995     250 ml Tetra Individual No Retornable     3       0     0     1    1
## 2996   250 ML. NR VID Individual No Retornable     1       1     0     1    2
## 2997    413 ml NR VId Individual No Retornable     5       5     7     5    9
## 2998   250 ml. NR PET Individual No Retornable     0      NA    NA    NA   NA
## 2999     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2    2
## 3000   300 ML. NR PET Individual No Retornable     1       1     1     1    0
## 3001    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3002    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3003     200 ml Tetra Individual No Retornable     0       0     1     1    2
## 3004        600 ml NR Individual No Retornable     4       4     5     3    3
## 3005        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3006     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3007        2 Lts. NR   Familiar No Retornable     3      NA    NA    NA   NA
## 3008      2.5 Lts. NR   Familiar No Retornable    11       4    11    14    7
## 3009   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 3010        400 ml NR Individual No Retornable    NA       0     0     1    1
## 3011       500 ml Ret Individual    Retornable    13       8    13    13   17
## 3012        600 ml NR Individual No Retornable     1       2     3     3    2
## 3013      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3014     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3015     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3016        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3017      2.5 Lts. NR   Familiar No Retornable     7       4     7    11    7
## 3018   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 3019        400 ml NR Individual No Retornable    NA      NA    NA     2    1
## 3020       500 ml Ret Individual    Retornable     1       6     2     8    4
## 3021        600 ml NR Individual No Retornable     1       1     3     1    3
## 3022      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3023      2.5 Lts. NR   Familiar No Retornable    NA       7     4    11    4
## 3024   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 3025        400 ml NR Individual No Retornable     2      NA    NA     1    1
## 3026       500 ml Ret Individual    Retornable     9       8     8     6    2
## 3027        600 ml NR Individual No Retornable     1       2     2     1    1
## 3028        600 ml NR Individual No Retornable     1       3    NA     2    3
## 3029     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3030        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3031      2.5 Lts. NR   Familiar No Retornable    11      11     7     7   14
## 3032   250 ml. NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3033        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3034       500 ml Ret Individual    Retornable     8       4     4     8   13
## 3035        600 ml NR Individual No Retornable     3       4     3     4    3
## 3036      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3037     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3038        2 Lts. NR   Familiar No Retornable    NA      NA     3     6   NA
## 3039      2.5 Lts. NR   Familiar No Retornable    11      11     7    18   14
## 3040   250 ml. NR PET Individual No Retornable     0       0     0     0    0
## 3041        400 ml NR Individual No Retornable     2       0     1     2    2
## 3042       500 ml Ret Individual    Retornable    17      13    13    23   15
## 3043        600 ml NR Individual No Retornable     4       5     4     3    4
## 3044      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3045        600 ml NR Individual No Retornable    NA      NA    NA     1   NA
## 3046    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3047        600 ml NR Individual No Retornable     3       6     1     3    8
## 3048      Lata 222 ml Individual No Retornable    NA      NA     0    NA   NA
## 3049      Lata 453 ml Individual No Retornable    NA      NA    NA    NA    1
## 3050        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3051     1 Ltro. N.R. Individual No Retornable     8      19    13     2   15
## 3052      1.5 Lts. NR Individual No Retornable     3       3    13     6    3
## 3053   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3054   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3055        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3056   250 ml. NR PET Individual No Retornable     2       3    NA     1    2
## 3057        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3058     1 Ltro. N.R.   Familiar No Retornable     1       1     1     1    1
## 3059    12 Oz. NR Pet Individual No Retornable     2       1     2     1    1
## 3060      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3061       12 Oz. Ret Individual    Retornable    NA      NA     2     2   NA
## 3062      Lata 235 ml Individual No Retornable     1       1     1     1   NA
## 3063     1 Ltro. N.R.   Familiar No Retornable    17      19    15     8   17
## 3064        2 Lts. NR   Familiar No Retornable     6       8     3    NA    6
## 3065       2 Lts. Ret   Familiar    Retornable     6       6     3     8   11
## 3066 500 ml NR Vidrio Individual No Retornable    23      NA    23    13   11
## 3067         8 Oz. NR Individual No Retornable     1      NA    NA     1    2
## 3068 500 ml NR Vidrio Individual No Retornable     4      NA     4     2    2
## 3069     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3070     1.250 Lts NR   Familiar No Retornable    48      42    32    32   32
## 3071      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3072     1.5 Lts. Ret   Familiar    Retornable    22      32    22    38   19
## 3073    12 Oz. NR Pet Individual No Retornable     5       6     6     6    5
## 3074       12 Oz. Ret Individual    Retornable     6       3     6     6    5
## 3075        2 Lts. NR   Familiar No Retornable    17      17     8    11   NA
## 3076       2 Lts. Ret   Familiar    Retornable     6       8     8    23   NA
## 3077      2.5 Lts. NR   Familiar No Retornable    NA      28    70    NA   70
## 3078 2.5 Lts. Ret Pet   Familiar    Retornable    92      88    63    42  176
## 3079    500 ml NR PET Individual No Retornable    17      15    11    15   19
## 3080 500 ml NR Vidrio Individual No Retornable    36      13    19    NA   32
## 3081       500 ml Ret Individual    Retornable    46      36    21    49   17
## 3082         8 Oz. NR Individual No Retornable    11       5     6     6   10
## 3083             Lata Individual No Retornable    NA      NA     3     3    3
## 3084      Lata 235 ml Individual No Retornable     4       1     2     2    2
## 3085     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 3086        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3087    1 Ltro. Tetra   Familiar No Retornable     8      12    NA    NA    2
## 3088     250 ml Tetra Individual No Retornable     1       0     0     0    0
## 3089   250 ML. NR VID Individual No Retornable    NA       1     4    NA    3
## 3090    413 ml NR VId Individual No Retornable     7      21    NA    NA   NA
## 3091   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3092    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3093     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3094        600 ml NR Individual No Retornable     1       1     1     1   NA
## 3095        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3096     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3097        2 Lts. NR   Familiar No Retornable     8       3     8    11    6
## 3098   250 ml. NR PET Individual No Retornable     3      NA     1    NA    1
## 3099        400 ml NR Individual No Retornable    NA       2    NA     0    0
## 3100       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 3101        600 ml NR Individual No Retornable     3      NA     1     1    3
## 3102      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3103     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3104        400 ml NR Individual No Retornable    NA      NA    NA     0   NA
## 3105       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 3106      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3107      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3108   250 ml. NR PET Individual No Retornable     1      NA     1    NA   NA
## 3109        400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 3110       500 ml Ret Individual    Retornable    NA      NA     1    NA   NA
## 3111     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3112        2 Lts. NR   Familiar No Retornable    14       6    14     3    6
## 3113       500 ml Ret Individual    Retornable     2       2     2    NA    2
## 3114        600 ml NR Individual No Retornable     1       1     1     1    1
## 3115      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3116     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3117        2 Lts. NR   Familiar No Retornable    NA       6     6     6    6
## 3118   250 ml. NR PET Individual No Retornable     1      NA    NA     1    1
## 3119        400 ml NR Individual No Retornable     0      NA    NA     0   NA
## 3120       500 ml Ret Individual    Retornable    NA      NA     3    NA   NA
## 3121        600 ml NR Individual No Retornable     3       8    NA     1    1
## 3122      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3123    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3124        600 ml NR Individual No Retornable    NA      NA     4    NA    3
## 3125        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3126        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3127     1 Ltro. N.R. Individual No Retornable     2       2     2     2    2
## 3128      1.5 Lts. NR Individual No Retornable     3      NA     3     3    3
## 3129   300 ML. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3130        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3131     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3132   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3133     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3134      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3135   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3136        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3137   250 ml. NR PET Individual No Retornable    NA       0     1    NA    1
## 3138        400 ml NR Individual No Retornable     0      NA     0    NA    0
## 3139     1 Ltro. N.R.   Familiar No Retornable     1      NA     1     1    3
## 3140     1 Ltro. N.R. Individual No Retornable     2      NA    NA    NA   NA
## 3141    12 Oz. NR Pet Individual No Retornable     2      NA     2     1    1
## 3142        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3143        600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 3144 500 ml NR Vidrio Individual No Retornable    NA      NA    NA     2    2
## 3145      Lata 235 ml Individual No Retornable    NA      NA     1    NA   NA
## 3146     1 Ltro. N.R.   Familiar No Retornable     2       2     4     6    2
## 3147        2 Lts. NR   Familiar No Retornable     8       6     3     8    3
## 3148 500 ml NR Vidrio Individual No Retornable     6       6     6     6    4
## 3149         8 Oz. NR Individual No Retornable     1       2     1     1    2
## 3150             Lata Individual No Retornable     2      NA    NA     2   NA
## 3151      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3152     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA    2
## 3153 500 ml NR Vidrio Individual No Retornable     4       4     2     2    2
## 3154         8 Oz. NR Individual No Retornable     1      NA    NA    NA    1
## 3155      Lata 235 ml Individual No Retornable    NA       1    NA     1   NA
## 3156     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3157     1.250 Lts NR   Familiar No Retornable    18      21    29    29   29
## 3158      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3159     1.5 Lts. Ret   Familiar    Retornable    13       6    16    25   10
## 3160    12 Oz. NR Pet Individual No Retornable     9      12     6    18    6
## 3161        2 Lts. NR   Familiar No Retornable    23      17    11    14   20
## 3162       2 Lts. Ret   Familiar    Retornable    11       6    11     8   11
## 3163      2.5 Lts. NR   Familiar No Retornable    21      32     7    25   28
## 3164 2.5 Lts. Ret Pet   Familiar    Retornable    35      11     7    35   28
## 3165 500 ml NR Vidrio Individual No Retornable    NA      38    NA     6   42
## 3166       500 ml Ret Individual    Retornable    46      34    44    44   51
## 3167        600 ml NR Individual No Retornable    NA      13     3     8    8
## 3168        710 ml NR Individual No Retornable    NA       6     3     3   NA
## 3169         8 Oz. NR Individual No Retornable    NA       7     4     5    5
## 3170             Lata Individual No Retornable     2       2     6     3   NA
## 3171      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3172      Lata 235 ml Individual No Retornable     4       2     2     2    2
## 3173        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3174     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 3175    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3176        600 ml NR Individual No Retornable    NA       3    NA    NA    1
## 3177    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3178     250 ml Tetra Individual No Retornable     1      NA     0     0    0
## 3179    413 ml NR VId Individual No Retornable    NA       2     1    NA    2
## 3180   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3181     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA   NA
## 3182   300 ML. NR PET Individual No Retornable     1      NA     0    NA    1
## 3183     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3184        600 ml NR Individual No Retornable    NA       3     3    NA    2
## 3185        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3186     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA    NA   NA
## 3187      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3188     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3189        2 Lts. NR   Familiar No Retornable     3       3     6    NA    3
## 3190   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3191        400 ml NR Individual No Retornable    NA       0     1     0    0
## 3192       500 ml Ret Individual    Retornable    NA      NA     1     1   NA
## 3193        600 ml NR Individual No Retornable    NA       1     1     1    1
## 3194      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3195      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3196        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3197   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3198        400 ml NR Individual No Retornable    NA      NA     0    NA    1
## 3199       500 ml Ret Individual    Retornable    NA      NA     1     1   NA
## 3200        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3201      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3202      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3203        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3204   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3205        400 ml NR Individual No Retornable    NA      NA     0     0   NA
## 3206       500 ml Ret Individual    Retornable    NA      NA     1     1   NA
## 3207        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3208        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3209        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 3210        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3211        600 ml NR Individual No Retornable    NA      NA     1    NA   NA
## 3212      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3213     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2   NA
## 3214      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3215     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3216        2 Lts. NR   Familiar No Retornable     6       3    NA     6   NA
## 3217   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3218        400 ml NR Individual No Retornable     0       0     0     1    0
## 3219       500 ml Ret Individual    Retornable    NA      NA     1     1    4
## 3220        600 ml NR Individual No Retornable    NA       3     1     1    2
## 3221      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3222    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3223        600 ml NR Individual No Retornable     4       4    NA     1    3
## 3224       12 Oz. Ret Individual    Retornable    NA      NA    NA     2   NA
## 3225        2 Lts. NR   Familiar No Retornable    NA       3     3     3   NA
## 3226        600 ml NR Individual No Retornable     8       8     6    10   10
## 3227        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3228     1 Ltro. N.R. Individual No Retornable    13      17     2     6   19
## 3229      1.5 Lts. NR Individual No Retornable     3      44     3    10   22
## 3230   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3231    355 Ml NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3232        600 ml NR Individual No Retornable    NA      10    10    NA    5
## 3233     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3234      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3235     1 Ltro. N.R. Individual No Retornable    NA       3    NA     1    4
## 3236      1.5 Lts. NR Individual No Retornable     2       2     2     6    8
## 3237       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3238   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3239    500 ml NR PET Individual No Retornable     1       3     1     1    1
## 3240        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3241   250 ml. NR PET Individual No Retornable     6       0     1     2    4
## 3242        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3243     1 Ltro. N.R.   Familiar No Retornable    NA      NA     1     1    1
## 3244     1 Ltro. N.R. Individual No Retornable     2       2    NA    NA   NA
## 3245    12 Oz. NR Pet Individual No Retornable     2       1     1     1    1
## 3246        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3247      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3248      Lata 450 ml Individual No Retornable    NA       1     1     1   NA
## 3249    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3250       12 Oz. Ret Individual    Retornable    NA      NA     2     2   NA
## 3251      Lata 235 ml Individual No Retornable    NA      NA     1     1   NA
## 3252     1 Ltro. N.R.   Familiar No Retornable    NA       4     4     4    2
## 3253       12 Oz. Ret Individual    Retornable     3       2     3     8    6
## 3254        2 Lts. NR   Familiar No Retornable    NA       3     3     6   NA
## 3255       2 Lts. Ret   Familiar    Retornable     3       8     6     8   11
## 3256 500 ml NR Vidrio Individual No Retornable    17      15    15    17   34
## 3257         8 Oz. NR Individual No Retornable     2       1     2    NA    1
## 3258             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3259      Lata 235 ml Individual No Retornable     2       3     2     2    1
## 3260 500 ml NR Vidrio Individual No Retornable     2       2     2     2   11
## 3261        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3262             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3263     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3264     1.250 Lts NR   Familiar No Retornable    50      61     3    55   87
## 3265      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3266     1.5 Lts. Ret   Familiar    Retornable    98      79    44   124  181
## 3267    12 Oz. NR Pet Individual No Retornable    20      23    23    44   32
## 3268       12 Oz. Ret Individual    Retornable    41      38    60    38   99
## 3269        2 Lts. NR   Familiar No Retornable    11      NA    NA     3   NA
## 3270       2 Lts. Ret   Familiar    Retornable     3      11    NA     6    6
## 3271      2.5 Lts. NR   Familiar No Retornable    70      53    42    42   81
## 3272 2.5 Lts. Ret Pet   Familiar    Retornable   423     366   447   683  866
## 3273    500 ml NR PET Individual No Retornable    46      34    21    27   38
## 3274 500 ml NR Vidrio Individual No Retornable    55      42    34    57   82
## 3275       500 ml Ret Individual    Retornable   306     203   334   505  611
## 3276      6.5 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3277         8 Oz. NR Individual No Retornable    17      13    13    22   16
## 3278             Lata Individual No Retornable     6       6    12     9   15
## 3279      Lata 16 Oz. Individual No Retornable    NA      NA    NA    NA   NA
## 3280      Lata 235 ml Individual No Retornable     3       1     2     3    2
## 3281     1 Ltro. N.R. Individual No Retornable     1       1     1     1    1
## 3282    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3283        600 ml NR Individual No Retornable     6       4    NA     6    4
## 3284     250 ml Tetra Individual No Retornable     3       2     0     0    1
## 3285   250 ML. NR VID Individual No Retornable    NA       0    NA    NA    1
## 3286    413 ml NR VId Individual No Retornable     3       6     2     2    4
## 3287   250 ml. NR PET Individual No Retornable    NA       1    NA    NA   NA
## 3288     1 Ltro. N.R.   Familiar No Retornable    NA       2     2     2    2
## 3289   300 ML. NR PET Individual No Retornable     1       1     1     1    1
## 3290    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3291    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3292    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3293     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3294        600 ml NR Individual No Retornable     3      NA     3     3   NA
## 3295        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3296      1.5 Lts. NR   Familiar No Retornable     3       3    NA     3   NA
## 3297     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3298       12 Oz. Ret Individual    Retornable     3       2     6     5   11
## 3299        2 Lts. NR   Familiar No Retornable    NA       8     8     8    3
## 3300      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   11
## 3301   250 ml. NR PET Individual No Retornable     1      NA     0     3   NA
## 3302        400 ml NR Individual No Retornable     3       2    NA     3    3
## 3303    500 ml NR PET Individual No Retornable    NA       2     2     2    2
## 3304       500 ml Ret Individual    Retornable     6       7     7     8    8
## 3305        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3306             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3307      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3308      1.5 Lts. NR   Familiar No Retornable     3      NA     3    NA    3
## 3309     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3310        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3311      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    4
## 3312   250 ml. NR PET Individual No Retornable    NA      NA     0    NA   NA
## 3313        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3314    500 ml NR PET Individual No Retornable     2       2    NA     2    4
## 3315       500 ml Ret Individual    Retornable    NA       1     1    NA   13
## 3316      Lata 235 ml Individual No Retornable    NA       0    NA     0   NA
## 3317      1.5 Lts. NR   Familiar No Retornable     6       3     6     3    6
## 3318       12 Oz. Ret Individual    Retornable     3       3     2     3    6
## 3319        2 Lts. NR   Familiar No Retornable    NA       6     3    NA   NA
## 3320   250 ml. NR PET Individual No Retornable     1      NA     0     1   NA
## 3321        400 ml NR Individual No Retornable     2       2    NA     2    2
## 3322    500 ml NR PET Individual No Retornable    NA       2    NA     2   NA
## 3323       500 ml Ret Individual    Retornable    NA       1     1     2   NA
## 3324        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3325     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3326       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3327        2 Lts. NR   Familiar No Retornable     3       8    11    11   11
## 3328      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3329       500 ml Ret Individual    Retornable     6       6     4    11    6
## 3330      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3331      1.5 Lts. NR   Familiar No Retornable     3       6     6     3    6
## 3332     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3333       12 Oz. Ret Individual    Retornable     5       3     5     6   11
## 3334        2 Lts. NR   Familiar No Retornable     3      14    17    17   11
## 3335      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   11
## 3336   250 ml. NR PET Individual No Retornable     3      NA     0     1    1
## 3337        400 ml NR Individual No Retornable     3       2    NA     3    3
## 3338    500 ml NR PET Individual No Retornable     2       2     4     4    4
## 3339       500 ml Ret Individual    Retornable    11       9    12     6   13
## 3340      Lata 235 ml Individual No Retornable    NA       0     0     0   NA
## 3341    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3342        600 ml NR Individual No Retornable     6       4     5     6    4
## 3343      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3344     1 Ltro. N.R. Individual No Retornable    NA      NA    NA     2    2
## 3345      1.5 Lts. NR Individual No Retornable    NA      NA    NA     3    3
## 3346        600 ml NR Individual No Retornable    NA      NA    NA     3   NA
## 3347      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3348        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3349   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3350   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3351        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3352     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3353     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3354    12 Oz. NR Pet Individual No Retornable    NA      NA    NA    NA   NA
## 3355        2 Lts. NR   Familiar No Retornable     6       6    NA     3   NA
## 3356      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3357      Lata 450 ml Individual No Retornable    NA      NA     1     1    1
## 3358 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3359     1 Ltro. N.R.   Familiar No Retornable     2       2     2    NA    2
## 3360 500 ml NR Vidrio Individual No Retornable     2       4     4     2    4
## 3361     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3362     1.250 Lts NR   Familiar No Retornable    NA      NA    NA    11   16
## 3363      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3364     1.5 Lts. Ret   Familiar    Retornable    10      13    16    22   16
## 3365    12 Oz. NR Pet Individual No Retornable     5       3     2     3    3
## 3366 2.5 Lts. Ret Pet   Familiar    Retornable    67      49    56    70   70
## 3367 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA   NA
## 3368       500 ml Ret Individual    Retornable    19      11    21    32   25
## 3369         8 Oz. NR Individual No Retornable    NA       2     1     1    1
## 3370      Lata 235 ml Individual No Retornable     1      NA    NA     1    1
## 3371        600 ml NR Individual No Retornable    NA       1    NA    NA   NA
## 3372     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3373    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3374        600 ml NR Individual No Retornable    NA       3    NA    NA   NA
## 3375     250 ml Tetra Individual No Retornable    NA       1     2    NA    2
## 3376   250 ML. NR VID Individual No Retornable    NA      NA    NA    NA   NA
## 3377    413 ml NR VId Individual No Retornable     4       2     4    NA    3
## 3378   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3379     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA     2   NA
## 3380   300 ML. NR PET Individual No Retornable    NA      NA     0     0    1
## 3381     200 ml Tetra Individual No Retornable    NA      NA    NA    NA   NA
## 3382      1.5 Lts. NR   Familiar No Retornable     3       5     3     3    2
## 3383     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3384        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 3385   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3386        400 ml NR Individual No Retornable     0       0     0    NA    0
## 3387       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3388      1.5 Lts. NR   Familiar No Retornable    NA      NA     2    NA   NA
## 3389     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3390   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3391        400 ml NR Individual No Retornable    NA       0    NA     0   NA
## 3392       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3393      1.5 Lts. NR   Familiar No Retornable     3       3     5     2    2
## 3394   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3395        400 ml NR Individual No Retornable     0       0    NA     0    1
## 3396       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3397     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3398        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 3399        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3400      1.5 Lts. NR   Familiar No Retornable     3       5     5     3    3
## 3401     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3402        2 Lts. NR   Familiar No Retornable     3       6     3     3    3
## 3403   250 ml. NR PET Individual No Retornable     0       0    NA     0    0
## 3404        400 ml NR Individual No Retornable     0       0     0     0    0
## 3405       500 ml Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3406    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3407        600 ml NR Individual No Retornable     1       1     1     3    2
## 3408        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3409        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3410     1 Ltro. N.R. Individual No Retornable     4       2     6     2    6
## 3411      1.5 Lts. NR Individual No Retornable     3       3    16     3   10
## 3412   300 ML. NR PET Individual No Retornable    NA      NA    NA     0    1
## 3413        600 ml NR Individual No Retornable    NA       3    NA    NA    3
## 3414      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3415        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3416   300 ML. NR PET Individual No Retornable     1      NA     1     1    2
## 3417      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3418   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3419        600 ml NR Individual No Retornable     1      NA     1     2    1
## 3420   250 ml. NR PET Individual No Retornable     6       3     3     4    5
## 3421        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3422     1 Ltro. N.R.   Familiar No Retornable     1       1     2     5    5
## 3423     1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 3424  100 ml NR Tetra Individual No Retornable     0      NA    NA    NA   NA
## 3425    12 Oz. NR Pet Individual No Retornable     2       2     2     2    2
## 3426        2 Lts. NR   Familiar No Retornable     3       6     6    14    6
## 3427        600 ml NR Individual No Retornable     3       1    NA     1   NA
## 3428      Lata 235 ml Individual No Retornable    NA      NA    NA    NA    0
## 3429      Lata 450 ml Individual No Retornable    NA       1    NA    NA   NA
## 3430    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3431     1 Ltro. N.R.   Familiar No Retornable     2       2    NA    NA   NA
## 3432    237 ml NR Vid Individual No Retornable     1       1    NA    NA    1
## 3433 500 ml NR Vidrio Individual No Retornable     2      NA    NA     2    4
## 3434      Lata 235 ml Individual No Retornable    NA       1    NA    NA   NA
## 3435     1 Ltro. N.R.   Familiar No Retornable    32      32    30    32   44
## 3436        2 Lts. NR   Familiar No Retornable    37      39    59    48   65
## 3437 500 ml NR Vidrio Individual No Retornable    17      19    17    25   40
## 3438         8 Oz. NR Individual No Retornable     4       6     3     2    4
## 3439             Lata Individual No Retornable     3       2    NA     3    3
## 3440     1 Ltro. N.R.   Familiar No Retornable     4       6     8     6   11
## 3441        2 Lts. NR   Familiar No Retornable     8      17    11    14   14
## 3442 500 ml NR Vidrio Individual No Retornable     4       6     2     6    6
## 3443         8 Oz. NR Individual No Retornable     1       1     1     1    1
## 3444     1 Ltro. N.R.   Familiar No Retornable    38      34    34    40   57
## 3445     1.250 Lts NR   Familiar No Retornable    32      26    55    48   58
## 3446      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3447     1.5 Lts. Ret   Familiar    Retornable     6      13    10    16   16
## 3448    12 Oz. NR Pet Individual No Retornable     5       3     8     6   11
## 3449       12 Oz. Ret Individual    Retornable     8       6     5     6    2
## 3450        2 Lts. NR   Familiar No Retornable    56      65    93    93  110
## 3451       2 Lts. Ret   Familiar    Retornable     6      11     8     3   14
## 3452      2.5 Lts. NR   Familiar No Retornable    88      67   144    81  123
## 3453 2.5 Lts. Ret Pet   Familiar    Retornable    60      67   127    67   85
## 3454    500 ml NR PET Individual No Retornable    NA       2    NA     4    2
## 3455 500 ml NR Vidrio Individual No Retornable    25      21    27    32   46
## 3456       500 ml Ret Individual    Retornable    23      27    42    66   42
## 3457        710 ml NR Individual No Retornable     9       6     3     3   12
## 3458         8 Oz. NR Individual No Retornable     7       8    11     9   12
## 3459             Lata Individual No Retornable     6       5     5     6    8
## 3460      Lata 16 Oz. Individual No Retornable     2       2     4     4    8
## 3461      Lata 235 ml Individual No Retornable     1       1     3     4    2
## 3462        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3463     1 Ltro. N.R. Individual No Retornable     1       2     1     2    2
## 3464    500 ml NR PET Individual No Retornable     1      NA    NA     1    3
## 3465        600 ml NR Individual No Retornable     3       1     1     3    8
## 3466     250 ml Tetra Individual No Retornable     2       1     1     1    1
## 3467   250 ML. NR VID Individual No Retornable     1       1     1    NA    1
## 3468    413 ml NR VId Individual No Retornable     5       3     3     4    7
## 3469   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3470     1 Ltro. N.R.   Familiar No Retornable    NA       4    NA    NA    4
## 3471   300 ML. NR PET Individual No Retornable     1       1    NA    NA    1
## 3472    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3473    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3474    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3475     200 ml Tetra Individual No Retornable     0       0     0     1    0
## 3476        600 ml NR Individual No Retornable     1       2     2    10    2
## 3477      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3478        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3479      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3480     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     4    2
## 3481     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3482       12 Oz. Ret Individual    Retornable     1       2     0    NA   NA
## 3483        2 Lts. NR   Familiar No Retornable     3       3     8    14   11
## 3484   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3485        400 ml NR Individual No Retornable    NA       0    NA    NA    0
## 3486       500 ml Ret Individual    Retornable     1       1     1     3    4
## 3487        600 ml NR Individual No Retornable     1       2     1     1    1
## 3488      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3489     1 Ltro. N.R.   Familiar No Retornable     4       2    NA    NA   NA
## 3490     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3491       12 Oz. Ret Individual    Retornable     1       2     0    NA   NA
## 3492        2 Lts. NR   Familiar No Retornable     3       3     8    NA    6
## 3493   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3494        400 ml NR Individual No Retornable     0       0    NA    NA    0
## 3495       500 ml Ret Individual    Retornable     1       1     1     3    2
## 3496        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 3497      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3498     1 Ltro. N.R.   Familiar No Retornable     4       2     2    NA    4
## 3499       12 Oz. Ret Individual    Retornable     1       2     0    NA   NA
## 3500        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3501   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3502        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 3503       500 ml Ret Individual    Retornable     1       1     1     3    4
## 3504        600 ml NR Individual No Retornable    NA       2    NA    NA    2
## 3505        600 ml NR Individual No Retornable     1       2     1     1    1
## 3506     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3507        2 Lts. NR   Familiar No Retornable    14       6    14    11   11
## 3508        400 ml NR Individual No Retornable    NA       0     0    NA    0
## 3509        600 ml NR Individual No Retornable     1      NA    NA    NA    1
## 3510      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3511     1 Ltro. N.R.   Familiar No Retornable     6       2     2     6    2
## 3512     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3513       12 Oz. Ret Individual    Retornable     1       2     0    NA   NA
## 3514        2 Lts. NR   Familiar No Retornable     6      NA     6    14   11
## 3515   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    0
## 3516        400 ml NR Individual No Retornable    NA       1    NA     0    0
## 3517       500 ml Ret Individual    Retornable     1       1     1     3    6
## 3518        600 ml NR Individual No Retornable     2       1     3     1    4
## 3519      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3520        600 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3521    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3522        600 ml NR Individual No Retornable    12       7     4     6   10
## 3523      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3524      Lata 453 ml Individual No Retornable    NA       0    NA    NA   NA
## 3525      LATA 680 ML Individual No Retornable    NA      NA     1     1   NA
## 3526       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3527        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3528        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3529     1 Ltro. N.R. Individual No Retornable     2       2    NA     2    2
## 3530      1.5 Lts. NR Individual No Retornable     3       6    NA     3    3
## 3531   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3532   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3533   250 ml. NR PET Individual No Retornable     2       2     3     2    3
## 3534     1 Ltro. N.R.   Familiar No Retornable     1       1    NA     1    1
## 3535    12 Oz. NR Pet Individual No Retornable     2       1     1     1    1
## 3536        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3537     1 Ltro. N.R.   Familiar No Retornable     2      NA    NA    NA   NA
## 3538     1 Ltro. N.R.   Familiar No Retornable    11      11     8    11    8
## 3539        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA   NA
## 3540       2 Lts. Ret   Familiar    Retornable     8       8     8    11    6
## 3541        400 ml NR Individual No Retornable     2       3    NA     2   NA
## 3542 500 ml NR Vidrio Individual No Retornable     6       8     8    11    6
## 3543         8 Oz. NR Individual No Retornable     2      NA     1     1   NA
## 3544             Lata Individual No Retornable     2      NA     2     1   NA
## 3545     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA    4
## 3546     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3547     1.250 Lts NR   Familiar No Retornable    50      42    45    45   32
## 3548      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3549     1.5 Lts. Ret   Familiar    Retornable    19      22    25    32   22
## 3550    12 Oz. NR Pet Individual No Retornable     2       2     2     2    2
## 3551       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA    2
## 3552       2 Lts. Ret   Familiar    Retornable    17      11    11    11   14
## 3553      2.5 Lts. NR   Familiar No Retornable    63      49    56    63   63
## 3554 2.5 Lts. Ret Pet   Familiar    Retornable   183     151   134   215  155
## 3555        400 ml NR Individual No Retornable     8       8     8     8   10
## 3556 500 ml NR Vidrio Individual No Retornable    13      13    13    19   17
## 3557       500 ml Ret Individual    Retornable    40      44    34    46   53
## 3558         8 Oz. NR Individual No Retornable     3       3     2     2    3
## 3559             Lata Individual No Retornable     5       3     3     3    5
## 3560      Lata 235 ml Individual No Retornable    NA      NA     1    NA    1
## 3561        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3562     1 Ltro. N.R. Individual No Retornable     1       1    NA     1    1
## 3563    500 ml NR PET Individual No Retornable    NA       1    NA    NA    1
## 3564        600 ml NR Individual No Retornable     1       1     1    NA    1
## 3565     250 ml Tetra Individual No Retornable     3       0     0     0    0
## 3566    413 ml NR VId Individual No Retornable     5       4     3     5    3
## 3567   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3568     1 Ltro. N.R.   Familiar No Retornable    NA      NA     2    NA   NA
## 3569   300 ML. NR PET Individual No Retornable     0       0    NA     0    0
## 3570     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3571        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3572      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3573     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3574        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3575   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3576        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3577       500 ml Ret Individual    Retornable     1       1     1     2    1
## 3578      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3579      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3580     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3581        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3582   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3583        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3584       500 ml Ret Individual    Retornable     1       1     1     2    1
## 3585      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3586        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3587   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3588        400 ml NR Individual No Retornable    NA      NA    NA    NA    0
## 3589       500 ml Ret Individual    Retornable     1       1     1     2    1
## 3590     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3591        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3592        400 ml NR Individual No Retornable    NA      NA     0    NA   NA
## 3593       500 ml Ret Individual    Retornable    NA      NA     2    NA   NA
## 3594      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3595     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3596        2 Lts. NR   Familiar No Retornable     3       3     3     6   NA
## 3597   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3598        400 ml NR Individual No Retornable     0      NA    NA     0    2
## 3599       500 ml Ret Individual    Retornable     1       1     1     2    1
## 3600      Lata 235 ml Individual No Retornable    NA       0    NA    NA   NA
## 3601    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3602        600 ml NR Individual No Retornable     3       1     1     3    5
## 3603       12 Oz. Ret Individual    Retornable    NA      NA    NA    NA   NA
## 3604        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3605      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3606        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3607     1 Ltro. N.R. Individual No Retornable     8       8    15     4    8
## 3608      1.5 Lts. NR Individual No Retornable    13       3    16     3   16
## 3609        600 ml NR Individual No Retornable    10      NA     3     5    8
## 3610        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3611   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3612      1.5 Lts. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3613        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3614   250 ml. NR PET Individual No Retornable     3       3     4     2    3
## 3615        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3616     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 3617     1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 3618    12 Oz. NR Pet Individual No Retornable    NA       2     1     1    1
## 3619        2 Lts. NR   Familiar No Retornable    NA      NA     3    NA    3
## 3620      Lata 235 ml Individual No Retornable    NA       0    NA    NA    0
## 3621      Lata 450 ml Individual No Retornable    NA      NA     1    NA   NA
## 3622    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3623 500 ml NR Vidrio Individual No Retornable     2      NA     2    NA   NA
## 3624      Lata 235 ml Individual No Retornable    NA       1     1    NA   NA
## 3625     1 Ltro. N.R.   Familiar No Retornable    11       6     8    11   17
## 3626        2 Lts. NR   Familiar No Retornable     6       8     6     3    8
## 3627        400 ml NR Individual No Retornable     5       3     3     2    2
## 3628 500 ml NR Vidrio Individual No Retornable    13       4    11    11    8
## 3629         8 Oz. NR Individual No Retornable     1       2     1     2    2
## 3630     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     2    4
## 3631        2 Lts. NR   Familiar No Retornable    NA       3     6     6    3
## 3632 500 ml NR Vidrio Individual No Retornable     2       2     4     2    4
## 3633     1 Ltro. N.R.   Familiar No Retornable    42      25    25    42   30
## 3634     1.250 Lts NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3635      1.5 Lts. NR   Familiar No Retornable    10       6    19    13   19
## 3636     1.5 Lts. Ret   Familiar    Retornable    16      13    22    22   19
## 3637    12 Oz. NR Pet Individual No Retornable     5       6     6     6    8
## 3638        2 Lts. NR   Familiar No Retornable    25      20    11    17   25
## 3639      2.5 Lts. NR   Familiar No Retornable    35      32    42    56   63
## 3640 2.5 Lts. Ret Pet   Familiar    Retornable    92     116   162   148  232
## 3641        400 ml NR Individual No Retornable     2      NA    NA    NA   NA
## 3642    500 ml NR PET Individual No Retornable     8       8     8     8   11
## 3643 500 ml NR Vidrio Individual No Retornable    25      15    19    23   32
## 3644       500 ml Ret Individual    Retornable    36      40    57    17   34
## 3645         8 Oz. NR Individual No Retornable     8       6     8     7    8
## 3646             Lata Individual No Retornable     2       3     3     5    3
## 3647      Lata 16 Oz. Individual No Retornable     2      NA     4     2    4
## 3648      Lata 235 ml Individual No Retornable     2       2     2     2    2
## 3649        600 ml NR Individual No Retornable    NA       1    NA    NA    1
## 3650     1 Ltro. N.R. Individual No Retornable    NA      NA     1     1    1
## 3651    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3652        600 ml NR Individual No Retornable     3       2    NA    NA    3
## 3653  125 ml NR Tetra Individual No Retornable    NA       1    NA    NA   NA
## 3654     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 3655   250 ML. NR VID Individual No Retornable    NA       0    NA    NA    1
## 3656    413 ml NR VId Individual No Retornable     5       3     7     3    8
## 3657   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3658     200 ml Tetra Individual No Retornable    NA       0     0     0    0
## 3659        600 ml NR Individual No Retornable     1       1     1     2    2
## 3660        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3661      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3662      1.5 Lts. NR   Familiar No Retornable     5       3     2     3    3
## 3663     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3664        2 Lts. NR   Familiar No Retornable     6      NA     6     3   NA
## 3665        400 ml NR Individual No Retornable    NA       0     0     0    1
## 3666       500 ml Ret Individual    Retornable     1      NA     1     1    3
## 3667        600 ml NR Individual No Retornable     1       1     2     1    1
## 3668      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3669      1.5 Lts. NR   Familiar No Retornable     5       2     2     2    2
## 3670     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3671        2 Lts. NR   Familiar No Retornable     4      NA     4    NA    6
## 3672        400 ml NR Individual No Retornable    NA      NA    NA     0    0
## 3673       500 ml Ret Individual    Retornable     1      NA     1     1    1
## 3674        600 ml NR Individual No Retornable     1       1     1     1    1
## 3675      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3676      1.5 Lts. NR   Familiar No Retornable     3       5     2     3    2
## 3677        2 Lts. NR   Familiar No Retornable     1      NA     1    NA    6
## 3678        400 ml NR Individual No Retornable    NA      NA    NA     1    1
## 3679       500 ml Ret Individual    Retornable     1      NA     1     1    1
## 3680        600 ml NR Individual No Retornable    NA       1    NA     2    1
## 3681        600 ml NR Individual No Retornable     1       1     1    NA   NA
## 3682     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3683        2 Lts. NR   Familiar No Retornable     6      NA     6    NA    3
## 3684        400 ml NR Individual No Retornable    NA       0     0     0    0
## 3685       500 ml Ret Individual    Retornable    NA       2    NA    NA    2
## 3686      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3687      1.5 Lts. NR   Familiar No Retornable     8       2     5     2    3
## 3688     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3689        2 Lts. NR   Familiar No Retornable     6       6     6     3    6
## 3690        400 ml NR Individual No Retornable     0       0     0     1    1
## 3691       500 ml Ret Individual    Retornable     1      NA     3     1    5
## 3692        600 ml NR Individual No Retornable     2       1     1     2    3
## 3693      Lata 235 ml Individual No Retornable    NA       0     0     0    0
## 3694    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3695        600 ml NR Individual No Retornable    NA      NA     3     3    4
## 3696      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3697        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3698        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3699     1 Ltro. N.R. Individual No Retornable     2       8    15    11   13
## 3700      1.5 Lts. NR Individual No Retornable    10      16    19    10   13
## 3701   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3702        600 ml NR Individual No Retornable    10      15    13    15   15
## 3703     1 Ltro. N.R. Individual No Retornable    NA      NA    NA    NA   NA
## 3704   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3705        600 ml NR Individual No Retornable    NA      NA    NA    NA    1
## 3706        600 ml NR Individual No Retornable     3      NA     4    NA   NA
## 3707   250 ml. NR PET Individual No Retornable     5       4     6     4    3
## 3708        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3709     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     3    4
## 3710  100 ml NR Tetra Individual No Retornable    NA       0    NA    NA   NA
## 3711    12 Oz. NR Pet Individual No Retornable    NA       1     1     2    1
## 3712        2 Lts. NR   Familiar No Retornable     3       3     6    NA    3
## 3713        600 ml NR Individual No Retornable    NA       3    NA     1    1
## 3714      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3715      Lata 450 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3716    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3717    237 ml NR Vid Individual No Retornable     1      NA    NA    NA   NA
## 3718 500 ml NR Vidrio Individual No Retornable     2      NA     2    NA   NA
## 3719      Lata 235 ml Individual No Retornable     2       3     1     1   NA
## 3720     1 Ltro. N.R.   Familiar No Retornable    NA       2     4     2    4
## 3721 500 ml NR Vidrio Individual No Retornable     4       6     2     6    4
## 3722         8 Oz. NR Individual No Retornable    NA      NA    NA    NA   NA
## 3723             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3724 500 ml NR Vidrio Individual No Retornable     2       2    NA     2   NA
## 3725         8 Oz. NR Individual No Retornable     1      NA    NA    NA   NA
## 3726     1 Ltro. N.R.   Familiar No Retornable    NA      NA    NA    NA   NA
## 3727     1.250 Lts NR   Familiar No Retornable    61      37    79    29   55
## 3728      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3729     1.5 Lts. Ret   Familiar    Retornable   130     101   149   133  193
## 3730    12 Oz. NR Pet Individual No Retornable     6      11    14    11   12
## 3731        2 Lts. NR   Familiar No Retornable     6      NA    NA     1   NA
## 3732       2 Lts. Ret   Familiar    Retornable    NA       3     3     6    3
## 3733      2.5 Lts. NR   Familiar No Retornable    NA      32    32    35   46
## 3734 2.5 Lts. Ret Pet   Familiar    Retornable   243     159   211   215  208
## 3735    500 ml NR PET Individual No Retornable    15       4    19    13   13
## 3736 500 ml NR Vidrio Individual No Retornable     8      17    17    13   23
## 3737       500 ml Ret Individual    Retornable   186     125   146   175  188
## 3738         8 Oz. NR Individual No Retornable     4       4     4     7    6
## 3739             Lata Individual No Retornable     5       2     5     3    3
## 3740      Lata 16 Oz. Individual No Retornable    NA      NA     4     6    4
## 3741      Lata 235 ml Individual No Retornable     9       7     7     3    4
## 3742     1 Ltro. N.R. Individual No Retornable    NA       1     1     1    1
## 3743        600 ml NR Individual No Retornable     1       1     3     1    2
## 3744     250 ml Tetra Individual No Retornable     2       0     0     0    1
## 3745   250 ML. NR VID Individual No Retornable    NA       0    NA    NA   NA
## 3746    413 ml NR VId Individual No Retornable     6       7     8     3    5
## 3747   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3748     1 Ltro. N.R.   Familiar No Retornable    NA       2    NA    NA    2
## 3749   300 ML. NR PET Individual No Retornable     1      NA     1    NA    1
## 3750     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3751        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3752      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3753      1.5 Lts. NR   Familiar No Retornable    10       3    11    10    4
## 3754     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3755        2 Lts. NR   Familiar No Retornable     1      NA     1    12   NA
## 3756        400 ml NR Individual No Retornable     1       4     2     0    2
## 3757       500 ml Ret Individual    Retornable     7       2     6     2    6
## 3758        600 ml NR Individual No Retornable     3       3     3    NA    3
## 3759             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3760      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 3761      1.5 Lts. NR   Familiar No Retornable     3      NA     5     3    4
## 3762     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3763        2 Lts. NR   Familiar No Retornable     1      NA     1     6   NA
## 3764        400 ml NR Individual No Retornable     1       1     2    NA    1
## 3765       500 ml Ret Individual    Retornable     5       4     6     2    2
## 3766        600 ml NR Individual No Retornable    NA       3     3    NA    3
## 3767             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3768      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 3769      1.5 Lts. NR   Familiar No Retornable     3       3     6     6    7
## 3770        2 Lts. NR   Familiar No Retornable     1      NA     1     4   NA
## 3771        400 ml NR Individual No Retornable     1       2    NA    NA   NA
## 3772       500 ml Ret Individual    Retornable     3       4    NA    NA    2
## 3773        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3774             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3775     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3776        2 Lts. NR   Familiar No Retornable    NA      NA     3     8   NA
## 3777        400 ml NR Individual No Retornable    NA      NA     2    NA   NA
## 3778       500 ml Ret Individual    Retornable     4      NA     4     2    4
## 3779        600 ml NR Individual No Retornable    NA       1     3    NA    3
## 3780      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 3781      1.5 Lts. NR   Familiar No Retornable    10       3    10    10    7
## 3782     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3783        2 Lts. NR   Familiar No Retornable     1       3     1     9    6
## 3784        400 ml NR Individual No Retornable     3       3     2     0    5
## 3785       500 ml Ret Individual    Retornable     7       8     8     6    8
## 3786        600 ml NR Individual No Retornable     3       4     5     3    5
## 3787             Lata Individual No Retornable    NA      NA    NA     0   NA
## 3788      Lata 235 ml Individual No Retornable    NA       0     0     0    1
## 3789    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3790        600 ml NR Individual No Retornable     1      NA     1     3    6
## 3791      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3792        2 Lts. NR   Familiar No Retornable    NA      NA    NA     8   NA
## 3793        600 ml NR Individual No Retornable     5      NA     5     3    5
## 3794      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3795        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3796     1 Ltro. N.R. Individual No Retornable     6      51     4     2    2
## 3797      1.5 Lts. NR Individual No Retornable     6      10    10    16   19
## 3798   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3799        5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3800        600 ml NR Individual No Retornable     5       3     3     5    3
## 3801        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3802   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3803     1 Ltro. N.R. Individual No Retornable    NA       2    NA    NA   NA
## 3804      1.5 Lts. NR Individual No Retornable    NA       3    NA     2   NA
## 3805        600 ml NR Individual No Retornable    NA      NA    NA    NA    4
## 3806   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 3807        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3808   250 ml. NR PET Individual No Retornable     9       8    11    10    7
## 3809        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3810     1 Ltro. N.R.   Familiar No Retornable    NA       1     1     1    1
## 3811  100 ml NR Tetra Individual No Retornable     0       0    NA    NA   NA
## 3812    12 Oz. NR Pet Individual No Retornable    NA       1     1     1    1
## 3813        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3814        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3815      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3816      Lata 450 ml Individual No Retornable     1      NA     1     1   NA
## 3817    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3818      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 3819     1 Ltro. N.R.   Familiar No Retornable     2       4     4     2    6
## 3820 500 ml NR Vidrio Individual No Retornable     6       2    11    13    6
## 3821             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3822     1 Ltro. N.R.   Familiar No Retornable     8       8    40    NA   42
## 3823      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3824     1.5 Lts. Ret   Familiar    Retornable    35     127    86   206   44
## 3825    12 Oz. NR Pet Individual No Retornable    21      26     9    11   44
## 3826        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3827       2 Lts. Ret   Familiar    Retornable     6       3    NA    NA   NA
## 3828      2.5 Lts. NR   Familiar No Retornable    18      25    32    18   63
## 3829 2.5 Lts. Ret Pet   Familiar    Retornable   173     271   243   328  370
## 3830 500 ml NR Vidrio Individual No Retornable    25      13    23    15   72
## 3831       500 ml Ret Individual    Retornable   112     154   192   165  159
## 3832         8 Oz. NR Individual No Retornable     5       4     4     5    5
## 3833             Lata Individual No Retornable     2       3     6     6    3
## 3834      Lata 16 Oz. Individual No Retornable    12       8    14    10   16
## 3835      Lata 235 ml Individual No Retornable     4       3     5     4    8
## 3836        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3837     1 Ltro. N.R. Individual No Retornable    NA       2     3     1    1
## 3838    500 ml NR PET Individual No Retornable    NA      NA    NA     1   NA
## 3839        600 ml NR Individual No Retornable     3       1    NA     3    1
## 3840     250 ml Tetra Individual No Retornable     2       0     0     0    0
## 3841   250 ML. NR VID Individual No Retornable    NA       1    NA    NA    1
## 3842    413 ml NR VId Individual No Retornable    10       5     8    NA    7
## 3843   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3844     1 Ltro. N.R.   Familiar No Retornable     2      NA     2     2   NA
## 3845   300 ML. NR PET Individual No Retornable    NA       1     1     2    1
## 3846    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3847     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3848        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3849      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3850      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3851     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3852        2 Lts. NR   Familiar No Retornable     3       6     3     6    6
## 3853       2 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3854      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 3855   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 3856        400 ml NR Individual No Retornable     1       1     3     1    3
## 3857       500 ml Ret Individual    Retornable    NA      NA     7     6   12
## 3858        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3859      Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3860      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3861     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3862        2 Lts. NR   Familiar No Retornable    NA       6     8     3    6
## 3863      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA    4
## 3864   250 ml. NR PET Individual No Retornable     0      NA    NA    NA    1
## 3865        400 ml NR Individual No Retornable    NA      NA     3     1    2
## 3866       500 ml Ret Individual    Retornable     2       2     5     2    7
## 3867        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3868             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3869      Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3870      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3871        2 Lts. NR   Familiar No Retornable    NA       6    NA     3   NA
## 3872      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA   NA
## 3873   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 3874        400 ml NR Individual No Retornable     2      NA    NA     1    1
## 3875       500 ml Ret Individual    Retornable    NA      NA     7     2   14
## 3876        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3877     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3878        2 Lts. NR   Familiar No Retornable    NA       8     3     6   14
## 3879      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    NA    7
## 3880        400 ml NR Individual No Retornable    NA      NA     0    NA    0
## 3881       500 ml Ret Individual    Retornable     6       4     4    NA    8
## 3882      Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3883      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3884     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3885        2 Lts. NR   Familiar No Retornable    NA       6    17    20    8
## 3886      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    7
## 3887   250 ml. NR PET Individual No Retornable     1      NA    NA    NA    1
## 3888        400 ml NR Individual No Retornable    NA       1     3     1    2
## 3889       500 ml Ret Individual    Retornable    15       6    14    15    7
## 3890        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3891             Lata Individual No Retornable    NA      NA    NA    NA   NA
## 3892      Lata 235 ml Individual No Retornable    NA       0    NA     0    0
## 3893    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3894        600 ml NR Individual No Retornable    NA      NA     3    NA    3
## 3895        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3896        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3897     1 Ltro. N.R. Individual No Retornable     2       6     2     2    2
## 3898      1.5 Lts. NR Individual No Retornable     3       3     3     3    6
## 3899   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3900   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3901        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3902        473 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3903        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3904   250 ml. NR PET Individual No Retornable     6       5     3    NA    6
## 3905        400 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3906     1 Ltro. N.R.   Familiar No Retornable     1       1    NA     1   NA
## 3907     1 Ltro. N.R. Individual No Retornable    NA       2     2    NA    2
## 3908  100 ml NR Tetra Individual No Retornable     3      NA    NA    NA   NA
## 3909    12 Oz. NR Pet Individual No Retornable     2       2     4     1    2
## 3910        2 Lts. NR   Familiar No Retornable    NA       6     8     8   11
## 3911        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3912      Lata 235 ml Individual No Retornable    NA       0     0    NA   NA
## 3913      Lata 450 ml Individual No Retornable    NA       1    NA    NA   NA
## 3914    500 ml NR PET Individual No Retornable     1      NA    NA    NA   NA
## 3915 500 ml NR Vidrio Individual No Retornable    NA      NA     4    NA   NA
## 3916      Lata 235 ml Individual No Retornable     1       1    NA    NA   NA
## 3917     1 Ltro. N.R.   Familiar No Retornable     4       8     6     6    8
## 3918        2 Lts. NR   Familiar No Retornable    NA      NA    NA    NA    3
## 3919 500 ml NR Vidrio Individual No Retornable    NA      NA    NA    NA    6
## 3920        600 ml NR Individual No Retornable     3      NA    NA    NA    3
## 3921         8 Oz. NR Individual No Retornable     1      NA    NA    NA    1
## 3922 500 ml NR Vidrio Individual No Retornable     2       6     4     2    8
## 3923     1 Ltro. N.R.   Familiar No Retornable     4       8    30    NA   34
## 3924     1.250 Lts NR   Familiar No Retornable    16       5    18     8    8
## 3925      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3926     1.5 Lts. Ret   Familiar    Retornable    54      32    32    51   32
## 3927    12 Oz. NR Pet Individual No Retornable     6       6     2    23    2
## 3928        2 Lts. NR   Familiar No Retornable    NA      NA    NA    17   NA
## 3929      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    53   95
## 3930 2.5 Lts. Ret Pet   Familiar    Retornable   123     159   211   162  144
## 3931    500 ml NR PET Individual No Retornable     6      21    NA    30   NA
## 3932 500 ml NR Vidrio Individual No Retornable     2       6     6    44   25
## 3933       500 ml Ret Individual    Retornable   110     118   120    76  142
## 3934        710 ml NR Individual No Retornable     3       6     3    NA    3
## 3935         8 Oz. NR Individual No Retornable     2       3     3     1   NA
## 3936      Lata 235 ml Individual No Retornable     1       3     3     6   NA
## 3937     1 Ltro. N.R. Individual No Retornable     1       1     1     2    1
## 3938    500 ml NR PET Individual No Retornable    NA      NA    NA    NA    1
## 3939        600 ml NR Individual No Retornable     1      NA     1     3    1
## 3940    1 Ltro. Tetra   Familiar No Retornable    NA      NA    NA    NA   NA
## 3941  100 ml NR Tetra Individual No Retornable    NA       2    NA    NA    1
## 3942     250 ml Tetra Individual No Retornable     6       0     7     0    4
## 3943   250 ML. NR VID Individual No Retornable    NA       0    NA     1    2
## 3944    413 ml NR VId Individual No Retornable     2       2    NA     2    9
## 3945   250 ml. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3946     1 Ltro. N.R.   Familiar No Retornable     2       2    NA     2    2
## 3947   300 ML. NR PET Individual No Retornable     0       0    NA     0    1
## 3948     200 ml Tetra Individual No Retornable     0       0     0     0    0
## 3949      Lata 235 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3950      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3951     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3952        2 Lts. NR   Familiar No Retornable    NA       4     1     3   NA
## 3953      2.5 Lts. NR   Familiar No Retornable    NA      NA     4    11   NA
## 3954        400 ml NR Individual No Retornable     0       0     1     0    0
## 3955       500 ml Ret Individual    Retornable     1      NA    NA    NA   10
## 3956        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3957      Lata 235 ml Individual No Retornable    NA       0     0     2   NA
## 3958      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3959     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3960        2 Lts. NR   Familiar No Retornable    NA       1     1     3   NA
## 3961      2.5 Lts. NR   Familiar No Retornable    NA       4     7     7    7
## 3962        400 ml NR Individual No Retornable     0       0     1    NA    0
## 3963       500 ml Ret Individual    Retornable     1      NA    NA    NA    3
## 3964        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3965      Lata 235 ml Individual No Retornable    NA       0     0     2   NA
## 3966      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3967        2 Lts. NR   Familiar No Retornable    NA       1     1     3   NA
## 3968      2.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3969        400 ml NR Individual No Retornable    NA       0    NA    NA   NA
## 3970       500 ml Ret Individual    Retornable     1      NA    NA    NA    1
## 3971        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3972     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3973        2 Lts. NR   Familiar No Retornable    NA      NA    NA     3   NA
## 3974      2.5 Lts. NR   Familiar No Retornable    NA      NA    11    18   11
## 3975        400 ml NR Individual No Retornable     0       0     1    NA    0
## 3976       500 ml Ret Individual    Retornable    NA       2    NA     2    2
## 3977      Lata 235 ml Individual No Retornable    NA       0     0     2   NA
## 3978      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3979     1.5 Lts. Ret   Familiar    Retornable    NA      NA    NA    NA   NA
## 3980        2 Lts. NR   Familiar No Retornable     3       6     1     8    3
## 3981      2.5 Lts. NR   Familiar No Retornable    NA       4     4    11    4
## 3982        400 ml NR Individual No Retornable     0       0     1    NA    0
## 3983       500 ml Ret Individual    Retornable     1      NA     2    NA    3
## 3984        600 ml NR Individual No Retornable     1      NA    NA    NA   NA
## 3985      Lata 235 ml Individual No Retornable    NA       0     0     2   NA
## 3986    500 ml NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3987        600 ml NR Individual No Retornable     2      NA    NA     3    8
## 3988      Lata 222 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3989      Lata 453 ml Individual No Retornable    NA      NA    NA    NA   NA
## 3990        2 Lts. NR   Familiar No Retornable     6       6     6     8   14
## 3991        600 ml NR Individual No Retornable     3       3     3     3    9
## 3992             Lata Individual No Retornable     2       2    NA     2    3
## 3993      1.5 Lts. NR   Familiar No Retornable    NA      NA    NA    NA   NA
## 3994        600 ml NR Individual No Retornable    NA      NA    NA    NA   NA
## 3995     1 Ltro. N.R. Individual No Retornable    15       8    13    11   19
## 3996      1.5 Lts. NR Individual No Retornable     6       3    13    29   25
## 3997   300 ML. NR PET Individual No Retornable    NA      NA    NA    NA   NA
## 3998        5 Lts. NR   Familiar No Retornable    11      11    11    11   18
## 3999        600 ml NR Individual No Retornable     8      13     8    10   13
##      Junio Julio Agosto Septiembre Octubre Noviembre Diciembre
## 1       NA    NA     NA         NA      NA        NA         1
## 2        2     2      2          2       2         4         2
## 3        3     3      3          3       3         3         3
## 4       NA    NA     NA         NA      NA        NA         1
## 5       NA    NA     NA         NA      NA         0        NA
## 6       NA    NA     NA         NA      NA        NA        NA
## 7       NA     0     NA         NA       0        NA        NA
## 8        1    NA      1          1      NA        NA        NA
## 9        4     4      7          4       3         1         3
## 10       0    NA     NA         NA      NA        NA        NA
## 11       1     1      1          1       1         1         1
## 12      NA    NA     NA         NA      NA        NA        NA
## 13       1     1      1          2       1         1         1
## 14      NA     6      3          6      NA         3        17
## 15      NA    NA     NA          1      NA        NA        NA
## 16      NA    NA      2         NA      NA        NA         2
## 17      NA    NA     NA         NA       3        NA        NA
## 18       4     2      2         NA       4         2         4
## 19      NA    NA     NA          2      NA         4         2
## 20       8    NA     NA         NA      NA        NA        NA
## 21      10    25     32         19      32        10        38
## 22      67    86     60         67      76        67        89
## 23      14    15     15          8      21        26        11
## 24       2     2      3          2       2         2         2
## 25      NA     6     NA         NA      NA        NA        NA
## 26       8    17      6          3       3         6         8
## 27      14    25     35         18      28        14       278
## 28      95   127     81        102      92       120       109
## 29      23    30     25         21      42        32        25
## 30     108   127     95         93     139        93       101
## 31       2     3      3          2       5         2         2
## 32       2     2      5         NA       3        NA         3
## 33       2     4      4          6       4         2         2
## 34       1     3      2          4       2         2         2
## 35      NA    NA      1         NA      NA        NA        NA
## 36       1     1      1          1       1         1         1
## 37      NA    NA     NA         NA      NA        NA        NA
## 38      NA    NA     NA         NA      NA        NA        NA
## 39       0     0      0          0       0         0         0
## 40       1     2     NA          0       1        NA         3
## 41      NA    NA     NA         NA       0        NA        NA
## 42       1    NA     NA         NA      NA        NA        NA
## 43      NA    NA     NA         NA      NA        NA         1
## 44       0     0      0          0       0         0         0
## 45       1     1     NA         NA      NA        NA         1
## 46      NA    NA     NA         NA       1         1        NA
## 47       1    NA     NA         NA      NA        NA        NA
## 48       3     3     NA         NA      NA        NA         3
## 49      NA     0      1         NA       0        NA        NA
## 50       1     0      0          0      NA         0         0
## 51       2     1     NA          2       1         1         1
## 52       3     1      1          2       1         1         1
## 53      NA    NA     NA         NA      NA        NA        NA
## 54      NA    NA     NA         NA      NA        NA        NA
## 55       1    NA     NA         NA      NA        NA        NA
## 56      NA     0     NA         NA       0        NA        NA
## 57       1    NA     NA         NA      NA        NA        NA
## 58       2     1     NA         NA       1         1         1
## 59      NA     1      1         NA       2        NA         1
## 60      NA    NA     NA         NA      NA        NA        NA
## 61      NA    NA     NA         NA      NA        NA        NA
## 62      NA     0     NA         NA       0        NA        NA
## 63       1    NA     NA         NA      NA        NA        NA
## 64       2     1     NA         NA       1         1         1
## 65      NA    NA      1          1       3         1         1
## 66      NA    NA     NA         NA      NA        NA        NA
## 67       1    NA     NA         NA      NA        NA        NA
## 68      NA    NA      3         NA       3         3        NA
## 69      NA    NA     NA         NA      NA        NA        NA
## 70       3    NA      3          3       1        NA        NA
## 71      NA    NA     NA         NA      NA        NA        NA
## 72       1    NA     NA         NA      NA        NA        NA
## 73       3     3      3          3      NA        NA         6
## 74      NA     0     NA         NA       0        NA        NA
## 75       1    NA     NA         NA       0        NA        NA
## 76       2     1      2          4       1         1         1
## 77      NA     1      2          1       3         1         3
## 78      NA    NA     NA         NA      NA        NA        NA
## 79      NA    NA     NA         NA      NA        NA        NA
## 80      NA    NA     NA         NA      NA        NA         1
## 81       1    NA      1          1       1        NA         1
## 82      NA    NA     NA         NA       1        NA         1
## 83      NA    NA     NA         NA      NA        NA         3
## 84      NA    NA     NA         NA      NA         1        NA
## 85       4     4      4          8       6         2         2
## 86       6     6      6          3       3         3         3
## 87      NA    NA      4         NA      NA        NA        NA
## 88       3     3     NA          3       8        NA         3
## 89      NA    NA     NA         NA      NA        NA         1
## 90      NA    NA     NA         NA      NA         0        NA
## 91      NA    NA     NA         NA      NA        NA        NA
## 92       5     3      5          3       3         3         3
## 93       0    NA     NA         NA      NA        NA        NA
## 94       3     1      2          1       1         1         2
## 95       1     1      2          1       2         1         2
## 96       6    NA      3         NA      NA        NA         6
## 97      NA     0     NA         NA      NA         0         0
## 98       1    NA     NA          1      NA        NA        NA
## 99       1    NA     NA         NA      NA        NA        NA
## 100     NA     2      2         NA      NA        NA        NA
## 101     NA     1     NA          1       1        NA        NA
## 102      2     2      2          2       4         2         2
## 103      3    NA     NA         NA      NA        NA         3
## 104     NA    NA     NA         NA      NA        NA        NA
## 105      2    NA     NA         NA      NA        NA         2
## 106      2     6      4          6       4         4         4
## 107     NA    NA      1         NA       1        NA        NA
## 108     NA     1     NA          1      NA        NA         1
## 109     NA    NA     NA         NA      NA        NA        NA
## 110      1    NA     NA         NA       1        NA        NA
## 111     NA    NA      2          4       2         2         2
## 112     NA    NA     NA         NA      NA        NA        NA
## 113      3     3     NA          3       3         3         3
## 114     10    13      6         13      16        10         6
## 115      5     3      5          3       5         6         5
## 116     NA    NA     NA         NA      NA        NA         3
## 117     NA    NA     NA         NA      NA        NA        NA
## 118     NA    NA     NA         NA      NA         7        NA
## 119     39    42     39         60      28        25        25
## 120      4     4      2          4       2         6        NA
## 121     15    11      8         11      11        11         8
## 122     44    36     27         40      40        25        23
## 123      3     4      5          4       4         6         4
## 124      2     2     NA          3       3         3         5
## 125      1     3      2          1       3         1         2
## 126      1     2      1          1       1         1         1
## 127     NA    NA     NA         NA      NA        NA        NA
## 128      3     1     NA          1       2         2         2
## 129      0     0      0          1       0         1         0
## 130      1     2      2          2       1         2         3
## 131     NA    NA     NA         NA      NA        NA        NA
## 132     NA    NA     NA          1       0        NA        NA
## 133     NA    NA     NA         NA       2        NA        NA
## 134      0     0      0          0       1         0        NA
## 135     NA    NA     NA         NA      NA        NA         1
## 136      0     0      1          1       0         0         0
## 137     NA     1     NA         NA       1        NA        NA
## 138     NA    NA     NA         NA       1         1        NA
## 139     NA    NA     NA         NA      NA         2         2
## 140      2     1      1         NA      NA        NA        NA
## 141      3     1     NA         NA      NA         1         3
## 142      0     0     NA          0      NA        NA         0
## 143     NA    NA     NA         NA      NA        NA        NA
## 144     NA     1      1         NA       1        NA        NA
## 145     NA    NA     NA         NA      NA        NA        NA
## 146      2     1      1         NA      NA        NA        NA
## 147     NA     1     NA         NA      NA         1        NA
## 148      0    NA     NA         NA      NA        NA        NA
## 149      2    NA     NA         NA      NA        NA        NA
## 150     NA    NA     NA         NA       1        NA        NA
## 151     NA    NA     NA         NA      NA        NA        NA
## 152     NA    NA     NA         NA      NA        NA         2
## 153     NA     1     NA         NA       3         1        NA
## 154      1    NA     NA         NA      NA         0        NA
## 155     NA    NA     NA          2      NA         2         2
## 156     NA     1     NA         NA      NA        NA        NA
## 157     NA    NA     NA         NA      NA        NA        NA
## 158      2     1      1         NA      NA        NA        NA
## 159     NA    NA      3         NA      NA        NA        NA
## 160     NA    NA      0         NA      NA        NA        NA
## 161     NA     2      2          2       4        NA        NA
## 162     NA    NA      1         NA      NA        NA        NA
## 163     NA    NA     NA         NA      NA        NA        NA
## 164     NA    NA     NA         NA      NA         2         2
## 165      2     1      1         NA      NA        NA        NA
## 166     NA     1     NA          3      NA         1         6
## 167      0    NA     NA          0       0        NA        NA
## 168     NA    NA     NA         NA      NA        NA        NA
## 169     NA     1      1          1       1        NA        NA
## 170     NA    NA     NA         NA      NA        NA        NA
## 171     NA     3     NA         NA       1        NA        NA
## 172      1     1     NA          1      NA         1         3
## 173     NA    NA     NA         NA      NA        NA        NA
## 174     NA    NA     NA         NA      NA         3         1
## 175     13    21     15         13       4        11         8
## 176     32    38     13          6       6        13        22
## 177     NA    NA     NA          0      NA        NA        NA
## 178     NA    NA     NA         NA      NA        NA        NA
## 179     13     8     10          5       8         5         8
## 180     NA    NA     NA         NA      NA        NA         3
## 181     NA    NA     NA         NA      NA         0        NA
## 182      3    NA     NA         NA      NA        NA        NA
## 183     NA    NA     NA         NA      NA        NA        NA
## 184     NA     2     NA          1      NA         1         1
## 185      2     4     NA          1       1         2         1
## 186      0     1     NA         NA      NA         0         1
## 187      2     2      2         NA       2         1         1
## 188      1     1     NA          1      NA         1         2
## 189     17    11      3          3       3        NA        NA
## 190     NA    NA     NA         NA      NA        NA         0
## 191      1     1     NA         NA      NA        NA        NA
## 192      1    NA     NA         NA      NA        NA        NA
## 193     NA    NA     NA         NA      NA        NA        NA
## 194     NA    NA     NA         NA      NA        NA        NA
## 195      2    NA     NA         NA      NA        NA        NA
## 196     NA    NA     NA         NA      NA        NA        NA
## 197      8     6     11         13       8        13        11
## 198      2    NA      3         NA       2         2         2
## 199      6     8      3          8      11         6         3
## 200      6    11      6         17      11        11        20
## 201     14     7     NA         11       4        11         7
## 202     NA    NA     NA         NA      NA        NA         2
## 203      6    11     21         15      17        19        13
## 204      1     3      2          1       2         2         3
## 205     NA    NA     NA          1       1        NA        NA
## 206     NA     1      1          1      NA        NA        NA
## 207     NA     2      2          2       2         2         2
## 208     NA    NA     NA         NA      NA        NA        NA
## 209     NA    NA     NA          3      NA        NA         6
## 210      2     4      2          4       4         2         2
## 211     11    15     23         23      15        19        19
## 212      5    NA     NA         NA      NA        NA        NA
## 213     16    25     25         16      22        19        29
## 214      6    19     19         19      10        13        13
## 215      5    11     15         14      17        14        14
## 216      2     5      2          3       5         2         3
## 217     14    14     17         14      14        11        14
## 218      3     6     11          6       3        11         8
## 219     25    39     42         60      28        77        25
## 220     25    39     60         63      99        49       106
## 221     NA    NA     NA         NA      NA        NA        NA
## 222      4     6      2         NA      NA        NA        NA
## 223     13    44     57         32      34        38        32
## 224     42    78     72        108      93        66        82
## 225      8     9     11         12       9        12        16
## 226      2     2      2          3       2         5         3
## 227      4     2      4          4       4         4         4
## 228      3     3      3          3       3         2         4
## 229      1     4     NA          1       2         1         1
## 230     NA    NA     NA         NA      NA        NA         1
## 231      1     3     NA          3       3         1         2
## 232     NA     3     NA         NA      NA        NA        NA
## 233     NA    NA     NA         NA      NA        NA        NA
## 234      0     0     NA          0      NA         0         0
## 235     NA    NA     NA         NA      NA        NA        NA
## 236      4     6      1         NA      NA         2         7
## 237      1     1     NA         NA      NA         0        NA
## 238     NA    NA     NA         NA      NA         2        NA
## 239     NA    NA     NA          1      NA        NA        NA
## 240     NA    NA     NA         NA      NA        NA        NA
## 241      0     0     NA          0      NA         0         1
## 242      1     5      2          1       1         3         4
## 243     NA    NA     NA         NA      NA         3         3
## 244     NA    NA     NA         NA       1         2         7
## 245     NA    NA     NA         NA      NA        NA        NA
## 246      3     6      4          8       4         4         3
## 247     NA    NA     NA         NA      NA        NA        NA
## 248     NA     1      1          0      NA        NA         1
## 249      2     1      1         NA       2         2        NA
## 250      1     1      3          4       3         2         3
## 251     NA    NA     NA         NA      NA        NA         0
## 252     NA     3      4          3       7         6         8
## 253     NA    NA     NA         NA      NA        NA        NA
## 254     NA     0      0         NA      NA        NA        NA
## 255     NA     1      1         NA       2        NA        NA
## 256      3     2      2          1       2         3         1
## 257     NA    NA     NA         NA      NA        NA         0
## 258      3     6      4          3       1         4         6
## 259     NA    NA     NA         NA      NA        NA        NA
## 260      0     1      0          0      NA        NA        NA
## 261     NA     1      1         NA       2        NA         2
## 262      2     3      3          3       2         3         2
## 263      1     1     NA          1       1         2         3
## 264     NA    NA     NA         NA       3         3         6
## 265     NA    NA     NA         NA      NA        NA        NA
## 266     NA    NA     NA         NA      NA        NA        NA
## 267     NA    NA     NA         NA      NA        NA         3
## 268     NA    NA     NA         NA      NA        NA         0
## 269     NA    NA     NA         NA      NA        NA        NA
## 270      3     6     10          8      10        12         8
## 271     NA    NA     NA         NA      NA        NA        NA
## 272      1     1      1          1       0         0         0
## 273     NA     1      3          2       2         2        NA
## 274      3     2      4          4       4         3         3
## 275     NA    NA     NA         NA      NA        NA         0
## 276     NA     1     NA         NA      NA         1        NA
## 277      1     6      1          3       4         7         8
## 278     NA    NA      0         NA      NA        NA        NA
## 279     NA    NA     NA         NA      NA        NA        14
## 280     NA    NA     NA         NA       1        NA         3
## 281     NA    NA     NA         NA      NA        NA         3
## 282     NA    NA     NA         NA      NA        NA         4
## 283      2     2      2         51       2         2         2
## 284      3     3      3        165       3         3        19
## 285      0     0     NA         NA      NA        NA        NA
## 286     NA    NA     NA         35      NA        NA        NA
## 287     NA    NA     NA         NA      NA        NA        NA
## 288     NA    NA     NA         NA      NA        NA         1
## 289     NA    NA     NA         NA      NA        NA         3
## 290     NA    NA     NA         NA      NA        NA         1
## 291      2     1      1          2       2         0         2
## 292      2     1     NA          2      NA        NA         1
## 293     NA    NA     NA          2      NA        NA        NA
## 294     NA    NA     NA         NA      NA        NA        NA
## 295     NA     1      0         NA      NA        NA        NA
## 296      1     1      1          1       3         1         1
## 297     11     1     16         NA      NA        NA        NA
## 298      1    NA     NA          1       1        NA         0
## 299      1     1      1          1       1         1         1
## 300     NA    NA     NA         NA      NA        NA        NA
## 301      1     1      1          1       1         1         1
## 302     11    NA     NA         14      NA        NA        31
## 303     NA    NA      1         NA       1        NA        NA
## 304      0    NA      0          0       0         0         0
## 305      1     1     NA          1       1        NA         3
## 306      1    NA     NA         NA      NA        NA        NA
## 307     NA    NA     NA         NA      NA        NA        NA
## 308      1    NA     NA         NA      NA        NA        NA
## 309      2     6      2          4       2         2         4
## 310     NA    NA     NA          4       6         6         6
## 311     NA    NA     NA         NA      11         3         8
## 312     NA    NA     NA          7      11         7        18
## 313     25    25      4         44      NA         4        30
## 314     NA    NA     NA          1       3         2         1
## 315     NA    NA     NA         NA       1        NA        NA
## 316     NA    NA     NA         NA      NA        NA         2
## 317     NA    NA      1         NA      NA        NA        NA
## 318     27     4     NA          6      38         2        23
## 319     NA    NA     NA         NA      NA        NA        NA
## 320     41     3     38          3       3        13        55
## 321     44    79     51         10     120        35        44
## 322      6    17      6         20      33         3         8
## 323     NA     2      2         12      36        NA        41
## 324     37    NA      3         NA      37        NA        17
## 325     37    NA     NA         NA      NA        NA        NA
## 326     92    NA     99         NA      60         7        21
## 327    380   215    567          7     324         4       299
## 328     34    NA     NA         NA      NA         4        30
## 329     51    25     80          4      72        NA        57
## 330      2    11    220        251     142        72       118
## 331     13    13      4         18      13         1         1
## 332      2     3     NA          3       3         5         2
## 333      2     6      4          2       8         6         2
## 334      1     4      3          6       3         5         3
## 335     NA     1     NA         NA      NA        NA        NA
## 336      3     2      1          1       1         1         1
## 337      2     2     NA         NA       1        NA         2
## 338      6     6     NA         NA       3         1         3
## 339     NA    NA     NA          4      NA         1         1
## 340     NA    NA     NA         NA      NA        NA        NA
## 341      1     1      1          1       1         1         1
## 342     NA    NA     NA         NA      NA        NA        NA
## 343     26     2      1         NA      NA        NA        NA
## 344      3    NA      1          2       1        NA        NA
## 345      1    NA     NA          1      NA        NA        NA
## 346     NA     2     NA          2       2         2        NA
## 347      1     0      0          0       1        NA         1
## 348     NA    NA     NA         NA      NA        NA         1
## 349      1    NA     NA         NA      NA        NA        NA
## 350      1     1      1          2       1         1         2
## 351     NA     1      1          1       1        NA         2
## 352     NA    NA     NA         NA      NA         6        NA
## 353     NA    NA     NA         NA       3         8         1
## 354     NA    NA     NA         NA       2         2         2
## 355      2    NA     NA         NA      NA        NA        NA
## 356     NA    NA     NA          2      12        NA        NA
## 357     28    NA     NA         12      11        NA        17
## 358     NA     3     NA         NA       3        NA        NA
## 359     NA    NA      0         NA      NA        NA        NA
## 360      1     0      1          1       4         2        NA
## 361     NA    NA     NA          1      NA         1         3
## 362      1    NA      4          1       4        NA         5
## 363     NA    NA     NA         NA      NA        NA        NA
## 364      2    NA      3         NA      NA        NA        NA
## 365      6     3     NA          9       6        NA         8
## 366     NA    NA      0         NA      NA        NA        NA
## 367     NA    NA      1         NA      NA         2        NA
## 368     NA    NA     NA          1      NA         1         1
## 369     NA    NA     NA         NA       1        NA        NA
## 370     NA    NA     NA         NA      NA        NA        NA
## 371     NA    NA      4         NA       2        NA        NA
## 372     NA    NA     NA          2       9        NA        NA
## 373      6     3      3         12      NA        NA         8
## 374     NA    NA      0         NA      NA        NA        NA
## 375      1    NA     NA          1       4        NA        NA
## 376     NA    NA     NA         NA      NA        NA        NA
## 377     NA    NA     NA          5      NA         1         7
## 378      1     3     NA          1      NA        NA         3
## 379     NA    NA     NA         NA       2        NA        NA
## 380      2    NA     NA         NA      NA        NA        NA
## 381     31    NA     NA         NA      11         3         8
## 382     NA    NA     NA         NA      NA         2        NA
## 383     NA    NA     NA         NA      NA         2        NA
## 384     NA    NA     NA          3       1        NA        NA
## 385     NA    NA     NA         NA      NA        NA        NA
## 386      2     2      4          2       4         2        NA
## 387     NA    NA     NA         NA      NA        NA         2
## 388      2    NA     NA         NA      NA        NA        NA
## 389     NA    NA     NA          2       9        NA        NA
## 390     31    NA     NA          9      11         3         6
## 391      3     6      3          8       3         3         6
## 392     NA    NA      0         NA      NA        NA        NA
## 393      3    NA      1          0       4         3         0
## 394      2    NA     NA         NA      NA        NA        NA
## 395      2     6      2          1      11         1         5
## 396      9     3      4          3       4        NA         5
## 397     NA    NA     NA         NA      NA        NA        NA
## 398     NA     1      2          2      NA         3         2
## 399     13     8     11          5       9        10         4
## 400      1    NA     NA         NA      NA        NA        NA
## 401      0    NA      1         NA      NA        NA        NA
## 402     NA    NA     NA         NA       3         1         1
## 403     NA    NA     NA         NA      NA        NA         3
## 404     NA    NA     NA         NA      NA         1        NA
## 405      2     4      4          2       4         2         4
## 406      3     3      3          3       3         3         6
## 407     NA    NA     NA          3      NA         3        NA
## 408     NA    NA     NA         NA      NA        NA         3
## 409     NA    NA     NA         NA      NA         1        NA
## 410     NA    NA     NA         NA      NA        NA        NA
## 411     NA    NA     NA         NA       0        NA        NA
## 412      1    NA      1         NA      NA         1         1
## 413      1     1      3         NA       3         1         1
## 414      4    NA     NA         NA      NA        NA        NA
## 415     NA    NA     NA         NA       0        NA        NA
## 416      1     1      1          1       1         1         1
## 417     NA    NA     NA         NA      NA        NA        NA
## 418      1     1      1          1       1         1         1
## 419      6     6      6          8       6         3         3
## 420     NA     1      1         NA      NA         1        NA
## 421      1     0      0          1       1         1         1
## 422     NA    NA     NA         NA      NA        NA        NA
## 423      1    NA      1          1       1         1        NA
## 424      1    NA     NA         NA      NA        NA        NA
## 425      2     2      4         NA       2        NA         2
## 426     13    11     11          8       8         8        11
## 427     11     6      8          8       3        NA        11
## 428     NA    NA     NA         NA      NA        NA        NA
## 429      2     2      3          3       5         2        NA
## 430     15    15     15         17      21        11        17
## 431      2     1      2          1       1         2         3
## 432      2     2      2          2       2         2        NA
## 433     NA     0     NA         NA      NA        NA        NA
## 434      4     2     NA          4       2         4         2
## 435     NA    NA     NA         NA      NA        NA        NA
## 436     15    30     30         30      30        25        17
## 437     24    NA     NA         NA      NA        NA        NA
## 438      3    10     13         16      19        10        19
## 439     13    16      6         10      10        10        16
## 440     12    12     15         14      17        12        12
## 441      8     6      6          8       9         6         9
## 442      3    NA     NA          3       6         6         6
## 443      6     3      3          3      NA         3        NA
## 444     46    67     67         85      99        60       190
## 445     99   116    137        106     148        53        67
## 446      8     8      8         13      11         8         8
## 447     40    34     40         40      40        30        30
## 448     70    82     46         55      72        44        51
## 449     NA    NA     NA         NA      NA        NA        NA
## 450     18    20     16         19      16        17        20
## 451     NA     2     NA         NA      NA        NA        NA
## 452      1    NA     NA         NA      NA        NA        NA
## 453     NA    NA     NA         NA      NA        NA        NA
## 454      1     1      2          1       1         1         1
## 455     NA    NA     NA         NA      NA        NA        NA
## 456      1     1     NA         NA      NA         1        NA
## 457      0     0      0          0       0         0         0
## 458     NA    NA     NA         NA       0        NA         0
## 459      4     3      2          3      NA         1         3
## 460     NA    NA     NA         NA       0        NA        NA
## 461     NA     2     NA          2      NA         2        NA
## 462      0    NA     NA          1       1         0        NA
## 463      1    NA     NA         NA       1        NA        NA
## 464     NA    NA     NA         NA      NA         1        NA
## 465      0     0      0          0       1         1         0
## 466      3     3      3          2       1         1        NA
## 467     NA    NA     NA         NA      NA         1         2
## 468     NA    NA     NA         NA       1         1         1
## 469      1    NA     NA         NA      NA        NA        NA
## 470     NA    NA     NA         NA       4         3         3
## 471      4     4      7         NA       4         4         7
## 472     NA    NA     NA         NA       0        NA        NA
## 473      0    NA     NA         NA       0         0        NA
## 474      2    NA     NA         NA       2         2        NA
## 475      2     3     NA         NA       2        NA        NA
## 476      1     1      3          2       1         2         1
## 477     NA    NA     NA         NA      NA        NA        NA
## 478      1    NA     NA         NA      NA        NA        NA
## 479     NA    NA     NA         NA       1        NA        NA
## 480      4    NA      4          4       4        NA         4
## 481     NA    NA     NA         NA       0        NA        NA
## 482     NA    NA     NA         NA      NA         0        NA
## 483     NA    NA      4         NA      NA        NA        NA
## 484     NA     1     NA         NA       4         2         2
## 485      1     1      1          1       2        NA         1
## 486     NA    NA     NA         NA      NA        NA        NA
## 487     NA    NA     NA         NA       4        NA        NA
## 488      4     4      9          7       4        NA         7
## 489     NA    NA     NA         NA       0        NA        NA
## 490     NA    NA      0         NA      NA        NA        NA
## 491      2    NA      2          2      NA        NA        NA
## 492     NA     1     NA         NA      NA        NA        NA
## 493      1     1      1          1       2         1         1
## 494     NA    NA     NA         NA      NA        NA        NA
## 495      1     1      1          1       3         1         1
## 496      1    NA     NA         NA       3        NA        NA
## 497     NA    NA      3          3      NA        NA        NA
## 498      4     7      4          4       7         4         7
## 499     NA    NA     NA         NA      NA        NA        NA
## 500     NA     0     NA          0      NA        NA        NA
## 501      1     1      1          1       1         3         1
## 502     NA    NA     NA         NA      NA        NA        NA
## 503     NA     2     NA          2       2        NA        NA
## 504      1    NA     NA         NA      NA        NA        NA
## 505      3     3      3         NA       1        NA         3
## 506      7     7      7          4       9         7         7
## 507     NA    NA     NA         NA       0        NA        NA
## 508      0    NA     NA         NA       1        NA         0
## 509      2    NA     NA         NA       4        NA         2
## 510     NA     3      2          2      NA        NA        NA
## 511      1     1      3          2       1         2         1
## 512     NA    NA     NA         NA      NA        NA        NA
## 513     NA    NA     NA         NA      NA         1        NA
## 514      3     1      3          4       2         4         5
## 515     NA    NA     NA         NA       3        NA        NA
## 516     NA    NA     NA         NA       1         1        NA
## 517     NA    NA     NA         NA      NA         1         1
## 518      2     2      2          2       2         2        19
## 519      3    10      3          3      22         3         3
## 520     NA    NA     NA          0      NA        NA        NA
## 521     NA    NA     NA         NA      NA        NA         7
## 522     NA    NA     NA         NA      NA        NA        NA
## 523     NA    NA     NA         NA      NA        NA         1
## 524     NA    NA     NA         NA      NA         0        NA
## 525     NA     1      1         NA      NA        NA        NA
## 526     NA     1      0          1      NA         1         1
## 527      1     1      1         NA       1         1         1
## 528      4     2      5          2       2         2        NA
## 529      1     0     NA          1       0        NA        NA
## 530      3     1      1          1       1         1         1
## 531     NA    NA     NA         NA      NA        NA        NA
## 532      2     1      1          1       1         1         1
## 533      6     3      6          3       3         3        37
## 534     NA    NA      1         NA       1        NA        NA
## 535     NA    NA     NA          0      NA        NA         0
## 536      1    NA     NA          1      NA        NA        NA
## 537      2    NA     NA         NA      NA        NA        NA
## 538     NA    NA     NA         NA      NA        NA        NA
## 539     NA    NA     NA         NA      NA        NA        NA
## 540     NA    NA     NA         NA      NA        NA        NA
## 541      2    32      4         15      21        17        40
## 542      2     3     NA         NA      NA         2        NA
## 543      8     6     14         11       8         8        14
## 544     14     8     11         14       8         8        14
## 545     NA    NA     NA         NA      NA        NA         4
## 546     46    30      4         21      15        19        11
## 547      2     2      4          3       4         3         3
## 548     NA    NA     NA         NA      NA        NA        NA
## 549      4     6      4          6      13         6         2
## 550      8     6     14         11       6         8        14
## 551      4     2      4          8       4         4         4
## 552     NA    NA     NA         NA      NA        NA        NA
## 553     27    32      4         27      15        13        61
## 554     NA    NA     NA         NA      NA        NA        NA
## 555     51     3     10         25      29        10        54
## 556     10    25     44         32      51        41        76
## 557     24    12      8          9      20        14        12
## 558      5     3      6          6       3         3         2
## 559     17     8     17         31      28        20        14
## 560      3    14      3         14      17        11        17
## 561     88    NA     85         60      95        85       116
## 562    116    88    123        116     236        14       197
## 563     30    30      8         34      30        21        15
## 564    131    53     34         78     118       120       142
## 565      1     1     NA         NA      NA        NA         1
## 566      2     5      7          6       6         6         6
## 567     NA    NA     NA          2       6         3         6
## 568     30    NA     NA          6      12        12        34
## 569      3     3      3          2       5         4         4
## 570      2     2      1          1       1         1         1
## 571     NA    NA     NA         NA      NA        NA         1
## 572      3    NA      3         NA      NA         3        NA
## 573      1     1      0          0       0         0         0
## 574      3     2     NA         NA      NA        NA        NA
## 575      2     2      2         NA      NA        NA        NA
## 576      0     1      0          0       1         1         0
## 577      1    NA     NA         NA      NA        NA        NA
## 578      2     2      1          2       0         2         1
## 579      1     1      1          2       2         1         1
## 580     NA    NA     NA         NA       3         2         3
## 581     NA    NA     NA         NA       3         1        NA
## 582      4    NA      2          2       2         2         2
## 583      2    NA      1          1      NA        NA        NA
## 584      3    10      1          4      12         3        14
## 585     NA    NA     NA         NA      NA        NA        NA
## 586     NA     1      0          1      NA         1         1
## 587     NA    NA     NA          0      NA        NA        NA
## 588      1     2      1          1       2         1         5
## 589      3     1      1          2       1         1         2
## 590     NA    NA      0         NA      NA        NA        NA
## 591      2    NA      1          1      NA        NA        NA
## 592     NA     1      1          4       1        NA         6
## 593     NA     0      0          0      NA         0         0
## 594     NA    NA     NA         NA       0        NA         0
## 595      1    NA      1          1       2         1         1
## 596      1    NA      1         NA      NA         1         1
## 597     NA    NA      0         NA      NA        NA        NA
## 598     NA    NA      2          2       2         2         2
## 599     NA     1      1          4       4        NA        NA
## 600     NA     1      0          1      NA         1         1
## 601     NA    NA      0         NA      NA        NA        NA
## 602      1    NA      1          1       2         1         1
## 603      1     1      1         NA      NA         1         1
## 604      1     1      1          2       1         3         2
## 605      2    NA      1          1      NA        NA        NA
## 606      3     8     NA         NA       6         6         8
## 607     NA    NA     NA         NA      NA        NA        NA
## 608     NA    NA     NA         NA      NA        NA        NA
## 609     NA     3      1         NA       1         3        NA
## 610     NA    NA      0         NA      NA        NA        NA
## 611     34    NA     NA          2      11        11         8
## 612      2    NA      1          1      NA        NA        NA
## 613     NA    15      1          4      12         3        23
## 614     NA    NA     NA         NA      NA        NA        NA
## 615     NA     1      0          2      NA         1         1
## 616      0     0      1          1      NA         1        NA
## 617      3    NA      1          1       2         1         5
## 618      2     3      3          1       1         1         2
## 619     NA    NA      0         NA      NA        NA        NA
## 620     NA     1      1          2      NA         2         3
## 621     13     3      7          4       6        10        13
## 622      1    NA      0          0       1        NA        NA
## 623      0    NA      1          1      NA        NA        NA
## 624     NA    NA     NA         NA       1         1        NA
## 625     NA    NA     NA         NA      NA         1        NA
## 626      6     6      6          4       6         4         2
## 627      3     6      3          6       3         3         3
## 628     NA    NA     NA         NA       0        NA        NA
## 629     NA    NA     NA         NA      NA        NA         4
## 630     NA    NA     NA         NA      NA        NA         1
## 631     NA    NA     NA         NA      NA         0        NA
## 632     NA    NA     NA         NA      NA        NA        NA
## 633      9     7     13          0       3         3         4
## 634      1     3      2          4       3         2         1
## 635      1    NA      1          4      NA        NA         1
## 636     NA     6     NA         NA       2         2        NA
## 637      1     1      1          1       2         2         3
## 638     25    23     11         17      34        25        17
## 639     NA    NA      1         NA      NA        NA        NA
## 640     NA    NA     NA         NA      NA        NA         0
## 641     NA    NA      1         NA      NA        NA         1
## 642      7    NA     NA         NA      NA        NA        NA
## 643     NA    NA     NA         NA      NA        NA        NA
## 644     NA    NA     NA         NA      NA        NA        NA
## 645      4     4      8          6      NA        NA         2
## 646     44    72     49         49      53        53        57
## 647     15    12     15         11       9         6         6
## 648    101    93    116         76      96       101        96
## 649     96    54     99         54      51        73        45
## 650     NA    NA      4         NA      NA        NA        NA
## 651     55    61     70         51      78        51        66
## 652     16    18     11         19      14        12        20
## 653      6     5      5          6       6         8         6
## 654     NA    NA     NA          3       3        NA        NA
## 655      6    11      4          4       2         6         8
## 656     20    20     20         25      23        23        34
## 657      4     6      6          2       4         2         8
## 658      1     1      2         NA      NA         1        NA
## 659     NA    15     25         42      49        55        55
## 660     45    NA     NA         NA      NA        NA        NA
## 661     79    73    114         16       6         3        10
## 662      3     3      3          3       3         3         3
## 663     18     5      9          9       5         8        11
## 664     12    12     12         11       9         8         9
## 665     73    85     79         56      93       110       116
## 666     28    42     42         39      23        14        39
## 667    201   130    211         77     173       109       204
## 668    197   137    176        169     183       201       166
## 669     NA    NA     NA         NA      NA        NA        NA
## 670     74    49     59         49      66        66        87
## 671    125    78    101         85      70       116        74
## 672     33    36     27         26      14        22        25
## 673      3     9      5          9       8        11         9
## 674      8     4      2          4       2         4         6
## 675     NA     1      1         NA      NA        NA        NA
## 676     NA     1     NA         NA      NA        NA        NA
## 677      1     1      1          1       1         1         1
## 678     NA    NA     NA         NA      NA        NA         1
## 679      8    16     10         18      14         9        18
## 680      0     0      0          0       0         0         1
## 681      4     5      5          6       3         1         4
## 682      2    25     20          2      17        NA        21
## 683     NA     0     NA         NA      NA        NA        NA
## 684      2     6      4          4       2         2         6
## 685      2     3      2          3       5         4         3
## 686      2     5      4          1       5         1         2
## 687      3     4      3          5       5         2         4
## 688      3     1      2         NA       3         5         2
## 689      0     0      0          1       0         0         0
## 690      3     1     NA         NA      NA        NA        NA
## 691      3     1     NA         NA      NA        NA        NA
## 692     NA     1     NA         NA      NA        NA        NA
## 693      8     7      6          6       8         3         6
## 694     NA    NA     NA         NA       1         5         5
## 695      3    NA     NA         NA      NA        NA        NA
## 696     11     3     14         11      11        11        11
## 697     NA    NA     NA         NA      NA         3        NA
## 698      0    NA      0         NA       0        NA        NA
## 699      1     2     NA         NA      NA        NA         4
## 700      3     4      3          4       3         2         2
## 701     NA    NA     NA         NA      NA        NA        NA
## 702      8    NA     NA          6       6         3         8
## 703      0    NA      1          0      NA         0        NA
## 704      1    NA      2          2      NA        NA         2
## 705     NA    NA      1          1       3         2         1
## 706     NA    NA     NA         NA      NA        NA        NA
## 707     NA    NA      3          6       3         8        NA
## 708      0    NA      0         NA       1        NA        NA
## 709      1    NA     NA         NA      NA        NA         2
## 710      1    NA      3          3       4         1         3
## 711     NA     1     NA          4       1         1         4
## 712     23     6     14         17      11        11        11
## 713     NA    NA     NA         NA       0        NA        NA
## 714     NA    NA     NA         NA      NA        NA        NA
## 715      5     1      1          1       5         3         5
## 716     NA    NA     NA         NA      NA        NA        NA
## 717      2    NA     NA         NA      NA        NA        NA
## 718      8    14     11         17      17        20        17
## 719     NA    NA      3         NA      NA        NA        NA
## 720      0     0      0         NA      NA        NA         0
## 721      1    NA     NA         NA       2         2        NA
## 722      5     5      6          5       6         2         3
## 723     NA    NA     NA         NA      NA        NA        NA
## 724     NA     2     NA         NA      NA        NA         1
## 725     NA    NA      1         NA      NA         1        NA
## 726     11    17     10         22      12        13        17
## 727     NA    NA     NA         NA      NA        NA         1
## 728     NA    NA     NA         NA      NA         1        NA
## 729     51    NA     NA         57       2         2        53
## 730     25    NA     22         38       3         3        51
## 731      3     8      8          6       3         6         5
## 732     25    42      7         21      25        32        11
## 733     18     5      8         66       3        NA         5
## 734     NA    NA     NA         NA      NA        NA         1
## 735     NA    NA     NA         NA      NA        NA        NA
## 736      1     3     NA          2       2         1         1
## 737      3     5     NA         NA       5         4        NA
## 738      3    NA     NA          3       2         4        NA
## 739      0    NA     NA          1       1        NA         0
## 740     NA    NA     NA          1       1        NA         1
## 741      2    NA     NA         NA      NA         2        NA
## 742     NA    NA     NA          1       1        NA         1
## 743     31    14     NA         NA      NA        25        NA
## 744      3    NA      3          3      NA        NA        NA
## 745     NA    NA     NA         NA      NA        NA         0
## 746     NA    NA     NA         NA      NA        NA         1
## 747      1    NA     NA         NA      NA        NA         5
## 748     NA    NA     NA         NA      NA        NA        NA
## 749      2     1     NA          1       1         1         1
## 750      8     6      2         11       8         2         8
## 751      3     5     NA         NA      NA        NA        NA
## 752     NA    NA     NA         NA       2         2         2
## 753     30    72    108         42      93        57        55
## 754    251     6    158         62     124        93       194
## 755      8    27     95         15      27        49        30
## 756     13    18      8          5      13         8         8
## 757     10    NA      8         11      19        10        17
## 758      5    12      9          8      12         6         3
## 759     NA    NA      5         10      18         5        NA
## 760     NA    NA     NA         NA       1        NA        NA
## 761     17    17     21         19      17        13        17
## 762     17    31     17         14      11        11        20
## 763      8     2      4          6       6         2         6
## 764      3     3      5          5       5         3         8
## 765      2     2      1          1       3         1         2
## 766     NA     2      3          3       2         2         3
## 767      8    82    156         40     137        61        63
## 768     61    42     42         32      NA        NA        NA
## 769     NA    NA     NA         16      51        22        22
## 770      3     3      3          3       3         3         3
## 771      2    NA     21         29      36        14        35
## 772    211    42    304         82     186       271       113
## 773    275    39    370         99     204       155       345
## 774    144   166     53        243      85        53       176
## 775      7    NA     NA         NA      NA        NA        NA
## 776     NA    NA     NA         NA      NA        NA        42
## 777     49    34    188         59      72       108        51
## 778    169   142     82        182     133       148       251
## 779     NA    NA     NA         NA      NA        NA        NA
## 780     25    15     20         36      41        36        25
## 781     16     5     23         16      25        23        22
## 782     NA    18     14         17      17         6         6
## 783      6    12     NA          6       4         4         4
## 784     NA     1     NA         NA      NA        NA        NA
## 785     NA     1     NA          2       1        NA         3
## 786      3     1      2          2       3        NA         2
## 787      1     3      1          2       8        NA         1
## 788     13     6     14         17      23        15        18
## 789      5     2      3          5       2         4         2
## 790      4     2      2          1       4         1         3
## 791      7     4     23         NA       1         5         9
## 792     NA    NA     NA         NA      NA        NA        NA
## 793      4     2      2          6       2         2         4
## 794      1     2      1          1       1         1         1
## 795     NA     6      5         13      14         4         1
## 796      5     4     13          2       8         3         4
## 797      8     7      7         12      11         1         4
## 798      7     2      7          3       3         2        NA
## 799      3     4      4          4       0         1         4
## 800      8     3     NA          3       3         3        NA
## 801     NA    NA      5          8       5         5         3
## 802     NA    NA     NA         NA      NA         3        NA
## 803      3    15      6         10       4         5         3
## 804     NA    NA     NA         NA       1         3         3
## 805     NA     3     NA          8       3         3        NA
## 806      3     4      1          3       3         3        NA
## 807     NA    NA     NA          2       0        NA        NA
## 808     NA     5      3          3       3         3         3
## 809      8     3     NA          3      NA        NA        NA
## 810     NA    NA     NA          0       0        NA        NA
## 811     NA     0     NA          3      NA        NA        NA
## 812     NA     3     NA          3      NA        NA         1
## 813     NA    NA     NA         NA      NA        NA        NA
## 814      1    NA      1          2       2        NA         1
## 815     NA     0     NA          3      NA        NA        NA
## 816     NA     8     NA          3       3         5         3
## 817      3     5     NA          8       3        NA        NA
## 818      3     3      3          6       8         3         3
## 819     NA    NA     NA          1       1        NA         1
## 820     NA    NA     NA         NA      NA        NA        NA
## 821     NA    NA     NA         NA      NA         2        NA
## 822      3     3      3          3       3         1        NA
## 823      3     3     NA         NA      NA        NA        NA
## 824     NA     3      3          8       8        NA        NA
## 825     NA     7     NA         NA      NA        NA        NA
## 826      4     3      1          3       3         1         3
## 827     NA     1     NA          2      NA         0         0
## 828     NA    NA     NA          2       2        NA         2
## 829      3     8      8          3       8         3         3
## 830      6     3      1         NA      NA         4         3
## 831     NA    NA      4         NA      NA         5         3
## 832     21     5     16         16      16        18         7
## 833     NA    NA     NA          0      NA        NA        NA
## 834     NA    NA     NA         NA       1        NA        NA
## 835     NA    NA     NA         NA      NA         1        NA
## 836     17    15     27         27      25        17        17
## 837     22    25     19         16      16        13        16
## 838      3    10     10          5       8         5         5
## 839     NA    NA     NA         NA      NA        NA         1
## 840     NA    NA     NA         NA       0         0         1
## 841      0     1      1          1       1         1         1
## 842     NA    NA      1         NA      NA         1        NA
## 843     NA     1      2          2      NA        NA         1
## 844      1     1      1          1      NA         1        NA
## 845     NA    NA     NA         NA       2        NA         2
## 846      1     1      1          1       1         1         1
## 847      6     8     11          8       6         6        11
## 848     NA    NA      1         NA      NA        NA        NA
## 849     NA    NA     NA          0       0         0        NA
## 850     NA     2     NA          1      NA        NA         1
## 851     NA    NA     NA         NA      NA        NA        NA
## 852     NA    NA     NA         NA       1        NA        NA
## 853      2     2     NA         NA      NA        NA        NA
## 854     NA    NA     NA         NA      NA        NA        NA
## 855     25    32     38         27      44        30        59
## 856     17    17     17         17      15        18        11
## 857     23    25     23         17      23        17        14
## 858     17    34     28         17      28        20        25
## 859      8    15     12         10      12         8         8
## 860     17    21     19         19      19        25        25
## 861      4     6      5          4       5         7         6
## 862      8    11     11          8      11        11        11
## 863      8    13     15         15      11         6        11
## 864     NA     3      6          8       6         3         6
## 865     NA    NA      0         NA      NA        NA        NA
## 866      8    11     11          8       8         6         6
## 867     NA    NA     NA         NA      NA        NA        NA
## 868     NA    NA      4          2       2         2         2
## 869     40    NA     NA         NA      NA        NA        NA
## 870     25    89     86         95      63        48        95
## 871     22    22     25         25      16        19        22
## 872      9    18     20         30      27        17         9
## 873     17    17     15         14      12        12        14
## 874      3    NA     NA         NA      NA        NA        NA
## 875      3     6      6          3      NA        NA        NA
## 876     74    88    102        113      60        63       120
## 877    222   268    247        236     215        81       148
## 878     NA    NA     NA         NA      NA        NA        NA
## 879     34    46     57         59      34        46        23
## 880     82   116    118        127     104        57        89
## 881     12    16     15         11      16        11        10
## 882     11    14      9         11      11         9         9
## 883     NA    NA     NA         NA      NA         2        NA
## 884     NA    NA     NA         NA      NA        NA        NA
## 885     NA    NA     NA         NA      NA        NA        NA
## 886      1     1      1          1       1         3         1
## 887     NA    NA     NA         NA      NA        NA        NA
## 888     NA    NA     NA         NA      NA        NA        NA
## 889     NA    NA     NA         NA      NA        NA         7
## 890      0     0      0          0       0         0         0
## 891     NA    NA      0         NA      NA        NA        NA
## 892      3    19      3          3       3         5         4
## 893     NA    NA     NA         NA       0        NA        NA
## 894      2     4      2          6       2         4         2
## 895      1    NA     NA         NA      NA        NA        NA
## 896     NA    NA     NA         NA       1        NA         1
## 897      0     0      0          0       0         0         0
## 898      3     6      6          6       4         5         5
## 899     NA    NA     NA         NA      NA         1        NA
## 900     NA    NA     NA         NA       1        NA        NA
## 901     NA    NA     NA          2      NA        NA        NA
## 902      3     8      3          6      NA         3         6
## 903      0     1      1          1       1         1         1
## 904      0    NA     NA         NA      NA         1        NA
## 905      1     1     NA         NA       1         1         1
## 906      2     2      1          2       1         3         1
## 907     NA    NA     NA         NA      NA        NA        NA
## 908      3     3      6          3      NA        NA         8
## 909      0     1      1          0       0         0         0
## 910      0    NA     NA         NA      NA        NA        NA
## 911      1     1     NA         NA       1         1         1
## 912     NA    NA      1         NA      NA         1        NA
## 913     NA    NA     NA         NA      NA        NA        NA
## 914     NA    NA     NA         NA      NA        NA        NA
## 915      0     1      1          1       1         1         1
## 916      0    NA      0          0      NA        NA        NA
## 917      1     1      2          2       1         1         1
## 918      2     3      1          2       1         3         1
## 919      3     4      3          4       1         3         2
## 920      8    14      8         17       8         6         6
## 921     NA    NA     NA         NA      NA        NA        NA
## 922     NA    NA     NA          2       2        NA         2
## 923     NA    NA     NA         NA      NA        NA        NA
## 924     NA    NA     NA          2      NA        NA        NA
## 925     11    11      6         20      11        14        17
## 926      0     2      1          1       1         1         1
## 927      0     0     NA         NA       0        NA         0
## 928      1     1     NA         NA       1         1         1
## 929      4     6      4          5       4         5         4
## 930     NA    NA     NA         NA      NA        NA        NA
## 931     NA     5      2         NA       3         2         4
## 932      3     4     NA          4      NA        NA        NA
## 933     NA    NA     NA         NA      NA        NA        NA
## 934     NA    NA     NA         NA       1         1         1
## 935     NA    NA     NA         NA      NA        NA         2
## 936     NA    NA     NA         NA      NA         1         3
## 937      2     2      2          2       2         2         4
## 938      3     3      3          3       3         3         6
## 939      4    NA     NA         NA      NA        NA         4
## 940     NA    NA     NA         NA      NA        NA         2
## 941     NA    NA     NA          1      NA         1         2
## 942      1     1      1          1       1         1        NA
## 943      1     3      3          2       1         3         1
## 944      1     1      2          2       1         2         1
## 945     NA    NA     NA         NA      NA        NA         2
## 946      1    NA     NA          1       1         1         1
## 947     NA     2      4          2       2        NA        NA
## 948      2     1      1          1       1         1         1
## 949     NA    NA     NA         NA      NA        NA        NA
## 950     NA    NA     NA         NA      NA        NA        NA
## 951      2    NA     NA         NA      NA         2        NA
## 952     30    32     36         51      30        32        23
## 953      8     5      6         11       9         8         8
## 954     28    28     31         31      28        34        34
## 955     23    17     17         31      31        23        20
## 956     25    19     23         25      23        21        15
## 957      8     8      8          8      10         8        10
## 958      4     4      5          7       6         5         6
## 959      8     5      6          6       5         5         3
## 960      1    NA     NA         NA      NA        NA        NA
## 961      6     6      6          8       6         6         6
## 962      8     3      6         11      NA         6        11
## 963      4     4      4          4       4         8         6
## 964      5     3      8          3      NA        NA        NA
## 965      2     3      2          1       1         3         1
## 966     51    46     68         55      40        34        57
## 967     NA    NA     NA         NA      NA        NA        NA
## 968     25    29     32         25      29        38        35
## 969      3     3      3          3       3         3         6
## 970     11    11     11          9      20        11         6
## 971     NA     6      8          3       5         5         5
## 972     NA    NA     NA         NA      NA        NA        NA
## 973      6    NA     11          8      11         3         6
## 974     74   102    102         74      85       102        99
## 975    113    18     88         14      95       113        88
## 976      2    NA     NA         NA      NA        NA        NA
## 977     25    30     30         23      21        25        30
## 978     51    27     36         36      34        30        23
## 979     46    38     66         55      72        91        23
## 980      3     2      1          1       1         2         2
## 981     NA    NA     NA         NA      NA        NA        NA
## 982     24    23     23         18      16        17        16
## 983      3     5      5          6       3         6         3
## 984      6     4      4          6       4         2         4
## 985      4     2      3          4       3         4         2
## 986     NA    NA     NA         NA      NA        NA        NA
## 987      1     1      1          2       1         2         1
## 988     NA    NA     NA         NA      NA        NA        NA
## 989      1    NA      1         NA       5        NA         1
## 990      5     3      6          4       4        NA         2
## 991     NA    NA     NA          1      NA        NA        NA
## 992      1     0      2          1       0         2         0
## 993      1     2      1          2       1         2         3
## 994      6     7     10          5       3         8         5
## 995      1    NA      1          0      NA        NA         2
## 996      1    NA     NA         NA      NA        NA        NA
## 997     NA     4      4          6       4         4         4
## 998      1     1      2          2       3         1         2
## 999      1    NA     NA         NA      NA        NA        NA
## 1000    NA    NA     NA         NA      NA        NA         2
## 1001    NA    NA     NA         NA      NA        NA         1
## 1002     1     1      1          0       1         1         1
## 1003     1     4      3          5       7         8         9
## 1004    NA    NA     NA         NA       3        NA         3
## 1005    NA    NA     NA         NA       2         6         4
## 1006    NA    NA     NA         NA       1        NA        NA
## 1007     4     2     NA          4       4        NA         4
## 1008     3     6      3          3       8         8         3
## 1009     0    NA      0         NA       0        NA         1
## 1010    NA    NA     NA         NA       2        NA         2
## 1011     1     1      1          1      NA         1         2
## 1012     3     3      2          3       2         1         3
## 1013    NA    NA     NA         NA      NA        NA        NA
## 1014    NA    NA     NA         NA      NA        NA        NA
## 1015    NA    NA      0         NA      NA        NA        NA
## 1016    NA    NA     NA          3      NA        NA        NA
## 1017     6     6      3          6      NA        NA        NA
## 1018    NA    NA     NA         NA      NA         0        NA
## 1019     1     1      3          5      NA         1        NA
## 1020     2     1     NA          4       1        NA         3
## 1021    NA    NA     NA         NA      NA        NA        NA
## 1022     2     2      2          2       2         2        NA
## 1023    NA    NA     NA         NA      NA        NA        NA
## 1024    NA    NA     NA         NA      NA        NA         2
## 1025     1     1      1          1      NA         1        NA
## 1026     1     2      1          1       1        NA         3
## 1027     2     1      2          1       4         3         3
## 1028    14     8     14         14       6         3        14
## 1029    NA    NA     NA         NA      NA        NA        NA
## 1030    NA    NA     NA         NA       2         2        NA
## 1031     3     1      3          1       3         4         5
## 1032    NA    NA     NA         NA      NA        NA        NA
## 1033     6     2      2          6       4         4         8
## 1034     6     6      6          8       6         3         6
## 1035    NA    NA      1         NA      NA        NA         1
## 1036    NA     0     NA          0      NA        NA         0
## 1037     1     1      1          1      NA         1        NA
## 1038     3     3      3          3       2         4         6
## 1039    NA    NA     NA         NA      NA        NA        NA
## 1040     8     4      4          8       6        11        15
## 1041     0    NA     NA         NA      NA        NA        NA
## 1042    NA    NA     NA         NA      NA         2        NA
## 1043    NA    NA     NA         NA      NA        NA         1
## 1044    NA    NA     NA         NA      NA         1         1
## 1045     2     4      2          2       2         2         2
## 1046    13     6      3          3       3         3         3
## 1047    NA    NA     NA         NA      NA        NA         1
## 1048    NA    NA     NA         NA      NA         1        NA
## 1049    NA    NA     NA         NA      NA        NA        NA
## 1050     1    NA     NA         NA       1        NA        NA
## 1051     1     2      2          2       2         1         1
## 1052    NA    NA     NA         NA       0        NA        NA
## 1053     2     1      1          1       1         1         1
## 1054    NA    NA     NA         NA      NA        NA        NA
## 1055     1     1      1          2       1         1         1
## 1056     3    NA     14          6       6         6        NA
## 1057    NA     1     NA         NA      NA        NA        NA
## 1058    NA    NA     NA         NA      NA        NA        NA
## 1059     2    NA     NA         NA      NA        NA        NA
## 1060    NA    NA     NA         NA      NA        NA        NA
## 1061     1     1     NA         NA      NA        NA        NA
## 1062    13    13     15         13      13        11        11
## 1063     6     6      3          3       6         8        11
## 1064    NA    NA      3          3      NA        NA        NA
## 1065    34    30     25         25      25        25        17
## 1066     1     1     NA         NA       1         1        NA
## 1067     1     1     NA          2       1         1        NA
## 1068     3     3      4          6       4         4         4
## 1069    NA    NA      2         13      11         8        13
## 1070    24    24     32         NA      NA        NA        NA
## 1071     3     6      2         13      16        10        13
## 1072     3     3      3          3       3         3         3
## 1073     9    11     11         12      11         6        11
## 1074    NA     2      3         NA       2        NA        NA
## 1075    NA     3     NA          3      NA        NA        NA
## 1076    56    67     70         46      46        46        67
## 1077    92   102     67         85      77        56        81
## 1078    36    38     34         25      38        32        25
## 1079   116   101    108         89     101        70        70
## 1080     1     1     NA         NA      NA        NA        NA
## 1081     6     6      5          5       6         3         5
## 1082     6     5      6          5       5        NA         2
## 1083     2     2      1          1       1         1        NA
## 1084     1     1      1          1       1         2         1
## 1085    NA    NA     NA         NA      NA        NA        NA
## 1086     1    NA     NA          1       1        NA        NA
## 1087     0     0      0          0       0         0         0
## 1088    NA    NA      0         NA      NA        NA        NA
## 1089    NA     3      3         NA       3         1        NA
## 1090    NA     0     NA         NA      NA        NA        NA
## 1091    NA    NA     NA         NA      NA         1         1
## 1092     1    NA     NA         NA      NA        NA        NA
## 1093    NA     1     NA         NA      NA        NA        NA
## 1094    NA    NA     NA         NA      NA         1        NA
## 1095     0     0      0          0       0         0         0
## 1096     4     4      4          4       4         3         3
## 1097    NA    NA     NA         NA       1         1         1
## 1098     1     3      3         NA       3        NA        NA
## 1099    NA    NA     NA         NA      NA        NA        NA
## 1100    NA    NA     NA         NA       0        NA        NA
## 1101    NA    NA     NA         NA       1        NA        NA
## 1102     4     3      3          4       3         3         4
## 1103     0     0      0         NA       0         0        NA
## 1104    NA    NA      2         NA      NA        NA        NA
## 1105     1    NA     NA         NA      NA        NA         3
## 1106    NA    NA     NA         NA      NA        NA        NA
## 1107    NA    NA     NA         NA      NA        NA        NA
## 1108    NA    NA     NA         NA       1         2        NA
## 1109     1    NA     NA         NA      NA        NA        NA
## 1110     0     0      0         NA       0         0        NA
## 1111     1     3     NA         NA      NA        NA        NA
## 1112    NA    NA     NA         NA      NA        NA        NA
## 1113    NA     0     NA         NA      NA        NA        NA
## 1114    NA    NA     NA         NA       1        NA        NA
## 1115    NA    NA     NA          1      NA        NA        NA
## 1116    NA     3     NA          1      NA         1        NA
## 1117    NA    NA     NA         NA      NA         3        NA
## 1118    NA    NA     NA         NA      NA         0        NA
## 1119    NA     4      2          2      NA        NA        NA
## 1120     4     4      4          4       4         5         4
## 1121     0     0      0         NA       0         0        NA
## 1122     4     3      3          3      NA        NA        NA
## 1123    NA    NA     NA         NA      NA        NA        NA
## 1124     0    NA      0          0      NA        NA         0
## 1125     2    NA     NA         NA       1        NA         2
## 1126     4     4      3          4       3         4         4
## 1127     0     0      0         NA       0         0        NA
## 1128    NA    NA     NA         NA      NA        NA        NA
## 1129    NA     1     NA         NA      NA        NA        NA
## 1130     1    NA     NA          1       1         3         1
## 1131     0    NA     NA         NA      NA        NA        NA
## 1132     2    NA     NA         NA      NA        NA        NA
## 1133    NA    NA     NA         NA      NA         1        NA
## 1134    NA    NA     NA         NA      NA         1         1
## 1135     2     2      2          2       2         2         2
## 1136     3     3      3          6       6         3         3
## 1137    NA    NA      4         NA      NA        NA        NA
## 1138    NA    NA     NA         NA      NA        NA        NA
## 1139    NA    NA     NA         NA      NA        NA         1
## 1140    NA    NA     NA         NA      NA         0        NA
## 1141     0    NA      1         NA      NA        NA        NA
## 1142     4     5      4          5       3         3         1
## 1143    NA    NA     NA         NA       0        NA        NA
## 1144     1     1     NA          1       1         1         1
## 1145    NA    NA      2         NA      NA        NA        NA
## 1146     1     1      2          1       1         1         1
## 1147    NA    NA     NA         NA      NA        NA        NA
## 1148    NA    NA     NA         NA      NA        NA         0
## 1149    NA    NA     NA         NA      NA        NA         1
## 1150     1     1     NA         NA      NA        NA         1
## 1151    NA     1     NA         NA      NA        NA        NA
## 1152    11     6      4          8      11        11         6
## 1153     3    NA     NA         NA      NA        NA         6
## 1154     7    NA     NA         NA      NA        NA        NA
## 1155    11     6     13          6       8        15         6
## 1156     2     1      2          3       3         3         2
## 1157    NA    NA     NA          2      NA        NA        NA
## 1158    NA    NA     NA          2       2         2         2
## 1159    21    NA     NA         NA      NA        NA        NA
## 1160    19    22     50         32      35        35        38
## 1161    16    13     16         16      19        22        22
## 1162    12     9     12          9      12        11         8
## 1163    NA    NA     NA         NA       6         3        NA
## 1164    46    28     53         49      35        77        88
## 1165   218   130    187        159     173       116       201
## 1166    NA    NA     NA         NA      NA        NA        NA
## 1167    27    19     36         25      23        21        25
## 1168   135    53    114        120     131        99        89
## 1169     5     5      6          6       5         7         4
## 1170     5     3      5          2       5         5         6
## 1171     6     4      6          4       2         4         6
## 1172     4     2      1          2      NA         2         1
## 1173     1     1      1          1       1         1         1
## 1174    NA    NA     NA         NA      NA        NA        NA
## 1175    NA    NA     NA         NA      NA        NA        NA
## 1176    NA    NA     NA         NA      NA        NA         2
## 1177     0     0      0          0       0         0         0
## 1178     2     4      2          6       4         2         2
## 1179     0    NA     NA         NA      NA        NA        NA
## 1180    NA     2     NA          4      NA         4         6
## 1181    NA     0     NA         NA      NA        NA        NA
## 1182    NA     1     NA         NA      NA         1        NA
## 1183    NA    NA     NA         NA      NA        NA         1
## 1184     1    NA     NA         NA      NA        NA        NA
## 1185     0     0      0          0       0         0         0
## 1186     1    NA     NA         NA      NA        NA        NA
## 1187     1    NA     NA         NA      NA        NA        NA
## 1188     1    NA     NA         NA      NA        NA        NA
## 1189     1    NA     NA         NA      NA         1        NA
## 1190    NA    NA     NA         NA       2        NA         2
## 1191     1     1      1         NA      NA         1         1
## 1192     0    NA      1         NA      NA        NA        NA
## 1193    NA    NA      1          0       0         0         0
## 1194     2     1      1         NA       1         2         2
## 1195     1     1      1          1       1         1         2
## 1196     0    NA      0         NA      NA        NA         0
## 1197    NA    NA     NA         NA      NA         0        NA
## 1198    NA    NA      1         NA      NA        NA        NA
## 1199     1     4      1         NA      NA         1         6
## 1200     0    NA      0         NA      NA        NA        NA
## 1201     2     1      1         NA       1        NA        NA
## 1202     1     1      1          2       1         1        NA
## 1203     0    NA      0         NA      NA        NA         0
## 1204    NA    NA     NA         NA      NA         0        NA
## 1205     1     1      1         NA      NA         1         1
## 1206     0    NA      1         NA      NA        NA        NA
## 1207    NA    NA     NA         NA      NA        NA        NA
## 1208     2     1      1         NA       1        NA        NA
## 1209     1     1      1          2       1         1         2
## 1210     0    NA      0         NA      NA        NA         0
## 1211     1    NA     NA         NA      NA         1        NA
## 1212    NA    NA     NA         NA      NA        NA        NA
## 1213    NA    NA     NA         NA      NA         0        NA
## 1214    NA    NA      1         NA      NA        NA        NA
## 1215     4     1      1          3       3         1         6
## 1216     0    NA      1         NA      NA        NA        NA
## 1217     0     0     NA         NA      NA        NA        NA
## 1218     2     1      1          2       1        NA        NA
## 1219     1     2      1          2       1         1         1
## 1220     0    NA      0         NA      NA        NA         0
## 1221    NA    NA     NA         NA      NA         0        NA
## 1222    NA    NA     NA         NA      NA        NA        NA
## 1223     3    NA      5          1       3        NA        NA
## 1224    NA    NA      0         NA      NA        NA        NA
## 1225    NA    NA     NA         NA       1         1        NA
## 1226    NA    NA     NA         NA      NA         1        NA
## 1227     2     4      4          4       2         2        NA
## 1228    NA     6      6          3       3         3        NA
## 1229     3     3      3         NA       3        NA        NA
## 1230    NA    NA     NA         NA      NA        NA         1
## 1231    NA    NA     NA         NA      NA         0        NA
## 1232    NA    NA      1         NA      NA         0         0
## 1233     1     1      2          1       1         1         2
## 1234     0    NA      0         NA      NA        NA        NA
## 1235     0    NA     NA         NA      NA        NA         0
## 1236    NA    NA     NA         NA      NA         1        NA
## 1237    NA    NA     NA         NA      NA         1        NA
## 1238     2     2      4          2       2         4         2
## 1239     2    NA      2         NA       2         2         2
## 1240     3     3      3         NA       6        NA         6
## 1241     4     4      8          6       6         8         2
## 1242     2     3      2          2       1         3         2
## 1243    NA    NA     NA         NA      NA         2         6
## 1244     5    NA     NA         NA      NA        NA        NA
## 1245     6    22     29         16      25        22        16
## 1246     3     3      6          3       3         6         3
## 1247     5     5      5          3       8         6         5
## 1248    18    11     18          4      14        14        28
## 1249    46    56     49         70      70        53        70
## 1250    15    21     15         13      17        13        17
## 1251    57    61     59         49      55        51        53
## 1252     2     2      4          1       4         2         3
## 1253    NA     1      0          2       2         1         1
## 1254    NA     1      1          1      NA         1         1
## 1255    NA    NA     NA         NA      NA         1        NA
## 1256    NA    NA     NA         NA      NA        NA         1
## 1257    NA    NA     NA         NA      NA         0        NA
## 1258    NA    NA     NA         NA      NA        NA        NA
## 1259     5     7      3          3       4         5         2
## 1260    NA    NA     NA         NA      NA        NA        NA
## 1261    NA    NA     NA         NA      NA         0        NA
## 1262    NA    NA     NA         NA       1        NA        NA
## 1263    NA    NA     NA         NA       1        NA        NA
## 1264    NA    NA      2         NA      NA        NA        NA
## 1265    NA    NA     NA         NA       3        NA         3
## 1266    NA    NA      1         NA      NA         0         0
## 1267    NA    NA     NA          0      NA        NA        NA
## 1268    NA    NA     NA         NA      NA        NA        NA
## 1269     1     1      1          1       1         1         1
## 1270    NA     0     NA         NA      NA        NA        NA
## 1271    NA    NA     NA         NA      NA        NA        NA
## 1272    NA    NA      0         NA      NA         0         0
## 1273    NA    NA     NA         NA      NA        NA         0
## 1274    NA    NA     NA          2      NA         2        NA
## 1275    NA     0     NA         NA      NA        NA        NA
## 1276    NA    NA      1         NA      NA         0         0
## 1277    NA    NA     NA         NA      NA        NA        NA
## 1278    NA    NA     NA         NA      NA        NA        NA
## 1279     1     1      3         NA       1         1         1
## 1280    NA    NA      2         NA      NA        NA        NA
## 1281    NA    NA     NA         NA      NA        NA        NA
## 1282    NA     0     NA         NA      NA        NA        NA
## 1283     2     2     NA         NA      NA        NA        NA
## 1284     3    NA     NA          6       3         6         6
## 1285    NA    NA      1         NA      NA         0         0
## 1286    NA    NA     NA         NA      NA         0        NA
## 1287    NA    NA     NA         NA      NA        NA         2
## 1288     2     3      3          1       2         1         3
## 1289    NA     0     NA         NA      NA        NA        NA
## 1290     1    NA     NA          1      NA        NA         1
## 1291    NA    NA     NA         NA       1        NA         1
## 1292    NA    NA     NA         NA      NA        NA         1
## 1293     2     2      2          2       4         2         2
## 1294     3     3      3          3       3         3         3
## 1295    NA    NA     NA         NA      NA        NA        NA
## 1296    NA    NA     NA         NA      NA        NA         1
## 1297    NA    NA     NA         NA      NA         1        NA
## 1298     0    NA     NA         NA      NA        NA        NA
## 1299    NA     1     NA         NA      NA        NA        NA
## 1300     2     3      3          1       3         1         2
## 1301    NA    NA     NA         NA       0        NA        NA
## 1302     1     1      1          1       1         1         1
## 1303     1     1      1          1       1         1         1
## 1304     1    NA     NA         NA      NA        NA        NA
## 1305    NA     2      2          4       4         2         2
## 1306    NA    NA     NA         NA      NA        NA        NA
## 1307    13    17     15         17      19        15        15
## 1308    NA    NA     NA         NA      NA        NA        NA
## 1309     6     6      3          3       8         3         8
## 1310     6    11      6          8       6         6         8
## 1311     4    NA     NA         NA      NA        NA        NA
## 1312     3     3      2          3       3         3         2
## 1313     6     6      4          8       2         4         6
## 1314     3    NA     NA         NA      NA        NA        NA
## 1315     1     1      1         NA      NA        NA         1
## 1316    NA     2      2         NA      NA         2        NA
## 1317     4     2     NA          2       4         2         6
## 1318     4     2      2          2       2         4         2
## 1319    NA    NA     NA         NA      NA        NA        NA
## 1320    13    11     13         15      19        17        17
## 1321    16    21     16         NA      NA        NA        NA
## 1322    NA    NA      3         10       6        10        16
## 1323     3     3      3          3       3         6         3
## 1324     9     9     14          9      20        12        12
## 1325     3    NA     NA         NA      NA        NA        NA
## 1326    NA    NA      8         NA      NA        NA        NA
## 1327    25    28     32         18      25        25        77
## 1328    99    88    102         88      92        88       116
## 1329     8    15     13         13      15        15        25
## 1330    46    42     38         44      46        38        42
## 1331    13    13     11         10      11        12        12
## 1332     6     8      5          5       6         5         3
## 1333    NA    NA     NA         NA      NA        NA         1
## 1334     1     1      1          1       1         1         1
## 1335    NA    NA     NA         NA      NA        NA        NA
## 1336    NA     1      1          1       1        NA        NA
## 1337     0     0      0          0       0         0         0
## 1338    NA    NA     NA         NA       2         2         2
## 1339    NA    NA     NA         NA      NA        NA         1
## 1340     1     1     NA         NA      NA         1        NA
## 1341     0     0      0          0       0         0         0
## 1342     2    NA      2          2       3         3         3
## 1343    NA    NA     NA         NA       1        NA        NA
## 1344     2     2      2          2      NA        NA         2
## 1345     3     3      3          8      NA         6         6
## 1346     0    NA     NA         NA      NA        NA        NA
## 1347    NA    NA     NA          0      NA        NA         0
## 1348    NA     2     NA         NA       3         1         3
## 1349     2     3      3          1       3         3         3
## 1350    NA    NA     NA         NA      NA        NA        NA
## 1351    NA    NA      3         NA      NA        NA        NA
## 1352    NA     3     NA         NA      NA        NA        NA
## 1353     0    NA     NA         NA      NA        NA        NA
## 1354    NA    NA      0         NA      NA        NA        NA
## 1355    NA    NA      2         NA       1         1         1
## 1356    NA     1     NA          1       1        NA         1
## 1357    NA    NA     NA         NA      NA        NA        NA
## 1358     0    NA     NA         NA      NA        NA        NA
## 1359    NA    NA     NA         NA      NA        NA        NA
## 1360    NA    NA     NA         NA       1         1         1
## 1361    NA     1      1         NA      NA        NA        NA
## 1362     2     3      2          1       1         2         2
## 1363     3     3      3          6       3        NA        11
## 1364    NA     0     NA         NA      NA        NA        NA
## 1365     2    NA     NA         NA      NA        NA        NA
## 1366     1     1      1          1      NA         1         4
## 1367    NA    NA     NA         NA      NA        NA        NA
## 1368     2     2      2          2      NA        NA        NA
## 1369     6    NA      3          3       3        NA         8
## 1370     0    NA     NA         NA      NA        NA        NA
## 1371     0    NA     NA         NA       0         0        NA
## 1372     2     2     NA          2       1         1         1
## 1373     1     3      2          1       3         2         1
## 1374    NA    NA     NA         NA      NA        NA        NA
## 1375    NA     1     NA         NA      NA        NA         2
## 1376    NA    NA      1          1      NA        NA         2
## 1377    NA    NA     NA         NA       1         1         1
## 1378    NA    NA     NA         NA      NA        NA         3
## 1379    NA    NA     NA         NA      NA         1        NA
## 1380    15    11     17         25       4        19        13
## 1381    13    13     19         19       6        13         6
## 1382     3     3      3          6      NA         3         2
## 1383    NA     4      7         NA      NA        NA        NA
## 1384     5     3     NA          5      NA        NA        NA
## 1385    NA    NA     NA         NA      NA        NA         1
## 1386    NA    NA     NA          1      NA         0        NA
## 1387     1     1     NA          1       0         1         0
## 1388     1    NA      1          1       1        NA        NA
## 1389     4     4      5          3       2         1         3
## 1390     2    NA     NA         NA      NA        NA         0
## 1391     1     1     NA         NA       1         2         1
## 1392     2    NA      2          2      NA        NA         2
## 1393     1     1      2          2       1         1         1
## 1394     8     6      3          6       6        NA         6
## 1395    NA    NA     NA         NA      NA        NA        NA
## 1396     1    NA      1         NA      NA        NA        NA
## 1397     2     4      2          6       2         2         4
## 1398    15    19     13         19      17        15        15
## 1399     3     2      3          2       3         2         2
## 1400    11    14     11         11      11        14         4
## 1401     3     3      2          3       2         2         2
## 1402    19    32     13         30      19        19        17
## 1403     8     8      7          7       7         9         5
## 1404     5     5      3          3       3         2         3
## 1405    NA    NA     NA         NA      NA        NA        NA
## 1406     4     4      4          4       4         2        NA
## 1407    NA    NA     NA          3      NA         3        NA
## 1408     4     6      4         11       4         2         6
## 1409    NA    NA     NA         NA      NA         1        NA
## 1410     2    NA     NA         NA      NA        NA        NA
## 1411    NA    NA     NA          2       2         2         2
## 1412    26    NA     NA         NA      NA        NA        NA
## 1413    19    76     20         48      44        41        48
## 1414    32    44     41         51      35        19        67
## 1415    24    26     23         17      18        21        18
## 1416     3     3      2          2       3         3         2
## 1417    NA    NA     NA         NA      NA        NA        NA
## 1418    18    25     39         25      70        NA       137
## 1419   151   190    134        166     162       127       180
## 1420    NA    NA     NA         NA      NA        NA        NA
## 1421    19    44     30         19      17        23        49
## 1422    99   131     80         74     114       112        85
## 1423     2     2      2          2       1         2         1
## 1424    13    12     13         14      10        15         9
## 1425     8     9      8         NA      NA         2         6
## 1426    NA     2      4          4       6         2         4
## 1427     5     5      5          4       5         5         5
## 1428     1     1      1          1       1         2         1
## 1429    NA    NA     NA         NA      NA        NA        NA
## 1430    NA    NA     NA         NA      NA        NA        NA
## 1431    NA    NA     NA         NA      NA        NA         1
## 1432     0     0      0          0       0         0         0
## 1433    NA    NA     NA         NA      NA        NA         0
## 1434     0     2     NA         NA       0        NA         3
## 1435    NA    NA     NA         NA       0        NA        NA
## 1436     2    NA      2          2       2        NA         2
## 1437    NA     1      1          1       0         1         0
## 1438    NA    NA     NA         NA      NA        NA         1
## 1439     0     0      0          0       0         0         0
## 1440     1     5      3          5       3         4         2
## 1441    NA    NA     NA         NA       3         3         1
## 1442    NA    NA     NA          4       3        NA         8
## 1443    NA    NA     NA          5      NA        NA        NA
## 1444     1     1      1          1       0         1         0
## 1445     3     2     NA          1       3         1         3
## 1446    NA     2      4          3       2        NA        NA
## 1447     2     3      4          3       3         2         3
## 1448     0    NA     NA         NA      NA        NA        NA
## 1449    NA    NA      1         NA      NA        NA        NA
## 1450    NA    NA     NA          1      NA        NA        NA
## 1451     0     1     NA          1       0         0         0
## 1452    NA    NA     NA          0      NA        NA        NA
## 1453    NA    NA     NA          1      NA        NA        NA
## 1454    NA    NA     NA         NA      NA         1         1
## 1455     0    NA     NA         NA      NA        NA        NA
## 1456     3     3     NA          1      NA        NA        NA
## 1457    NA    NA     NA         NA      NA         2        NA
## 1458     1     1     NA          1       0         1         0
## 1459    NA    NA     NA         NA       1        NA        NA
## 1460    NA    NA     NA          1      NA        NA        NA
## 1461    NA    NA     NA         NA      NA        NA        NA
## 1462     3     3      3          3       1         3         1
## 1463     3     3     NA         NA      NA        NA        NA
## 1464    NA    NA      3         NA      NA         3        11
## 1465     4     4      7         NA       4        NA        NA
## 1466     6     5      2          3       5         1         3
## 1467     2     4      6          2       2        NA         2
## 1468    NA    NA     NA         NA      NA         3         3
## 1469     0    NA     NA         NA      NA        NA        NA
## 1470    NA    NA      3         NA      NA         2        NA
## 1471    NA     3     NA          1      NA        NA        NA
## 1472     4     4      4          9      NA         4        NA
## 1473     1     1      1          1       0         1         0
## 1474     3     3      1          3       3         3         3
## 1475     4     6      2         11       2         4         6
## 1476     4     6      3          4       3         6         3
## 1477     0    NA     NA         NA      NA        NA        NA
## 1478    NA    NA     NA         NA      NA         3        NA
## 1479    NA    NA      1         NA      NA         2        NA
## 1480     7     6      9          3       6        10         4
## 1481     0    NA     NA         NA      NA        NA        NA
## 1482    NA    NA      0         NA      NA        NA        NA
## 1483    NA    NA     NA          3      NA        NA        NA
## 1484    NA    NA     NA         NA      NA         1        NA
## 1485    NA    NA     NA         NA      NA         1         1
## 1486     2     2      2          2       2        21         2
## 1487     3     3      3         NA       3        32         3
## 1488    11    28     21         35       4        NA         7
## 1489    NA    NA     NA         NA      NA        13        NA
## 1490    NA    NA     NA         NA      NA        NA         1
## 1491    NA    NA     NA          2      NA        NA        NA
## 1492     2     3     NA          2       0         0         3
## 1493     1     5      1          3       3         3         3
## 1494    NA    NA     16         NA      NA         1        NA
## 1495    NA    NA     NA         NA       1        NA         0
## 1496     1     1      1          1       1         1        NA
## 1497     1     1      1          1       1         1        NA
## 1498    28    NA     NA         31      NA        NA        NA
## 1499    NA    NA      1         NA      NA        NA        NA
## 1500    NA    NA      1         NA      NA        NA         1
## 1501     1     1      3          2      NA        NA         3
## 1502     5    NA     NA         NA      NA        NA         1
## 1503     8     8     15         15      13        17        11
## 1504     8    11     11         11       6        11        NA
## 1505     6     6      3         NA       6         3        NA
## 1506    NA    NA     NA         NA      NA         2        NA
## 1507    NA    34     19         21      30        21        36
## 1508     3     3      3          4       2         3         2
## 1509     2     3     NA          2       2         2         1
## 1510    NA    NA     NA         NA      NA         2         4
## 1511     4     2     NA         NA       2         4        NA
## 1512    NA    NA      3         NA      NA        NA        NA
## 1513    NA    NA     NA         25      46        27        25
## 1514     5    NA     NA         NA      NA        NA        NA
## 1515    38    86     51          3      NA        57        38
## 1516    29    67     51         13      63        48         3
## 1517     2    15     15         36       9        18        20
## 1518    NA     3     NA         NA      NA         3        NA
## 1519     8    11     11          8       6         3        NA
## 1520    56   127     77         49     137        42        53
## 1521   127   243    148        225     166       201        88
## 1522    30    49     34         21      61        38        53
## 1523    59    66     82         85      66        36        95
## 1524     6     9      8         10      10         8         7
## 1525     6     6      8          8      11         3         3
## 1526    NA     2     NA         NA      NA         2        NA
## 1527     6     8      9          8       7         6         7
## 1528    NA     1      1         NA      NA        NA        NA
## 1529     1     1      1          1       1         1        NA
## 1530    NA    NA      1         NA      NA        NA        NA
## 1531     1     3      3         NA      NA        NA        NA
## 1532     2     9     NA          2       5         4         4
## 1533     0     0      0          0       0         0         1
## 1534     1     2      1          1       0         2         2
## 1535    NA     5      5          4       5         4         8
## 1536    NA    NA     NA         NA       0        NA        NA
## 1537     2     2      4          2       4         2         4
## 1538     1     2      1          2       1         2         1
## 1539    NA    NA     NA         NA      NA         1        NA
## 1540    NA    NA     NA         NA      NA        NA         1
## 1541     1    NA     NA         NA      NA        NA        NA
## 1542    NA     1     NA         NA      NA        NA        NA
## 1543     0     0      0          0       0         0        NA
## 1544     5     3      4          3       4         3         2
## 1545    NA    NA     NA         NA       1         4         4
## 1546    NA    NA     NA         NA      NA         2        NA
## 1547     8    11      6          6      14         6        11
## 1548     0    NA     NA         NA      NA         1         1
## 1549     1     1      1         NA       1         1         2
## 1550     3     4      4          6       4         3         4
## 1551    NA    NA     NA         NA      NA         0        NA
## 1552    NA    NA     NA         NA      NA         2        NA
## 1553    NA     3     NA         NA       3         3        NA
## 1554     0    NA     NA         NA      NA         1        NA
## 1555     1     1      1         NA       1         1        NA
## 1556     3     3      3          3       5         4         3
## 1557    NA    NA     NA         NA      NA         0        NA
## 1558    NA    NA     NA         NA      NA         2         2
## 1559     1    NA     NA         NA      NA        NA        NA
## 1560    NA    NA     NA         NA      NA         1        NA
## 1561     1     1      1         NA       1         1        NA
## 1562    NA    NA     NA         NA      NA         1         2
## 1563     4     3      3          4       3         2         3
## 1564    NA    NA     NA         NA      NA        NA        NA
## 1565    17    20     11         14      11         8        14
## 1566     0    NA     NA         NA       0        NA         3
## 1567    NA    NA     NA         NA      NA        NA        NA
## 1568     4     4      4          4       3         4         3
## 1569    NA    NA     NA         NA      NA         0        NA
## 1570    NA    NA     NA         NA      NA         2        NA
## 1571    NA    17     25         25      17        11        14
## 1572     1     0      0         NA      NA         1         2
## 1573     1     1      1          2       1         1        NA
## 1574     6     6      5          6       4         6         3
## 1575    NA    NA     NA         NA      NA         0        NA
## 1576    NA     2      1          2      NA         1        NA
## 1577     2    11      6         10       4         7         6
## 1578    NA    NA     NA         NA      NA        NA        NA
## 1579    NA    NA      0         NA      NA        NA        NA
## 1580    11     6      3          8       6         3        11
## 1581     9     5      5          5      10         6         1
## 1582    NA    NA     NA         NA      NA         1        NA
## 1583     8     2      2          6      11         2         6
## 1584    22    10     10         10      13         3        35
## 1585    NA    NA     NA         NA      NA        NA        NA
## 1586    14     2     NA          2       6        NA        11
## 1587     7    NA      7         NA       4        NA         7
## 1588    23     5      3          8      15        NA         8
## 1589    NA    NA     NA         NA      NA        NA         1
## 1590     3    NA      3         NA      NA         2        NA
## 1591    NA    NA     NA          3      NA        NA        NA
## 1592    NA    NA     NA         NA       1        NA        NA
## 1593     1     0     NA          0       1         0        NA
## 1594    NA    NA      1         NA      NA        NA        NA
## 1595     3    NA     NA         NA      NA        NA        NA
## 1596     8     8      3         NA      NA        NA         2
## 1597     0    NA     NA          0      NA        NA         1
## 1598     1     5      1          1       3         1         1
## 1599    NA    NA     NA         NA      NA        NA        NA
## 1600     1     6      1          2       2         1         1
## 1601     8    11      3          8      11        17         8
## 1602    NA    NA     NA         NA       1        NA        NA
## 1603    NA    NA     NA         NA      NA        NA        NA
## 1604    NA    NA     NA         NA      NA        NA         1
## 1605     1    NA     NA         NA      NA        NA        NA
## 1606    NA    NA     NA         NA      NA        NA        NA
## 1607     8     2      6          8       2         8         8
## 1608    NA    NA     NA         NA      NA        NA        NA
## 1609    NA    NA     NA         NA      NA        NA        NA
## 1610    NA    NA      4         11      15        13         2
## 1611    21    21     24         NA      NA        NA        NA
## 1612    35    35     20         16      48        35        29
## 1613    19    38     48         29      57        16        32
## 1614    NA    NA     NA         NA      NA        NA        NA
## 1615    14    33     29         18      20        24        23
## 1616    NA    NA     NA          2      NA        NA        NA
## 1617    NA    NA     NA         NA      NA        NA        NA
## 1618    NA    NA     NA         NA      NA        NA        NA
## 1619   127   106     35         53     137       109       180
## 1620    46    56     60         56      88        67        67
## 1621     2    NA     NA         NA       6        NA        NA
## 1622    15    55     36         27      23        21        49
## 1623    82    36     68         85     142        34        63
## 1624     5     4      3          3       4         2         4
## 1625     5     2      2          3       3         5         3
## 1626    10     6      6          8       6         6         4
## 1627    10     8      7          7      11         9        12
## 1628    NA    NA     NA         NA      NA        NA        NA
## 1629     4     6      1          5      11         1         1
## 1630     2     3     NA         NA      NA        NA        NA
## 1631    10    10     NA          6      13         8         2
## 1632     2     3      1          3       5         7         8
## 1633    NA    NA     NA         NA      NA        NA        NA
## 1634     0     0      0          0       0         0         1
## 1635    NA    NA      1         NA      NA        NA         1
## 1636     5    15      5          5      11        18         4
## 1637    NA    NA     NA         NA      NA        NA        NA
## 1638     1    NA     NA         NA       0        NA        NA
## 1639     2     2     NA         NA       4        NA         6
## 1640     1     0      2          1       3         1         2
## 1641    NA    NA     NA         NA      NA         1        NA
## 1642    NA    NA     NA         NA      NA        NA        NA
## 1643     0     0      1          0       0         1         1
## 1644    NA    NA     NA         NA       5        10         3
## 1645    NA    NA     NA         NA      NA         2         1
## 1646     2    NA      2          1      NA         2        NA
## 1647     1    NA     NA         NA      NA        NA        NA
## 1648    14     6     11          6       6        11         8
## 1649    NA    NA     NA         NA      NA        NA        NA
## 1650     7    NA     NA         NA      NA        NA        NA
## 1651     1     0     NA          0       1         0        NA
## 1652    10     6      5          8       5         5         8
## 1653     1     1      5          2       1         1         1
## 1654    NA    NA     NA         NA      NA        NA        NA
## 1655     2     2      1          2       2         2         3
## 1656     2    NA      2          2      NA         2        NA
## 1657     1    NA     NA         NA      NA        NA        NA
## 1658    17     8      6          6      28        37        20
## 1659    NA    NA     NA         NA      NA        NA        NA
## 1660     4    NA     NA         NA      NA        NA         2
## 1661     1     0     NA          0       0         0        NA
## 1662    10    NA      5          3       9         9         5
## 1663    NA    NA     NA         NA      NA         2        NA
## 1664     1     1      5          2       1         1         1
## 1665    NA    NA     NA         NA       1        NA        NA
## 1666     2     2      1          2       2         2         3
## 1667     2    NA      2          1      NA         2        NA
## 1668    NA    NA     NA         NA      NA        NA        NA
## 1669    NA    NA     NA         NA      NA        NA        NA
## 1670    NA    NA     NA         NA      NA        NA        NA
## 1671     1     0     NA          0       1         0        NA
## 1672     3    NA     NA         NA      NA        NA         2
## 1673     1     1      3         NA       1         1         1
## 1674    NA    NA     NA         NA       1        NA        NA
## 1675    NA    NA     NA         NA      NA        NA        NA
## 1676     1    NA     NA         NA      NA        NA        NA
## 1677     8     3      3          3       6         8         6
## 1678     4    NA     NA         NA      NA        NA        NA
## 1679     3     3      2          3       7         5         3
## 1680    NA    NA     NA         NA      NA        NA        NA
## 1681    NA    NA     NA         NA      NA        NA        NA
## 1682     2     2      1          2       2         2         3
## 1683     2    NA      2          1      NA         2        NA
## 1684     1    NA     NA         NA      NA        NA        NA
## 1685    NA    NA     NA         NA      NA        NA        NA
## 1686     8     3      3          3      11         8         8
## 1687    NA    NA     NA         NA      NA        NA        NA
## 1688     4    NA     NA         NA      NA        NA        NA
## 1689     1     0     NA          0       1         0        NA
## 1690    14    NA      4          3       9         7         7
## 1691     1     1      3          2       1         1         1
## 1692    NA    NA     NA         NA      NA        NA        NA
## 1693     2     2      1          2       2         2         3
## 1694    NA    NA     NA         NA      NA         1        NA
## 1695    NA    NA     NA         NA      NA        NA        NA
## 1696    NA    NA      0         NA      NA        NA        NA
## 1697     3     3      3          6      NA        NA        NA
## 1698     5     1      4          4       2        NA        NA
## 1699    NA    NA     NA         NA      NA         1        NA
## 1700    27    19     17         17       4         8         2
## 1701    41    19     29          6       3        13         3
## 1702    NA    NA      0         NA      NA        NA        NA
## 1703     4    11     60         NA      NA        NA         7
## 1704    10     3     15          3      10        NA        NA
## 1705    NA    NA     NA         NA      NA        NA         1
## 1706    NA    NA      1         NA      NA         0        NA
## 1707    NA    NA     NA         NA      NA         1        NA
## 1708    NA    NA     NA          0      NA        NA        NA
## 1709     1     0     NA          0      NA        NA        NA
## 1710     1     2      2          2       1         1         3
## 1711     1     1      1         NA       1        NA        NA
## 1712    NA    NA     NA         NA      NA        NA         0
## 1713    NA     1     NA          1       1         1         1
## 1714     2    NA      2         NA      NA        NA        NA
## 1715    NA    NA     NA         NA      NA        NA        NA
## 1716    NA     1      1          1       1         1         1
## 1717     8     3      6          8       3         6         6
## 1718     3     3      1         NA      NA        NA        NA
## 1719    NA    NA      0          0      NA        NA        NA
## 1720    NA     1      1         NA      NA        NA        NA
## 1721    NA    NA      1         NA      NA        NA        NA
## 1722    NA    NA     NA         NA      NA        NA        NA
## 1723    NA    NA     NA         NA      NA        NA        NA
## 1724     6     2      2          6      NA         4         2
## 1725    NA    NA     NA         NA      NA        NA        NA
## 1726    40    42     40         38      46        42        40
## 1727     6    14      9         11      12        12        12
## 1728    39    45     51         42      54        54        51
## 1729    11     6      8          8       8        NA         6
## 1730    12    10     10         12      10         7         3
## 1731    40    57     38         44      55        38        42
## 1732     8     8      7          8       7         6        11
## 1733     6     3      3          6       6        NA         6
## 1734    NA     1     NA         NA      NA         2        NA
## 1735    11    15     13          8       8         4        11
## 1736    17    17     14          6      14        11        14
## 1737     4     6      6          8       6         6         8
## 1738     1     2     NA          2       1         2         1
## 1739    NA    NA     NA         NA      NA        NA        NA
## 1740     4     8     27         42      34        34        38
## 1741    45    NA     NA         NA      NA        NA        NA
## 1742    29    70     51         48      57        44        29
## 1743     3     3      3          3       3         3         3
## 1744    23    24     33         33      24        29        23
## 1745    29    29     29         27      35        26        32
## 1746    73    54     68         48      59        45        62
## 1747     8     8      6          6       8         6         3
## 1748    92    77     99         60      63        85        56
## 1749    28    49     32         32      42        46        46
## 1750    NA    NA     NA         NA      NA        NA        NA
## 1751    19    17     21         13      23        15        23
## 1752    76    74     74         70      93        53        70
## 1753    80    66     82         85      93        59        74
## 1754     2     1      1          2       1        NA         1
## 1755    NA    NA     NA         NA      NA        NA        NA
## 1756    23    20     20         18      19        18        21
## 1757    11    12     14          6       8         8        11
## 1758    10     6      6          4       8         6         8
## 1759     6     7      5          8       6         7         7
## 1760    NA    NA     NA         NA      NA        NA        NA
## 1761     2     2      1          2       1         1         2
## 1762    NA     1     NA         NA      NA        NA        NA
## 1763     3     1      4          1      NA        NA        NA
## 1764     1     4      4          6       2         4         3
## 1765     1     1      1          1       0         0         0
## 1766     5    NA      2         NA       1        NA         2
## 1767     2     3      4          1       3         2         3
## 1768    NA    NA     NA         NA      NA        NA         2
## 1769    NA    NA     NA         NA       0        NA        NA
## 1770    NA    NA      4          2       2         2         2
## 1771     1    NA      0          1       1        NA         0
## 1772     2     1      1          4       6         2         3
## 1773     3     2      4          4       4         3         2
## 1774     2     2      4          5       2         3         1
## 1775     5     4     NA          1       3         3        NA
## 1776     1     2      0          3       1         1         2
## 1777     8     6      8          9       9         8         6
## 1778    NA    NA     NA         NA       3         8         4
## 1779    NA    NA     NA         NA       1         1        NA
## 1780     4     4      2          4       4         2         2
## 1781     2    NA     NA         NA      NA        NA        NA
## 1782    NA    NA      3          3       6        NA         4
## 1783     1     0     NA          0      NA        NA        NA
## 1784     3     5      7          2       2         2         5
## 1785     3     2      3          1       1         1         3
## 1786    NA    NA     NA          1      NA        NA         1
## 1787     0     0      0          0      NA         0        NA
## 1788     2    NA     NA         NA      NA        NA        NA
## 1789    NA    NA     NA          3      NA        NA         1
## 1790     1     0     NA          0      NA        NA        NA
## 1791    NA    NA     NA         NA      NA         2        NA
## 1792     3     2      1          1       1         1         1
## 1793     0     0      0          0      NA         0        NA
## 1794     2     2     NA          4       2         2         2
## 1795    NA    NA     NA         NA      NA        NA         1
## 1796     1     0     NA          0      NA        NA        NA
## 1797     3    NA      2          2      NA        NA        NA
## 1798    NA    NA     NA         NA      NA        NA        NA
## 1799     3     2      1          1       1         1         1
## 1800    NA    NA     NA         NA      NA        NA        NA
## 1801    NA    NA     NA         NA      NA        NA        NA
## 1802     2    NA     NA         NA      NA        NA        NA
## 1803     6     3      6          3       6        14         6
## 1804     3     2      3          2       2         5         3
## 1805     4    NA     NA          6      NA         2         2
## 1806     5     3     NA          1       1        NA        NA
## 1807     0     0      0          0      NA         0        NA
## 1808     8     8      2          8       4         8         4
## 1809    NA    NA     NA         NA      NA        NA         0
## 1810     2    NA     NA         NA      NA        NA        NA
## 1811    NA    NA     NA         NA      NA        NA         2
## 1812     6     3      8          3       3         6         9
## 1813     1     0      1          0      NA        NA        NA
## 1814     7     5      7          5       2         5         3
## 1815    NA    NA     NA         NA      NA        NA        NA
## 1816     3     2      1          1       1         1         1
## 1817    NA    NA      5          3      NA         3         4
## 1818     0     0      0          0      NA         0        NA
## 1819    NA    NA     NA         NA      NA        NA        NA
## 1820     8     1      4          2       3         5         4
## 1821    NA    NA      0         NA      NA        NA        NA
## 1822    NA    NA     NA         NA      NA         1        NA
## 1823     8    11      8          4       4         6         6
## 1824     6    10      3          3       3        13         3
## 1825     7    11     14         NA       7         7        11
## 1826     3     3      5          3       5         3         5
## 1827     3     1      1          1       2         1         1
## 1828    NA    NA     NA         NA      NA         1        NA
## 1829    NA    NA     NA         NA      NA        NA        NA
## 1830     3     3      1          1       2         2         1
## 1831     1     1     NA          1       2        NA         1
## 1832    NA    NA     NA         NA      NA        NA         0
## 1833    NA     1      1         NA       1         1         1
## 1834    NA    NA     NA          2      NA        NA        NA
## 1835    NA     1      1          1       1         1         1
## 1836     3     6     NA          8       3         3         6
## 1837    NA    NA     NA         NA      NA        NA        NA
## 1838    NA     1     NA         NA      NA        NA        NA
## 1839    11    11     17         11      15        13        15
## 1840     6     6      5          6       6         6         3
## 1841     6     6      8          3       8        11         6
## 1842     6     6      8          3       6         8         8
## 1843    11     4     11         NA       4         4         4
## 1844    12    12     12         12      14        14        12
## 1845     8     4     11          8      11         6         8
## 1846     3     1      2          2       1         1         4
## 1847     6     5      5          3       2         2         2
## 1848    NA    NA      1         NA       1        NA         1
## 1849    NA    NA      2          2      NA         2         2
## 1850     3    NA     NA         NA       3        NA         6
## 1851     4     2     NA          2       2        NA         2
## 1852     1    NA     NA          1      NA         1         1
## 1853    15    13      6          8      13         6         8
## 1854     5    NA     NA         NA      NA        NA        NA
## 1855     6    22     29         25      25        25        22
## 1856     3     3      3          6       3         3         6
## 1857     2     5      2          2       3         3         3
## 1858     9     6      8          9       6         8         9
## 1859    17    20     23         31      23        17        42
## 1860     6     8     14         11      11        11        11
## 1861    14    11     14         21      18        18       162
## 1862    49    28     35         60      35        42        53
## 1863    23    25     23         30      27        21        32
## 1864    11    17     11         32      42         6        15
## 1865     4     4      4          3       6         4         4
## 1866     5     2      3          2       3         3         3
## 1867     2     2      2          2       2         2         2
## 1868     4     3      3          3       2         3         3
## 1869     3     1      1          1       1         1         1
## 1870     2     2     NA          1       1         1         1
## 1871     3     2      1          1       1         1         1
## 1872     1     1      1          2       4         2         2
## 1873    NA     0      0          0       0         0         0
## 1874     1     1      0          2       0         0         1
## 1875     3     3      2          3       1         2         3
## 1876     4     2      2          4       2         1         4
## 1877    NA     2     NA         NA       2        NA        NA
## 1878     1    NA      0          1      NA         0         0
## 1879     1    NA     NA         NA       1        NA         1
## 1880    NA     0      0          0       0         0         0
## 1881     6     4      2          4       4         3         6
## 1882    NA    NA     NA         NA       1        NA        NA
## 1883    NA    NA     NA         NA      NA        NA         1
## 1884     1    NA     NA         NA      NA        NA        NA
## 1885    NA     2      3          2       2        NA         3
## 1886    NA     6      3          3      NA         3        NA
## 1887    NA    NA     NA         NA      NA        NA        NA
## 1888     1     0     NA          1       0         1         1
## 1889     2    NA     NA         NA      NA         1        NA
## 1890     1     1      1          2       1        NA         4
## 1891     0     0      0          0       0         0         0
## 1892     1    NA     NA         NA      NA        NA        NA
## 1893    NA    NA     NA         NA      NA        NA        NA
## 1894     3    NA      3          3      NA        NA        NA
## 1895    NA    NA     NA         NA      NA        NA        NA
## 1896    NA    NA     NA         NA      NA         1        NA
## 1897    NA     1     NA          1       1        NA         1
## 1898     0     0      0          0       0         0         0
## 1899    NA    NA     NA          2      NA        NA        NA
## 1900    NA    NA     NA         NA      NA        NA        NA
## 1901    NA    NA     NA         NA       0        NA        NA
## 1902    NA    NA     NA         NA      NA         1         2
## 1903     1    NA     NA         NA      NA        NA        NA
## 1904     2     1      1          5       2         1         1
## 1905     1    NA     NA         NA      NA        NA        NA
## 1906     2    NA     NA         NA      NA        NA        NA
## 1907     3     3      6          6       3        NA        NA
## 1908     0     0     NA         NA       0         0         0
## 1909     2    NA      4         NA      NA        NA        NA
## 1910     1    NA      1          1       1        NA        NA
## 1911     0     0      0          0       0         0         0
## 1912    NA     2      2         NA       2        NA         2
## 1913     1    NA     NA         NA      NA        NA        NA
## 1914    NA     3      2          2      NA         3         2
## 1915    NA     3     NA          6       3        NA         3
## 1916    NA    NA      1         NA      NA        NA        NA
## 1917     3     1      2          3       1         3         2
## 1918    NA     2     NA          2       2         1        NA
## 1919     1     3      2          3       3         2         5
## 1920     0     0      0          0       0         0         0
## 1921     7     5      3          7       3         5         6
## 1922    NA    NA      0         NA      NA        NA        NA
## 1923     1     1     NA          1       1         1         2
## 1924    NA    NA     NA         NA      NA        NA         3
## 1925    NA    NA     NA         NA      NA         1         1
## 1926    11     8      2          6       4         8         4
## 1927    19    13      3          3       6        16        13
## 1928    NA    NA     NA          1      NA        NA        NA
## 1929    NA    NA     NA         NA      NA        NA        NA
## 1930     5     3      3          3      NA         3         3
## 1931    NA    NA     NA         NA      NA         0        NA
## 1932     0     0      0          0       0        NA         0
## 1933     2    NA      1          1       2         3         1
## 1934     4     2      2          3       3         4         3
## 1935     0     0      0          0       1         0         1
## 1936     1     1      1          1       1         1         1
## 1937    NA    NA     NA         NA      NA        NA        NA
## 1938     1     1      1          2       1         1         1
## 1939     3     6      3          6      NA         8         3
## 1940     1    NA     NA         NA      NA        NA        NA
## 1941    NA    NA     NA         NA      NA        NA         0
## 1942     1     1     NA         NA      NA         1         1
## 1943    NA    NA     NA         NA      NA        NA         2
## 1944    NA    NA      2          2      NA        NA         2
## 1945     2    NA      2         NA      NA        NA        NA
## 1946    NA     1     NA         NA      NA        NA        NA
## 1947    11    11     13          6       4         6         6
## 1948     5    NA     NA         NA      NA        NA        NA
## 1949    10    13      6          6      10        32        19
## 1950     6    10      6          3       6        10         6
## 1951     3     2      2          2       2         3         6
## 1952    NA    NA     NA         NA      NA        NA        NA
## 1953    74   106     60         11      11        70        60
## 1954    14    14      7          7       7        21         7
## 1955     4     8      4          2      NA         6         2
## 1956    21     8     11          6       4        21        13
## 1957    34    19     17         15       6        32        25
## 1958     2     1      2          1       1         2         1
## 1959    NA     2      2         NA       2         5         2
## 1960     4     2     NA          4      NA         8         2
## 1961     4     1      2          1      NA         3         2
## 1962    NA    NA     NA         NA      NA        NA        NA
## 1963     1     1      1          1       1         1         1
## 1964    NA    NA     NA         NA      NA        NA        NA
## 1965    NA     5     NA          4       3         2         1
## 1966     0     2      0          1       1         0         2
## 1967    NA     1     NA          1       1         1         1
## 1968     1     3     NA          0       3         1        NA
## 1969    NA    NA     NA         NA       0        NA         1
## 1970    NA     2      2         NA      NA         2         2
## 1971     1    NA      0          1       1         0         0
## 1972    NA    NA     NA         NA       1         1        NA
## 1973     1    NA      1         NA      NA         1        NA
## 1974    NA    NA     NA         NA      NA         1        NA
## 1975     0     1      0          1       1         0         1
## 1976    NA    NA     NA         NA      NA        NA         3
## 1977    NA    NA     NA         NA       1        NA        NA
## 1978    NA    NA      2         NA      NA         2         2
## 1979     1    NA     NA         NA      NA        NA        NA
## 1980     3     3      2         NA       3         1         1
## 1981     1     2      1         NA      NA         1         1
## 1982     0     0      0          0       0        NA         0
## 1983     2     2      0          0       0        NA        NA
## 1984    NA     1     NA          2      NA         1         1
## 1985     2    NA     NA          1       1        NA         1
## 1986     1    NA      0         NA      NA        NA        NA
## 1987     0     0      0          0       0         0         0
## 1988    NA    NA      2         NA      NA         2         1
## 1989     1    NA     NA         NA      NA        NA        NA
## 1990    NA     3      2         14      NA         1         1
## 1991     1     2      1          4      NA         1        11
## 1992     0     0      0          0       0        NA         0
## 1993     1     1      0         NA      NA        NA        NA
## 1994    NA     1     NA         NA      NA         1         1
## 1995     3     1     NA         NA      NA        NA         2
## 1996     1    NA      0         NA      NA        NA        NA
## 1997     0     0      0          0       0         0         0
## 1998    NA    NA      2         NA      NA         2         1
## 1999    NA     3      2         NA      NA         1         1
## 2000     1     2      1         NA      NA         1         4
## 2001     0     0      0          0       0        NA         0
## 2002     1     0      0         NA      NA         0        NA
## 2003    NA     1     NA         NA      NA         1         1
## 2004     1    NA     NA         NA      NA        NA         2
## 2005     1    NA      0         NA      NA        NA        NA
## 2006     1    NA     NA         NA      NA        NA         1
## 2007     1    NA     NA         NA      NA        NA        NA
## 2008    NA    NA      1         NA      NA        NA        NA
## 2009    NA    NA     NA         NA       2        NA        NA
## 2010     0     0      0          0       0         0         0
## 2011    NA    NA      2         NA      NA         2         1
## 2012     1    NA     NA         NA      NA        NA        NA
## 2013    NA     6      2         NA      NA         1         1
## 2014     1     2      1         NA      NA         1         4
## 2015     0     0      0          0       0        NA         0
## 2016     2     2      0         NA      NA        NA         0
## 2017     2     1      2         NA      NA         1         1
## 2018     3     1     NA          1       1         1         5
## 2019     1    NA      0         NA      NA        NA        NA
## 2020     0     0      0          0       0         0         0
## 2021    NA     1     NA         NA       1         1        NA
## 2022     2     2      1          2       1         1         3
## 2023     0    NA     NA         NA      NA        NA        NA
## 2024    NA    NA      0         NA      NA        NA        NA
## 2025    NA    NA     NA         NA       1        NA        NA
## 2026    NA    NA     NA         NA      NA         1        NA
## 2027    53    27     42         55      19         4        23
## 2028    57    29     57         29       3         6        13
## 2029     0    NA     NA          1      NA         0         1
## 2030    NA    NA     NA         NA      NA        NA        18
## 2031    20    13     15          8      15        13        13
## 2032    NA    NA     NA         NA      NA        NA         3
## 2033    NA    NA     NA         NA      NA         1        NA
## 2034    12     2      5          6       2         1        NA
## 2035     1     1      2          3       3         1        NA
## 2036     1     1      1         NA      NA        NA        NA
## 2037    NA    NA     NA         NA      NA        NA        NA
## 2038     2     4      3          3       3         4         4
## 2039     4     5      4          4       3         3         2
## 2040    NA    NA      0         NA       0         1        NA
## 2041    NA    NA      1          1       1         1        NA
## 2042    NA     2     NA         NA      NA        NA        NA
## 2043    NA     1      1          2       1         1        NA
## 2044     6    14      6         NA      NA        14        NA
## 2045    NA    NA      1         NA      NA         3        NA
## 2046     2     2      1          0       1         1         4
## 2047     3     8     NA          4      NA        NA        NA
## 2048    NA    NA     NA         NA      NA        NA        NA
## 2049    NA    NA     NA         NA      NA        NA        NA
## 2050     1     1      1          1      NA         2        NA
## 2051     4    NA      4          6       4         4         4
## 2052    11    21     13          6       6        13         4
## 2053     2     5      2          2       3         5         2
## 2054    17    17     17          6      14        14         3
## 2055     6    14     17         20      11        11        11
## 2056    32    23     27         25      23        27        27
## 2057     9     6      8          6       9         8         4
## 2058     3    NA      3         NA       2         2         2
## 2059     1    NA     NA         NA      NA        NA        NA
## 2060     4     4      4          8       6        11         2
## 2061     3     3      6          6       8         3         6
## 2062     4     2      6          4       4         2         6
## 2063     1    NA      1          1       1         2        NA
## 2064    NA    42     46         44      13        23        51
## 2065    18    NA     NA         NA      NA        NA        NA
## 2066    51     3     54         NA      51         6        32
## 2067    13    13     16         25      19        16         3
## 2068    27    21     23         21      17        17        12
## 2069     6     3     NA          3       3        NA         3
## 2070    62    34     65         45      59        54        73
## 2071    20    23     28         28      17         6        NA
## 2072   120   130    120         85     109        42       130
## 2073    88    56     99        109      67         4        46
## 2074    NA    NA     NA          4      NA        NA        NA
## 2075    32    87     68        106      61       110        23
## 2076    61    61    108         70     112       120        19
## 2077    21    10     23         32      16        26        25
## 2078    15     3     17          0       8         9        12
## 2079    18    NA     12         NA      NA         8        12
## 2080    17    NA     14         NA       5         6        10
## 2081     3     2      1         NA       1         3        NA
## 2082     2     2      3          2       1         1        NA
## 2083     6     3      2          3       5         4         1
## 2084    11    11      6          7       8         9         5
## 2085    NA     3      1          3      NA         1        NA
## 2086     2    NA     NA         NA      NA        NA        NA
## 2087    NA     0      3          2       0         2         0
## 2088     2     1      3         NA      NA        NA        NA
## 2089    32     2     NA         NA      NA        23         2
## 2090     3    NA     NA         NA       0        NA        NA
## 2091     2     2      2          2      NA         4         4
## 2092     3    NA      2         NA       1         2         0
## 2093    NA    NA     NA          4      NA         1         1
## 2094    NA    NA     NA          2       3         1         1
## 2095    NA     1     NA          6       1         2        NA
## 2096    NA    NA     NA          5      12         1        NA
## 2097    NA     1      0          2       1         2         3
## 2098     3     1      2          2       3         1         2
## 2099    NA    NA     NA         NA       6         3        10
## 2100    NA    NA     NA         NA       5         8         5
## 2101    NA    NA     NA         NA       3         1         2
## 2102     3     3      2         NA       5         2         2
## 2103     1     1      1         NA      NA        NA        NA
## 2104    NA     3      3         NA      NA        NA         6
## 2105    11    NA     18         NA      NA        NA        NA
## 2106    NA    NA     NA         NA      NA        NA        NA
## 2107     1    NA      2          3      NA         1         4
## 2108    NA     2     NA          8       2        NA        NA
## 2109     6     5      3          3       1         3         4
## 2110    NA    NA     NA         NA      NA        NA        NA
## 2111     0    NA     NA         NA      NA        NA        NA
## 2112     2     3      2         NA       5         2         2
## 2113     1     1      1         NA      NA        NA        NA
## 2114     6    NA     NA         NA       3        NA        NA
## 2115    NA     7     NA         NA       7         7         7
## 2116    NA    NA     NA         NA      NA        NA        NA
## 2117     1     0     NA          1      NA         2         3
## 2118     6     2     NA          4       2        NA         4
## 2119     3     3      3          2       3         3         2
## 2120    NA    NA     NA         NA      NA        NA        NA
## 2121     0    NA     NA         NA      NA        NA        NA
## 2122     2     3      2         NA       5         2         2
## 2123    NA     3     NA         NA      NA        NA        NA
## 2124    NA    NA     NA         NA      NA        NA        NA
## 2125    NA    NA     NA         NA      NA        NA        NA
## 2126     1     0      0          0       2         0         3
## 2127    NA    NA     NA         NA      NA        NA        NA
## 2128     2     2      2          3       1         3         3
## 2129    NA    NA     NA         NA      NA        NA        NA
## 2130     5     5      4          3       6         1         3
## 2131     1     1      1         NA      NA        NA        NA
## 2132    NA    NA     NA          3      NA         3        11
## 2133     4    11      7         NA       7         4         7
## 2134    NA    NA     NA          1       5        NA         4
## 2135     2     2     NA          6       2         6        NA
## 2136     3     5      4          3       5         5         5
## 2137     0    NA     NA         NA      NA        NA        NA
## 2138     2     3      2         NA       5         2         2
## 2139     1     1      1         NA      NA        NA        NA
## 2140    NA     2     NA         NA      NA        NA        NA
## 2141     3     3      3          3      NA        NA        NA
## 2142    14    NA     18         NA      11        NA         7
## 2143    NA    NA     NA         NA      NA        NA        NA
## 2144     4     3      3          2       7         1         7
## 2145     2     2      2         13       4        NA        NA
## 2146     8     1      3          8       7         8         3
## 2147    NA    NA     NA         NA      NA        NA        NA
## 2148     0    NA     NA         NA      NA        NA        NA
## 2149    NA    NA     NA         NA      NA        NA        NA
## 2150    NA     1      1         NA      NA         1        NA
## 2151    43    13     30         22      33        26        25
## 2152     2    NA      0         NA       0        NA        NA
## 2153     7     5      3          2       1         2         2
## 2154    NA    NA     NA         11      NA        NA        14
## 2155    NA    NA      3         NA      NA        NA        NA
## 2156    NA    NA     NA         NA      NA         1        NA
## 2157     2     2      2          2       2         2         2
## 2158     3     3      3         13       3         3         3
## 2159     0    NA     NA         NA      NA        NA        NA
## 2160     3    NA     NA         NA      NA        NA        NA
## 2161     0    NA     NA         NA      NA        NA        NA
## 2162    NA    NA      0         NA      NA        NA        NA
## 2163     1     2      7         NA      NA         0         4
## 2164     1     1      1          1       1         1         1
## 2165     1     1      1          1       1         1         1
## 2166    NA     6     NA         NA      NA        NA        17
## 2167    NA    NA     NA         NA      NA        NA         0
## 2168     4     2     NA         NA       2        NA         2
## 2169    NA    NA     NA         NA      NA        NA        NA
## 2170    NA    NA     NA          3      NA        NA        NA
## 2171    32    11     36        108     101       171       108
## 2172     2     2     NA          4      57         2         6
## 2173    26    NA     NA         NA      NA        NA         3
## 2174    60    57    387        260     539        44        51
## 2175    63   127     79        171     143       143       260
## 2176    29    15     17         24      44         8        15
## 2177    NA     3      8          8      NA        NA        NA
## 2178     3    NA     NA         NA      NA         3         3
## 2179    NA    NA     NA          6      NA        NA         3
## 2180    99    95     60        194     102       159       335
## 2181   278   271    310        514     391       232       662
## 2182     7    NA     NA         NA      NA        NA        NA
## 2183    NA    NA     NA          2      NA        NA         4
## 2184   101    57     42        133     249       197       146
## 2185   486   714    530        562     719       746        NA
## 2186    43    10      3          9       5         8         7
## 2187     2    NA      2         NA      NA         3         3
## 2188    NA    NA      2          2       4         8         2
## 2189     4    NA      4          2       2         3         2
## 2190     1     1      1          1       1         1         1
## 2191    NA    NA     NA         NA      NA        NA        NA
## 2192    NA    NA     NA         NA       1        NA        NA
## 2193     0     0      0          0       0         0         1
## 2194    NA    NA     NA         NA      NA         0        NA
## 2195     3    10     NA         NA      NA        NA        NA
## 2196     0    NA     NA         NA      NA        NA        NA
## 2197    NA    NA      2         NA      NA        NA        NA
## 2198     0     0      0          0       0         0         0
## 2199    NA    NA     NA         NA       1         1        NA
## 2200    NA    NA     NA         NA       1        NA        NA
## 2201    NA    NA      1         NA      NA        NA         1
## 2202    NA     3     NA         NA      NA        NA         3
## 2203    NA     0      1          1      NA        NA        NA
## 2204     6     9     10         NA       4         3         1
## 2205    NA    NA      0         NA      NA        NA        NA
## 2206     3     1      0          1       3         0         0
## 2207     3    22      3          9       5         4        12
## 2208    NA    NA     NA          3      NA        NA        NA
## 2209     1    NA     NA          0      NA        NA         0
## 2210    NA    NA      4         NA      NA        NA         1
## 2211    NA     0      1          1      NA        NA        NA
## 2212     8     1      1         14       1        NA         9
## 2213    NA    NA      0         NA      NA        NA        NA
## 2214     1     1     NA          2       1        NA        NA
## 2215   126   119    100         55      60        88       126
## 2216     1    NA     NA          0      NA        NA         0
## 2217    NA    NA      1         NA      NA        NA         1
## 2218    NA     0      1          1      NA        NA        NA
## 2219    NA     4      1          6       1        NA         1
## 2220    NA    NA      0         NA      NA        NA        NA
## 2221     2     1     NA          2       1        NA        NA
## 2222   128   132    100         60      83       107       126
## 2223     3     6      3         11      NA        NA         3
## 2224    NA    19      2         NA       8        NA        11
## 2225     1    NA     NA          0      NA        NA         0
## 2226    NA    NA      1         NA      NA         3         1
## 2227    NA    NA     NA         NA      NA        NA         3
## 2228    NA     0      1          1      NA        NA        NA
## 2229     3    20     13          6       9        NA        23
## 2230    NA    NA      0         NA      NA        NA         1
## 2231     3     1      0          0       0         1        NA
## 2232     7    24      9          3      11         2        10
## 2233     1    NA     NA          0      NA        NA         0
## 2234    NA     1     NA         NA      NA        NA        NA
## 2235    NA    NA     NA         NA      NA        NA        NA
## 2236     1    NA      1         NA      NA        NA        NA
## 2237    NA    NA     NA         NA       1         1        NA
## 2238    NA    NA     NA         NA      NA         1        NA
## 2239     4     2      2          2       2         2         6
## 2240    10     6     10          3       3         3        10
## 2241    NA    NA     28         NA      NA        NA         4
## 2242    NA    NA     NA         NA      NA         0        NA
## 2243    NA    NA     NA         NA      NA        NA        NA
## 2244     1    NA     NA         NA      NA        NA        NA
## 2245     3     3      1          2       1         3        NA
## 2246     1    NA     NA          0       0        NA         1
## 2247     1     1      1          1       1         1         1
## 2248     2     2      1          1       1         1         1
## 2249    NA     3     NA         NA       6        NA        14
## 2250     4     2      6         NA       4         4        NA
## 2251     4     8      6          6       6         6         2
## 2252     1     2     NA          2      NA        NA         1
## 2253     6    13      8          2       6         8         4
## 2254    NA    NA     NA         NA      NA        NA        NA
## 2255     3     3      6          3       3         6         3
## 2256    NA     3     13          6       6        13        19
## 2257     5     8      8          2       2         5         6
## 2258    21    77      4         NA       7        25        42
## 2259    42   106     60         39      63        35        63
## 2260    NA    NA     NA         NA      NA        NA        NA
## 2261    NA    NA     NA         NA      NA        NA         2
## 2262    11    13     13         11      30        42        27
## 2263   106   118    125        142     110        36       101
## 2264     3     5      3          5       1         2         5
## 2265     2     2      2         NA       2         2         2
## 2266     1    NA      2         NA       1         1        NA
## 2267     1     1      1          1       1         1         1
## 2268    NA    NA     NA         NA      NA        NA        NA
## 2269    NA    NA     NA         NA       1        NA        NA
## 2270    NA    NA     NA         NA      NA        NA        NA
## 2271     2     0      0          0       0         0         0
## 2272    NA    NA     NA         NA      NA        NA        NA
## 2273     3     5      3          5       6         4         7
## 2274    NA     0     NA         NA      NA        NA        NA
## 2275    NA    NA     NA         NA      NA        NA         1
## 2276     0     0      0          0       0         0         0
## 2277    NA    NA     NA         NA       5        NA        NA
## 2278    NA     3     NA         NA       3        NA        NA
## 2279     0    NA     NA          0       2         0        NA
## 2280     2     2     NA         NA      NA         1        NA
## 2281    NA    NA     NA         NA      NA        NA        NA
## 2282    NA    NA     NA         NA      NA        NA        NA
## 2283    NA    NA     NA         NA      NA        NA        NA
## 2284    NA     0     NA         NA      NA        NA        NA
## 2285    NA    NA     NA         NA      NA         1        NA
## 2286    NA    NA     NA         NA      NA        NA        NA
## 2287     8     8      6          3       6         6         6
## 2288    NA    NA     NA         NA      NA        NA        NA
## 2289     8     4      2         NA      NA         1        NA
## 2290    NA    NA     NA         NA      NA        NA        NA
## 2291     3    NA     NA         NA      NA        NA        NA
## 2292    NA    NA     NA         NA      NA         3         3
## 2293    NA    NA     NA         NA      NA        NA        NA
## 2294    NA    NA     NA         NA      NA        NA        NA
## 2295    NA    NA     NA         NA      NA        NA        NA
## 2296     3    NA     NA         NA      NA        NA        NA
## 2297    NA     3      6          6      NA        NA         8
## 2298    NA     0      0         NA       0        NA         0
## 2299     8     4     NA          2       2         1         2
## 2300    NA    NA     NA         NA      NA        NA        NA
## 2301    NA    NA     NA         NA      NA        NA        NA
## 2302    NA    NA     NA         NA      NA        NA         1
## 2303     1    NA     NA         NA      NA         1        NA
## 2304     1    NA     NA         NA      NA        NA        NA
## 2305    NA    NA     NA         NA      NA         1        NA
## 2306    23    NA      2          2       4         2         2
## 2307     3    NA     10          3       6         3         3
## 2308    NA    NA     NA         NA      NA        13        NA
## 2309    NA    NA     NA         NA      NA        NA         1
## 2310    NA    NA      1         NA      NA        NA        NA
## 2311    NA    NA     NA         NA      NA        NA        NA
## 2312    NA    NA     NA         NA       0        NA        NA
## 2313    NA    NA      0         NA      NA        NA        NA
## 2314     3    NA     NA          1      NA        NA         1
## 2315     1    NA     NA         NA       0        NA         0
## 2316    NA    NA      1          1       1         1         1
## 2317     2    NA     NA         NA      NA        NA        NA
## 2318     1    NA      1          1       1         1         1
## 2319    11    NA     NA         NA      NA        11        14
## 2320     3    NA     NA         NA      NA        NA        NA
## 2321     2     4     NA          4       2        NA        NA
## 2322    36    NA     25         NA      13        17        13
## 2323     3     2      2          3       3         2         2
## 2324    76    65     42         34      70        48        34
## 2325    23     2      6         17      19        13        17
## 2326     2     1      1          3       2         2         4
## 2327     5     2      2          2       3         2         2
## 2328     6     6      6          6       4         6         4
## 2329     6     2      4          6       6         2         6
## 2330    NA    NA     NA         NA      NA        NA        NA
## 2331     2     2      1          1       1         1         2
## 2332    NA    NA     NA          2       2        NA        NA
## 2333    NA    NA     NA         NA      NA        NA        NA
## 2334    38   114    155         76     120        86        63
## 2335     3     3      3          3       3         3        16
## 2336    NA    NA     NA         NA      NA        NA        NA
## 2337    18     8     17         17      18        20        12
## 2338     6    34     42         34      34        39        34
## 2339   137   127    148         53     208       166       116
## 2340   123    NA    166         85     144       215       109
## 2341    36    13     55         34      59        30        30
## 2342    70     2     66         93      36        82        68
## 2343    16     6     13          9      11         6        12
## 2344    26    NA     12          9      14         5        18
## 2345    NA    NA     NA         NA      NA        NA        NA
## 2346     2    NA      1          1       1         1         1
## 2347    NA    NA     NA         NA      NA        NA         1
## 2348    NA    NA     NA         NA      NA        NA        NA
## 2349     0     0      0          0       0         0         0
## 2350    NA    NA     NA         NA      NA         1        NA
## 2351    NA     0      2         NA       4         5         5
## 2352    NA    NA     NA         NA       0        NA        NA
## 2353     6     2      4          8       2         4         6
## 2354     1     1     NA          1       3         1         1
## 2355     0    NA      0          0       0         0         0
## 2356     3    NA      1          1       1        NA         1
## 2357    NA    NA     NA         NA      NA         1        NA
## 2358    NA    NA     NA         NA       1        NA        NA
## 2359     2    NA     NA         NA      NA        NA        NA
## 2360     8    NA     11          6       8         6        11
## 2361    NA    NA      2         NA      NA        NA        NA
## 2362    NA    NA      0         NA      NA         0        NA
## 2363    NA    NA     NA         NA      NA         1         2
## 2364    NA    NA      1          1      NA         1        NA
## 2365     2    NA     NA         NA      NA        NA        NA
## 2366     6    NA      3          3       3        NA        11
## 2367    NA    NA      0         NA      NA        NA        NA
## 2368    NA    NA     NA         NA       0        NA        NA
## 2369    NA    NA     NA         NA      NA         1        NA
## 2370     3    NA      6          3      NA        NA        NA
## 2371    NA    NA      0         NA      NA        NA        NA
## 2372     2    NA     NA         NA      NA        NA        NA
## 2373    NA    NA     NA         NA      NA         1        NA
## 2374     2    NA     NA         NA      NA        NA        NA
## 2375     6     8      8          3       6         6        NA
## 2376    23     4      6          6      13         8        NA
## 2377    NA    NA     NA         NA      NA         2        NA
## 2378     2    NA     NA         NA      NA        NA        NA
## 2379    NA    NA     NA         NA      NA        NA        NA
## 2380    17    14      8         14       8         8        28
## 2381    NA    NA      2         NA      NA        NA        NA
## 2382     2    NA     NA          0      NA        NA         0
## 2383    NA    NA     NA         NA      NA         1        NA
## 2384     3    NA     NA          1      NA         3         1
## 2385    NA    NA     NA         NA       1         1        NA
## 2386     9    NA     NA         NA      NA         4         9
## 2387     0    NA     NA         NA      NA        NA        NA
## 2388    NA    NA     NA         39      NA        NA        NA
## 2389    NA    NA     NA         NA       1         1        NA
## 2390    NA    NA     NA         NA      NA         1        NA
## 2391    11     2      2          2       4         6         2
## 2392    25     6     38         29      25        19         3
## 2393     3    NA      3          3       5         3        NA
## 2394    NA    NA     NA         NA      NA        NA         1
## 2395    NA    NA     NA         NA      NA         0        NA
## 2396    NA    NA      1         NA      NA        NA        NA
## 2397    NA    NA     NA          2      NA        NA        NA
## 2398    NA     1     NA         NA      NA        NA        NA
## 2399     3    NA      2         NA       3         1         1
## 2400    12     6     16         NA       4         6         7
## 2401     1     0     NA         NA      NA        NA         0
## 2402     3     1      2          1       1         1         2
## 2403    NA    NA     NA         NA      NA        NA        NA
## 2404     1     1      1          1       1         1         1
## 2405    23    11     28         NA      14        11        NA
## 2406    NA    NA     NA         NA      NA        NA        NA
## 2407    NA     0     NA          0       0        NA        NA
## 2408    NA    NA      1          1      NA        NA        NA
## 2409     1    NA      1         NA      NA        NA        NA
## 2410    NA    NA     NA         NA      NA        NA        NA
## 2411    NA    NA      2          2      NA         2         4
## 2412    NA    NA     NA         NA      NA        NA        NA
## 2413    11    25     34         21      19        21        36
## 2414    NA    NA      6         NA      NA         3        NA
## 2415    14     4     25         49      NA        32        14
## 2416    17    13     17         30      11        17        NA
## 2417     1     1     NA          2       2         1         6
## 2418    NA     2     NA         NA      NA        NA        NA
## 2419    11     6      6          6       2         8        11
## 2420     6     8      3         11      NA         6        14
## 2421    13     8     13         17      17        15        17
## 2422    NA    NA     NA         NA      NA        NA         2
## 2423    NA    NA      4          2      NA         2         4
## 2424    45   106    106        148      79        50        NA
## 2425    NA    NA     NA         13      NA        13       108
## 2426    29    57     79        105      89        16        98
## 2427     2     3      3          3       2         9        17
## 2428    NA    NA     NA         NA      NA        NA        NA
## 2429    88   215    187        282      70       254       141
## 2430    99   352     53        285     106       243       159
## 2431    NA    NA     NA         NA      NA        NA        NA
## 2432    13    42     46         42      38        34        59
## 2433    27    40     63         93      70        95        51
## 2434     8    16     16         16      25         7        19
## 2435     9     9     12          9       8         8        21
## 2436     6    12     10         10      10        12        28
## 2437     5     3      4          2       4         1        13
## 2438    NA     1     NA         NA      NA        NA        NA
## 2439     3     1      2          1       1         1         1
## 2440    NA    NA      1         NA      NA        NA        NA
## 2441     3     3      4          3       3         3        NA
## 2442     0     0      0          0       1         0         0
## 2443    NA    NA      1         NA      NA        NA         1
## 2444     2     4     13         NA       8         7         7
## 2445     1    NA     NA         NA       1        NA        NA
## 2446     2    NA      4         NA       2        NA        NA
## 2447     0    NA      1          0      NA         0        NA
## 2448     4     6      1          1       7        NA         5
## 2449     1     2      5          2       7         2         4
## 2450     5     7      7         NA       5         4         6
## 2451     4     3      3         NA       5         2        NA
## 2452     2     2      5          3       5         2         4
## 2453     1     1      1          2      NA         1         1
## 2454    NA    NA     NA         NA       1        NA         3
## 2455    NA    NA     NA         NA      NA         1        NA
## 2456    NA    NA      2         NA      NA        NA        NA
## 2457    NA    NA     NA          1      NA         1         2
## 2458     1    NA     NA         NA      NA        NA        NA
## 2459     4     5      1         14      NA         3        NA
## 2460     9    13      3          3      NA         2        10
## 2461    NA     1      1         NA      NA        NA        NA
## 2462     1     2      4          2       2         4         7
## 2463     4     1      3          4       1         2         2
## 2464    NA    NA     NA         NA      NA        NA        NA
## 2465    NA    NA      2         NA      NA        NA        NA
## 2466    NA    NA     NA          1      NA         1         2
## 2467     1    NA     NA         NA      NA        NA        NA
## 2468     4     5      1         14      NA        NA         6
## 2469     5     6      3          3      NA         2         3
## 2470    NA     0      0         NA      NA        NA        NA
## 2471     1     2      2          2       2         4         5
## 2472     4     2      1          3       2         1         1
## 2473    NA    NA     NA         NA      NA        NA        NA
## 2474    NA    NA     NA          1      NA         1         2
## 2475     1     2      1         NA      NA        NA        NA
## 2476     9     6      3         10      NA         5         3
## 2477    NA     0     NA          0       0         0         0
## 2478     3     2      2          2       2         4         5
## 2479     3     1      1          3       2         1         1
## 2480    NA    NA     NA         NA      NA        NA        NA
## 2481     1    NA     NA         NA      NA        NA        NA
## 2482     6     6     NA         23      NA        NA         3
## 2483    NA    NA      7         NA      NA         4         4
## 2484    NA    NA     NA         NA      NA        NA         2
## 2485     3     1     NA         NA      NA         1        NA
## 2486    NA    NA     NA         NA      NA        NA        NA
## 2487    NA    NA      4         NA      NA        NA        NA
## 2488    NA    NA     NA          1      NA         1         2
## 2489     1    NA     NA         NA      NA        NA        NA
## 2490     1     5      1         20       3        NA        NA
## 2491     9    10      6          3      NA         2         3
## 2492     0     0      0         NA      NA        NA        NA
## 2493    NA    NA     NA         NA      NA        NA        NA
## 2494     3     2      2          2       2         4         3
## 2495     4     3      3          3       2         3         1
## 2496    NA    NA     NA         NA      NA        NA        NA
## 2497    NA     2      3         NA       1         1        NA
## 2498    12     9     15          8      16         6         4
## 2499     0    NA     NA         NA      NA        NA        NA
## 2500    NA    NA     NA          6      NA        NA         8
## 2501     5     8      3          3       3        NA         4
## 2502    NA    NA     NA         NA      NA        NA         3
## 2503    NA    NA     NA         NA      NA         1         4
## 2504    27    19     23         36      25        15         6
## 2505    44    32     35         44      32        13        25
## 2506    NA    NA     NA          1      NA        NA        NA
## 2507     2    NA      2         NA       3         8        NA
## 2508    NA    14     14         11      28        11         7
## 2509    20    13     18         10      28        15        NA
## 2510    NA    NA     NA         NA      NA        NA         2
## 2511    NA    NA     NA         NA      NA        NA         1
## 2512    NA     1     NA         NA      NA        NA        NA
## 2513     2    NA     NA         NA       2         2        NA
## 2514    NA    NA     NA          2      NA        NA        NA
## 2515     1     2      3          1       3         1         1
## 2516    NA    NA     NA          3       2         3        NA
## 2517     3     3     NA          5       3         8         3
## 2518     3     5      5          9       4         7         3
## 2519     2     5      0          2       1         7         3
## 2520     1     4      2          1       1         1         1
## 2521    NA    NA     NA         NA      NA        NA        NA
## 2522     1     1      1          1       1         1         1
## 2523     8     3     14          6      11         8        20
## 2524    10     6      6         NA       4         3         3
## 2525    NA    NA      0          0      NA        NA         0
## 2526    NA    NA      1          2      NA        NA         1
## 2527     1    NA      2          1      NA         1         2
## 2528     2     2     NA          2       2        NA        NA
## 2529     2     1      1          2       1        NA         2
## 2530     2     6      4         NA       2         2         6
## 2531    14     8     11         NA      11        11        14
## 2532    21    11     13         17      19        13        19
## 2533    NA    10     NA         NA      NA        NA        NA
## 2534     2     1      1          2       1         2         1
## 2535    NA    NA      2         NA       2        NA        NA
## 2536     2    NA     NA         NA      NA        NA        NA
## 2537    NA    NA     NA         NA      NA         2        NA
## 2538    NA    NA      3         NA       6        NA        NA
## 2539    NA    NA      2         NA      NA        NA        NA
## 2540     4     2      2          4       2         4        NA
## 2541    95   104     93        123      66        59        44
## 2542    29     3      5         NA      NA        NA        NA
## 2543    10    32     32         44      57        44        35
## 2544    41    29     48         25      51        19        16
## 2545    60    66     32         36      29        35        27
## 2546    NA    NA     NA         NA      NA        NA        NA
## 2547    25    17     31         14       6        14        25
## 2548    20     6     14         25      17        17         6
## 2549   229   232    236        282     275       148       257
## 2550    70    67     74        102      85        28        21
## 2551    66    36     42         40      59        34        51
## 2552   112   135    133        148     116        93       159
## 2553   239   184    161        161     150        87        78
## 2554    NA    NA     NA         NA      NA        NA        NA
## 2555     3     9      3          6       3         6        NA
## 2556    14    13      8          7       3         8        19
## 2557    21    15     21         14      17        14        12
## 2558    18     8     12         10       8        10         6
## 2559     6     6      3          4       4         1         4
## 2560    NA    NA     NA         NA      NA        NA        NA
## 2561     1     2      3          2       1         1         2
## 2562    NA    NA     NA         NA      NA         2        NA
## 2563     7     8      6          7       6         5         6
## 2564     0     0      0          0       1         0         2
## 2565     1    NA      1         NA      NA        NA         1
## 2566    NA    NA      0         NA      NA        NA        NA
## 2567     9     2      7         10       7         7         8
## 2568     2     2     NA         NA       2         4         2
## 2569    NA    NA     NA         NA      NA        NA        NA
## 2570    NA     4      2          2       1        NA        NA
## 2571    NA    NA     NA          1       0        NA        NA
## 2572     4     4     13          4       4        NA        NA
## 2573     3     2      1          2       1         1         1
## 2574    NA    NA      1         NA      NA        NA        NA
## 2575     0     0      1          1       1         0         1
## 2576    NA    NA      3         NA      NA        NA        NA
## 2577    10     5      8         10       5         8         5
## 2578    NA    NA     NA         NA       6        NA         3
## 2579    NA    NA     NA         NA       6        11        NA
## 2580    NA    NA     NA         NA       1        NA         1
## 2581    NA    NA     NA          2      NA        NA        NA
## 2582     2     2      2          4       1         2         4
## 2583     1     2     NA         NA      NA        NA        NA
## 2584     3     3     NA          6       1        NA        11
## 2585     7     7      5          7       7         7         7
## 2586     2     2      2          1       3         1         1
## 2587     6     7      1          6       3         2         4
## 2588    11    10      7          3       7        NA         2
## 2589    16     8     13          5      13        13         6
## 2590    NA     0     NA          0      NA        NA         1
## 2591    NA     0      0          0      NA         1         0
## 2592    NA    NA     NA          2      NA        NA        NA
## 2593     5     2      4          4       1         2         6
## 2594     1     2     NA         NA      NA        NA        NA
## 2595     3     8     NA         11       1        NA         6
## 2596     7    18      9          7       7        14        21
## 2597     1     1      1          1       2         1         1
## 2598     6     5      1          4       5         2         5
## 2599    13     3     10          3       7        NA         2
## 2600     8    10      8         10      13        15        16
## 2601    NA     0     NA          0      NA        NA         1
## 2602    NA     0      0          0      NA         1         0
## 2603    NA    NA     NA          2      NA        NA        NA
## 2604     2     2      2          4       1         5         4
## 2605    NA    NA     NA          3       1         3         6
## 2606    NA    11      5         NA       7         7        NA
## 2607     1     2      2          1       3         1         1
## 2608     5     3      0          3       4         2         5
## 2609     5     3      7          5       5        NA         2
## 2610     6     5      5          5       6         1         8
## 2611    NA     0     NA          0      NA        NA         1
## 2612     5     5      8          5      10         5         5
## 2613     1     2     NA         NA      NA        NA        NA
## 2614    NA     8     NA          3      NA         6        NA
## 2615     4     4     NA         NA      NA         4        NA
## 2616    NA    NA     NA         NA      NA        NA        NA
## 2617    NA     4      2         NA      NA        NA        NA
## 2618     5    NA     NA         NA       3         3        NA
## 2619    NA     0      0          0      NA         1         0
## 2620     2    NA      2          2      NA        NA         2
## 2621     2     2      2          4       1         5         6
## 2622     1     2     NA         NA      NA        NA        NA
## 2623     3    11      3          6       6         3        11
## 2624    11    11      5          7       7        14        14
## 2625     3     3      2          1       4         1         1
## 2626     8     5      1          4       4         3         6
## 2627    15     7      7          3       9         2         2
## 2628    15    15     15         10      17        10        19
## 2629    NA     0     NA          0      NA        NA         1
## 2630    NA     0      0          0      NA         1         0
## 2631    NA     2      1         NA      NA        NA         1
## 2632     6     6      7         NA       6         1         6
## 2633    NA    NA     NA         NA      NA         2        NA
## 2634    NA    NA     NA         NA       1        NA         1
## 2635    NA    NA     NA         NA      NA         2         5
## 2636    NA    NA     NA         NA      NA         1         4
## 2637     8    11     11          8       4         4         2
## 2638    13    19     19         10      16        10         6
## 2639    NA    NA     NA          1      NA        NA        NA
## 2640     5     5      3          8       3         3         5
## 2641    NA    NA     NA         NA      NA        NA         1
## 2642    NA    NA     NA         NA      NA        NA         1
## 2643    NA    NA     NA         NA      NA        NA        NA
## 2644     1     0      0         NA       1         1        NA
## 2645     2     3      4          4       3         3         2
## 2646     2     5      4          6       4         4         4
## 2647    NA    NA     NA          1      NA        NA        NA
## 2648    NA     2      4          2       2         2         4
## 2649     6     6      2          6       2        NA         2
## 2650    NA     1      1          2       1         1         1
## 2651    17    17     20         25      17        23        25
## 2652     3     4      4          4       1         4         4
## 2653     1     1      1          1      NA         1         1
## 2654    NA    NA     NA         NA      NA        NA        NA
## 2655     1    NA     NA         NA      NA        NA        NA
## 2656     2    NA      2         NA       4         2        NA
## 2657     1    NA     NA         NA      NA        NA        NA
## 2658    NA    NA     NA         NA      NA        NA        NA
## 2659    21    30     25         34      23        27        34
## 2660    28    37     45         34      48        42        54
## 2661    11     3      3         NA       6        NA         6
## 2662    21    21     17         21      21        19        30
## 2663     5     7      7          5       4         6         5
## 2664     3     3      3          3       3         2         3
## 2665     6    11      8          8       8         4         2
## 2666     6     8     11          8       6         8         8
## 2667     4     4      4          2       4         4         2
## 2668     1    NA      1          1       1         2         1
## 2669    59   101     78         72      85        59        87
## 2670    18    NA     NA         NA      NA        NA        NA
## 2671    25    41     51         48      41        57        60
## 2672    29    38     38         38      51        38        54
## 2673    15    15     15          8      14        17        18
## 2674    23    54     48         45      56        65        73
## 2675    17    31     34         37      31        20        37
## 2676    NA     7      7         NA      74       162        60
## 2677   141   240    169        240     197       176       144
## 2678    11    13     11         17      17        13        17
## 2679    NA    NA      4         NA      19        40        61
## 2680    70    91     97         91      91        70        34
## 2681     9    12     12          9      15         9         6
## 2682    14    14     14         14       9        12        13
## 2683    11     8      7         12       9         6         6
## 2684    10     8     12         12       8         6         8
## 2685     6     8      5          7       6         7         4
## 2686    NA    NA      1         NA      NA        NA        NA
## 2687     3     2      2          3       1         1         2
## 2688     1     2     NA         NA      NA        NA        NA
## 2689     7     4      5          6       4         6         5
## 2690    NA     0      0          0       0         0         0
## 2691    NA    NA     NA         NA      NA        NA         1
## 2692     6     3      8          9       7         7         8
## 2693    NA    NA     NA         NA       0        NA        NA
## 2694    NA     2      2          4       4         2        NA
## 2695     1     1      1          1       1         1         1
## 2696    NA    NA     NA         NA      NA        NA         1
## 2697    NA     0      0          0       0         0         0
## 2698     3     5      4          4       3         4         4
## 2699    NA    NA     NA         NA      10        13        NA
## 2700    NA    NA     NA         NA       3         3         1
## 2701    NA    NA     NA         NA       1         1        NA
## 2702    NA     2      2          6       4         6         2
## 2703    NA     1     NA         NA      NA         2         1
## 2704     1     5      9          5      18         4        12
## 2705     8     4     NA         NA      NA         4        NA
## 2706     1     0      0         NA       1         1        NA
## 2707    NA    NA     NA         NA      NA        NA        NA
## 2708     2     2      1          1       1         3         1
## 2709     3     6      6          4       6         4         6
## 2710     0     1      0          1       1         0         1
## 2711     1     1     NA         NA       0        NA         1
## 2712    NA     1     NA         NA      NA         2         1
## 2713     1     5      4          5       4         4         6
## 2714     1    NA     NA         NA      NA        NA        NA
## 2715     0     0      0         NA       0         0        NA
## 2716     2     2      1          1       1         1         1
## 2717     3     3      3          3       3         2         4
## 2718     0     1      0          1       1         0         1
## 2719     1     1     NA         NA       0        NA         1
## 2720     2    NA     NA         NA      NA        NA        NA
## 2721    NA     1     NA         NA      NA         2         1
## 2722     1     4      4          5       4         4         4
## 2723     1    NA     NA         NA      NA        NA        NA
## 2724     1     0      0         NA       1         1        NA
## 2725    NA    NA     NA          0      NA        NA        NA
## 2726     2     2      1          1       1         1         1
## 2727     3     3      4          4       4         3         3
## 2728     0     1      0          1       1         0         1
## 2729     2     4      3          2       3         2         3
## 2730     3     9      6          3      11         6         3
## 2731    NA     7     NA         NA      NA        NA        NA
## 2732    NA    NA     NA         NA      NA        NA        NA
## 2733     2    NA     NA         NA      NA        NA        NA
## 2734     1     4      1          1       3         3         1
## 2735     1     1     NA         NA       0        NA         1
## 2736     4     6      4          6       6         6         6
## 2737    NA     1     NA         NA      NA         2         1
## 2738     4     5     12          5      20         4        12
## 2739     8     4     NA         NA      NA         4        NA
## 2740     1     0      0         NA       1         1        NA
## 2741     0     0      0         NA       0         0         0
## 2742     2     2      1          1       1         1         1
## 2743     4     8      7          4       8         6         5
## 2744     0     1      0          1       1         0         1
## 2745     1     1     NA         NA       0        NA         1
## 2746    10    11      8         14      11        12        11
## 2747     0    NA     NA         NA      NA        NA        NA
## 2748    NA    NA     NA         NA       2        NA         2
## 2749    NA    NA     NA         NA      NA         1        NA
## 2750    NA    NA     NA         NA      NA         1         1
## 2751     6     4      2          6       6         2         2
## 2752     3     6     10          3      10         3         6
## 2753    NA    NA     NA          0      NA        NA        NA
## 2754    NA    NA      4         NA       4        NA        18
## 2755     3    NA      3         NA      NA        NA        NA
## 2756    NA    NA     NA         NA      NA        NA         1
## 2757    NA    NA     NA         NA      NA         0        NA
## 2758    NA    NA     NA         NA      NA        NA        NA
## 2759     1     1      1         NA       1         1         1
## 2760     2     3      6          3       4         4         2
## 2761     0    NA     NA          0      NA        NA        NA
## 2762     1     1      1          1       2         1         1
## 2763     1     1      2          1       2         1         1
## 2764     3    NA      3          3      NA         3         3
## 2765    NA     0      0         NA      NA         0         0
## 2766    NA    NA     NA          1       1         1        NA
## 2767     1    NA      1         NA      NA         1        NA
## 2768     2    NA     NA          2       2         2        NA
## 2769     4     2      2          2       2         4        NA
## 2770    15     8      6         11      15        13        13
## 2771    NA    NA     NA          3       3         3         3
## 2772     3     3      3          3       3         3         3
## 2773     8     5      8          5       6         6         6
## 2774     5     5      3          2       2         2         2
## 2775     8     6      8          6       6         8         8
## 2776    35    42     46         42      21        35        11
## 2777    11    21      7          7      14         7        25
## 2778    21    23     23         23      25        19        25
## 2779    76    34     61         53      40        32        40
## 2780     3     1      3          1       3         1         1
## 2781     2     3      2          2       3         2         2
## 2782     1     1      1          1       2         1        NA
## 2783     1     1      1          1       1         1         1
## 2784    NA    NA      1         NA      NA        NA        NA
## 2785    NA     1      1         NA      NA        NA        NA
## 2786     0     0      0          0       0         0         0
## 2787    NA    NA      0         NA      NA        NA         0
## 2788     4     3      3          3       1         0         2
## 2789     1    NA     NA         NA      NA        NA        NA
## 2790     0    NA     NA          0       0         0        NA
## 2791     0     1      0          0       0         0         0
## 2792    NA    NA     NA         NA      NA        NA        NA
## 2793    NA    NA     NA         NA      NA         1         1
## 2794    NA    NA     NA         NA       1        NA        NA
## 2795     1    NA     NA         NA      NA        NA        NA
## 2796     6    NA      3          1       3         3         3
## 2797    NA    NA     NA         NA      NA        NA        NA
## 2798     1     1      1          1       0        NA        NA
## 2799     1     2      1          1       1        NA        NA
## 2800     4     2      2          1       3         1         1
## 2801    NA    NA     NA         NA      NA        NA        NA
## 2802     1    NA     NA         NA      NA        NA        NA
## 2803     3     3     NA          4       3        NA         3
## 2804    NA    NA     NA         NA      NA        NA        NA
## 2805     1     1      1          1       1         1        NA
## 2806     3     2      1          1       1        NA        NA
## 2807     2     1      2          1       2         1         1
## 2808    NA    NA     NA         NA      NA        NA        NA
## 2809    NA    NA      3          1      NA        NA        NA
## 2810    NA    NA     NA         NA      NA        NA        NA
## 2811    NA     1     NA         NA       0         0        NA
## 2812     1     2      1          1       1         2        NA
## 2813    NA    NA     NA         NA       1        NA        NA
## 2814     1     1      1          1       1        NA        NA
## 2815     1    NA     NA         NA      NA        NA        NA
## 2816     3    NA     NA         NA      NA        NA        NA
## 2817    NA    NA     NA         NA      NA        NA        NA
## 2818    NA    NA     NA         NA      NA        NA        NA
## 2819     1    NA     NA         NA      NA        NA        NA
## 2820     3     3      6          1       3         3        NA
## 2821    NA    NA     NA         NA      NA        NA        NA
## 2822     1     1      1          0       1         1         0
## 2823     1     2      1          1       1        NA         2
## 2824     3     2      2          1       1         1         1
## 2825    NA    NA     NA         NA      NA        NA        NA
## 2826    NA     1     NA          2      NA        NA        NA
## 2827     2     3      2         NA       3         3         3
## 2828     0    NA     NA         NA      NA        NA        NA
## 2829    NA    NA     NA         17      NA        NA        NA
## 2830    NA    NA     NA         NA       1        NA        NA
## 2831    NA    NA     NA         NA      NA         3        NA
## 2832    NA    NA     NA         NA      NA         1         1
## 2833    19    15      6          2      34         2        23
## 2834    16    22     22          3      98         3        35
## 2835    NA    NA     NA         NA      NA        NA        18
## 2836    18    NA     10          5      23        NA         5
## 2837    NA    NA     NA         NA      NA         1        NA
## 2838     1     1      0          1       1         1         1
## 2839     3    NA      3         NA       3         3         3
## 2840     5     3     13          2       8         4         1
## 2841     3    NA     NA         NA       0        NA        NA
## 2842     1     1      1         NA      NA         2         1
## 2843    NA    NA     NA          2       2        NA        NA
## 2844     1     1      1          1       1         2         1
## 2845    28    NA     NA         NA      14        NA        NA
## 2846     2     1      1          1       1         0         2
## 2847     1     1      4          2      NA        NA         2
## 2848     3    NA     NA         NA      NA        NA        NA
## 2849     2     2     NA          2       2         2        NA
## 2850    11     4      2          6      11         8         2
## 2851     6     6      8          8       6        11         6
## 2852     2    NA      2          2       2         2        NA
## 2853     8     8     11          6       4         8         4
## 2854    NA    NA     NA          1       1        NA        NA
## 2855    NA    NA     NA         NA      NA        NA        NA
## 2856     2     4      6          4      NA         2         4
## 2857     4     6      4          6       4         6         2
## 2858    NA    NA     NA         NA      NA        NA        NA
## 2859    NA    NA     NA          2      NA         2        NA
## 2860     1    NA      1         NA       1        NA         1
## 2861    NA    80     NA         70      25         6        89
## 2862    NA    NA     NA         NA      NA        NA        NA
## 2863     3    44     38         79      38        10        92
## 2864     3     6      3         79      41        41       187
## 2865     2    11      3         15      20         2        20
## 2866    NA     3      6         NA       3         3         8
## 2867    NA     3      3          6       3         3         6
## 2868    42   176     85         35      NA        60        18
## 2869     4   306    162        169     130       623       169
## 2870    NA    21      4         34      25        NA        25
## 2871    25    68     51         51      51         8       150
## 2872    15    49    277        139     199        91       395
## 2873     8     3      4          7       4         7         2
## 2874    NA    14     12         27       1        NA         9
## 2875    NA    NA     12         28      NA         2        14
## 2876     5     6      4          4       5         3         4
## 2877    NA    NA     NA         NA      NA        NA        NA
## 2878     1     4      2          1       1         5         3
## 2879    NA    NA     NA         NA      NA        NA        NA
## 2880    NA     3     NA         NA       3         2         2
## 2881    NA    NA     NA         NA      NA        NA        NA
## 2882     0     0      0          0       0         1         0
## 2883     2    NA      2          1      NA         2         1
## 2884     3    NA     12         NA      NA         2         1
## 2885     2     2     NA          2       2         2         2
## 2886     1    NA     NA          1      NA        NA         0
## 2887    NA    NA     NA         NA      NA        NA         1
## 2888     2     1      1          0       2         1         1
## 2889    NA    NA     NA          1       1        NA        NA
## 2890    NA    NA     NA         NA       6        NA        NA
## 2891    NA    NA     NA         NA       1         1        NA
## 2892    NA     2      4         NA       2         2        NA
## 2893    NA    NA     NA          1      NA        NA         3
## 2894     3     1     NA          1      NA         1        NA
## 2895     6    17      3         11      NA         3        10
## 2896     1     1      0          1       1         1         1
## 2897     0     2      3         NA      NA         1         1
## 2898     3     8     15          8       9         1        14
## 2899     8     5      3          5       5         5         8
## 2900     0     1      1         NA       1         0         1
## 2901    NA    NA     NA         NA      11        NA        NA
## 2902    NA    NA     NA          1      NA        NA        NA
## 2903    NA     4     NA          1      NA         1        NA
## 2904     3     8     NA          6       8        NA        10
## 2905     0     1      0          0       1         0         1
## 2906    NA     0     NA          2      NA         1         1
## 2907     3    15     15          4      13         5        18
## 2908     3    NA      3          3       3        NA         3
## 2909     0     1      1         NA       1         0         1
## 2910    NA    NA     NA          1      NA        NA        NA
## 2911     3     8     NA         NA      NA        NA        13
## 2912     1     1      0          1       1         1         1
## 2913    NA     2     NA         NA       1         1         1
## 2914     1    11     11          4       9         3         5
## 2915     5     3     NA          3      NA         1         5
## 2916     1     1      3         NA      NA        NA        NA
## 2917    NA     1     NA          1      NA         1        NA
## 2918    NA     3      6         NA      NA        NA        NA
## 2919    NA    NA     NA          0      NA        NA        NA
## 2920    NA    NA      2          2      NA        NA        NA
## 2921     0     1      1         NA       1         0         1
## 2922     4     4      4          2       2         2         2
## 2923    NA    NA     NA          1      NA         2         3
## 2924     3     4      3          1      NA         1        NA
## 2925    14    23     NA         11      NA         3        13
## 2926     1     2      0          1       1         1         1
## 2927     2     2      0         NA       1         1         1
## 2928     7     6     19          8      11         5        12
## 2929     8     5      5          8       5         5        10
## 2930     0     1      1         NA       1         0         1
## 2931    NA     3     NA         NA      NA         1        NA
## 2932     1    NA      2          2      NA         6        NA
## 2933    NA    NA      0         NA      NA        NA        NA
## 2934    NA    NA     NA          6       3         3        NA
## 2935    NA    NA      2          3       8        NA        NA
## 2936    NA    NA     NA         NA      NA         1         3
## 2937    13     8      6         17       8         4         2
## 2938    22    16     22         19      13        10         6
## 2939    NA     0     NA          1      NA        NA        NA
## 2940     3     3      3          5       3        NA        NA
## 2941    NA    NA     NA         NA      NA        NA         1
## 2942    NA    NA     NA         NA      NA        NA         2
## 2943    NA    NA     NA         NA      NA        NA         1
## 2944     0     1     NA          2      NA        NA         1
## 2945     1     1     NA         NA       2        NA        NA
## 2946    NA    NA     NA          5      NA        NA        NA
## 2947     0    NA      0         NA       1        NA        NA
## 2948     1     1      1          1       3         1         1
## 2949     6     2      4          5      NA         1         2
## 2950     1     0     NA          1       0         0         0
## 2951     2     1      4          2       2         1         1
## 2952    NA    NA     NA         NA      NA        NA        NA
## 2953     1     1      1          2       1         1         1
## 2954     3     3      3          8      17        NA         3
## 2955    NA    NA     NA         NA      NA        NA        NA
## 2956     0     0      0          0      NA         0         0
## 2957     1    NA      1          1       1         1         1
## 2958     1    NA      2         NA      NA         1         1
## 2959    NA    NA     NA         NA      NA         4        NA
## 2960    17    19     15         21      17        15        23
## 2961     8     6     NA          3      NA        NA        NA
## 2962    NA    NA     NA         NA      NA         3        NA
## 2963    14    14     21         11      14        11        21
## 2964    NA    NA     NA         NA      NA        NA        NA
## 2965    13    19     15         17      15        11        19
## 2966     1     1      2          1       2         1         1
## 2967     2     2      2          2       2         3        NA
## 2968    NA    NA     NA         NA      NA        NA        NA
## 2969     8     8      6          8       8         4         8
## 2970     6     3      6          8       8         3         6
## 2971     4     6      6          4       4         8         6
## 2972    NA    NA     NA         NA       1        NA        NA
## 2973    NA    NA      2         NA      NA         2         2
## 2974    50    74     69         77      53        58        98
## 2975    19    NA     NA          6       3         3        NA
## 2976    48    48     48         41      38        51        48
## 2977     9     5      8          5      11         2         8
## 2978    39    25     31         34      39        39        31
## 2979     3    NA     NA          6       6         3        NA
## 2980   141   102    155        159      95        81       377
## 2981   113   102    148        169     151        95       197
## 2982    NA    NA     NA         NA      NA        NA        NA
## 2983    11     8     15          8      11        11        13
## 2984    61    57     46         55      59        38        76
## 2985   148   129    175        139     118        97       165
## 2986     6     6      6          7       6         7         6
## 2987     6     5      5          8       5         3         3
## 2988     6     6      6          4       6         6         4
## 2989     4     5      5          3       4         1         4
## 2990    NA    NA      1         NA      NA        NA        NA
## 2991     3     1      2          2       1         1         1
## 2992     1     2      2          1      NA        NA         1
## 2993     1     3      2          3       4        NA         2
## 2994    NA    NA     NA         NA      NA         1         1
## 2995     1     1      1          1       0         1         1
## 2996    NA     1      1         NA       1         1         1
## 2997     6     6      7          6      10         5         9
## 2998     1    NA     NA          1       0         0        NA
## 2999     2     2      2          2       4         4         2
## 3000     2     1      1          1       2        NA         1
## 3001    NA    NA     NA         NA       1         1         1
## 3002    NA    NA     NA          1      NA        NA        NA
## 3003     1     1      1          1       1         2         2
## 3004     3     3      4          6       1         3         4
## 3005    NA    NA     NA         NA       4         4         4
## 3006     1    NA     NA         NA      NA        NA        NA
## 3007    NA     3     NA          6      NA        NA         3
## 3008    14    18     11          7       7        11        18
## 3009     0    NA      0         NA       1        NA        NA
## 3010     1     1     NA         NA       0        NA         0
## 3011    13    12     23         10      13        13        11
## 3012     3     2      3          2       4         4         3
## 3013     0    NA     NA         NA      NA        NA        NA
## 3014    NA    NA     NA         NA       2        NA        NA
## 3015     1    NA     NA         NA      NA        NA        NA
## 3016    NA    NA     NA          3       6         3        NA
## 3017     7     7      7          7       4         4        18
## 3018     0    NA      0         NA       0        NA        NA
## 3019     1     1      0          0      NA        NA        NA
## 3020    NA     3     NA          3       5        NA         4
## 3021     2     2      2          3       1         1         3
## 3022     0    NA     NA         NA      NA        NA        NA
## 3023    11     4      7          4      NA         7         7
## 3024     0    NA      0         NA       1        NA        NA
## 3025     1     2     NA         NA      NA        NA        NA
## 3026     2     1      6          3       5         2         2
## 3027     3     2      3          3       3         1         1
## 3028     2     1      1          1       4         3         1
## 3029     1    NA     NA         NA      NA        NA        NA
## 3030    NA     3     NA          3      NA        NA        NA
## 3031    11     7     18         NA       4        11        25
## 3032    NA    NA     NA         NA      NA        NA        NA
## 3033    NA    NA      1         NA      NA        NA        NA
## 3034    17    11     17          2       6        13         6
## 3035     3     4      3          1       4         3         3
## 3036     0    NA     NA         NA      NA        NA        NA
## 3037     1     3     NA         NA      NA        NA        NA
## 3038     3     8      3          8       3        NA        NA
## 3039    21    18     14          4       7        14        18
## 3040     0    NA      0         NA       1        NA        NA
## 3041     0     1      1         NA       0         0        NA
## 3042    23    20     21         16       9        11         2
## 3043     4     4      3          3       6         4         5
## 3044     0    NA     NA         NA      NA        NA        NA
## 3045    NA    NA     NA         NA      NA        NA        NA
## 3046    NA     1      1         NA      NA        NA         1
## 3047    10     4      8          6       3         3         5
## 3048     1    NA     NA         NA      NA        NA        NA
## 3049     0     0      0         NA       0        NA        NA
## 3050    NA    NA     NA         NA      NA         1        NA
## 3051    19    11     13         13       2        15         4
## 3052     3     3      3         13       3         6         6
## 3053    NA    NA     NA          1      NA        NA        NA
## 3054    NA    NA     NA         NA       1        NA        NA
## 3055     1    NA     NA         NA      NA        NA        NA
## 3056     3     3     NA          6       2         2         3
## 3057    NA    NA     NA         NA       1        NA        NA
## 3058     1     1      1          1       2         1         1
## 3059     1     1      1          1       1         1         1
## 3060    NA    NA     NA         NA      NA        NA         0
## 3061    NA    NA     NA         NA      NA        NA        NA
## 3062    NA    NA     NA         NA      NA        NA        NA
## 3063    13    15     23         13      17        13         8
## 3064     8     3      3          6       3        NA         8
## 3065    11    11     17          8       8         6         8
## 3066    23    13     25         21      21        13        13
## 3067     1     2      1          4      NA         2         3
## 3068     2     4      2          2       2        NA         2
## 3069    NA    NA     NA         NA       2        NA        NA
## 3070    26    NA     NA         NA      NA        NA        NA
## 3071    38    38     70         41      60        35        76
## 3072    22    29     22         29      32        32        29
## 3073     6     6      6          3       6         8         6
## 3074     3     5      9          5       8         6         5
## 3075     8    17     NA         17       8        14        11
## 3076     8    14      6          6       8        NA        11
## 3077    42    42     70         42      NA        56        85
## 3078    99   127     85        127      63        81        88
## 3079    19    21     13         17      19        13        17
## 3080    13    30     23         25      34        13        38
## 3081    32    17     32         42      44        38        25
## 3082     6    15     NA         15      NA         6         6
## 3083     3     3      3          3       3         3        NA
## 3084     2     4      2          2       2         2         2
## 3085     1     1      1          1       1         1         1
## 3086    NA    NA     NA         NA       1        NA        NA
## 3087     4     6      4          4       6         2         6
## 3088     0     0      0          0       0         0         0
## 3089    NA    NA      4         NA      NA        NA        NA
## 3090     5     0     NA         NA       7        17        NA
## 3091     1    NA     NA         NA      NA        NA        NA
## 3092    NA    NA     NA         NA      NA         1        NA
## 3093     0     0      0          0       0         0         0
## 3094     3     3      3          3       1         1        NA
## 3095    NA    NA     NA         NA       8         9        10
## 3096    NA     1     NA          3       6        NA        NA
## 3097     8    11     14          8       8         6        14
## 3098     3     1     NA         NA      NA         1         1
## 3099    NA    NA      0         NA       0        NA        NA
## 3100    NA    NA     NA         NA       1         2         1
## 3101     3     3      4          1       1         1         1
## 3102    NA    NA     NA         NA      NA        NA        NA
## 3103    NA     1     NA         NA      NA        NA        NA
## 3104    NA    NA     NA         NA      NA        NA        NA
## 3105    NA    NA     NA         NA       1        NA         1
## 3106    NA    NA     NA         NA      NA        NA        NA
## 3107    NA    NA     NA         NA       3        NA        NA
## 3108     1     1     NA         NA       1        NA         1
## 3109    NA    NA      1         NA      NA        NA        NA
## 3110    NA    NA     NA         NA       1        NA         1
## 3111     3     1     NA         NA      NA        NA        NA
## 3112     3     8      6          6       6         8         3
## 3113    NA    NA      2         NA      NA        NA        NA
## 3114     3     3      4          1       4         1        NA
## 3115    NA    NA     NA         NA      NA        NA        NA
## 3116     3     4     NA          3      NA         3        NA
## 3117     6     8     14          3       3         8        11
## 3118     1     1     NA          1       1         1         1
## 3119     0     0     NA          0      NA         0         0
## 3120     2     2     NA          2       1        NA         3
## 3121     3    NA      3          1       1         1         1
## 3122    NA    NA     NA         NA      NA        NA        NA
## 3123    NA    NA     NA         NA       2        NA        NA
## 3124     3    NA     NA         NA       3        NA        NA
## 3125    NA    NA     NA         NA       5        NA        NA
## 3126    NA    NA     NA         NA      NA         1        NA
## 3127     2     2      2         76     114         2         2
## 3128     3     3      3         73     155        10         3
## 3129    NA    NA     NA         NA      NA        NA        NA
## 3130    NA     3     NA         25      NA        NA        NA
## 3131    NA    NA     NA         NA      NA        NA         2
## 3132    NA    NA     NA         NA      NA         0        NA
## 3133    NA    NA     NA         NA       6        NA        NA
## 3134    NA    NA     NA          2      NA        NA        NA
## 3135    NA    NA      0         NA      NA        NA        NA
## 3136    NA    NA     NA         NA       1        NA        NA
## 3137     1    NA     NA          0       4        NA         1
## 3138    NA     0      0          0       2        NA         1
## 3139     1     1      1          4       4         1         2
## 3140    NA    NA     NA         NA      NA        NA        NA
## 3141     1     1      1          2       1         1         1
## 3142    NA    NA      3          6      NA        NA        NA
## 3143    NA    NA      1         NA      NA        NA        NA
## 3144     2     2     NA         NA       4        NA         2
## 3145    NA    NA     NA         NA      NA        NA        NA
## 3146     2     2      4          4      17        NA        11
## 3147     3    NA      6          3       8         3         3
## 3148     6     6      4          8      36         4        13
## 3149     1     2      1          2       8        NA         2
## 3150    NA     2      2          3       6         2        NA
## 3151    NA    NA     NA         NA       2        NA        NA
## 3152    NA     2      4          2       8        NA         6
## 3153     2     2     NA          4      11        NA         2
## 3154    NA    NA      1          1       2         1         1
## 3155    NA    NA     NA         NA      NA        NA        NA
## 3156    NA    NA     NA         NA      17        NA         2
## 3157    18    NA     NA         NA      NA        NA        NA
## 3158    13    35     41         54     298        51        41
## 3159    19    13     16         25      29        13        19
## 3160     6     5      8         21      66        11        14
## 3161    17    11     17         20      68        11        11
## 3162     3     8     14         23      17         6         6
## 3163    25    28     14         53     461        70        63
## 3164    35    14     39         53      60        25        46
## 3165     6     8     32         59     366        25        80
## 3166    59    40     49         55     123        87        23
## 3167     3     5      5         10      86        18        13
## 3168     3    NA      6         15      51         6        15
## 3169     4     2      4         12      17         2         4
## 3170     2     3      8          6      47         6         6
## 3171    NA    NA     NA         NA      30         4         2
## 3172     5     1      3          4      13        NA         2
## 3173    NA     1     NA         NA      NA        NA        NA
## 3174     2     1      1          2       4         1         1
## 3175    NA    NA     NA         NA       3        NA        NA
## 3176    NA    NA      1         NA      10        NA        NA
## 3177    NA    NA     NA         NA       4        NA        NA
## 3178     0     0      0          0       0         1         0
## 3179     1     2      2          6      13        NA         6
## 3180    NA    NA     NA         NA       1        NA        NA
## 3181     4     2     NA         NA       2         2         4
## 3182     0     0     NA          0       2        NA         1
## 3183     0     0      0          0       0         0         0
## 3184     1     2      3          4       5         1         1
## 3185    NA    NA     NA         NA      15         1         8
## 3186    NA    NA     NA         NA       4         4        NA
## 3187    NA    NA     NA         NA      NA        NA         2
## 3188     3    NA     NA         NA      NA        NA        NA
## 3189    NA     3      3          6      28        NA        NA
## 3190    NA    NA      0         NA      NA        NA        NA
## 3191     0     1      1          0       6         0         1
## 3192    NA    NA     NA          1       1         2         1
## 3193     1     1      1          1      13        NA         5
## 3194     0     0      0          0       1        NA        NA
## 3195    NA    NA     NA         NA       3        NA         2
## 3196    NA    NA     NA         NA      25        NA        NA
## 3197    NA    NA      0         NA      NA        NA        NA
## 3198    NA    NA     NA         NA       5        NA        NA
## 3199    NA    NA     NA          1       1        NA         1
## 3200    NA    NA     NA         NA       3        NA        NA
## 3201     0     0      0          0       1        NA        NA
## 3202    NA    NA     NA         NA      NA        NA         2
## 3203    NA    NA     NA         NA      11        NA        NA
## 3204    NA    NA      0         NA      NA        NA        NA
## 3205    NA    NA     NA         NA      NA         0         1
## 3206    NA    NA     NA          1       1        NA         1
## 3207    NA    NA     NA         NA       3        NA        NA
## 3208     1     1     NA          3      13         3         3
## 3209     3    NA      3          6       8        NA         3
## 3210    NA    NA     NA         NA       3        NA        NA
## 3211    NA    NA     NA         NA       1        NA        NA
## 3212     0     0      0          0       1        NA        NA
## 3213    NA     2      2         NA      11         4        NA
## 3214    NA    NA     NA         NA       3        NA         2
## 3215     3    NA     NA         NA      NA        NA        NA
## 3216     6     3     NA          8      28         3         6
## 3217    NA    NA      0         NA      NA        NA        NA
## 3218     1     0      1          0      11         0         2
## 3219     2     2      2          1       3        NA         1
## 3220     2     2      3          4      20         1         6
## 3221     0     0      0          0       1        NA        NA
## 3222    NA     1      1         NA       4        NA        NA
## 3223     1     1      1         NA      18        NA         4
## 3224    NA     2     NA         NA      NA         2        NA
## 3225    NA     3      3         NA       3        17        NA
## 3226     8    10     10          9      10        NA         1
## 3227    NA    NA     NA         NA      NA         1        NA
## 3228    44     4      2         85      17         2         8
## 3229    19     6      3        130      29        19        13
## 3230    NA    NA     NA          2      NA        NA        NA
## 3231    NA    NA     NA         NA       6        NA        NA
## 3232     5     8      3         18      38        NA        NA
## 3233    NA    NA     NA         NA      NA        NA        -1
## 3234    NA    NA     NA         NA      NA        NA         2
## 3235     3    NA     NA         NA      NA        NA         1
## 3236     6     5      3          5       3        NA        NA
## 3237    NA    NA     NA         NA      NA         2        NA
## 3238     0     0      1          1       1         0         1
## 3239     1    NA     NA          1       5         1         2
## 3240     1     1     NA         NA      NA        NA        NA
## 3241     1     4      2          1       1        NA         2
## 3242     0    NA     NA         NA      NA        NA         0
## 3243     1     1      1          1       1         1         1
## 3244    NA    NA     NA         NA      NA        NA        NA
## 3245     1     1      1          1       2         2         1
## 3246    NA    NA     NA          3      NA        NA        NA
## 3247    NA    NA     NA         NA      NA         0        NA
## 3248     1     1     NA         NA      NA         1        NA
## 3249     1    NA      1         NA       1         1         1
## 3250    NA    NA     NA         NA      NA        NA        NA
## 3251    NA    NA     NA         NA      NA        NA        NA
## 3252     4     2      4          4      11         4         2
## 3253     6     9     11          9      14        11        15
## 3254    NA    NA     NA         NA      NA        NA        NA
## 3255     8    11     14         11       8         6         3
## 3256    21    27     38         38      49        27        21
## 3257     1     1      1          1       1         1         1
## 3258     2     3      3         NA      NA        NA        NA
## 3259     1    NA      1          1       1         1        NA
## 3260     2     4      2          4      NA         2         2
## 3261    NA    NA     NA         NA       3        NA        NA
## 3262    NA    NA     NA         NA       0        NA        NA
## 3263    NA    NA     NA         11      25        15        NA
## 3264    61    NA     NA         NA      NA        NA        NA
## 3265    60    86    113         92      86        86        70
## 3266   111   301     44        143     133       130       101
## 3267    44    23     27         63      26        35        29
## 3268   114    78    114        105     132        78       126
## 3269    NA    NA     NA         NA      NA        NA        NA
## 3270     8     6      3          6       8        NA         3
## 3271    81    77     95        113     120        88       127
## 3272   359   771    317        578     511       352       412
## 3273    11    36     34         61      38        32        38
## 3274    80    66     97        131     230        97       106
## 3275   249   499    273        355     562       260       256
## 3276    NA    NA     NA          1       1         1         2
## 3277    13     6     13         11      21         9        13
## 3278    17    12     15         17      27        15        12
## 3279    NA    NA      2         NA      NA        NA        NA
## 3280    NA     3      4          6       2         2         1
## 3281     1     2      1          1       1         2         2
## 3282    NA     1     NA         NA       2        NA        NA
## 3283     3     6      5          6       4         3        NA
## 3284     0     0      0          0       1         0         0
## 3285    NA     0     NA         NA      NA        NA         1
## 3286     3     1      3         NA       3         2         2
## 3287     1    NA     NA         NA       1        NA        NA
## 3288     2     2     NA          2       2         2        NA
## 3289     1     1      0          1       2         1         0
## 3290    NA    NA     NA         NA       2         1        NA
## 3291     1    NA     NA         NA       2        NA        NA
## 3292    NA    NA     NA         NA       1        NA        NA
## 3293     0     0      0          1       0         0         0
## 3294     5     5      5          5       6        NA        NA
## 3295    NA    NA     NA         NA      11        10         6
## 3296     3     3      2          3       3         3         3
## 3297     3    NA     NA         NA      NA        NA        NA
## 3298     9     9      9          9      14        11        11
## 3299     6     3      6          8       6        11        11
## 3300    NA    NA     NA         NA      NA        NA        NA
## 3301     2     0      1          1       1         0         1
## 3302     2    NA     NA          2      NA        NA         0
## 3303     2     4      4          8       5         2         2
## 3304    11    15      1          8      11         5         7
## 3305    NA    NA     NA         NA      NA        33        NA
## 3306    NA     2     NA         NA      NA        NA        NA
## 3307    NA    NA     NA         NA      NA        NA        NA
## 3308     6    NA      8         NA       6        NA         6
## 3309     3    NA     NA         NA      NA        NA        NA
## 3310     6     8     NA          6      12         6         3
## 3311    NA    NA     NA         NA      NA        NA        NA
## 3312     0     0      1          0       0         0         0
## 3313    NA    NA     NA          0      NA        NA        NA
## 3314     4     2     NA          6       3         4        NA
## 3315     2     1      1         12       1         1         1
## 3316    NA    NA     NA         NA      NA        NA        NA
## 3317     3     6      3          6      NA         6        NA
## 3318     3     3      3          6       8         9         3
## 3319    NA    NA     NA         NA       6        NA        NA
## 3320     2     0      1          2       1         0         1
## 3321     2    NA     NA          2      NA        NA        NA
## 3322    NA     4      2          2       3         8         2
## 3323     2     7      1          2       5         1        -2
## 3324    NA    NA     NA         NA       2        NA        NA
## 3325     3    NA     NA         NA      NA        NA        NA
## 3326    NA     5      3          5       3         2         5
## 3327    11    11      3         17      11        11         8
## 3328    NA    NA     NA         NA      NA        NA         4
## 3329     6     4     NA         NA       6         4         6
## 3330    NA    NA     NA         NA      NA        NA        NA
## 3331    10     6      3          6      10        10        10
## 3332     3    NA     NA         NA      NA        NA        NA
## 3333     8     9     11          9      15        12         8
## 3334    23    17     NA         14      15        23        11
## 3335    NA    NA     NA         NA      NA        NA        NA
## 3336     2     0      1          1       1         0         1
## 3337     2     0      0          3       0         0         0
## 3338     6     8     11          6       7         8         6
## 3339    15    17     11         12       9         9         9
## 3340    NA    NA     NA         NA      NA        NA        NA
## 3341    NA     2      2         NA      NA        NA         1
## 3342     3     1      5          5      10         3         1
## 3343     0    NA     NA         NA      NA        NA        NA
## 3344    NA    NA      2          2       2         2         2
## 3345    NA    NA      3          3       3         3         3
## 3346    NA    NA     NA          3      NA        NA        NA
## 3347    NA    NA     NA          2      NA        NA        NA
## 3348     3    NA     NA          3      NA        NA        NA
## 3349    NA     0     NA          0       0         0         0
## 3350    NA    NA     21         NA      NA        NA        NA
## 3351    NA     0     NA          0      NA        NA        NA
## 3352     2    NA      1         NA       1         1         1
## 3353    NA    NA     NA          4      NA        NA        NA
## 3354     1    NA      1          1       1         1         1
## 3355     8     3     11          3      NA         3         6
## 3356    NA     0     NA         NA      NA         0         0
## 3357    NA    NA     NA          1       1         1        NA
## 3358     2    NA     NA         NA      NA        NA        NA
## 3359     2    NA      2          2       2         2         2
## 3360     4     4      4          6       6         2         4
## 3361    NA    NA     NA          2       2        NA        NA
## 3362    16    NA     NA         NA      NA        NA        NA
## 3363     3    22     29         38      38        32        16
## 3364    22    16     22         16      22        16        16
## 3365     3     3      3          2       3         3         2
## 3366    56    46     56         53      46        32        32
## 3367    NA    NA     NA          2      NA        NA         2
## 3368    27    23     25         25      19        21        21
## 3369     1     1      1          1       1         1         1
## 3370     1     1      2          1       2         1        NA
## 3371    NA    NA      1         NA      NA        NA        NA
## 3372    NA    NA      1          1       1         1         1
## 3373    NA     1     NA         NA      NA        NA        NA
## 3374     3    NA     NA         NA       4        NA         3
## 3375     2    NA      1          3       0         2         2
## 3376    NA    NA     NA         NA      NA         0         0
## 3377     2    NA      3          2       1         3         3
## 3378     1    NA     NA         NA      NA        NA        NA
## 3379     4    NA     NA         NA      NA         4        NA
## 3380     0    NA     NA         NA      NA        NA        NA
## 3381    NA    NA      0          0       0         0         0
## 3382     2     2      2         NA       3         2        NA
## 3383     2    NA     NA         NA      NA        NA        NA
## 3384    NA     3     NA         NA       3         3        NA
## 3385    NA     0     NA          0       0         0         0
## 3386     0    NA     NA         NA       1         0         1
## 3387    NA    NA      1         NA       1         1         1
## 3388     2     2     NA         NA      NA        NA        NA
## 3389     2    NA     NA         NA      NA        NA        NA
## 3390    NA     0     NA          0       0         0         0
## 3391     0     0     NA          0      NA        NA         0
## 3392    NA    NA      1         NA       1         1         1
## 3393     2     2      2          2       3         2         3
## 3394    NA     0     NA          0       0         0         0
## 3395     0    NA     NA         NA      NA        NA        NA
## 3396    NA    NA      1         NA       1         1         1
## 3397     2    NA     NA         NA      NA        NA        NA
## 3398    NA     3      3          3       3         3        NA
## 3399    NA    NA     NA          0      NA        NA        NA
## 3400     2     2      2          3       3         2         2
## 3401     2    NA     NA         NA      NA        NA        NA
## 3402     3     3     NA          3       3        NA         3
## 3403    NA     0     NA          0       0         0         0
## 3404     1     1      0          0      NA         0         1
## 3405    NA    NA      1          2       1         1         1
## 3406    NA    NA      1         NA      NA         1        NA
## 3407     1    NA      3         NA      NA         3         3
## 3408    NA    NA     NA         11      NA        NA        NA
## 3409    NA    NA     NA         NA      NA         1         1
## 3410     6     4     15         11       4         6         2
## 3411     6    13     22          3      10        13         6
## 3412     0    NA     NA          0       1         0         0
## 3413     5    NA      5          3      NA         3        NA
## 3414    NA    NA     NA         NA      NA        NA         2
## 3415    NA    NA     NA         NA      NA        NA         1
## 3416    NA     1      1          2       1         2         1
## 3417    NA    NA     NA          2      NA        NA        NA
## 3418    NA    NA     NA         NA      NA        NA        NA
## 3419    NA     1     NA         NA       1         1         2
## 3420     5     7     11          2       7         3         2
## 3421     0     1      0         NA       1        NA         0
## 3422     2     5      2          2       3         3         3
## 3423    NA    NA     NA         NA      NA        NA        NA
## 3424    NA    NA     NA         NA      NA        NA        NA
## 3425     1     2      2          1       1         1         2
## 3426    14     8     17         NA       8        11        17
## 3427     1    NA      1          4       1        NA        NA
## 3428     0     0     NA          0      NA         0         0
## 3429    NA     1     NA         NA      NA         1         1
## 3430     1     2     NA          1      NA         1         2
## 3431    NA    NA     NA         NA      NA        NA        NA
## 3432     1    NA     NA         NA      NA        NA        NA
## 3433     2     2      2          2       2         2        NA
## 3434    NA    NA     NA         NA      NA        NA        NA
## 3435    17    32     27         30      51        17        44
## 3436    54    65     48         54      70        59        68
## 3437     2    27     19         23      23        27        25
## 3438     3     3      3          3       4         4         1
## 3439     3     2     NA          3       3         2         3
## 3440     8     8      8         11      15         8        13
## 3441    17    23     25         20      23        20        31
## 3442     6     6      4          8       4         4         4
## 3443     1     1      1          1       1         1         1
## 3444    23    46     46         49      72        17        53
## 3445     5    NA     NA         NA      NA        NA        NA
## 3446    29    48     44         35      67        73        35
## 3447    10     3     13         16      10        16        NA
## 3448     5    12      9          9      17         8         9
## 3449     6     8      5          5      NA        NA        NA
## 3450    99    87     76         73     101        62       104
## 3451     6     8      6         14       6         3        NA
## 3452   109   116    159        102     120       102        63
## 3453    60    99    120        106     148        85       123
## 3454     4     2     NA         NA      NA        NA        NA
## 3455    49    19     40         36      36        38        42
## 3456    59    30     40         19      15        42         8
## 3457     6     9      6         12      12         6         3
## 3458     9    11     13         11       9         9        11
## 3459     9     5      8          8       8         5         8
## 3460     2     8      2          6       6         6         4
## 3461     5     3      4          3       5         2         3
## 3462    NA    NA     NA         NA      NA        NA        NA
## 3463     2     2      1          2       1         2         1
## 3464     3     3      3          1      NA        NA        NA
## 3465     4     5      8          4       3         2         2
## 3466     0     1      0          0       0         1         1
## 3467    NA    NA      0         NA      NA        NA         1
## 3468     8     6     10          3       7         6         9
## 3469     0    NA     NA          1      NA        NA        NA
## 3470     2     4     NA          2       4        NA         4
## 3471     0     1      0          0       0         0         0
## 3472    NA    NA     NA         NA      NA        NA         1
## 3473    NA    NA     NA         NA      NA        NA         1
## 3474    NA    NA     NA         NA      NA        NA         2
## 3475     0     0      0          0       0         0         1
## 3476     6     5      4          2       4         3         4
## 3477    NA    NA     NA         NA      NA        NA         3
## 3478    NA    NA     NA         NA      NA        NA         1
## 3479    NA    NA     NA         NA       1        NA         1
## 3480     4    11     NA          4       4         2         2
## 3481    NA     1     NA         NA      NA        NA        NA
## 3482     0    NA     NA         NA      NA        NA        NA
## 3483     8     8      6          6      14         6         6
## 3484    NA    NA     NA         NA      NA        NA        NA
## 3485     1    NA     NA         NA      NA        NA        NA
## 3486     2     1      1          1      NA        NA        NA
## 3487     2     1      1          3       1         3         1
## 3488    NA    NA     NA         NA      NA        NA        NA
## 3489    NA     2     NA         NA      NA        NA        NA
## 3490    NA     1     NA         NA      NA        NA        NA
## 3491     0    NA     NA         NA      NA        NA        NA
## 3492     6     3      3         20      NA        NA         6
## 3493    NA    NA     NA         NA      NA        NA        NA
## 3494    NA     0     NA         NA      NA        NA        NA
## 3495     2     1      1          1      NA        NA        NA
## 3496     1     1      1          1       1         1        NA
## 3497    NA    NA     NA         NA      NA        NA        NA
## 3498     4    NA     NA         NA      NA        NA        NA
## 3499     0    NA     NA         NA      NA        NA        NA
## 3500    NA    NA     NA         NA      NA        NA         3
## 3501    NA    NA     NA         NA      NA        NA        NA
## 3502    NA     0     NA         NA      NA        NA        NA
## 3503     2     1      1          1      NA        NA        NA
## 3504     1    NA     NA          1      NA         1         1
## 3505     1     2      1          2      NA         1         1
## 3506    NA     1     NA         NA      NA        NA        NA
## 3507    20    17     17          8      23         8         3
## 3508    NA    NA     NA         NA      NA        NA         0
## 3509    NA     1     NA          1       3         1        NA
## 3510    NA    NA     NA         NA      NA        NA        NA
## 3511     4     4      2          6       4         4         2
## 3512    NA     1     NA         NA      NA        NA        NA
## 3513     0    NA     NA         NA      NA        NA        NA
## 3514    11    14      8          8      14         6         8
## 3515    NA    NA     NA         NA      NA        NA        NA
## 3516     1     1      0          0      NA        NA        NA
## 3517     2     3      1          1       2        NA        NA
## 3518     3     3      3         15       3         3         1
## 3519    NA    NA     NA         NA      NA        NA        NA
## 3520    NA    NA     NA         NA      NA        NA         2
## 3521    NA     2      2          2       4         1         3
## 3522     8    10     15          6      10         6        10
## 3523     0    NA     NA         NA      NA        NA        NA
## 3524    NA    NA     NA         NA      NA        NA        NA
## 3525    NA    NA     NA         NA      NA        NA        NA
## 3526    NA    NA     NA         NA       2        NA         2
## 3527    NA    NA     NA         NA      NA         1        NA
## 3528    NA    NA     NA         NA      NA         1        NA
## 3529     4     2      2          2       2         2         4
## 3530     6     3      3          3       3         3         6
## 3531    NA    NA     NA         NA      NA         0        NA
## 3532    NA    NA      0         NA      NA        NA        NA
## 3533     4     2      4          2       3         1         3
## 3534     2     1      1          1       1         1         1
## 3535     2     1      1          2       2         2         1
## 3536    NA    NA     NA          3      NA        NA        NA
## 3537    NA    NA     NA         NA      NA        NA        NA
## 3538     6     8      8         13       6         6         6
## 3539     8     3      3          3       3         3         6
## 3540    11    11     11         11      14        14        14
## 3541    NA     3     NA          2       2         2         2
## 3542     8    13     11         11       8         8         6
## 3543     2    NA     NA          1       1         1         1
## 3544     2     2     NA          2      NA        NA         2
## 3545     2     2      4         NA       4         2         2
## 3546    NA    NA      2          2       4         2        NA
## 3547    32    NA     NA         NA      NA        NA        NA
## 3548    19    54     48         48      63        38        64
## 3549    35    38     41         32      54        35        38
## 3550     3     8      6          5       6         8         8
## 3551    NA    NA     NA         NA      NA        NA        NA
## 3552    11    14     11         11      17        14        17
## 3553    63    60     46         63      53        35       162
## 3554   201   187    169        127     159       229       162
## 3555     3    NA     NA         NA      NA        NA        NA
## 3556    17    17     21         21      27        17        17
## 3557    44    40     40         55      42        72        38
## 3558     3     2      3          4       4         4         4
## 3559     3     5      5          5       3         3         5
## 3560    NA    NA     NA         NA      NA        NA        NA
## 3561    NA     1     NA         NA      NA        NA        NA
## 3562     1     1      1          2       1         1         1
## 3563    NA     1     NA         NA      NA        NA        NA
## 3564    NA    NA      1         NA       1         1        NA
## 3565     0     0      0          0       0         0         0
## 3566     6     5      6          7       7         5         2
## 3567     0    NA     NA         NA      NA        NA        NA
## 3568    NA    NA      2         NA      NA         2        NA
## 3569    NA    NA     NA          0       0         0         0
## 3570     0     0      0          0       0         0         0
## 3571    NA    NA     NA         NA       3         1         3
## 3572    NA    NA     NA         NA       1         1         1
## 3573    NA     1     NA         NA      NA        NA        NA
## 3574     1    NA     NA          1      NA        NA         4
## 3575    NA    NA      0         NA      NA        NA        NA
## 3576    NA     0     NA          0      NA         0        NA
## 3577     1     1      1         NA       1         2         1
## 3578    NA    NA     NA         NA      NA        NA        NA
## 3579    NA    NA     NA         NA      NA        NA         0
## 3580    NA     1     NA         NA      NA        NA        NA
## 3581     1    NA     NA          1      NA         3         1
## 3582    NA    NA      0         NA      NA        NA        NA
## 3583    NA     0     NA          0      NA        NA        NA
## 3584     1     1      1         NA       1        NA         1
## 3585    NA    NA     NA         NA      NA        NA        NA
## 3586     1    NA     NA          1      NA        NA         1
## 3587    NA    NA      0         NA      NA        NA        NA
## 3588    NA     0     NA         NA      NA        NA        NA
## 3589     1     1      1         NA       1        NA         1
## 3590    NA     1     NA          3      NA        NA        NA
## 3591     3     6     11          6      11        NA         6
## 3592     0    NA     NA          0       0        NA        NA
## 3593    NA     2      2         NA      NA        NA        NA
## 3594    NA    NA     NA         NA      NA        NA        NA
## 3595    NA     1     NA         NA      NA        NA        NA
## 3596     4    NA     NA          1      NA        NA         1
## 3597    NA    NA      0         NA      NA        NA        NA
## 3598    NA     0      0          1      NA         1         0
## 3599     1     1      1          2       1        NA         1
## 3600    NA    NA     NA         NA      NA        NA        NA
## 3601    NA     1     NA         NA      NA        NA        NA
## 3602     6     3      6          6       4         4         5
## 3603    NA    NA     NA         NA       2         2         2
## 3604    NA    NA     NA         17      NA        NA        NA
## 3605    NA    NA     NA         NA      NA        NA         2
## 3606    NA    NA     NA         NA      NA         1        NA
## 3607     8     8      8         11       6        15         2
## 3608    13    13     13         10       6         6         6
## 3609     3     8      3          3       5         3        NA
## 3610    NA    NA     NA         NA      NA        NA         1
## 3611    NA    NA     NA         NA      NA         1        NA
## 3612    NA    NA     NA          3      NA        NA        NA
## 3613     1    NA     NA         NA      NA        NA        NA
## 3614     2     3      2          1       2         2         1
## 3615    NA    NA      1          1      NA        NA        NA
## 3616     1     1      4          1       1         3         1
## 3617    NA    NA     NA         NA      NA        NA        NA
## 3618     1     1      1          1       1         1         1
## 3619    NA     6      3          3      NA         3         6
## 3620    NA    NA     NA         NA      NA        NA         0
## 3621    NA    NA     NA         NA      NA        NA        NA
## 3622     1     1     NA         NA      NA        NA        NA
## 3623     2     2      2          2      NA        NA        NA
## 3624    NA    NA     NA         NA      NA        NA        NA
## 3625     8    11     15         11      17         6        13
## 3626     8    11     14          6      11        11        14
## 3627     3     2      3          2       3         3        NA
## 3628    13     8     11          8      13         8         8
## 3629     2     2      2          1       3         3         3
## 3630     2     2      4          2       2         4         4
## 3631     3     8      8          6       3        NA         8
## 3632     6     4      2          4       2         4        NA
## 3633    25    25     34         34      34        21        25
## 3634    NA    NA     NA         NA      NA        NA        NA
## 3635    16    13     16         19      13        19        13
## 3636    16    32     32         19      32        22        25
## 3637     5     6      9         14       6         3         8
## 3638    23    23     31         45      31        23        11
## 3639    46    49     63         60      25        42        35
## 3640     4    99    137        123     208        35       130
## 3641    NA    NA     NA         NA      NA        NA        NA
## 3642     8    11     13          8       8         8        11
## 3643    13    15     30         32      27        27        17
## 3644    15    25     36         21      25         8        21
## 3645     8     8     10          6      10         4         6
## 3646     2     2      3          3       3         3         2
## 3647     2     2      2          2       2         6        NA
## 3648     2     2      2          2       3         1        NA
## 3649    NA    NA     NA         NA      NA        NA        NA
## 3650     2     2      1          1       1         1         1
## 3651     1    NA      1          1      NA        NA         1
## 3652    NA     1     NA         NA       2        NA         1
## 3653    NA    NA     NA         NA      NA        NA        NA
## 3654     0     0      2          0       0         0         0
## 3655    NA    NA     NA         NA      NA        NA         0
## 3656     2     4      5          4       4         3        NA
## 3657     0    NA     NA         NA       1        NA        NA
## 3658     0     0      0          0       0         0         0
## 3659     1     1      1          1       1         1         1
## 3660    NA    NA     NA         NA      NA         1         1
## 3661    NA    NA     NA         NA       1        NA        NA
## 3662    NA     2      3          1       1         2         1
## 3663     2     1     NA         NA       1        NA        NA
## 3664     3     1     NA          1       3         1         1
## 3665     1     0      1          0       1         0         0
## 3666    NA     1      1          1       1         1         1
## 3667     1     1      1          1       1         3         1
## 3668     0    NA     NA         NA       0        NA        NA
## 3669    NA    NA     NA          1       1         1         1
## 3670     2     1     NA         NA       1        NA        NA
## 3671    NA     1     NA          7       3         1         1
## 3672     1     0      0          0       1        NA         0
## 3673    NA     1      1          1       1         1         1
## 3674    NA     1      1          1       1         1         1
## 3675     0    NA     NA         NA       0        NA        NA
## 3676    NA     2      2          1       2         1         1
## 3677    NA     1     NA          1       3         1         1
## 3678     1     0      0          0       1        NA         0
## 3679    NA     1      1          1       1         1         1
## 3680     1     1      1          1       1         1        NA
## 3681     1    NA     NA          1      NA         1        NA
## 3682     2     1     NA         NA       1        NA        NA
## 3683    NA    NA      3          3       3         6        NA
## 3684    NA    NA      0         NA      NA        NA        NA
## 3685    NA    NA     NA         NA      NA        NA        NA
## 3686     0    NA     NA         NA       0        NA        NA
## 3687    NA     2     NA          1       2         1         4
## 3688     2     1     NA         NA       1        NA        NA
## 3689     6     1      3          4       3         1         4
## 3690     1     1      0          0       1         1         0
## 3691     2     1      1          1       1         1         1
## 3692     1     1      1          1       1         1         1
## 3693     0    NA     NA         NA       0        NA        NA
## 3694    NA    NA     NA         NA       1        NA        NA
## 3695     4     6      5          3       4         3         4
## 3696     0     0     NA         NA      NA        NA        NA
## 3697    NA    NA     NA         NA       1        NA        NA
## 3698    NA    NA     NA         NA      NA         1        NA
## 3699    13     6     15          2       6         4         2
## 3700    16    13     10          6      13         6         3
## 3701    NA    NA     NA          1      NA        NA        NA
## 3702    15    10      8          5      15        13         8
## 3703    NA    NA     NA         NA      NA        NA         1
## 3704    NA    NA     NA         NA      NA         0        NA
## 3705    NA    NA     NA         NA      NA        NA        NA
## 3706    NA     3     NA         NA       3         3         1
## 3707     3     4      2          3       6         4         5
## 3708    NA     0     NA          0       0        NA         1
## 3709     1     3      1          3       3         3         1
## 3710    NA    NA     NA         NA      NA        NA        NA
## 3711     2     1      1          2       2         1         2
## 3712     6    NA      3         NA      NA         8        NA
## 3713     1     1      1         NA       2         1         1
## 3714    NA     0     NA         NA      NA        NA        NA
## 3715     1     1     NA         NA       1         1        NA
## 3716     1    NA     NA         NA      NA         1         1
## 3717    NA    NA     NA         NA      NA        NA        NA
## 3718    NA    NA     NA         NA      NA        NA        NA
## 3719    NA    NA     NA         NA      NA        NA        NA
## 3720     2     2     NA          4       2         2         2
## 3721     4     4      4          4       2         4         6
## 3722    NA    NA     NA         NA      NA         1        NA
## 3723    NA    NA     NA          2      NA        NA        NA
## 3724    NA    NA     NA         NA      NA        NA        NA
## 3725    NA    NA     NA         NA      NA        NA        NA
## 3726    NA    NA     NA          2       2         2         2
## 3727     8    NA     NA         NA      NA        NA        NA
## 3728    10    48     44         38      29        16        52
## 3729   171   159    165        120     105       111       146
## 3730    11     9     11         20      18        21        15
## 3731    NA    NA     NA         NA      NA        NA        NA
## 3732     3     6      6          6       3         3         6
## 3733     7    42     35         32      21        35         7
## 3734   229   218    162        208     247       155       166
## 3735    17     8     13         13      17        17        21
## 3736    19    17     13         15      21        27        19
## 3737   186   123    118        154     171       156       129
## 3738    12     6      7          4       5         6         6
## 3739     3     2      3          3       2         5         2
## 3740     4     2      6         NA       4         6         2
## 3741     4     2      3          1       3         3         3
## 3742     1     1      1          1       1         1         1
## 3743     1     2      1          1       2         1        NA
## 3744     0     2      0          0       1         0         0
## 3745    NA    NA      1         NA      NA        NA        NA
## 3746     7     7      3          3       7         6         4
## 3747    NA    NA     NA         NA       0        NA        NA
## 3748     2    NA     NA         NA      NA         2         2
## 3749     1    NA     NA          0       1         2         0
## 3750     0     0      0          0       0         0         0
## 3751    NA    NA      1         NA      NA        NA        NA
## 3752    NA    NA     NA         NA       1        NA         1
## 3753    10    10      6         10      10        NA         6
## 3754     5     1     NA         NA      NA        NA        NA
## 3755     1     2      2          4       3         1         4
## 3756     0     2      2          2       3         1         3
## 3757     4     2      5          1       2         2         5
## 3758     5     1      3          5       3         3         3
## 3759    NA    NA     NA         NA      NA        NA        NA
## 3760    NA    NA     NA         NA       0        NA        NA
## 3761     3     3     NA          3       4         6         2
## 3762     2     4     NA         NA      NA        NA        NA
## 3763     1     2      2          1       3         1         1
## 3764     2     2     NA          4       2         2        NA
## 3765     4     2      3          5       2         2         3
## 3766     3     1      3          3      NA         3        NA
## 3767    NA    NA     NA         NA      NA        NA        NA
## 3768    NA    NA     NA         NA       0        NA        NA
## 3769     3     3      6          6       7        10        10
## 3770     1     2      2          1       3         1         1
## 3771    NA    NA     NA          2      NA         2         2
## 3772    NA    NA      3          1       2         2         1
## 3773    NA    NA     NA          3      NA         3         3
## 3774    NA    NA     NA         NA      NA        NA        NA
## 3775     2     1     NA         NA      NA        NA        NA
## 3776    NA    NA     NA         NA      NA        NA        NA
## 3777     2    NA      2          1      NA         2        NA
## 3778     2     4      2         NA       2        NA         2
## 3779     3     1      3         NA       3        NA        NA
## 3780    NA    NA     NA         NA       0        NA        NA
## 3781    10    10     10         10      10        10         9
## 3782     2     1     NA         NA      NA        NA        NA
## 3783     4     2      2          1       3         1         1
## 3784     3     1      2          5       2         3         2
## 3785     8     2      7          3       4         2         5
## 3786     5     4      5          5       3         5         3
## 3787    NA    NA     NA         NA      NA        NA        NA
## 3788    NA    NA     NA         NA       0        NA        NA
## 3789    NA     2     NA         NA      NA        NA        NA
## 3790     1     1      1         NA       1         1         3
## 3791    NA    NA      0         NA      NA        NA        NA
## 3792    NA    NA     NA          6      NA        NA        NA
## 3793     8     3      8          5      NA         3        NA
## 3794    NA    NA     NA         NA      NA        NA         3
## 3795    NA    NA     NA         NA      NA         1        NA
## 3796     6    15      2          6      13        11         2
## 3797    13    13      3          3      16        22        10
## 3798    NA    NA     NA          0      NA        NA        NA
## 3799    NA    NA      7         NA      NA        NA        NA
## 3800     8     3      5         NA      NA        NA         5
## 3801    NA    NA     NA         NA      NA        NA         1
## 3802    NA    NA     NA         NA      NA         0        NA
## 3803    NA     1     NA         NA      NA        NA        NA
## 3804    NA    NA     NA         NA      NA        NA        NA
## 3805    NA    NA     NA         NA      NA        NA        NA
## 3806     2    NA      1         NA      NA        NA        NA
## 3807     1    NA     NA         NA      NA        NA        NA
## 3808    15     8     NA         13       6        11        10
## 3809     1    NA     NA         NA       0        NA         0
## 3810     1     2      2          1       3         1         2
## 3811    NA    NA     NA         NA      NA        NA        NA
## 3812     1     1      1          1       1         1         1
## 3813     3     3     NA          3      48        NA         3
## 3814    NA    NA      1         NA      NA        NA        NA
## 3815    NA     0      0         NA      NA        NA         0
## 3816     1     1      1         NA      NA        NA         1
## 3817     1    NA      2         NA      NA         1         1
## 3818    NA    NA     NA         NA      NA        NA        NA
## 3819     6     6      6         NA       2         4         2
## 3820     8     8      8          6       6         4         6
## 3821    NA    NA     NA          3      NA        NA        NA
## 3822    30    NA     19         42       2        11         8
## 3823    NA    NA     NA          3       3         3         7
## 3824   136    86     92        155     114        79       120
## 3825     2    14     11         33      36         2        21
## 3826    NA    NA     NA         NA      NA        NA        NA
## 3827    NA    NA     NA         NA      NA        NA        NA
## 3828    42    NA     14         56       7        28        42
## 3829   250   271    468        377     402        11       380
## 3830    NA    11     11         40      25        13        27
## 3831   467    32    213        395     404        13       207
## 3832     4     5      4          4       4         4         7
## 3833    12    NA      2          9       5         3         5
## 3834    20    NA      8         14      10         6         6
## 3835    NA     1      4          3       2         2         1
## 3836    NA    NA      1         NA      NA        NA        NA
## 3837     1     1      1          1       1         1         1
## 3838    NA    NA     NA         NA      NA        NA        NA
## 3839    NA    NA     NA         NA       7         1        NA
## 3840     0     0      0          0       1         0         1
## 3841    NA    NA     NA         NA      NA         1        NA
## 3842     3     8      4         NA      10        10        10
## 3843     0    NA     NA         NA       1        NA        NA
## 3844     2     2      2         NA       2        NA         2
## 3845    NA     1      1          0       1        NA         1
## 3846    NA     1     NA         NA      NA        NA        NA
## 3847     0     0      0          0       0         0         0
## 3848    NA    NA      1         NA      NA        NA        NA
## 3849    NA    NA     NA         NA       1        NA        NA
## 3850    NA    NA     NA         NA      NA         1        NA
## 3851     1     1     NA         NA      NA        NA        NA
## 3852    NA     6     NA          6      14        NA         6
## 3853    NA    NA     NA         NA      NA        NA         6
## 3854    NA    NA     NA         NA      NA        NA         4
## 3855     2    NA      1         NA      NA        NA        NA
## 3856     2     0     NA          3       5        NA         3
## 3857    NA    NA     21          3      NA         2         6
## 3858    NA    NA     NA         NA      NA        NA        NA
## 3859    NA    NA     NA         NA      NA        NA        NA
## 3860    NA    NA     NA         NA      NA         1        NA
## 3861     1     1     NA         NA      NA        NA         3
## 3862    NA     8      3          8      14        NA         1
## 3863    NA    NA     NA         NA      NA        NA        NA
## 3864     1    NA      1         NA      NA        NA        NA
## 3865     4     0     NA          3       4        NA         3
## 3866     2     4      6         14      NA        NA         6
## 3867    NA    NA     NA         NA      NA        NA        NA
## 3868    NA    NA     NA          5      NA        NA        NA
## 3869    NA    NA     NA         NA      NA        NA        NA
## 3870    NA    NA     NA         NA      NA         1        NA
## 3871    NA    NA      3          3      14         3         4
## 3872    NA    NA     NA         NA      NA        NA        NA
## 3873     2    NA      1         NA      NA        NA        NA
## 3874     2     0      1          2       4         2         2
## 3875    NA     2      4          3      NA         2        NA
## 3876    NA    NA     NA         NA      NA        NA        NA
## 3877     1     4     NA         NA      NA        NA        NA
## 3878    NA    NA      3          3       8        NA        NA
## 3879    NA    NA     NA         NA      NA        NA         4
## 3880     0     0     NA          2       2        NA        NA
## 3881    NA    NA      4         NA       2        NA         2
## 3882    NA    NA     NA         NA      NA        NA        NA
## 3883    NA    NA      3         NA      NA         1         1
## 3884     1     1     NA         NA      NA        NA        NA
## 3885     3    11     NA          8      17        NA        12
## 3886    NA    NA     NA         NA      NA        NA         4
## 3887     3    NA      1         NA      NA        NA         1
## 3888     3     3     NA          3       4         2         3
## 3889    11    NA     12         14      NA         2         8
## 3890    NA    NA     NA         NA      NA        NA        NA
## 3891    NA    NA     NA          2      NA        NA        NA
## 3892    NA    NA     NA         NA      NA        NA        NA
## 3893    NA     2      1         NA       2        NA         1
## 3894    NA    NA     NA         NA      NA        NA        NA
## 3895    NA    NA     NA         NA       1        NA        NA
## 3896    NA    NA     NA         NA      NA         1        NA
## 3897     2     2      2          2       2         2         2
## 3898     3     3      3          3       3         3         3
## 3899    NA    NA     NA          1      NA        NA        NA
## 3900    NA    NA     NA         NA      NA         0        NA
## 3901    NA     1     NA         NA      NA        NA        NA
## 3902    NA    NA     NA          1      NA        NA        NA
## 3903    NA     1     NA         NA      NA        NA         1
## 3904     3     6      5          7       7         1         4
## 3905    NA     0     NA          1      NA        NA        NA
## 3906    NA     3      1          3       2         3         3
## 3907     2    NA     NA         NA      NA        NA        NA
## 3908     0    NA     NA         NA      NA        NA        NA
## 3909     2     2      2          2       2         1         2
## 3910     6     6      8         14       6         3        14
## 3911    NA    NA      1         NA      NA        NA        NA
## 3912    NA    NA     NA          0      NA        NA         0
## 3913    NA    NA     NA          1      NA         1         1
## 3914    NA    NA     NA         NA      NA        NA        NA
## 3915    NA    NA     NA          2      NA        NA         2
## 3916    NA    NA     NA         NA      NA        NA        NA
## 3917     4     2      8          2       2        NA        NA
## 3918    NA     6     NA         NA       6        NA        NA
## 3919     6     2      6          2      NA        NA        NA
## 3920    NA    NA     NA         NA      NA        NA        NA
## 3921    NA    NA     NA         NA      NA        NA        NA
## 3922     6    NA      4          8      NA         2        NA
## 3923    NA     4     NA         11       2         2        NA
## 3924    NA    NA     NA         NA      NA        NA        NA
## 3925    NA    NA     NA          3       3         3        NA
## 3926    44    51     25         70      44        29        41
## 3927     2     8      5         14      11         2        23
## 3928    NA    NA     NA         NA      NA        NA        NA
## 3929    NA    NA     49         NA      NA        NA        NA
## 3930    95   151    144        137      85       173       106
## 3931    NA     6      8          8       4         8         4
## 3932    17    13     53         34      NA        NA        NA
## 3933    63    91     91         72     137       114        82
## 3934    NA    NA     NA         NA      NA        NA        NA
## 3935    NA     1      1          2       1        NA        NA
## 3936    NA     1     NA         NA      NA        NA        NA
## 3937     1     2      1          1       1         1         1
## 3938    NA    NA     NA          1      NA        NA        NA
## 3939     3     3      2         NA       1        NA         1
## 3940    NA     1     NA         NA      NA        NA        NA
## 3941     3     1      2          2       1         2         2
## 3942     4     0      2          5       2         2         4
## 3943    NA    NA      0         NA      NA        NA        NA
## 3944     4     6      6          8       8         2        NA
## 3945    NA    NA     NA          1       0        NA         1
## 3946     2     2     NA          4       2        NA         2
## 3947     1     1      1         NA       1        NA         1
## 3948     1     0      0          1       0         0         1
## 3949    NA    NA     NA         NA       1         1        NA
## 3950    NA    NA     NA         NA      NA         1        NA
## 3951     1    NA     NA         NA      NA        NA        NA
## 3952     3     1      3         NA       1        NA         1
## 3953     4     4      4          4       7        NA         4
## 3954     2     0     NA          0       0        NA        NA
## 3955     2    NA     NA          2       1        NA         1
## 3956    NA    NA     NA         NA      NA        NA         1
## 3957    NA    NA     NA         NA      NA        NA        NA
## 3958    NA    NA     NA         NA      NA         1        NA
## 3959     1    NA     NA         NA      NA        NA        NA
## 3960    NA     6     NA         NA       1        NA         1
## 3961    NA    NA     18          4       4         4        NA
## 3962     2    NA     NA         NA       0        NA        NA
## 3963     2    NA     NA         NA       1        NA         1
## 3964    NA    NA     NA         NA      NA        NA         1
## 3965    NA    NA     NA         NA      NA        NA        NA
## 3966    NA    NA     NA         NA      NA         1        NA
## 3967    NA     1     NA          3       1        NA         1
## 3968    NA    NA     NA          4      NA        NA         4
## 3969     0    NA     NA         NA       1        NA        NA
## 3970     2    NA     NA         NA       1        NA         1
## 3971    NA    NA     NA         NA      NA        NA         1
## 3972     1    NA     NA         NA      NA        NA        NA
## 3973    NA    NA     NA         NA      NA        NA        NA
## 3974     4    NA      4          4       4        NA        NA
## 3975     0    NA     NA         NA      NA        NA         0
## 3976    NA    NA     NA         NA      NA        NA        NA
## 3977    NA    NA     NA         NA      NA        NA        NA
## 3978    NA    NA     NA         NA      NA         1        NA
## 3979     1    NA     NA         NA      NA        NA        NA
## 3980    NA     6     NA         NA       1         3         1
## 3981     4    NA     NA          4      NA        NA         7
## 3982     3    NA      0         NA       1         0         0
## 3983     2     4      2         NA       1         2         1
## 3984    NA    NA     NA         NA      NA        NA         1
## 3985    NA    NA     NA         NA      NA        NA        NA
## 3986    NA    NA      1         NA      NA        NA        NA
## 3987     4     3      3         NA       6        NA         3
## 3988     0     0     NA         NA      NA        NA        NA
## 3989    NA    NA      0         NA      NA        NA        NA
## 3990     8     8      8         NA       8         3        NA
## 3991     5     4      5          1       5         4         1
## 3992    NA    NA      3         NA      NA         2         2
## 3993    NA    NA     NA         NA      NA        NA         5
## 3994    NA    NA     NA         NA      NA         1         4
## 3995    11    11     17         17      15         6         4
## 3996    16    13     29         25      19        10         6
## 3997    NA    NA     NA          1      NA        NA        NA
## 3998    25    14     25          7      11        11        11
## 3999    18     8     10         13       5         8         5
##  [ reached 'max' / getOption("max.print") -- omitted 462510 rows ]

Función Summary

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