-
Notifications
You must be signed in to change notification settings - Fork 1
/
mk_lacnic.rsc
9343 lines (9343 loc) · 718 KB
/
mk_lacnic.rsc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
###############################################
# Mikrotik RouterOS script file auto-generated
# script: github.com/audric/gen_mk_country_acl
# ip source: ftp://ftp.lacnic.net/pub/stats/lacnic/delegated-lacnic-latest
###############################################
/ip firewall address-list
add address=24.232.0.0/16 list="AR country" comment="source lacnic 19970602"
add address=64.28.128.0/20 list="TT country" comment="source lacnic 20000111"
add address=64.32.64.0/18 list="DO country" comment="source lacnic 20010206"
add address=66.60.0.0/18 list="AR country" comment="source lacnic 20001226"
add address=66.98.0.0/18 list="DO country" comment="source lacnic 20010406"
add address=66.98.64.0/19 list="DO country" comment="source lacnic 20010406"
add address=66.128.32.0/20 list="AR country" comment="source lacnic 20140424"
add address=66.231.64.0/20 list="CO country" comment="source lacnic 19870101"
add address=129.90.0.0/16 list="VE country" comment="source lacnic 19870905"
add address=131.0.0.0/22 list="BO country" comment="source lacnic 20140703"
add address=131.0.4.0/22 list="BR country" comment="source lacnic 20140707"
add address=131.0.8.0/22 list="BR country" comment="source lacnic 20140801"
add address=131.0.12.0/22 list="BR country" comment="source lacnic 20140703"
add address=131.0.16.0/22 list="BR country" comment="source lacnic 20140715"
add address=131.0.20.0/22 list="BR country" comment="source lacnic 20140703"
add address=131.0.24.0/22 list="BR country" comment="source lacnic 20140704"
add address=131.0.28.0/22 list="BR country" comment="source lacnic 20140704"
add address=131.0.32.0/22 list="BR country" comment="source lacnic 20140710"
add address=131.0.36.0/22 list="BR country" comment="source lacnic 20140710"
add address=131.0.40.0/22 list="BR country" comment="source lacnic 20140707"
add address=131.0.44.0/22 list="BR country" comment="source lacnic 20140704"
add address=131.0.48.0/22 list="BR country" comment="source lacnic 20140715"
add address=131.0.52.0/22 list="AR country" comment="source lacnic 20140708"
add address=131.0.56.0/22 list="BR country" comment="source lacnic 20140710"
add address=131.0.60.0/22 list="BR country" comment="source lacnic 20140722"
add address=131.0.64.0/22 list="BR country" comment="source lacnic 20140707"
add address=131.0.68.0/22 list="BR country" comment="source lacnic 20140704"
add address=131.0.72.0/22 list="CR country" comment="source lacnic 20140704"
add address=131.0.76.0/22 list="BR country" comment="source lacnic 20140707"
add address=131.0.80.0/22 list="BR country" comment="source lacnic 20140710"
add address=131.0.84.0/22 list="BR country" comment="source lacnic 20140707"
add address=131.0.88.0/22 list="BR country" comment="source lacnic 20140711"
add address=131.0.92.0/22 list="BR country" comment="source lacnic 20140710"
add address=131.0.96.0/22 list="BR country" comment="source lacnic 20140710"
add address=131.0.100.0/22 list="BR country" comment="source lacnic 20140715"
add address=131.0.104.0/22 list="AR country" comment="source lacnic 20140724"
add address=131.0.108.0/22 list="CL country" comment="source lacnic 20140723"
add address=131.0.112.0/22 list="BR country" comment="source lacnic 20140721"
add address=131.0.116.0/22 list="BR country" comment="source lacnic 20140715"
add address=131.0.120.0/22 list="BR country" comment="source lacnic 20140725"
add address=131.0.124.0/22 list="MX country" comment="source lacnic 20140724"
add address=131.0.128.0/22 list="AR country" comment="source lacnic 20140711"
add address=131.0.132.0/22 list="BR country" comment="source lacnic 20140717"
add address=131.0.136.0/22 list="CO country" comment="source lacnic 20140711"
add address=131.0.140.0/22 list="BR country" comment="source lacnic 20140715"
add address=131.0.144.0/22 list="BR country" comment="source lacnic 20140715"
add address=131.0.148.0/22 list="BR country" comment="source lacnic 20140711"
add address=131.0.152.0/22 list="BR country" comment="source lacnic 20140714"
add address=131.0.156.0/22 list="BR country" comment="source lacnic 20140722"
add address=131.0.160.0/22 list="BR country" comment="source lacnic 20140721"
add address=131.0.164.0/22 list="BR country" comment="source lacnic 20140718"
add address=131.0.168.0/22 list="CO country" comment="source lacnic 20140714"
add address=131.0.172.0/22 list="CL country" comment="source lacnic 20140715"
add address=131.0.176.0/22 list="BR country" comment="source lacnic 20140722"
add address=131.0.180.0/22 list="BR country" comment="source lacnic 20140723"
add address=131.0.184.0/22 list="BR country" comment="source lacnic 20140715"
add address=131.0.188.0/22 list="BR country" comment="source lacnic 20140723"
add address=131.0.192.0/22 list="BR country" comment="source lacnic 20140730"
add address=131.0.196.0/22 list="AR country" comment="source lacnic 20140716"
add address=131.0.200.0/22 list="BR country" comment="source lacnic 20140808"
add address=131.0.204.0/22 list="BR country" comment="source lacnic 20140804"
add address=131.0.208.0/22 list="BR country" comment="source lacnic 20140716"
add address=131.0.212.0/22 list="UY country" comment="source lacnic 20140729"
add address=131.0.216.0/22 list="BR country" comment="source lacnic 20140716"
add address=131.0.220.0/22 list="BR country" comment="source lacnic 20140721"
add address=131.0.224.0/22 list="BR country" comment="source lacnic 20140718"
add address=131.0.228.0/22 list="BR country" comment="source lacnic 20140725"
add address=131.0.232.0/22 list="AR country" comment="source lacnic 20140725"
add address=131.0.236.0/22 list="MX country" comment="source lacnic 20140801"
add address=131.0.240.0/22 list="BR country" comment="source lacnic 20140806"
add address=131.0.244.0/22 list="BR country" comment="source lacnic 20140728"
add address=131.0.248.0/22 list="BR country" comment="source lacnic 20140806"
add address=131.0.252.0/22 list="BR country" comment="source lacnic 20140723"
add address=131.72.0.0/22 list="AR country" comment="source lacnic 20140723"
add address=131.72.4.0/22 list="BR country" comment="source lacnic 20140729"
add address=131.72.8.0/22 list="BR country" comment="source lacnic 20140728"
add address=131.72.12.0/22 list="BR country" comment="source lacnic 20140725"
add address=131.72.16.0/22 list="BR country" comment="source lacnic 20140725"
add address=131.72.20.0/22 list="BR country" comment="source lacnic 20140728"
add address=131.72.24.0/22 list="PY country" comment="source lacnic 20140724"
add address=131.72.28.0/22 list="AR country" comment="source lacnic 20140725"
add address=131.72.32.0/22 list="BR country" comment="source lacnic 20140725"
add address=131.72.36.0/22 list="BR country" comment="source lacnic 20140731"
add address=131.72.40.0/22 list="BR country" comment="source lacnic 20140731"
add address=131.72.44.0/22 list="BR country" comment="source lacnic 20140725"
add address=131.72.48.0/22 list="BR country" comment="source lacnic 20140725"
add address=131.72.52.0/22 list="BR country" comment="source lacnic 20140729"
add address=131.72.56.0/22 list="BR country" comment="source lacnic 20140804"
add address=131.72.60.0/22 list="BR country" comment="source lacnic 20140728"
add address=131.72.64.0/22 list="BR country" comment="source lacnic 20140820"
add address=131.72.68.0/22 list="BR country" comment="source lacnic 20140814"
add address=131.72.72.0/22 list="AR country" comment="source lacnic 20140728"
add address=131.72.76.0/22 list="TT country" comment="source lacnic 20140805"
add address=131.72.80.0/22 list="BR country" comment="source lacnic 20140729"
add address=131.72.84.0/22 list="BR country" comment="source lacnic 20140729"
add address=131.72.88.0/22 list="BR country" comment="source lacnic 20140801"
add address=131.72.92.0/22 list="BR country" comment="source lacnic 20140814"
add address=131.72.96.0/22 list="BR country" comment="source lacnic 20140801"
add address=131.72.100.0/22 list="BR country" comment="source lacnic 20140822"
add address=131.72.104.0/22 list="BR country" comment="source lacnic 20140805"
add address=131.72.108.0/22 list="BR country" comment="source lacnic 20140807"
add address=131.72.112.0/22 list="CW country" comment="source lacnic 20140730"
add address=131.72.116.0/22 list="BR country" comment="source lacnic 20140805"
add address=131.72.120.0/22 list="BR country" comment="source lacnic 20140806"
add address=131.72.124.0/22 list="BR country" comment="source lacnic 20140801"
add address=131.72.128.0/22 list="BR country" comment="source lacnic 20140808"
add address=131.72.132.0/22 list="AR country" comment="source lacnic 20140804"
add address=131.72.136.0/22 list="BZ country" comment="source lacnic 20140815"
add address=131.72.140.0/22 list="BR country" comment="source lacnic 20140804"
add address=131.72.144.0/22 list="BR country" comment="source lacnic 20140818"
add address=131.72.148.0/22 list="BR country" comment="source lacnic 20140818"
add address=131.72.152.0/22 list="BR country" comment="source lacnic 20140808"
add address=131.72.156.0/22 list="AR country" comment="source lacnic 20140801"
add address=131.72.160.0/22 list="BR country" comment="source lacnic 20140804"
add address=131.72.164.0/22 list="BR country" comment="source lacnic 20140805"
add address=131.72.168.0/22 list="VE country" comment="source lacnic 20140815"
add address=131.72.172.0/22 list="BR country" comment="source lacnic 20140804"
add address=131.72.176.0/22 list="BR country" comment="source lacnic 20140805"
add address=131.72.180.0/22 list="BR country" comment="source lacnic 20140806"
add address=131.72.184.0/22 list="BR country" comment="source lacnic 20140812"
add address=131.72.188.0/22 list="BR country" comment="source lacnic 20140807"
add address=131.72.192.0/22 list="BR country" comment="source lacnic 20140807"
add address=131.72.196.0/22 list="BR country" comment="source lacnic 20140805"
add address=131.72.200.0/22 list="BR country" comment="source lacnic 20140805"
add address=131.72.204.0/22 list="AR country" comment="source lacnic 20140820"
add address=131.72.208.0/22 list="HN country" comment="source lacnic 20140902"
add address=131.72.212.0/22 list="MX country" comment="source lacnic 20140901"
add address=131.72.216.0/22 list="BR country" comment="source lacnic 20140806"
add address=131.72.220.0/22 list="BR country" comment="source lacnic 20140806"
add address=131.72.224.0/22 list="PA country" comment="source lacnic 20140806"
add address=131.72.228.0/22 list="MX country" comment="source lacnic 20140820"
add address=131.72.232.0/22 list="CL country" comment="source lacnic 20140831"
add address=131.72.236.0/22 list="CL country" comment="source lacnic 20140812"
add address=131.72.240.0/22 list="AR country" comment="source lacnic 20140807"
add address=131.72.244.0/22 list="BR country" comment="source lacnic 20140807"
add address=131.72.248.0/22 list="BR country" comment="source lacnic 20140807"
add address=131.72.252.0/22 list="BR country" comment="source lacnic 20140812"
add address=131.100.0.0/22 list="PA country" comment="source lacnic 20140808"
add address=131.100.4.0/22 list="BR country" comment="source lacnic 20140807"
add address=131.100.8.0/22 list="BR country" comment="source lacnic 20140818"
add address=131.100.12.0/22 list="BR country" comment="source lacnic 20140812"
add address=131.100.16.0/22 list="BR country" comment="source lacnic 20140813"
add address=131.100.20.0/22 list="BR country" comment="source lacnic 20140808"
add address=131.100.24.0/22 list="BR country" comment="source lacnic 20140818"
add address=131.100.28.0/22 list="CL country" comment="source lacnic 20140808"
add address=131.100.32.0/22 list="BR country" comment="source lacnic 20140808"
add address=131.100.36.0/22 list="TT country" comment="source lacnic 20140813"
add address=131.100.40.0/22 list="BR country" comment="source lacnic 20140813"
add address=131.100.44.0/22 list="BR country" comment="source lacnic 20140813"
add address=131.100.48.0/22 list="BR country" comment="source lacnic 20140811"
add address=131.100.52.0/22 list="BR country" comment="source lacnic 20140811"
add address=131.100.56.0/22 list="BR country" comment="source lacnic 20140811"
add address=131.100.60.0/22 list="BR country" comment="source lacnic 20140811"
add address=131.100.64.0/22 list="AR country" comment="source lacnic 20140811"
add address=131.100.68.0/22 list="BR country" comment="source lacnic 20140811"
add address=131.100.72.0/22 list="BR country" comment="source lacnic 20140813"
add address=131.100.76.0/22 list="BR country" comment="source lacnic 20140814"
add address=131.100.80.0/22 list="BR country" comment="source lacnic 20140814"
add address=131.100.84.0/22 list="BR country" comment="source lacnic 20140820"
add address=131.100.88.0/22 list="AR country" comment="source lacnic 20140812"
add address=131.100.92.0/22 list="BR country" comment="source lacnic 20140812"
add address=131.100.96.0/22 list="BR country" comment="source lacnic 20140812"
add address=131.100.100.0/22 list="AR country" comment="source lacnic 20141008"
add address=131.100.104.0/22 list="BR country" comment="source lacnic 20140903"
add address=131.100.108.0/22 list="AR country" comment="source lacnic 20140828"
add address=131.100.112.0/22 list="BR country" comment="source lacnic 20140826"
add address=131.100.116.0/22 list="BR country" comment="source lacnic 20140821"
add address=131.100.120.0/22 list="BR country" comment="source lacnic 20140818"
add address=131.100.124.0/22 list="BR country" comment="source lacnic 20140815"
add address=131.100.128.0/22 list="BR country" comment="source lacnic 20140814"
add address=131.100.132.0/22 list="BR country" comment="source lacnic 20140818"
add address=131.100.136.0/22 list="BR country" comment="source lacnic 20140818"
add address=131.100.140.0/22 list="SV country" comment="source lacnic 20140815"
add address=131.100.144.0/22 list="BR country" comment="source lacnic 20140821"
add address=131.100.148.0/22 list="BR country" comment="source lacnic 20140815"
add address=131.100.152.0/22 list="BR country" comment="source lacnic 20140818"
add address=131.100.156.0/22 list="BR country" comment="source lacnic 20140818"
add address=131.100.160.0/22 list="TT country" comment="source lacnic 20140818"
add address=131.100.164.0/22 list="BR country" comment="source lacnic 20140820"
add address=131.100.168.0/22 list="BR country" comment="source lacnic 20140826"
add address=131.100.172.0/22 list="BR country" comment="source lacnic 20140819"
add address=131.100.176.0/22 list="BR country" comment="source lacnic 20140822"
add address=131.100.180.0/22 list="AR country" comment="source lacnic 20140821"
add address=131.100.184.0/22 list="PY country" comment="source lacnic 20140829"
add address=131.100.188.0/22 list="BR country" comment="source lacnic 20140822"
add address=131.100.192.0/22 list="BR country" comment="source lacnic 20140822"
add address=131.100.196.0/22 list="BR country" comment="source lacnic 20140908"
add address=131.100.200.0/22 list="BO country" comment="source lacnic 20140901"
add address=131.100.204.0/22 list="BR country" comment="source lacnic 20140825"
add address=131.100.208.0/22 list="BR country" comment="source lacnic 20140827"
add address=131.100.212.0/22 list="BR country" comment="source lacnic 20140902"
add address=131.100.216.0/22 list="BR country" comment="source lacnic 20140829"
add address=131.100.220.0/22 list="BR country" comment="source lacnic 20140905"
add address=131.100.224.0/22 list="BR country" comment="source lacnic 20140827"
add address=131.100.228.0/22 list="BR country" comment="source lacnic 20140827"
add address=131.100.232.0/22 list="BR country" comment="source lacnic 20140908"
add address=131.100.236.0/22 list="BR country" comment="source lacnic 20140827"
add address=131.100.240.0/22 list="BR country" comment="source lacnic 20140902"
add address=131.100.244.0/22 list="BR country" comment="source lacnic 20140903"
add address=131.100.248.0/22 list="BR country" comment="source lacnic 20140903"
add address=131.100.252.0/22 list="BR country" comment="source lacnic 20140901"
add address=131.108.0.0/22 list="AR country" comment="source lacnic 20140826"
add address=131.108.4.0/22 list="PA country" comment="source lacnic 20140827"
add address=131.108.8.0/22 list="BR country" comment="source lacnic 20140911"
add address=131.108.12.0/22 list="BR country" comment="source lacnic 20140903"
add address=131.108.16.0/22 list="HN country" comment="source lacnic 20140916"
add address=131.108.20.0/22 list="PA country" comment="source lacnic 20140902"
add address=131.108.24.0/22 list="BR country" comment="source lacnic 20140828"
add address=131.108.28.0/22 list="BR country" comment="source lacnic 20140901"
add address=131.108.32.0/22 list="BR country" comment="source lacnic 20140916"
add address=131.108.36.0/22 list="CR country" comment="source lacnic 20140828"
add address=131.108.40.0/22 list="AR country" comment="source lacnic 20140828"
add address=131.108.44.0/22 list="BR country" comment="source lacnic 20140901"
add address=131.108.48.0/22 list="BR country" comment="source lacnic 20140908"
add address=131.108.52.0/22 list="BR country" comment="source lacnic 20140903"
add address=131.108.56.0/22 list="BR country" comment="source lacnic 20140908"
add address=131.108.60.0/22 list="BR country" comment="source lacnic 20140902"
add address=131.108.64.0/22 list="BR country" comment="source lacnic 20140905"
add address=131.108.68.0/22 list="CL country" comment="source lacnic 20140829"
add address=131.108.72.0/22 list="BR country" comment="source lacnic 20140902"
add address=131.108.76.0/22 list="BR country" comment="source lacnic 20140902"
add address=131.108.80.0/22 list="AR country" comment="source lacnic 20140901"
add address=131.108.84.0/22 list="BR country" comment="source lacnic 20140916"
add address=131.108.88.0/22 list="BR country" comment="source lacnic 20140909"
add address=131.108.92.0/22 list="BR country" comment="source lacnic 20140909"
add address=131.108.96.0/22 list="BR country" comment="source lacnic 20140901"
add address=131.108.100.0/22 list="BR country" comment="source lacnic 20140903"
add address=131.108.104.0/22 list="BR country" comment="source lacnic 20140901"
add address=131.108.108.0/22 list="BR country" comment="source lacnic 20140904"
add address=131.108.112.0/22 list="BR country" comment="source lacnic 20140904"
add address=131.108.116.0/22 list="BR country" comment="source lacnic 20140910"
add address=131.108.120.0/22 list="BR country" comment="source lacnic 20140903"
add address=131.108.124.0/22 list="BR country" comment="source lacnic 20140908"
add address=131.108.128.0/22 list="BR country" comment="source lacnic 20140910"
add address=131.108.132.0/22 list="BR country" comment="source lacnic 20140902"
add address=131.108.136.0/22 list="BR country" comment="source lacnic 20140903"
add address=131.108.140.0/22 list="AR country" comment="source lacnic 20140902"
add address=131.108.144.0/22 list="BR country" comment="source lacnic 20140908"
add address=131.108.148.0/22 list="BR country" comment="source lacnic 20140926"
add address=131.108.152.0/22 list="BR country" comment="source lacnic 20140911"
add address=131.108.156.0/22 list="BR country" comment="source lacnic 20140905"
add address=131.108.160.0/22 list="BR country" comment="source lacnic 20140903"
add address=131.108.164.0/22 list="BR country" comment="source lacnic 20140904"
add address=131.108.168.0/22 list="CO country" comment="source lacnic 20140902"
add address=131.108.172.0/22 list="BR country" comment="source lacnic 20140926"
add address=131.108.176.0/22 list="BR country" comment="source lacnic 20140905"
add address=131.108.180.0/22 list="BR country" comment="source lacnic 20140908"
add address=131.108.184.0/22 list="BR country" comment="source lacnic 20140905"
add address=131.108.188.0/22 list="BR country" comment="source lacnic 20140905"
add address=131.108.192.0/22 list="PY country" comment="source lacnic 20140903"
add address=131.108.196.0/22 list="BR country" comment="source lacnic 20140912"
add address=131.108.200.0/22 list="BR country" comment="source lacnic 20140904"
add address=131.108.204.0/22 list="BR country" comment="source lacnic 20140908"
add address=131.108.208.0/22 list="CL country" comment="source lacnic 20140916"
add address=131.108.212.0/22 list="BR country" comment="source lacnic 20140909"
add address=131.108.216.0/22 list="BR country" comment="source lacnic 20140905"
add address=131.108.220.0/22 list="BR country" comment="source lacnic 20140908"
add address=131.108.224.0/22 list="BR country" comment="source lacnic 20140905"
add address=131.108.228.0/22 list="BR country" comment="source lacnic 20140909"
add address=131.108.232.0/22 list="HN country" comment="source lacnic 20140912"
add address=131.108.236.0/22 list="BR country" comment="source lacnic 20140922"
add address=131.108.240.0/22 list="BR country" comment="source lacnic 20140910"
add address=131.108.244.0/22 list="BR country" comment="source lacnic 20140905"
add address=131.108.248.0/22 list="BR country" comment="source lacnic 20140910"
add address=131.108.252.0/22 list="BR country" comment="source lacnic 20140908"
add address=131.161.0.0/22 list="BR country" comment="source lacnic 20140908"
add address=131.161.4.0/22 list="BR country" comment="source lacnic 20140908"
add address=131.161.8.0/22 list="BR country" comment="source lacnic 20140923"
add address=131.161.12.0/22 list="BR country" comment="source lacnic 20140911"
add address=131.161.16.0/22 list="BR country" comment="source lacnic 20140909"
add address=131.161.20.0/22 list="BR country" comment="source lacnic 20140916"
add address=131.161.24.0/22 list="BR country" comment="source lacnic 20140911"
add address=131.161.28.0/22 list="BR country" comment="source lacnic 20140911"
add address=131.161.32.0/22 list="BR country" comment="source lacnic 20141001"
add address=131.161.36.0/22 list="BR country" comment="source lacnic 20141027"
add address=131.161.40.0/22 list="BR country" comment="source lacnic 20140910"
add address=131.161.44.0/22 list="BR country" comment="source lacnic 20140912"
add address=131.161.48.0/22 list="BR country" comment="source lacnic 20140917"
add address=131.161.52.0/22 list="HN country" comment="source lacnic 20140911"
add address=131.161.56.0/22 list="CL country" comment="source lacnic 20140916"
add address=131.161.60.0/22 list="BR country" comment="source lacnic 20140915"
add address=131.161.64.0/22 list="BR country" comment="source lacnic 20140917"
add address=131.161.68.0/22 list="BR country" comment="source lacnic 20141007"
add address=131.161.72.0/22 list="BR country" comment="source lacnic 20140915"
add address=131.161.76.0/22 list="BR country" comment="source lacnic 20140922"
add address=131.161.80.0/22 list="HN country" comment="source lacnic 20140912"
add address=131.161.84.0/22 list="SX country" comment="source lacnic 20140929"
add address=131.161.88.0/22 list="AR country" comment="source lacnic 20140912"
add address=131.161.92.0/22 list="BR country" comment="source lacnic 20141002"
add address=131.161.96.0/22 list="BR country" comment="source lacnic 20140930"
add address=131.161.100.0/22 list="PE country" comment="source lacnic 20140916"
add address=131.161.104.0/22 list="BR country" comment="source lacnic 20141017"
add address=131.161.108.0/22 list="BR country" comment="source lacnic 20140917"
add address=131.161.112.0/22 list="BR country" comment="source lacnic 20140922"
add address=131.161.116.0/22 list="BR country" comment="source lacnic 20140925"
add address=131.161.120.0/22 list="BR country" comment="source lacnic 20140923"
add address=131.161.124.0/22 list="BR country" comment="source lacnic 20140926"
add address=131.161.128.0/22 list="BR country" comment="source lacnic 20140923"
add address=131.161.132.0/22 list="BR country" comment="source lacnic 20140919"
add address=131.161.136.0/22 list="BR country" comment="source lacnic 20140922"
add address=131.161.140.0/22 list="BR country" comment="source lacnic 20140922"
add address=131.161.144.0/22 list="BR country" comment="source lacnic 20140925"
add address=131.161.148.0/22 list="BZ country" comment="source lacnic 20140922"
add address=131.161.152.0/22 list="AR country" comment="source lacnic 20140923"
add address=131.161.156.0/22 list="BR country" comment="source lacnic 20140930"
add address=131.161.160.0/22 list="BR country" comment="source lacnic 20140923"
add address=131.161.164.0/22 list="BR country" comment="source lacnic 20141014"
add address=131.161.168.0/22 list="BR country" comment="source lacnic 20140923"
add address=131.161.172.0/22 list="BR country" comment="source lacnic 20140923"
add address=131.161.176.0/22 list="BR country" comment="source lacnic 20140925"
add address=131.161.180.0/22 list="BR country" comment="source lacnic 20140930"
add address=131.161.184.0/22 list="AR country" comment="source lacnic 20140924"
add address=131.161.188.0/22 list="BR country" comment="source lacnic 20140930"
add address=131.161.192.0/22 list="BR country" comment="source lacnic 20140929"
add address=131.161.196.0/22 list="BR country" comment="source lacnic 20141010"
add address=131.161.200.0/22 list="CL country" comment="source lacnic 20140926"
add address=131.161.204.0/22 list="BR country" comment="source lacnic 20141006"
add address=131.161.208.0/22 list="BR country" comment="source lacnic 20141006"
add address=131.161.212.0/22 list="BR country" comment="source lacnic 20141006"
add address=131.161.216.0/22 list="BR country" comment="source lacnic 20140930"
add address=131.161.220.0/22 list="BR country" comment="source lacnic 20141002"
add address=131.161.224.0/22 list="BR country" comment="source lacnic 20141003"
add address=131.161.228.0/22 list="BR country" comment="source lacnic 20141008"
add address=131.161.232.0/22 list="AR country" comment="source lacnic 20140930"
add address=131.161.236.0/22 list="AR country" comment="source lacnic 20140930"
add address=131.161.240.0/22 list="BR country" comment="source lacnic 20141001"
add address=131.161.244.0/22 list="MX country" comment="source lacnic 20141014"
add address=131.161.248.0/22 list="BR country" comment="source lacnic 20141007"
add address=131.161.252.0/22 list="PY country" comment="source lacnic 20141010"
add address=131.178.0.0/16 list="MX country" comment="source lacnic 19881220"
add address=131.221.0.0/22 list="AR country" comment="source lacnic 20141010"
add address=131.221.4.0/22 list="DO country" comment="source lacnic 20141014"
add address=131.221.8.0/22 list="HN country" comment="source lacnic 20141003"
add address=131.221.12.0/22 list="BR country" comment="source lacnic 20141003"
add address=131.221.16.0/22 list="AR country" comment="source lacnic 20141020"
add address=131.221.20.0/22 list="BR country" comment="source lacnic 20141016"
add address=131.221.24.0/22 list="PA country" comment="source lacnic 20141006"
add address=131.221.28.0/22 list="TT country" comment="source lacnic 20141022"
add address=131.221.32.0/22 list="CL country" comment="source lacnic 20141104"
add address=131.221.36.0/22 list="BR country" comment="source lacnic 20141014"
add address=131.221.40.0/22 list="CO country" comment="source lacnic 20141007"
add address=131.221.44.0/22 list="BR country" comment="source lacnic 20141014"
add address=131.221.48.0/22 list="BR country" comment="source lacnic 20141015"
add address=131.221.52.0/22 list="BR country" comment="source lacnic 20141007"
add address=131.221.56.0/22 list="BR country" comment="source lacnic 20141008"
add address=131.221.60.0/22 list="BR country" comment="source lacnic 20141016"
add address=131.221.64.0/22 list="AR country" comment="source lacnic 20141008"
add address=131.221.68.0/22 list="BR country" comment="source lacnic 20141009"
add address=131.221.72.0/22 list="BR country" comment="source lacnic 20141009"
add address=131.221.76.0/22 list="BR country" comment="source lacnic 20141010"
add address=131.221.80.0/22 list="BR country" comment="source lacnic 20141017"
add address=131.221.84.0/22 list="BR country" comment="source lacnic 20141010"
add address=131.221.88.0/22 list="BR country" comment="source lacnic 20141013"
add address=131.221.92.0/22 list="BR country" comment="source lacnic 20141013"
add address=131.221.96.0/22 list="BR country" comment="source lacnic 20141017"
add address=131.221.100.0/22 list="BR country" comment="source lacnic 20141015"
add address=131.221.104.0/22 list="BR country" comment="source lacnic 20141015"
add address=131.221.108.0/22 list="BR country" comment="source lacnic 20141021"
add address=131.221.112.0/22 list="VE country" comment="source lacnic 20141105"
add address=131.221.116.0/22 list="BR country" comment="source lacnic 20141014"
add address=131.221.120.0/22 list="BR country" comment="source lacnic 20141016"
add address=131.221.124.0/22 list="BR country" comment="source lacnic 20141022"
add address=131.221.128.0/22 list="BR country" comment="source lacnic 20141016"
add address=131.221.132.0/22 list="BR country" comment="source lacnic 20141022"
add address=131.221.136.0/22 list="BR country" comment="source lacnic 20141015"
add address=131.221.140.0/22 list="BR country" comment="source lacnic 20141016"
add address=131.221.144.0/22 list="CW country" comment="source lacnic 20141015"
add address=131.221.148.0/22 list="BR country" comment="source lacnic 20141023"
add address=131.221.152.0/22 list="PE country" comment="source lacnic 20141015"
add address=131.221.156.0/22 list="BR country" comment="source lacnic 20141017"
add address=131.221.160.0/22 list="BR country" comment="source lacnic 20141023"
add address=131.221.164.0/22 list="CL country" comment="source lacnic 20141016"
add address=131.221.168.0/22 list="BR country" comment="source lacnic 20141024"
add address=131.221.172.0/22 list="BR country" comment="source lacnic 20141020"
add address=131.221.176.0/22 list="BR country" comment="source lacnic 20141024"
add address=131.221.180.0/22 list="BR country" comment="source lacnic 20141017"
add address=131.221.184.0/22 list="BR country" comment="source lacnic 20141021"
add address=131.221.188.0/22 list="BR country" comment="source lacnic 20141021"
add address=131.221.192.0/22 list="BR country" comment="source lacnic 20141027"
add address=131.221.196.0/22 list="BR country" comment="source lacnic 20141022"
add address=131.221.200.0/22 list="BR country" comment="source lacnic 20141020"
add address=131.221.204.0/22 list="BR country" comment="source lacnic 20141027"
add address=131.221.208.0/22 list="BR country" comment="source lacnic 20141022"
add address=131.221.212.0/22 list="BR country" comment="source lacnic 20141022"
add address=131.221.216.0/22 list="BR country" comment="source lacnic 20141020"
add address=131.221.220.0/22 list="BR country" comment="source lacnic 20141023"
add address=131.221.224.0/22 list="BR country" comment="source lacnic 20141027"
add address=131.221.228.0/22 list="BR country" comment="source lacnic 20141028"
add address=131.221.232.0/22 list="BR country" comment="source lacnic 20141106"
add address=131.221.236.0/22 list="BR country" comment="source lacnic 20141024"
add address=131.221.240.0/22 list="BR country" comment="source lacnic 20141021"
add address=131.221.244.0/22 list="BR country" comment="source lacnic 20141024"
add address=131.221.248.0/22 list="BR country" comment="source lacnic 20141024"
add address=131.221.252.0/22 list="BR country" comment="source lacnic 20141022"
add address=131.255.0.0/22 list="BR country" comment="source lacnic 20141027"
add address=131.255.4.0/22 list="AR country" comment="source lacnic 20141022"
add address=131.255.8.0/22 list="BR country" comment="source lacnic 20141023"
add address=131.255.12.0/22 list="AR country" comment="source lacnic 20141022"
add address=131.255.16.0/22 list="BR country" comment="source lacnic 20141029"
add address=131.255.20.0/22 list="BR country" comment="source lacnic 20141023"
add address=131.255.24.0/22 list="BR country" comment="source lacnic 20141023"
add address=131.255.28.0/22 list="BR country" comment="source lacnic 20141030"
add address=131.255.32.0/22 list="BR country" comment="source lacnic 20141031"
add address=131.255.36.0/22 list="BR country" comment="source lacnic 20141031"
add address=131.255.40.0/22 list="BZ country" comment="source lacnic 20141121"
add address=131.255.44.0/22 list="BR country" comment="source lacnic 20141028"
add address=131.255.48.0/22 list="BR country" comment="source lacnic 20141029"
add address=131.255.52.0/22 list="BR country" comment="source lacnic 20141113"
add address=131.255.56.0/22 list="BR country" comment="source lacnic 20141029"
add address=131.255.60.0/22 list="AR country" comment="source lacnic 20141029"
add address=131.255.64.0/22 list="BR country" comment="source lacnic 20141112"
add address=131.255.68.0/22 list="BR country" comment="source lacnic 20141112"
add address=131.255.72.0/22 list="BR country" comment="source lacnic 20141217"
add address=131.255.76.0/22 list="BR country" comment="source lacnic 20141216"
add address=131.255.80.0/22 list="BR country" comment="source lacnic 20141113"
add address=131.255.84.0/22 list="BR country" comment="source lacnic 20141113"
add address=131.255.88.0/22 list="BR country" comment="source lacnic 20141124"
add address=131.255.92.0/22 list="BR country" comment="source lacnic 20141117"
add address=131.255.96.0/22 list="BR country" comment="source lacnic 20141128"
add address=131.255.100.0/22 list="BR country" comment="source lacnic 20141114"
add address=131.255.104.0/22 list="VE country" comment="source lacnic 20141117"
add address=131.255.108.0/22 list="BR country" comment="source lacnic 20141124"
add address=131.255.112.0/22 list="BR country" comment="source lacnic 20141125"
add address=131.255.116.0/22 list="BR country" comment="source lacnic 20141118"
add address=131.255.120.0/22 list="BR country" comment="source lacnic 20141118"
add address=131.255.124.0/22 list="BR country" comment="source lacnic 20141118"
add address=131.255.128.0/22 list="BR country" comment="source lacnic 20141117"
add address=131.255.132.0/22 list="BR country" comment="source lacnic 20141124"
add address=131.255.136.0/22 list="PE country" comment="source lacnic 20141201"
add address=131.255.140.0/22 list="BR country" comment="source lacnic 20141125"
add address=131.255.144.0/22 list="BR country" comment="source lacnic 20141124"
add address=131.255.148.0/22 list="BR country" comment="source lacnic 20141211"
add address=131.255.152.0/22 list="BR country" comment="source lacnic 20141125"
add address=131.255.156.0/22 list="BR country" comment="source lacnic 20141203"
add address=131.255.160.0/22 list="BR country" comment="source lacnic 20141127"
add address=131.255.164.0/22 list="BR country" comment="source lacnic 20141217"
add address=131.255.168.0/22 list="BR country" comment="source lacnic 20141126"
add address=131.255.172.0/22 list="BR country" comment="source lacnic 20141126"
add address=131.255.176.0/22 list="BR country" comment="source lacnic 20141201"
add address=131.255.180.0/22 list="AR country" comment="source lacnic 20141211"
add address=131.255.184.0/22 list="BR country" comment="source lacnic 20141202"
add address=131.255.188.0/22 list="BR country" comment="source lacnic 20141208"
add address=131.255.192.0/22 list="PE country" comment="source lacnic 20141201"
add address=131.255.196.0/22 list="BR country" comment="source lacnic 20141201"
add address=131.255.200.0/22 list="BR country" comment="source lacnic 20141201"
add address=131.255.204.0/22 list="BR country" comment="source lacnic 20141202"
add address=131.255.208.0/22 list="BR country" comment="source lacnic 20141211"
add address=131.255.212.0/22 list="BR country" comment="source lacnic 20141208"
add address=131.255.216.0/22 list="BR country" comment="source lacnic 20141203"
add address=131.255.220.0/22 list="BR country" comment="source lacnic 20141208"
add address=131.255.224.0/22 list="BR country" comment="source lacnic 20141204"
add address=131.255.228.0/22 list="BR country" comment="source lacnic 20141210"
add address=131.255.232.0/22 list="BR country" comment="source lacnic 20141203"
add address=131.255.236.0/22 list="BR country" comment="source lacnic 20141203"
add address=131.255.240.0/22 list="BR country" comment="source lacnic 20141210"
add address=131.255.244.0/22 list="BR country" comment="source lacnic 20141204"
add address=131.255.248.0/22 list="AR country" comment="source lacnic 20141204"
add address=131.255.252.0/22 list="BR country" comment="source lacnic 20141211"
add address=132.157.0.0/16 list="PE country" comment="source lacnic 20140610"
add address=132.184.0.0/16 list="PE country" comment="source lacnic 20140610"
add address=132.191.0.0/16 list="PE country" comment="source lacnic 20140610"
add address=132.247.0.0/16 list="MX country" comment="source lacnic 19890331"
add address=132.248.0.0/16 list="MX country" comment="source lacnic 19890331"
add address=132.251.0.0/17 list="PE country" comment="source lacnic 20140610"
add address=132.251.128.0/18 list="PE country" comment="source lacnic 20140610"
add address=132.251.192.0/19 list="PE country" comment="source lacnic 20140610"
add address=132.251.224.0/19 list="BO country" comment="source lacnic 20140610"
add address=132.254.0.0/16 list="MX country" comment="source lacnic 19890406"
add address=132.255.0.0/22 list="PE country" comment="source lacnic 20141112"
add address=132.255.4.0/22 list="AR country" comment="source lacnic 20141027"
add address=132.255.8.0/22 list="AR country" comment="source lacnic 20141112"
add address=132.255.12.0/22 list="BR country" comment="source lacnic 20141028"
add address=132.255.16.0/22 list="BR country" comment="source lacnic 20141030"
add address=132.255.20.0/22 list="CO country" comment="source lacnic 20141030"
add address=132.255.24.0/22 list="BR country" comment="source lacnic 20141030"
add address=132.255.28.0/22 list="BR country" comment="source lacnic 20141111"
add address=132.255.32.0/22 list="BR country" comment="source lacnic 20141104"
add address=132.255.36.0/22 list="BR country" comment="source lacnic 20141105"
add address=132.255.40.0/22 list="BR country" comment="source lacnic 20141103"
add address=132.255.44.0/22 list="BR country" comment="source lacnic 20141107"
add address=132.255.48.0/22 list="BR country" comment="source lacnic 20141104"
add address=132.255.52.0/22 list="BR country" comment="source lacnic 20141112"
add address=132.255.56.0/22 list="BR country" comment="source lacnic 20141104"
add address=132.255.60.0/22 list="BR country" comment="source lacnic 20141104"
add address=132.255.64.0/22 list="BR country" comment="source lacnic 20141104"
add address=132.255.68.0/22 list="CL country" comment="source lacnic 20141104"
add address=132.255.72.0/22 list="BR country" comment="source lacnic 20141112"
add address=132.255.76.0/22 list="BR country" comment="source lacnic 20141106"
add address=132.255.80.0/22 list="BR country" comment="source lacnic 20141112"
add address=132.255.84.0/22 list="BR country" comment="source lacnic 20141107"
add address=132.255.88.0/22 list="BR country" comment="source lacnic 20141114"
add address=132.255.92.0/22 list="BR country" comment="source lacnic 20141110"
add address=132.255.96.0/22 list="BR country" comment="source lacnic 20141106"
add address=132.255.100.0/22 list="BR country" comment="source lacnic 20141110"
add address=132.255.104.0/22 list="BR country" comment="source lacnic 20141107"
add address=132.255.108.0/22 list="BR country" comment="source lacnic 20141118"
add address=132.255.112.0/22 list="AR country" comment="source lacnic 20141111"
add address=132.255.116.0/22 list="BR country" comment="source lacnic 20141114"
add address=132.255.120.0/22 list="BR country" comment="source lacnic 20141112"
add address=132.255.124.0/22 list="MX country" comment="source lacnic 20141121"
add address=132.255.128.0/22 list="BR country" comment="source lacnic 20141211"
add address=132.255.140.0/22 list="BR country" comment="source lacnic 20141205"
add address=132.255.144.0/22 list="BR country" comment="source lacnic 20141208"
add address=132.255.148.0/22 list="BR country" comment="source lacnic 20141208"
add address=132.255.152.0/22 list="BR country" comment="source lacnic 20141212"
add address=132.255.160.0/22 list="BR country" comment="source lacnic 20141216"
add address=132.255.168.0/22 list="BR country" comment="source lacnic 20141212"
add address=132.255.172.0/22 list="BR country" comment="source lacnic 20141216"
add address=132.255.176.0/22 list="BR country" comment="source lacnic 20141209"
add address=132.255.180.0/22 list="BR country" comment="source lacnic 20141209"
add address=132.255.184.0/22 list="BR country" comment="source lacnic 20141212"
add address=132.255.188.0/22 list="BR country" comment="source lacnic 20141210"
add address=132.255.192.0/22 list="BR country" comment="source lacnic 20141212"
add address=132.255.196.0/22 list="BR country" comment="source lacnic 20141215"
add address=132.255.204.0/22 list="BR country" comment="source lacnic 20141218"
add address=132.255.208.0/22 list="SV country" comment="source lacnic 20141218"
add address=132.255.212.0/22 list="BR country" comment="source lacnic 20141217"
add address=132.255.216.0/22 list="BR country" comment="source lacnic 20141215"
add address=132.255.220.0/22 list="BR country" comment="source lacnic 20141215"
add address=132.255.224.0/22 list="AR country" comment="source lacnic 20141212"
add address=132.255.228.0/22 list="BR country" comment="source lacnic 20141212"
add address=132.255.236.0/22 list="CL country" comment="source lacnic 20141212"
add address=132.255.244.0/22 list="BR country" comment="source lacnic 20141216"
add address=132.255.248.0/22 list="BR country" comment="source lacnic 20141216"
add address=132.255.252.0/22 list="BR country" comment="source lacnic 20141215"
add address=138.0.0.0/22 list="BR country" comment="source lacnic 20141217"
add address=138.0.4.0/22 list="BR country" comment="source lacnic 20141218"
add address=138.0.8.0/22 list="AR country" comment="source lacnic 20141215"
add address=138.0.16.0/22 list="BR country" comment="source lacnic 20141216"
add address=138.0.20.0/22 list="BR country" comment="source lacnic 20141218"
add address=138.0.28.0/22 list="BR country" comment="source lacnic 20141218"
add address=138.0.32.0/22 list="BR country" comment="source lacnic 20141216"
add address=138.0.36.0/22 list="BR country" comment="source lacnic 20141218"
add address=138.0.40.0/22 list="VE country" comment="source lacnic 20141216"
add address=138.0.44.0/22 list="BR country" comment="source lacnic 20141216"
add address=138.0.52.0/22 list="BR country" comment="source lacnic 20141217"
add address=138.0.56.0/22 list="AR country" comment="source lacnic 20141216"
add address=138.0.64.0/22 list="BR country" comment="source lacnic 20141217"
add address=138.0.72.0/22 list="BR country" comment="source lacnic 20141218"
add address=139.82.0.0/16 list="BR country" comment="source lacnic 19900212"
add address=140.148.0.0/16 list="MX country" comment="source lacnic 19900426"
add address=140.191.0.0/16 list="AR country" comment="source lacnic 19900523"
add address=143.54.0.0/16 list="BR country" comment="source lacnic 19900828"
add address=143.106.0.0/16 list="BR country" comment="source lacnic 19900326"
add address=143.107.0.0/16 list="BR country" comment="source lacnic 19900326"
add address=143.108.0.0/16 list="BR country" comment="source lacnic 19900326"
add address=144.22.0.0/16 list="CR country" comment="source lacnic 19901106"
add address=144.23.0.0/16 list="CR country" comment="source lacnic 19901106"
add address=146.83.0.0/16 list="CL country" comment="source lacnic 19910128"
add address=146.134.0.0/16 list="BR country" comment="source lacnic 19910208"
add address=146.155.0.0/16 list="CL country" comment="source lacnic 19910215"
add address=146.164.0.0/16 list="BR country" comment="source lacnic 19910215"
add address=147.65.0.0/16 list="BR country" comment="source lacnic 19910705"
add address=148.0.0.0/16 list="DO country" comment="source lacnic 20140414"
add address=148.101.0.0/16 list="DO country" comment="source lacnic 20140414"
add address=148.102.0.0/17 list="PE country" comment="source lacnic 20140422"
add address=148.102.128.0/17 list="HT country" comment="source lacnic 20140508"
add address=148.103.0.0/16 list="DO country" comment="source lacnic 20140527"
add address=148.201.0.0/16 list="MX country" comment="source lacnic 19910607"
add address=148.202.0.0/16 list="MX country" comment="source lacnic 19920810"
add address=148.203.0.0/16 list="MX country" comment="source lacnic 19941020"
add address=148.204.0.0/16 list="MX country" comment="source lacnic 19920624"
add address=148.205.0.0/16 list="MX country" comment="source lacnic 19920519"
add address=148.206.0.0/16 list="MX country" comment="source lacnic 19920604"
add address=148.207.0.0/16 list="MX country" comment="source lacnic 19921123"
add address=148.208.0.0/16 list="MX country" comment="source lacnic 19990903"
add address=148.209.0.0/16 list="MX country" comment="source lacnic 19931129"
add address=148.210.0.0/16 list="MX country" comment="source lacnic 19921123"
add address=148.211.0.0/16 list="MX country" comment="source lacnic 19930326"
add address=148.212.0.0/16 list="MX country" comment="source lacnic 19920819"
add address=148.213.0.0/16 list="MX country" comment="source lacnic 19930326"
add address=148.214.0.0/16 list="MX country" comment="source lacnic 19921221"
add address=148.215.0.0/16 list="MX country" comment="source lacnic 19940718"
add address=148.216.0.0/16 list="MX country" comment="source lacnic 19930813"
add address=148.217.0.0/16 list="MX country" comment="source lacnic 19930326"
add address=148.218.0.0/16 list="MX country" comment="source lacnic 19941117"
add address=148.219.0.0/16 list="MX country" comment="source lacnic 19931129"
add address=148.220.0.0/16 list="MX country" comment="source lacnic 19931206"
add address=148.221.0.0/16 list="MX country" comment="source lacnic 20001010"
add address=148.222.0.0/16 list="MX country" comment="source lacnic 19921221"
add address=148.223.0.0/16 list="MX country" comment="source lacnic 20000410"
add address=148.224.0.0/16 list="MX country" comment="source lacnic 19930521"
add address=148.225.0.0/16 list="MX country" comment="source lacnic 19980710"
add address=148.226.0.0/16 list="MX country" comment="source lacnic 19930406"
add address=148.227.0.0/16 list="MX country" comment="source lacnic 19990121"
add address=148.228.0.0/16 list="MX country" comment="source lacnic 19930326"
add address=148.229.0.0/16 list="MX country" comment="source lacnic 19930416"
add address=148.230.0.0/16 list="MX country" comment="source lacnic 20000605"
add address=148.231.0.0/16 list="MX country" comment="source lacnic 19930326"
add address=148.232.0.0/16 list="MX country" comment="source lacnic 19940801"
add address=148.233.0.0/16 list="MX country" comment="source lacnic 19980620"
add address=148.234.0.0/16 list="MX country" comment="source lacnic 19931029"
add address=148.235.0.0/16 list="MX country" comment="source lacnic 19990830"
add address=148.236.0.0/16 list="MX country" comment="source lacnic 19921221"
add address=148.237.0.0/16 list="MX country" comment="source lacnic 19940510"
add address=148.238.0.0/16 list="MX country" comment="source lacnic 19930416"
add address=148.239.0.0/16 list="MX country" comment="source lacnic 19930127"
add address=148.240.0.0/16 list="MX country" comment="source lacnic 20000314"
add address=148.241.0.0/16 list="MX country" comment="source lacnic 19921208"
add address=148.242.0.0/16 list="MX country" comment="source lacnic 20001010"
add address=148.243.0.0/16 list="MX country" comment="source lacnic 19990902"
add address=148.244.0.0/16 list="MX country" comment="source lacnic 19990426"
add address=148.245.0.0/16 list="MX country" comment="source lacnic 19980622"
add address=148.246.0.0/16 list="MX country" comment="source lacnic 20110920"
add address=148.247.0.0/16 list="MX country" comment="source lacnic 19930310"
add address=148.248.0.0/16 list="MX country" comment="source lacnic 19940901"
add address=148.249.0.0/16 list="MX country" comment="source lacnic 19930428"
add address=148.250.0.0/16 list="MX country" comment="source lacnic 20091123"
add address=148.255.0.0/16 list="DO country" comment="source lacnic 20140414"
add address=150.161.0.0/16 list="BR country" comment="source lacnic 19910520"
add address=150.162.0.0/16 list="BR country" comment="source lacnic 19910520"
add address=150.163.0.0/16 list="BR country" comment="source lacnic 19910520"
add address=150.164.0.0/16 list="BR country" comment="source lacnic 19910520"
add address=150.165.0.0/16 list="BR country" comment="source lacnic 19930607"
add address=150.185.0.0/16 list="VE country" comment="source lacnic 19910530"
add address=150.186.0.0/15 list="VE country" comment="source lacnic 19910530"
add address=150.188.0.0/15 list="VE country" comment="source lacnic 19910530"
add address=152.0.0.0/16 list="DO country" comment="source lacnic 20140414"
add address=152.74.0.0/16 list="CL country" comment="source lacnic 19910827"
add address=152.84.0.0/16 list="BR country" comment="source lacnic 19910828"
add address=152.92.0.0/16 list="BR country" comment="source lacnic 19910902"
add address=152.139.0.0/16 list="CL country" comment="source lacnic 19910821"
add address=152.156.0.0/16 list="UY country" comment="source lacnic 20140422"
add address=152.166.0.0/15 list="DO country" comment="source lacnic 20140528"
add address=152.168.0.0/14 list="AR country" comment="source lacnic 20140422"
add address=152.172.0.0/14 list="CL country" comment="source lacnic 20140523"
add address=152.200.0.0/14 list="CO country" comment="source lacnic 20140514"
add address=152.204.0.0/15 list="CO country" comment="source lacnic 20140514"
add address=152.206.0.0/15 list="CU country" comment="source lacnic 20140604"
add address=152.230.0.0/16 list="CL country" comment="source lacnic 20140505"
add address=152.231.0.0/20 list="HN country" comment="source lacnic 20140512"
add address=152.231.16.0/21 list="AR country" comment="source lacnic 20140513"
add address=152.231.24.0/21 list="CO country" comment="source lacnic 20140515"
add address=152.231.32.0/20 list="NI country" comment="source lacnic 20140519"
add address=152.231.48.0/20 list="AR country" comment="source lacnic 20140514"
add address=152.231.64.0/18 list="CL country" comment="source lacnic 20140613"
add address=152.231.128.0/17 list="CR country" comment="source lacnic 20140611"
add address=152.232.0.0/13 list="BR country" comment="source lacnic 20140515"
add address=152.240.0.0/12 list="BR country" comment="source lacnic 20140424"
add address=155.211.0.0/16 list="BR country" comment="source lacnic 19911126"
add address=156.97.0.0/16 list="CL country" comment="source lacnic 19911223"
add address=157.86.0.0/16 list="BR country" comment="source lacnic 19911216"
add address=157.92.0.0/16 list="AR country" comment="source lacnic 19911217"
add address=157.100.0.0/16 list="EC country" comment="source lacnic 19911219"
add address=157.253.0.0/16 list="CO country" comment="source lacnic 19920208"
add address=158.97.0.0/16 list="MX country" comment="source lacnic 19920220"
add address=158.160.0.0/16 list="VE country" comment="source lacnic 19920317"
add address=158.170.0.0/16 list="CL country" comment="source lacnic 19920319"
add address=158.251.0.0/16 list="CL country" comment="source lacnic 19920414"
add address=159.16.0.0/16 list="MX country" comment="source lacnic 19911125"
add address=159.90.0.0/16 list="VE country" comment="source lacnic 19920330"
add address=161.0.0.0/19 list="HN country" comment="source lacnic 20140325"
add address=161.0.32.0/19 list="NI country" comment="source lacnic 20140328"
add address=161.0.64.0/22 list="AR country" comment="source lacnic 20140331"
add address=161.0.68.0/22 list="HN country" comment="source lacnic 20140422"
add address=161.0.72.0/21 list="AR country" comment="source lacnic 20140401"
add address=161.0.80.0/20 list="BQ country" comment="source lacnic 20140402"
add address=161.0.96.0/20 list="CW country" comment="source lacnic 20140402"
add address=161.0.112.0/21 list="TT country" comment="source lacnic 20140409"
add address=161.0.120.0/21 list="UY country" comment="source lacnic 20140414"
add address=161.0.128.0/19 list="HT country" comment="source lacnic 20140410"
add address=161.0.160.0/20 list="CL country" comment="source lacnic 20140411"
add address=161.0.176.0/21 list="AR country" comment="source lacnic 20140415"
add address=161.0.184.0/21 list="CL country" comment="source lacnic 20140424"
add address=161.0.192.0/19 list="HN country" comment="source lacnic 20140407"
add address=161.0.224.0/19 list="TT country" comment="source lacnic 20140404"
add address=161.10.0.0/16 list="CO country" comment="source lacnic 20140414"
add address=161.18.0.0/16 list="CO country" comment="source lacnic 20140414"
add address=161.22.0.0/19 list="AR country" comment="source lacnic 20140414"
add address=161.22.32.0/20 list="VE country" comment="source lacnic 20140422"
add address=161.22.48.0/21 list="CW country" comment="source lacnic 20140616"
add address=161.22.56.0/21 list="BR country" comment="source lacnic 20140617"
add address=161.22.64.0/18 list="GF country" comment="source lacnic 20140422"
add address=161.22.128.0/17 list="BO country" comment="source lacnic 20140408"
add address=161.24.0.0/16 list="BR country" comment="source lacnic 19920501"
add address=161.25.0.0/16 list="CL country" comment="source lacnic 19920504"
add address=161.56.0.0/16 list="BO country" comment="source lacnic 20140408"
add address=161.79.0.0/16 list="BR country" comment="source lacnic 19920622"
add address=161.131.0.0/16 list="CL country" comment="source lacnic 19920820"
add address=161.132.0.0/16 list="PE country" comment="source lacnic 19920824"
add address=161.138.0.0/16 list="BO country" comment="source lacnic 20140408"
add address=161.140.0.0/16 list="VE country" comment="source lacnic 20140404"
add address=161.148.0.0/16 list="BR country" comment="source lacnic 19921201"
add address=161.190.0.0/16 list="AR country" comment="source lacnic 19930121"
add address=161.196.0.0/16 list="VE country" comment="source lacnic 19930127"
add address=161.212.0.0/16 list="VE country" comment="source lacnic 20140404"
add address=161.234.0.0/16 list="VE country" comment="source lacnic 20140404"
add address=161.238.0.0/16 list="CL country" comment="source lacnic 19930323"
add address=161.255.0.0/16 list="VE country" comment="source lacnic 20140404"
add address=162.122.0.0/16 list="VE country" comment="source lacnic 19921106"
add address=163.10.0.0/16 list="AR country" comment="source lacnic 19920701"
add address=163.178.0.0/16 list="CR country" comment="source lacnic 19920807"
add address=163.247.0.0/16 list="CL country" comment="source lacnic 19920930"
add address=163.250.0.0/16 list="CL country" comment="source lacnic 19921008"
add address=164.41.0.0/16 list="BR country" comment="source lacnic 19921027"
add address=164.73.0.0/16 list="UY country" comment="source lacnic 19921217"
add address=164.77.0.0/16 list="CL country" comment="source lacnic 19921223"
add address=164.85.0.0/16 list="BR country" comment="source lacnic 19930112"
add address=164.96.0.0/16 list="CL country" comment="source lacnic 19930129"
add address=164.98.0.0/16 list="CL country" comment="source lacnic 19930202"
add address=165.98.0.0/16 list="NI country" comment="source lacnic 19930511"
add address=165.182.0.0/16 list="CL country" comment="source lacnic 19930726"
add address=165.183.0.0/16 list="CL country" comment="source lacnic 19930726"
add address=166.75.0.0/16 list="CL country" comment="source lacnic 19931102"
add address=166.110.0.0/16 list="CL country" comment="source lacnic 19931207"
add address=166.114.0.0/16 list="BO country" comment="source lacnic 19931214"
add address=167.0.0.0/16 list="CO country" comment="source lacnic 20140414"
add address=167.28.0.0/16 list="CL country" comment="source lacnic 19930429"
add address=167.56.0.0/13 list="UY country" comment="source lacnic 20140331"
add address=167.108.0.0/16 list="UY country" comment="source lacnic 20140331"
add address=167.116.0.0/16 list="UY country" comment="source lacnic 20140331"
add address=167.134.0.0/16 list="VE country" comment="source lacnic 19930712"
add address=167.157.0.0/16 list="BO country" comment="source lacnic 19930809"
add address=167.252.0.0/16 list="AR country" comment="source lacnic 19931126"
add address=168.77.0.0/16 list="PA country" comment="source lacnic 19940210"
add address=168.83.0.0/16 list="AR country" comment="source lacnic 19940223"
add address=168.96.0.0/16 list="AR country" comment="source lacnic 19940303"
add address=168.101.0.0/16 list="AR country" comment="source lacnic 19940307"
add address=168.165.0.0/16 list="MX country" comment="source lacnic 19940923"
add address=168.176.0.0/16 list="CO country" comment="source lacnic 19941013"
add address=168.226.0.0/16 list="AR country" comment="source lacnic 19940822"
add address=168.231.0.0/16 list="CL country" comment="source lacnic 19940825"
add address=168.234.0.0/16 list="GT country" comment="source lacnic 19940829"
add address=168.243.0.0/16 list="SV country" comment="source lacnic 19940920"
add address=168.255.0.0/16 list="MX country" comment="source lacnic 19941025"
add address=169.158.0.0/16 list="CU country" comment="source lacnic 19950112"
add address=170.18.0.0/16 list="CL country" comment="source lacnic 19931227"
add address=170.25.0.0/16 list="MX country" comment="source lacnic 19940113"
add address=170.51.0.0/16 list="AR country" comment="source lacnic 19940210"
add address=170.66.0.0/16 list="BR country" comment="source lacnic 19940224"
add address=170.70.0.0/16 list="MX country" comment="source lacnic 19940303"
add address=170.155.0.0/16 list="AR country" comment="source lacnic 19940603"
add address=170.169.0.0/16 list="MX country" comment="source lacnic 19940726"
add address=170.210.0.0/16 list="AR country" comment="source lacnic 19950124"
add address=177.0.0.0/14 list="BR country" comment="source lacnic 20101104"
add address=177.4.0.0/14 list="BR country" comment="source lacnic 20101104"
add address=177.8.0.0/20 list="BR country" comment="source lacnic 20101116"
add address=177.8.16.0/20 list="BR country" comment="source lacnic 20110509"
add address=177.8.32.0/20 list="BR country" comment="source lacnic 20101117"
add address=177.8.48.0/21 list="BR country" comment="source lacnic 20120604"
add address=177.8.56.0/21 list="BR country" comment="source lacnic 20130801"
add address=177.8.64.0/20 list="BR country" comment="source lacnic 20101123"
add address=177.8.80.0/20 list="BR country" comment="source lacnic 20120604"
add address=177.8.96.0/20 list="BR country" comment="source lacnic 20101123"
add address=177.8.112.0/20 list="BR country" comment="source lacnic 20120605"
add address=177.8.128.0/20 list="BR country" comment="source lacnic 20101124"
add address=177.8.144.0/21 list="BR country" comment="source lacnic 20120605"
add address=177.8.152.0/22 list="BR country" comment="source lacnic 20130808"
add address=177.8.156.0/22 list="BR country" comment="source lacnic 20140422"
add address=177.8.160.0/20 list="BR country" comment="source lacnic 20101130"
add address=177.8.176.0/20 list="BR country" comment="source lacnic 20101201"
add address=177.8.192.0/20 list="BR country" comment="source lacnic 20101201"
add address=177.8.208.0/21 list="BR country" comment="source lacnic 20120605"
add address=177.8.216.0/22 list="BR country" comment="source lacnic 20130808"
add address=177.8.220.0/22 list="BR country" comment="source lacnic 20140514"
add address=177.8.224.0/20 list="BR country" comment="source lacnic 20101202"
add address=177.8.240.0/21 list="BR country" comment="source lacnic 20120606"
add address=177.8.248.0/22 list="BR country" comment="source lacnic 20130814"
add address=177.8.252.0/22 list="BR country" comment="source lacnic 20131014"
add address=177.9.0.0/16 list="BR country" comment="source lacnic 20101124"
add address=177.10.0.0/21 list="BR country" comment="source lacnic 20101129"
add address=177.10.8.0/21 list="BR country" comment="source lacnic 20110531"
add address=177.10.16.0/22 list="BR country" comment="source lacnic 20101129"
add address=177.10.20.0/22 list="BR country" comment="source lacnic 20120801"
add address=177.10.24.0/22 list="BR country" comment="source lacnic 20101129"
add address=177.10.28.0/22 list="BR country" comment="source lacnic 20111104"
add address=177.10.32.0/21 list="BR country" comment="source lacnic 20101130"
add address=177.10.40.0/22 list="BR country" comment="source lacnic 20120529"
add address=177.10.44.0/22 list="BR country" comment="source lacnic 20130822"
add address=177.10.48.0/22 list="BR country" comment="source lacnic 20101130"
add address=177.10.52.0/22 list="BR country" comment="source lacnic 20120523"
add address=177.10.56.0/22 list="BR country" comment="source lacnic 20101206"
add address=177.10.60.0/22 list="BR country" comment="source lacnic 20120409"
add address=177.10.64.0/21 list="BR country" comment="source lacnic 20101206"
add address=177.10.72.0/22 list="BR country" comment="source lacnic 20120529"
add address=177.10.76.0/22 list="BR country" comment="source lacnic 20130822"
add address=177.10.80.0/21 list="BR country" comment="source lacnic 20101206"
add address=177.10.88.0/22 list="BR country" comment="source lacnic 20120529"
add address=177.10.92.0/22 list="BR country" comment="source lacnic 20130826"
add address=177.10.96.0/21 list="BR country" comment="source lacnic 20101206"
add address=177.10.104.0/21 list="BR country" comment="source lacnic 20111025"
add address=177.10.112.0/22 list="BR country" comment="source lacnic 20101207"
add address=177.10.116.0/22 list="BR country" comment="source lacnic 20120801"
add address=177.10.120.0/22 list="BR country" comment="source lacnic 20101207"
add address=177.10.124.0/22 list="BR country" comment="source lacnic 20120801"
add address=177.10.128.0/22 list="BR country" comment="source lacnic 20101208"
add address=177.10.132.0/22 list="BR country" comment="source lacnic 20120801"
add address=177.10.136.0/22 list="BR country" comment="source lacnic 20101209"
add address=177.10.140.0/22 list="BR country" comment="source lacnic 20120808"
add address=177.10.144.0/21 list="BR country" comment="source lacnic 20101210"
add address=177.10.152.0/22 list="BR country" comment="source lacnic 20120531"
add address=177.10.156.0/22 list="BR country" comment="source lacnic 20130829"
add address=177.10.160.0/21 list="BR country" comment="source lacnic 20101213"
add address=177.10.168.0/22 list="BR country" comment="source lacnic 20120531"
add address=177.10.172.0/22 list="BR country" comment="source lacnic 20130830"
add address=177.10.176.0/22 list="BR country" comment="source lacnic 20101213"
add address=177.10.180.0/22 list="BR country" comment="source lacnic 20120815"
add address=177.10.184.0/22 list="BR country" comment="source lacnic 20101217"
add address=177.10.188.0/22 list="BR country" comment="source lacnic 20120813"
add address=177.10.192.0/21 list="BR country" comment="source lacnic 20101214"
add address=177.10.200.0/22 list="BR country" comment="source lacnic 20120604"
add address=177.10.204.0/22 list="BR country" comment="source lacnic 20130730"
add address=177.10.208.0/21 list="BR country" comment="source lacnic 20101215"
add address=177.10.216.0/22 list="BR country" comment="source lacnic 20120612"
add address=177.10.220.0/22 list="BR country" comment="source lacnic 20130830"
add address=177.10.224.0/21 list="BR country" comment="source lacnic 20101216"
add address=177.10.232.0/21 list="BR country" comment="source lacnic 20120613"
add address=177.10.240.0/21 list="BR country" comment="source lacnic 20101216"
add address=177.10.248.0/21 list="BR country" comment="source lacnic 20120622"
add address=177.11.0.0/21 list="BR country" comment="source lacnic 20101217"
add address=177.11.8.0/21 list="BR country" comment="source lacnic 20120627"
add address=177.11.16.0/22 list="BR country" comment="source lacnic 20101221"
add address=177.11.20.0/22 list="BR country" comment="source lacnic 20120713"
add address=177.11.24.0/22 list="BR country" comment="source lacnic 20101222"
add address=177.11.28.0/23 list="BR country" comment="source lacnic 20120806"
add address=177.11.30.0/24 list="BR country" comment="source lacnic 20120806"
add address=177.11.31.0/24 list="BR country" comment="source lacnic 20120831"
add address=177.11.32.0/21 list="BR country" comment="source lacnic 20101222"
add address=177.11.40.0/21 list="BR country" comment="source lacnic 20120627"
add address=177.11.48.0/22 list="BR country" comment="source lacnic 20101222"
add address=177.11.52.0/22 list="BR country" comment="source lacnic 20120822"
add address=177.11.56.0/22 list="BR country" comment="source lacnic 20101227"
add address=177.11.60.0/22 list="BR country" comment="source lacnic 20120815"
add address=177.11.64.0/21 list="BR country" comment="source lacnic 20101227"
add address=177.11.72.0/22 list="BR country" comment="source lacnic 20120712"
add address=177.11.76.0/22 list="BR country" comment="source lacnic 20130902"
add address=177.11.80.0/22 list="BR country" comment="source lacnic 20101228"
add address=177.11.84.0/22 list="BR country" comment="source lacnic 20120821"
add address=177.11.88.0/22 list="BR country" comment="source lacnic 20101228"
add address=177.11.92.0/22 list="BR country" comment="source lacnic 20120821"
add address=177.11.96.0/22 list="BR country" comment="source lacnic 20101230"
add address=177.11.100.0/22 list="BR country" comment="source lacnic 20120822"
add address=177.11.104.0/22 list="BR country" comment="source lacnic 20101230"
add address=177.11.108.0/22 list="BR country" comment="source lacnic 20120824"
add address=177.11.112.0/21 list="BR country" comment="source lacnic 20101230"
add address=177.11.120.0/21 list="BR country" comment="source lacnic 20120713"
add address=177.11.136.0/21 list="BR country" comment="source lacnic 20120723"
add address=177.11.144.0/21 list="BR country" comment="source lacnic 20110105"
add address=177.11.152.0/21 list="BR country" comment="source lacnic 20120724"
add address=177.11.160.0/21 list="BR country" comment="source lacnic 20110107"
add address=177.11.168.0/21 list="BR country" comment="source lacnic 20120725"
add address=177.11.176.0/21 list="BR country" comment="source lacnic 20110111"
add address=177.11.184.0/21 list="BR country" comment="source lacnic 20120725"
add address=177.11.192.0/21 list="BR country" comment="source lacnic 20110111"
add address=177.11.200.0/21 list="BR country" comment="source lacnic 20120112"
add address=177.11.208.0/22 list="BR country" comment="source lacnic 20110112"
add address=177.11.212.0/22 list="BR country" comment="source lacnic 20120824"
add address=177.11.216.0/22 list="BR country" comment="source lacnic 20110113"
add address=177.11.220.0/22 list="BR country" comment="source lacnic 20120827"
add address=177.11.224.0/21 list="BR country" comment="source lacnic 20110112"
add address=177.11.232.0/21 list="BR country" comment="source lacnic 20120726"
add address=177.11.240.0/22 list="BR country" comment="source lacnic 20110114"
add address=177.11.244.0/22 list="BR country" comment="source lacnic 20120829"
add address=177.11.248.0/22 list="BR country" comment="source lacnic 20110126"
add address=177.11.252.0/24 list="BR country" comment="source lacnic 20120831"
add address=177.11.253.0/24 list="BR country" comment="source lacnic 20121016"
add address=177.11.254.0/23 list="BR country" comment="source lacnic 20120919"
add address=177.12.0.0/18 list="BR country" comment="source lacnic 20101203"
add address=177.12.64.0/20 list="BR country" comment="source lacnic 20101206"
add address=177.12.80.0/21 list="BR country" comment="source lacnic 20120606"
add address=177.12.88.0/22 list="BR country" comment="source lacnic 20120914"
add address=177.12.92.0/22 list="BR country" comment="source lacnic 20130924"
add address=177.12.96.0/20 list="BR country" comment="source lacnic 20101207"
add address=177.12.112.0/20 list="BR country" comment="source lacnic 20110921"
add address=177.12.128.0/20 list="BR country" comment="source lacnic 20101207"
add address=177.12.144.0/20 list="BR country" comment="source lacnic 20120427"
add address=177.12.160.0/20 list="BR country" comment="source lacnic 20101210"
add address=177.12.176.0/20 list="BR country" comment="source lacnic 20120606"
add address=177.12.192.0/20 list="BR country" comment="source lacnic 20101214"
add address=177.12.208.0/20 list="BR country" comment="source lacnic 20101216"
add address=177.12.224.0/20 list="BR country" comment="source lacnic 20101216"
add address=177.12.240.0/20 list="BR country" comment="source lacnic 20101217"
add address=177.13.0.0/16 list="BR country" comment="source lacnic 20101207"
add address=177.14.0.0/15 list="BR country" comment="source lacnic 20101210"
add address=177.16.0.0/14 list="BR country" comment="source lacnic 20101207"
add address=177.20.0.0/17 list="BR country" comment="source lacnic 20101214"
add address=177.20.128.0/19 list="BR country" comment="source lacnic 20101215"
add address=177.20.160.0/20 list="BR country" comment="source lacnic 20101216"
add address=177.20.176.0/21 list="BR country" comment="source lacnic 20120606"
add address=177.20.184.0/21 list="BR country" comment="source lacnic 20130626"
add address=177.20.192.0/20 list="BR country" comment="source lacnic 20101220"
add address=177.20.208.0/20 list="BR country" comment="source lacnic 20101221"
add address=177.20.224.0/20 list="BR country" comment="source lacnic 20101222"
add address=177.20.240.0/20 list="BR country" comment="source lacnic 20110621"
add address=177.21.0.0/19 list="BR country" comment="source lacnic 20101222"
add address=177.21.32.0/20 list="BR country" comment="source lacnic 20101228"
add address=177.21.48.0/20 list="BR country" comment="source lacnic 20120614"
add address=177.21.64.0/20 list="BR country" comment="source lacnic 20101229"
add address=177.21.80.0/20 list="BR country" comment="source lacnic 20101230"
add address=177.21.96.0/20 list="BR country" comment="source lacnic 20101230"
add address=177.21.112.0/20 list="BR country" comment="source lacnic 20110408"
add address=177.21.128.0/20 list="BR country" comment="source lacnic 20101230"
add address=177.21.144.0/20 list="BR country" comment="source lacnic 20121023"
add address=177.21.160.0/19 list="BR country" comment="source lacnic 20101230"
add address=177.21.192.0/20 list="BR country" comment="source lacnic 20110103"
add address=177.21.208.0/20 list="BR country" comment="source lacnic 20110106"
add address=177.21.224.0/20 list="BR country" comment="source lacnic 20110106"
add address=177.21.240.0/20 list="BR country" comment="source lacnic 20111110"
add address=177.22.0.0/20 list="BR country" comment="source lacnic 20110113"
add address=177.22.16.0/20 list="BR country" comment="source lacnic 20110117"
add address=177.22.32.0/20 list="BR country" comment="source lacnic 20110118"
add address=177.22.48.0/20 list="BR country" comment="source lacnic 20110118"
add address=177.22.64.0/20 list="BR country" comment="source lacnic 20110118"
add address=177.22.80.0/20 list="BR country" comment="source lacnic 20120615"
add address=177.22.96.0/20 list="BR country" comment="source lacnic 20110121"
add address=177.22.112.0/21 list="BR country" comment="source lacnic 20110202"
add address=177.22.120.0/21 list="BR country" comment="source lacnic 20110202"
add address=177.22.128.0/19 list="BR country" comment="source lacnic 20110131"
add address=177.22.160.0/20 list="BR country" comment="source lacnic 20110131"
add address=177.22.176.0/21 list="BR country" comment="source lacnic 20120615"
add address=177.22.184.0/22 list="BR country" comment="source lacnic 20130802"
add address=177.22.188.0/22 list="BR country" comment="source lacnic 20140508"
add address=177.22.192.0/20 list="BR country" comment="source lacnic 20110203"
add address=177.22.208.0/20 list="BR country" comment="source lacnic 20110203"
add address=177.22.224.0/20 list="BR country" comment="source lacnic 20110204"
add address=177.22.240.0/21 list="BR country" comment="source lacnic 20120620"
add address=177.22.248.0/22 list="BR country" comment="source lacnic 20130802"
add address=177.22.252.0/23 list="BR country" comment="source lacnic 20140425"
add address=177.22.254.0/23 list="BR country" comment="source lacnic 20140521"
add address=177.23.0.0/21 list="BR country" comment="source lacnic 20110114"
add address=177.23.8.0/21 list="BR country" comment="source lacnic 20120615"
add address=177.23.16.0/22 list="BR country" comment="source lacnic 20110117"
add address=177.23.20.0/22 list="BR country" comment="source lacnic 20120831"
add address=177.23.24.0/22 list="BR country" comment="source lacnic 20110121"
add address=177.23.28.0/22 list="BR country" comment="source lacnic 20120904"
add address=177.23.32.0/21 list="BR country" comment="source lacnic 20110117"
add address=177.23.40.0/21 list="BR country" comment="source lacnic 20120615"
add address=177.23.48.0/21 list="BR country" comment="source lacnic 20110118"
add address=177.23.56.0/21 list="BR country" comment="source lacnic 20120726"
add address=177.23.64.0/21 list="BR country" comment="source lacnic 20110119"
add address=177.23.72.0/21 list="BR country" comment="source lacnic 20120615"
add address=177.23.80.0/21 list="BR country" comment="source lacnic 20110120"
add address=177.23.88.0/21 list="BR country" comment="source lacnic 20120615"
add address=177.23.96.0/21 list="BR country" comment="source lacnic 20110120"
add address=177.23.104.0/22 list="BR country" comment="source lacnic 20120726"
add address=177.23.108.0/22 list="BR country" comment="source lacnic 20130910"
add address=177.23.112.0/21 list="BR country" comment="source lacnic 20110121"
add address=177.23.120.0/21 list="BR country" comment="source lacnic 20120726"
add address=177.23.128.0/21 list="BR country" comment="source lacnic 20110126"
add address=177.23.136.0/22 list="BR country" comment="source lacnic 20120726"
add address=177.23.140.0/22 list="BR country" comment="source lacnic 20130731"
add address=177.23.144.0/21 list="BR country" comment="source lacnic 20110126"
add address=177.23.152.0/21 list="BR country" comment="source lacnic 20120727"
add address=177.23.160.0/21 list="BR country" comment="source lacnic 20110131"
add address=177.23.168.0/21 list="BR country" comment="source lacnic 20120727"
add address=177.23.176.0/21 list="BR country" comment="source lacnic 20110201"
add address=177.23.184.0/21 list="BR country" comment="source lacnic 20120816"
add address=177.23.192.0/21 list="BR country" comment="source lacnic 20110202"
add address=177.23.200.0/21 list="BR country" comment="source lacnic 20120817"
add address=177.23.208.0/22 list="BR country" comment="source lacnic 20110203"
add address=177.23.212.0/22 list="BR country" comment="source lacnic 20110511"
add address=177.23.216.0/22 list="BR country" comment="source lacnic 20110207"
add address=177.23.220.0/23 list="BR country" comment="source lacnic 20110224"
add address=177.23.222.0/23 list="BR country" comment="source lacnic 20110224"
add address=177.23.224.0/21 list="BR country" comment="source lacnic 20110208"
add address=177.23.232.0/21 list="BR country" comment="source lacnic 20120820"
add address=177.23.240.0/22 list="BR country" comment="source lacnic 20110209"
add address=177.23.244.0/24 list="BR country" comment="source lacnic 20120618"
add address=177.23.245.0/24 list="BR country" comment="source lacnic 20120626"
add address=177.23.246.0/24 list="BR country" comment="source lacnic 20120629"
add address=177.23.247.0/24 list="BR country" comment="source lacnic 20120801"
add address=177.23.248.0/22 list="BR country" comment="source lacnic 20110211"
add address=177.23.252.0/22 list="BR country" comment="source lacnic 20120904"
add address=177.24.0.0/14 list="BR country" comment="source lacnic 20110105"
add address=177.28.0.0/14 list="BR country" comment="source lacnic 20110105"
add address=177.32.0.0/14 list="BR country" comment="source lacnic 20110114"
add address=177.36.0.0/20 list="BR country" comment="source lacnic 20110211"
add address=177.36.16.0/20 list="BR country" comment="source lacnic 20120628"
add address=177.36.32.0/20 list="BR country" comment="source lacnic 20110214"
add address=177.36.48.0/20 list="BR country" comment="source lacnic 20110214"
add address=177.36.64.0/20 list="BR country" comment="source lacnic 20110215"
add address=177.36.80.0/20 list="BR country" comment="source lacnic 20110217"
add address=177.36.96.0/19 list="BR country" comment="source lacnic 20110217"
add address=177.36.128.0/20 list="BR country" comment="source lacnic 20110217"
add address=177.36.144.0/21 list="BR country" comment="source lacnic 20110606"
add address=177.36.152.0/21 list="BR country" comment="source lacnic 20111213"
add address=177.36.160.0/20 list="BR country" comment="source lacnic 20110221"
add address=177.36.176.0/20 list="BR country" comment="source lacnic 20121108"
add address=177.36.192.0/20 list="BR country" comment="source lacnic 20110221"
add address=177.36.208.0/20 list="BR country" comment="source lacnic 20110601"
add address=177.36.224.0/20 list="BR country" comment="source lacnic 20110221"
add address=177.36.240.0/20 list="BR country" comment="source lacnic 20110223"
add address=177.37.0.0/20 list="BR country" comment="source lacnic 20110225"
add address=177.37.16.0/20 list="BR country" comment="source lacnic 20120712"
add address=177.37.48.0/20 list="BR country" comment="source lacnic 20120628"
add address=177.37.64.0/20 list="BR country" comment="source lacnic 20110315"
add address=177.37.80.0/21 list="BR country" comment="source lacnic 20120330"
add address=177.37.88.0/21 list="BR country" comment="source lacnic 20130613"
add address=177.37.96.0/20 list="BR country" comment="source lacnic 20110316"
add address=177.37.112.0/20 list="BR country" comment="source lacnic 20120629"
add address=177.37.128.0/17 list="BR country" comment="source lacnic 20110302"
add address=177.38.0.0/21 list="BR country" comment="source lacnic 20110210"
add address=177.38.8.0/21 list="BR country" comment="source lacnic 20120821"
add address=177.38.16.0/22 list="BR country" comment="source lacnic 20110214"