1use super::Municipio;
3use crate::uf::State;
4
5#[allow(clippy::unreadable_literal)]
6pub const ALL: &[Municipio] = &[
7 Municipio {
8 ibge_code: 1200013,
9 name: "Acrelândia",
10 state: State::AC,
11 },
12 Municipio {
13 ibge_code: 1200054,
14 name: "Assis Brasil",
15 state: State::AC,
16 },
17 Municipio {
18 ibge_code: 1200104,
19 name: "Brasiléia",
20 state: State::AC,
21 },
22 Municipio {
23 ibge_code: 1200138,
24 name: "Bujari",
25 state: State::AC,
26 },
27 Municipio {
28 ibge_code: 1200179,
29 name: "Capixaba",
30 state: State::AC,
31 },
32 Municipio {
33 ibge_code: 1200203,
34 name: "Cruzeiro do Sul",
35 state: State::AC,
36 },
37 Municipio {
38 ibge_code: 1200252,
39 name: "Epitaciolândia",
40 state: State::AC,
41 },
42 Municipio {
43 ibge_code: 1200302,
44 name: "Feijó",
45 state: State::AC,
46 },
47 Municipio {
48 ibge_code: 1200328,
49 name: "Jordão",
50 state: State::AC,
51 },
52 Municipio {
53 ibge_code: 1200344,
54 name: "Manoel Urbano",
55 state: State::AC,
56 },
57 Municipio {
58 ibge_code: 1200351,
59 name: "Marechal Thaumaturgo",
60 state: State::AC,
61 },
62 Municipio {
63 ibge_code: 1200336,
64 name: "Mâncio Lima",
65 state: State::AC,
66 },
67 Municipio {
68 ibge_code: 1200385,
69 name: "Plácido de Castro",
70 state: State::AC,
71 },
72 Municipio {
73 ibge_code: 1200807,
74 name: "Porto Acre",
75 state: State::AC,
76 },
77 Municipio {
78 ibge_code: 1200393,
79 name: "Porto Walter",
80 state: State::AC,
81 },
82 Municipio {
83 ibge_code: 1200401,
84 name: "Rio Branco",
85 state: State::AC,
86 },
87 Municipio {
88 ibge_code: 1200427,
89 name: "Rodrigues Alves",
90 state: State::AC,
91 },
92 Municipio {
93 ibge_code: 1200435,
94 name: "Santa Rosa do Purus",
95 state: State::AC,
96 },
97 Municipio {
98 ibge_code: 1200500,
99 name: "Sena Madureira",
100 state: State::AC,
101 },
102 Municipio {
103 ibge_code: 1200450,
104 name: "Senador Guiomard",
105 state: State::AC,
106 },
107 Municipio {
108 ibge_code: 1200609,
109 name: "Tarauacá",
110 state: State::AC,
111 },
112 Municipio {
113 ibge_code: 1200708,
114 name: "Xapuri",
115 state: State::AC,
116 },
117 Municipio {
118 ibge_code: 2700201,
119 name: "Anadia",
120 state: State::AL,
121 },
122 Municipio {
123 ibge_code: 2700300,
124 name: "Arapiraca",
125 state: State::AL,
126 },
127 Municipio {
128 ibge_code: 2700409,
129 name: "Atalaia",
130 state: State::AL,
131 },
132 Municipio {
133 ibge_code: 2700508,
134 name: "Barra de Santo Antônio",
135 state: State::AL,
136 },
137 Municipio {
138 ibge_code: 2700607,
139 name: "Barra de São Miguel",
140 state: State::AL,
141 },
142 Municipio {
143 ibge_code: 2700706,
144 name: "Batalha",
145 state: State::AL,
146 },
147 Municipio {
148 ibge_code: 2700904,
149 name: "Belo Monte",
150 state: State::AL,
151 },
152 Municipio {
153 ibge_code: 2700805,
154 name: "Belém",
155 state: State::AL,
156 },
157 Municipio {
158 ibge_code: 2701001,
159 name: "Boca da Mata",
160 state: State::AL,
161 },
162 Municipio {
163 ibge_code: 2701100,
164 name: "Branquinha",
165 state: State::AL,
166 },
167 Municipio {
168 ibge_code: 2701209,
169 name: "Cacimbinhas",
170 state: State::AL,
171 },
172 Municipio {
173 ibge_code: 2701308,
174 name: "Cajueiro",
175 state: State::AL,
176 },
177 Municipio {
178 ibge_code: 2701357,
179 name: "Campestre",
180 state: State::AL,
181 },
182 Municipio {
183 ibge_code: 2701407,
184 name: "Campo Alegre",
185 state: State::AL,
186 },
187 Municipio {
188 ibge_code: 2701506,
189 name: "Campo Grande",
190 state: State::AL,
191 },
192 Municipio {
193 ibge_code: 2701605,
194 name: "Canapi",
195 state: State::AL,
196 },
197 Municipio {
198 ibge_code: 2701704,
199 name: "Capela",
200 state: State::AL,
201 },
202 Municipio {
203 ibge_code: 2701803,
204 name: "Carneiros",
205 state: State::AL,
206 },
207 Municipio {
208 ibge_code: 2701902,
209 name: "Chã Preta",
210 state: State::AL,
211 },
212 Municipio {
213 ibge_code: 2702009,
214 name: "Coité do Nóia",
215 state: State::AL,
216 },
217 Municipio {
218 ibge_code: 2702108,
219 name: "Colônia Leopoldina",
220 state: State::AL,
221 },
222 Municipio {
223 ibge_code: 2702207,
224 name: "Coqueiro Seco",
225 state: State::AL,
226 },
227 Municipio {
228 ibge_code: 2702306,
229 name: "Coruripe",
230 state: State::AL,
231 },
232 Municipio {
233 ibge_code: 2702355,
234 name: "Craíbas",
235 state: State::AL,
236 },
237 Municipio {
238 ibge_code: 2702405,
239 name: "Delmiro Gouveia",
240 state: State::AL,
241 },
242 Municipio {
243 ibge_code: 2702504,
244 name: "Dois Riachos",
245 state: State::AL,
246 },
247 Municipio {
248 ibge_code: 2702553,
249 name: "Estrela de Alagoas",
250 state: State::AL,
251 },
252 Municipio {
253 ibge_code: 2702603,
254 name: "Feira Grande",
255 state: State::AL,
256 },
257 Municipio {
258 ibge_code: 2702702,
259 name: "Feliz Deserto",
260 state: State::AL,
261 },
262 Municipio {
263 ibge_code: 2702801,
264 name: "Flexeiras",
265 state: State::AL,
266 },
267 Municipio {
268 ibge_code: 2702900,
269 name: "Girau do Ponciano",
270 state: State::AL,
271 },
272 Municipio {
273 ibge_code: 2703007,
274 name: "Ibateguara",
275 state: State::AL,
276 },
277 Municipio {
278 ibge_code: 2703106,
279 name: "Igaci",
280 state: State::AL,
281 },
282 Municipio {
283 ibge_code: 2703205,
284 name: "Igreja Nova",
285 state: State::AL,
286 },
287 Municipio {
288 ibge_code: 2703304,
289 name: "Inhapi",
290 state: State::AL,
291 },
292 Municipio {
293 ibge_code: 2703403,
294 name: "Jacaré dos Homens",
295 state: State::AL,
296 },
297 Municipio {
298 ibge_code: 2703502,
299 name: "Jacuípe",
300 state: State::AL,
301 },
302 Municipio {
303 ibge_code: 2703601,
304 name: "Japaratinga",
305 state: State::AL,
306 },
307 Municipio {
308 ibge_code: 2703700,
309 name: "Jaramataia",
310 state: State::AL,
311 },
312 Municipio {
313 ibge_code: 2703759,
314 name: "Jequiá da Praia",
315 state: State::AL,
316 },
317 Municipio {
318 ibge_code: 2703809,
319 name: "Joaquim Gomes",
320 state: State::AL,
321 },
322 Municipio {
323 ibge_code: 2703908,
324 name: "Jundiá",
325 state: State::AL,
326 },
327 Municipio {
328 ibge_code: 2704005,
329 name: "Junqueiro",
330 state: State::AL,
331 },
332 Municipio {
333 ibge_code: 2704104,
334 name: "Lagoa da Canoa",
335 state: State::AL,
336 },
337 Municipio {
338 ibge_code: 2704203,
339 name: "Limoeiro de Anadia",
340 state: State::AL,
341 },
342 Municipio {
343 ibge_code: 2704302,
344 name: "Maceió",
345 state: State::AL,
346 },
347 Municipio {
348 ibge_code: 2704401,
349 name: "Major Isidoro",
350 state: State::AL,
351 },
352 Municipio {
353 ibge_code: 2704906,
354 name: "Mar Vermelho",
355 state: State::AL,
356 },
357 Municipio {
358 ibge_code: 2704500,
359 name: "Maragogi",
360 state: State::AL,
361 },
362 Municipio {
363 ibge_code: 2704609,
364 name: "Maravilha",
365 state: State::AL,
366 },
367 Municipio {
368 ibge_code: 2704708,
369 name: "Marechal Deodoro",
370 state: State::AL,
371 },
372 Municipio {
373 ibge_code: 2704807,
374 name: "Maribondo",
375 state: State::AL,
376 },
377 Municipio {
378 ibge_code: 2705002,
379 name: "Mata Grande",
380 state: State::AL,
381 },
382 Municipio {
383 ibge_code: 2705101,
384 name: "Matriz de Camaragibe",
385 state: State::AL,
386 },
387 Municipio {
388 ibge_code: 2705200,
389 name: "Messias",
390 state: State::AL,
391 },
392 Municipio {
393 ibge_code: 2705309,
394 name: "Minador do Negrão",
395 state: State::AL,
396 },
397 Municipio {
398 ibge_code: 2705408,
399 name: "Monteirópolis",
400 state: State::AL,
401 },
402 Municipio {
403 ibge_code: 2705507,
404 name: "Murici",
405 state: State::AL,
406 },
407 Municipio {
408 ibge_code: 2705606,
409 name: "Novo Lino",
410 state: State::AL,
411 },
412 Municipio {
413 ibge_code: 2705903,
414 name: "Olho d'Água Grande",
415 state: State::AL,
416 },
417 Municipio {
418 ibge_code: 2705705,
419 name: "Olho d'Água das Flores",
420 state: State::AL,
421 },
422 Municipio {
423 ibge_code: 2705804,
424 name: "Olho d'Água do Casado",
425 state: State::AL,
426 },
427 Municipio {
428 ibge_code: 2706000,
429 name: "Olivença",
430 state: State::AL,
431 },
432 Municipio {
433 ibge_code: 2706109,
434 name: "Ouro Branco",
435 state: State::AL,
436 },
437 Municipio {
438 ibge_code: 2706208,
439 name: "Palestina",
440 state: State::AL,
441 },
442 Municipio {
443 ibge_code: 2706307,
444 name: "Palmeira dos Índios",
445 state: State::AL,
446 },
447 Municipio {
448 ibge_code: 2706422,
449 name: "Pariconha",
450 state: State::AL,
451 },
452 Municipio {
453 ibge_code: 2706448,
454 name: "Paripueira",
455 state: State::AL,
456 },
457 Municipio {
458 ibge_code: 2706505,
459 name: "Passo de Camaragibe",
460 state: State::AL,
461 },
462 Municipio {
463 ibge_code: 2706604,
464 name: "Paulo Jacinto",
465 state: State::AL,
466 },
467 Municipio {
468 ibge_code: 2706703,
469 name: "Penedo",
470 state: State::AL,
471 },
472 Municipio {
473 ibge_code: 2706802,
474 name: "Piaçabuçu",
475 state: State::AL,
476 },
477 Municipio {
478 ibge_code: 2706901,
479 name: "Pilar",
480 state: State::AL,
481 },
482 Municipio {
483 ibge_code: 2707008,
484 name: "Pindoba",
485 state: State::AL,
486 },
487 Municipio {
488 ibge_code: 2707107,
489 name: "Piranhas",
490 state: State::AL,
491 },
492 Municipio {
493 ibge_code: 2707305,
494 name: "Porto Calvo",
495 state: State::AL,
496 },
497 Municipio {
498 ibge_code: 2707503,
499 name: "Porto Real do Colégio",
500 state: State::AL,
501 },
502 Municipio {
503 ibge_code: 2707404,
504 name: "Porto de Pedras",
505 state: State::AL,
506 },
507 Municipio {
508 ibge_code: 2707206,
509 name: "Poço das Trincheiras",
510 state: State::AL,
511 },
512 Municipio {
513 ibge_code: 2706406,
514 name: "Pão de Açúcar",
515 state: State::AL,
516 },
517 Municipio {
518 ibge_code: 2707602,
519 name: "Quebrangulo",
520 state: State::AL,
521 },
522 Municipio {
523 ibge_code: 2707701,
524 name: "Rio Largo",
525 state: State::AL,
526 },
527 Municipio {
528 ibge_code: 2707800,
529 name: "Roteiro",
530 state: State::AL,
531 },
532 Municipio {
533 ibge_code: 2707909,
534 name: "Santa Luzia do Norte",
535 state: State::AL,
536 },
537 Municipio {
538 ibge_code: 2708006,
539 name: "Santana do Ipanema",
540 state: State::AL,
541 },
542 Municipio {
543 ibge_code: 2708105,
544 name: "Santana do Mundaú",
545 state: State::AL,
546 },
547 Municipio {
548 ibge_code: 2708907,
549 name: "Satuba",
550 state: State::AL,
551 },
552 Municipio {
553 ibge_code: 2708956,
554 name: "Senador Rui Palmeira",
555 state: State::AL,
556 },
557 Municipio {
558 ibge_code: 2708204,
559 name: "São Brás",
560 state: State::AL,
561 },
562 Municipio {
563 ibge_code: 2708303,
564 name: "São José da Laje",
565 state: State::AL,
566 },
567 Municipio {
568 ibge_code: 2708402,
569 name: "São José da Tapera",
570 state: State::AL,
571 },
572 Municipio {
573 ibge_code: 2708501,
574 name: "São Luís do Quitunde",
575 state: State::AL,
576 },
577 Municipio {
578 ibge_code: 2708600,
579 name: "São Miguel dos Campos",
580 state: State::AL,
581 },
582 Municipio {
583 ibge_code: 2708709,
584 name: "São Miguel dos Milagres",
585 state: State::AL,
586 },
587 Municipio {
588 ibge_code: 2708808,
589 name: "São Sebastião",
590 state: State::AL,
591 },
592 Municipio {
593 ibge_code: 2709004,
594 name: "Tanque d'Arca",
595 state: State::AL,
596 },
597 Municipio {
598 ibge_code: 2709103,
599 name: "Taquarana",
600 state: State::AL,
601 },
602 Municipio {
603 ibge_code: 2709152,
604 name: "Teotônio Vilela",
605 state: State::AL,
606 },
607 Municipio {
608 ibge_code: 2709202,
609 name: "Traipu",
610 state: State::AL,
611 },
612 Municipio {
613 ibge_code: 2709301,
614 name: "União dos Palmares",
615 state: State::AL,
616 },
617 Municipio {
618 ibge_code: 2709400,
619 name: "Viçosa",
620 state: State::AL,
621 },
622 Municipio {
623 ibge_code: 2700102,
624 name: "Água Branca",
625 state: State::AL,
626 },
627 Municipio {
628 ibge_code: 1300029,
629 name: "Alvarães",
630 state: State::AM,
631 },
632 Municipio {
633 ibge_code: 1300060,
634 name: "Amaturá",
635 state: State::AM,
636 },
637 Municipio {
638 ibge_code: 1300086,
639 name: "Anamã",
640 state: State::AM,
641 },
642 Municipio {
643 ibge_code: 1300102,
644 name: "Anori",
645 state: State::AM,
646 },
647 Municipio {
648 ibge_code: 1300144,
649 name: "Apuí",
650 state: State::AM,
651 },
652 Municipio {
653 ibge_code: 1300201,
654 name: "Atalaia do Norte",
655 state: State::AM,
656 },
657 Municipio {
658 ibge_code: 1300300,
659 name: "Autazes",
660 state: State::AM,
661 },
662 Municipio {
663 ibge_code: 1300409,
664 name: "Barcelos",
665 state: State::AM,
666 },
667 Municipio {
668 ibge_code: 1300508,
669 name: "Barreirinha",
670 state: State::AM,
671 },
672 Municipio {
673 ibge_code: 1300607,
674 name: "Benjamin Constant",
675 state: State::AM,
676 },
677 Municipio {
678 ibge_code: 1300631,
679 name: "Beruri",
680 state: State::AM,
681 },
682 Municipio {
683 ibge_code: 1300680,
684 name: "Boa Vista do Ramos",
685 state: State::AM,
686 },
687 Municipio {
688 ibge_code: 1300706,
689 name: "Boca do Acre",
690 state: State::AM,
691 },
692 Municipio {
693 ibge_code: 1300805,
694 name: "Borba",
695 state: State::AM,
696 },
697 Municipio {
698 ibge_code: 1300839,
699 name: "Caapiranga",
700 state: State::AM,
701 },
702 Municipio {
703 ibge_code: 1300904,
704 name: "Canutama",
705 state: State::AM,
706 },
707 Municipio {
708 ibge_code: 1301001,
709 name: "Carauari",
710 state: State::AM,
711 },
712 Municipio {
713 ibge_code: 1301100,
714 name: "Careiro",
715 state: State::AM,
716 },
717 Municipio {
718 ibge_code: 1301159,
719 name: "Careiro da Várzea",
720 state: State::AM,
721 },
722 Municipio {
723 ibge_code: 1301209,
724 name: "Coari",
725 state: State::AM,
726 },
727 Municipio {
728 ibge_code: 1301308,
729 name: "Codajás",
730 state: State::AM,
731 },
732 Municipio {
733 ibge_code: 1301407,
734 name: "Eirunepé",
735 state: State::AM,
736 },
737 Municipio {
738 ibge_code: 1301506,
739 name: "Envira",
740 state: State::AM,
741 },
742 Municipio {
743 ibge_code: 1301605,
744 name: "Fonte Boa",
745 state: State::AM,
746 },
747 Municipio {
748 ibge_code: 1301654,
749 name: "Guajará",
750 state: State::AM,
751 },
752 Municipio {
753 ibge_code: 1301704,
754 name: "Humaitá",
755 state: State::AM,
756 },
757 Municipio {
758 ibge_code: 1301803,
759 name: "Ipixuna",
760 state: State::AM,
761 },
762 Municipio {
763 ibge_code: 1301852,
764 name: "Iranduba",
765 state: State::AM,
766 },
767 Municipio {
768 ibge_code: 1301902,
769 name: "Itacoatiara",
770 state: State::AM,
771 },
772 Municipio {
773 ibge_code: 1301951,
774 name: "Itamarati",
775 state: State::AM,
776 },
777 Municipio {
778 ibge_code: 1302009,
779 name: "Itapiranga",
780 state: State::AM,
781 },
782 Municipio {
783 ibge_code: 1302108,
784 name: "Japurá",
785 state: State::AM,
786 },
787 Municipio {
788 ibge_code: 1302207,
789 name: "Juruá",
790 state: State::AM,
791 },
792 Municipio {
793 ibge_code: 1302306,
794 name: "Jutaí",
795 state: State::AM,
796 },
797 Municipio {
798 ibge_code: 1302405,
799 name: "Lábrea",
800 state: State::AM,
801 },
802 Municipio {
803 ibge_code: 1302504,
804 name: "Manacapuru",
805 state: State::AM,
806 },
807 Municipio {
808 ibge_code: 1302553,
809 name: "Manaquiri",
810 state: State::AM,
811 },
812 Municipio {
813 ibge_code: 1302603,
814 name: "Manaus",
815 state: State::AM,
816 },
817 Municipio {
818 ibge_code: 1302702,
819 name: "Manicoré",
820 state: State::AM,
821 },
822 Municipio {
823 ibge_code: 1302801,
824 name: "Maraã",
825 state: State::AM,
826 },
827 Municipio {
828 ibge_code: 1302900,
829 name: "Maués",
830 state: State::AM,
831 },
832 Municipio {
833 ibge_code: 1303007,
834 name: "Nhamundá",
835 state: State::AM,
836 },
837 Municipio {
838 ibge_code: 1303106,
839 name: "Nova Olinda do Norte",
840 state: State::AM,
841 },
842 Municipio {
843 ibge_code: 1303205,
844 name: "Novo Airão",
845 state: State::AM,
846 },
847 Municipio {
848 ibge_code: 1303304,
849 name: "Novo Aripuanã",
850 state: State::AM,
851 },
852 Municipio {
853 ibge_code: 1303403,
854 name: "Parintins",
855 state: State::AM,
856 },
857 Municipio {
858 ibge_code: 1303502,
859 name: "Pauini",
860 state: State::AM,
861 },
862 Municipio {
863 ibge_code: 1303536,
864 name: "Presidente Figueiredo",
865 state: State::AM,
866 },
867 Municipio {
868 ibge_code: 1303569,
869 name: "Rio Preto da Eva",
870 state: State::AM,
871 },
872 Municipio {
873 ibge_code: 1303601,
874 name: "Santa Isabel do Rio Negro",
875 state: State::AM,
876 },
877 Municipio {
878 ibge_code: 1303700,
879 name: "Santo Antônio do Içá",
880 state: State::AM,
881 },
882 Municipio {
883 ibge_code: 1304005,
884 name: "Silves",
885 state: State::AM,
886 },
887 Municipio {
888 ibge_code: 1303809,
889 name: "São Gabriel da Cachoeira",
890 state: State::AM,
891 },
892 Municipio {
893 ibge_code: 1303908,
894 name: "São Paulo de Olivença",
895 state: State::AM,
896 },
897 Municipio {
898 ibge_code: 1303957,
899 name: "São Sebastião do Uatumã",
900 state: State::AM,
901 },
902 Municipio {
903 ibge_code: 1304062,
904 name: "Tabatinga",
905 state: State::AM,
906 },
907 Municipio {
908 ibge_code: 1304104,
909 name: "Tapauá",
910 state: State::AM,
911 },
912 Municipio {
913 ibge_code: 1304203,
914 name: "Tefé",
915 state: State::AM,
916 },
917 Municipio {
918 ibge_code: 1304237,
919 name: "Tonantins",
920 state: State::AM,
921 },
922 Municipio {
923 ibge_code: 1304260,
924 name: "Uarini",
925 state: State::AM,
926 },
927 Municipio {
928 ibge_code: 1304302,
929 name: "Urucará",
930 state: State::AM,
931 },
932 Municipio {
933 ibge_code: 1304401,
934 name: "Urucurituba",
935 state: State::AM,
936 },
937 Municipio {
938 ibge_code: 1600105,
939 name: "Amapá",
940 state: State::AP,
941 },
942 Municipio {
943 ibge_code: 1600204,
944 name: "Calçoene",
945 state: State::AP,
946 },
947 Municipio {
948 ibge_code: 1600212,
949 name: "Cutias",
950 state: State::AP,
951 },
952 Municipio {
953 ibge_code: 1600238,
954 name: "Ferreira Gomes",
955 state: State::AP,
956 },
957 Municipio {
958 ibge_code: 1600253,
959 name: "Itaubal",
960 state: State::AP,
961 },
962 Municipio {
963 ibge_code: 1600279,
964 name: "Laranjal do Jari",
965 state: State::AP,
966 },
967 Municipio {
968 ibge_code: 1600303,
969 name: "Macapá",
970 state: State::AP,
971 },
972 Municipio {
973 ibge_code: 1600402,
974 name: "Mazagão",
975 state: State::AP,
976 },
977 Municipio {
978 ibge_code: 1600501,
979 name: "Oiapoque",
980 state: State::AP,
981 },
982 Municipio {
983 ibge_code: 1600154,
984 name: "Pedra Branca do Amapari",
985 state: State::AP,
986 },
987 Municipio {
988 ibge_code: 1600535,
989 name: "Porto Grande",
990 state: State::AP,
991 },
992 Municipio {
993 ibge_code: 1600550,
994 name: "Pracuúba",
995 state: State::AP,
996 },
997 Municipio {
998 ibge_code: 1600600,
999 name: "Santana",
1000 state: State::AP,
1001 },
1002 Municipio {
1003 ibge_code: 1600055,
1004 name: "Serra do Navio",
1005 state: State::AP,
1006 },
1007 Municipio {
1008 ibge_code: 1600709,
1009 name: "Tartarugalzinho",
1010 state: State::AP,
1011 },
1012 Municipio {
1013 ibge_code: 1600808,
1014 name: "Vitória do Jari",
1015 state: State::AP,
1016 },
1017 Municipio {
1018 ibge_code: 2900207,
1019 name: "Abaré",
1020 state: State::BA,
1021 },
1022 Municipio {
1023 ibge_code: 2900108,
1024 name: "Abaíra",
1025 state: State::BA,
1026 },
1027 Municipio {
1028 ibge_code: 2900306,
1029 name: "Acajutiba",
1030 state: State::BA,
1031 },
1032 Municipio {
1033 ibge_code: 2900355,
1034 name: "Adustina",
1035 state: State::BA,
1036 },
1037 Municipio {
1038 ibge_code: 2900603,
1039 name: "Aiquara",
1040 state: State::BA,
1041 },
1042 Municipio {
1043 ibge_code: 2900702,
1044 name: "Alagoinhas",
1045 state: State::BA,
1046 },
1047 Municipio {
1048 ibge_code: 2900801,
1049 name: "Alcobaça",
1050 state: State::BA,
1051 },
1052 Municipio {
1053 ibge_code: 2900900,
1054 name: "Almadina",
1055 state: State::BA,
1056 },
1057 Municipio {
1058 ibge_code: 2901007,
1059 name: "Amargosa",
1060 state: State::BA,
1061 },
1062 Municipio {
1063 ibge_code: 2901106,
1064 name: "Amélia Rodrigues",
1065 state: State::BA,
1066 },
1067 Municipio {
1068 ibge_code: 2901155,
1069 name: "América Dourada",
1070 state: State::BA,
1071 },
1072 Municipio {
1073 ibge_code: 2901205,
1074 name: "Anagé",
1075 state: State::BA,
1076 },
1077 Municipio {
1078 ibge_code: 2901304,
1079 name: "Andaraí",
1080 state: State::BA,
1081 },
1082 Municipio {
1083 ibge_code: 2901353,
1084 name: "Andorinha",
1085 state: State::BA,
1086 },
1087 Municipio {
1088 ibge_code: 2901403,
1089 name: "Angical",
1090 state: State::BA,
1091 },
1092 Municipio {
1093 ibge_code: 2901502,
1094 name: "Anguera",
1095 state: State::BA,
1096 },
1097 Municipio {
1098 ibge_code: 2901601,
1099 name: "Antas",
1100 state: State::BA,
1101 },
1102 Municipio {
1103 ibge_code: 2901700,
1104 name: "Antônio Cardoso",
1105 state: State::BA,
1106 },
1107 Municipio {
1108 ibge_code: 2901809,
1109 name: "Antônio Gonçalves",
1110 state: State::BA,
1111 },
1112 Municipio {
1113 ibge_code: 2901908,
1114 name: "Aporá",
1115 state: State::BA,
1116 },
1117 Municipio {
1118 ibge_code: 2901957,
1119 name: "Apuarema",
1120 state: State::BA,
1121 },
1122 Municipio {
1123 ibge_code: 2902005,
1124 name: "Aracatu",
1125 state: State::BA,
1126 },
1127 Municipio {
1128 ibge_code: 2902104,
1129 name: "Araci",
1130 state: State::BA,
1131 },
1132 Municipio {
1133 ibge_code: 2902203,
1134 name: "Aramari",
1135 state: State::BA,
1136 },
1137 Municipio {
1138 ibge_code: 2902252,
1139 name: "Arataca",
1140 state: State::BA,
1141 },
1142 Municipio {
1143 ibge_code: 2902302,
1144 name: "Aratuípe",
1145 state: State::BA,
1146 },
1147 Municipio {
1148 ibge_code: 2902054,
1149 name: "Araçás",
1150 state: State::BA,
1151 },
1152 Municipio {
1153 ibge_code: 2902401,
1154 name: "Aurelino Leal",
1155 state: State::BA,
1156 },
1157 Municipio {
1158 ibge_code: 2902500,
1159 name: "Baianópolis",
1160 state: State::BA,
1161 },
1162 Municipio {
1163 ibge_code: 2902609,
1164 name: "Baixa Grande",
1165 state: State::BA,
1166 },
1167 Municipio {
1168 ibge_code: 2902658,
1169 name: "Banzaê",
1170 state: State::BA,
1171 },
1172 Municipio {
1173 ibge_code: 2902708,
1174 name: "Barra",
1175 state: State::BA,
1176 },
1177 Municipio {
1178 ibge_code: 2902807,
1179 name: "Barra da Estiva",
1180 state: State::BA,
1181 },
1182 Municipio {
1183 ibge_code: 2902906,
1184 name: "Barra do Choça",
1185 state: State::BA,
1186 },
1187 Municipio {
1188 ibge_code: 2903003,
1189 name: "Barra do Mendes",
1190 state: State::BA,
1191 },
1192 Municipio {
1193 ibge_code: 2903102,
1194 name: "Barra do Rocha",
1195 state: State::BA,
1196 },
1197 Municipio {
1198 ibge_code: 2903201,
1199 name: "Barreiras",
1200 state: State::BA,
1201 },
1202 Municipio {
1203 ibge_code: 2903235,
1204 name: "Barro Alto",
1205 state: State::BA,
1206 },
1207 Municipio {
1208 ibge_code: 2903300,
1209 name: "Barro Preto",
1210 state: State::BA,
1211 },
1212 Municipio {
1213 ibge_code: 2903276,
1214 name: "Barrocas",
1215 state: State::BA,
1216 },
1217 Municipio {
1218 ibge_code: 2903409,
1219 name: "Belmonte",
1220 state: State::BA,
1221 },
1222 Municipio {
1223 ibge_code: 2903508,
1224 name: "Belo Campo",
1225 state: State::BA,
1226 },
1227 Municipio {
1228 ibge_code: 2903607,
1229 name: "Biritinga",
1230 state: State::BA,
1231 },
1232 Municipio {
1233 ibge_code: 2903706,
1234 name: "Boa Nova",
1235 state: State::BA,
1236 },
1237 Municipio {
1238 ibge_code: 2903805,
1239 name: "Boa Vista do Tupim",
1240 state: State::BA,
1241 },
1242 Municipio {
1243 ibge_code: 2903904,
1244 name: "Bom Jesus da Lapa",
1245 state: State::BA,
1246 },
1247 Municipio {
1248 ibge_code: 2903953,
1249 name: "Bom Jesus da Serra",
1250 state: State::BA,
1251 },
1252 Municipio {
1253 ibge_code: 2904001,
1254 name: "Boninal",
1255 state: State::BA,
1256 },
1257 Municipio {
1258 ibge_code: 2904050,
1259 name: "Bonito",
1260 state: State::BA,
1261 },
1262 Municipio {
1263 ibge_code: 2904100,
1264 name: "Boquira",
1265 state: State::BA,
1266 },
1267 Municipio {
1268 ibge_code: 2904209,
1269 name: "Botuporã",
1270 state: State::BA,
1271 },
1272 Municipio {
1273 ibge_code: 2904407,
1274 name: "Brejolândia",
1275 state: State::BA,
1276 },
1277 Municipio {
1278 ibge_code: 2904308,
1279 name: "Brejões",
1280 state: State::BA,
1281 },
1282 Municipio {
1283 ibge_code: 2904506,
1284 name: "Brotas de Macaúbas",
1285 state: State::BA,
1286 },
1287 Municipio {
1288 ibge_code: 2904605,
1289 name: "Brumado",
1290 state: State::BA,
1291 },
1292 Municipio {
1293 ibge_code: 2904704,
1294 name: "Buerarema",
1295 state: State::BA,
1296 },
1297 Municipio {
1298 ibge_code: 2904753,
1299 name: "Buritirama",
1300 state: State::BA,
1301 },
1302 Municipio {
1303 ibge_code: 2904803,
1304 name: "Caatiba",
1305 state: State::BA,
1306 },
1307 Municipio {
1308 ibge_code: 2904852,
1309 name: "Cabaceiras do Paraguaçu",
1310 state: State::BA,
1311 },
1312 Municipio {
1313 ibge_code: 2904902,
1314 name: "Cachoeira",
1315 state: State::BA,
1316 },
1317 Municipio {
1318 ibge_code: 2905008,
1319 name: "Caculé",
1320 state: State::BA,
1321 },
1322 Municipio {
1323 ibge_code: 2905156,
1324 name: "Caetanos",
1325 state: State::BA,
1326 },
1327 Municipio {
1328 ibge_code: 2905206,
1329 name: "Caetité",
1330 state: State::BA,
1331 },
1332 Municipio {
1333 ibge_code: 2905305,
1334 name: "Cafarnaum",
1335 state: State::BA,
1336 },
1337 Municipio {
1338 ibge_code: 2905404,
1339 name: "Cairu",
1340 state: State::BA,
1341 },
1342 Municipio {
1343 ibge_code: 2905503,
1344 name: "Caldeirão Grande",
1345 state: State::BA,
1346 },
1347 Municipio {
1348 ibge_code: 2905602,
1349 name: "Camacan",
1350 state: State::BA,
1351 },
1352 Municipio {
1353 ibge_code: 2905800,
1354 name: "Camamu",
1355 state: State::BA,
1356 },
1357 Municipio {
1358 ibge_code: 2905701,
1359 name: "Camaçari",
1360 state: State::BA,
1361 },
1362 Municipio {
1363 ibge_code: 2905909,
1364 name: "Campo Alegre de Lourdes",
1365 state: State::BA,
1366 },
1367 Municipio {
1368 ibge_code: 2906006,
1369 name: "Campo Formoso",
1370 state: State::BA,
1371 },
1372 Municipio {
1373 ibge_code: 2906204,
1374 name: "Canarana",
1375 state: State::BA,
1376 },
1377 Municipio {
1378 ibge_code: 2906303,
1379 name: "Canavieiras",
1380 state: State::BA,
1381 },
1382 Municipio {
1383 ibge_code: 2906402,
1384 name: "Candeal",
1385 state: State::BA,
1386 },
1387 Municipio {
1388 ibge_code: 2906501,
1389 name: "Candeias",
1390 state: State::BA,
1391 },
1392 Municipio {
1393 ibge_code: 2906600,
1394 name: "Candiba",
1395 state: State::BA,
1396 },
1397 Municipio {
1398 ibge_code: 2906808,
1399 name: "Cansanção",
1400 state: State::BA,
1401 },
1402 Municipio {
1403 ibge_code: 2906824,
1404 name: "Canudos",
1405 state: State::BA,
1406 },
1407 Municipio {
1408 ibge_code: 2906105,
1409 name: "Canápolis",
1410 state: State::BA,
1411 },
1412 Municipio {
1413 ibge_code: 2906857,
1414 name: "Capela do Alto Alegre",
1415 state: State::BA,
1416 },
1417 Municipio {
1418 ibge_code: 2906873,
1419 name: "Capim Grosso",
1420 state: State::BA,
1421 },
1422 Municipio {
1423 ibge_code: 2906907,
1424 name: "Caravelas",
1425 state: State::BA,
1426 },
1427 Municipio {
1428 ibge_code: 2906899,
1429 name: "Caraíbas",
1430 state: State::BA,
1431 },
1432 Municipio {
1433 ibge_code: 2907004,
1434 name: "Cardeal da Silva",
1435 state: State::BA,
1436 },
1437 Municipio {
1438 ibge_code: 2907103,
1439 name: "Carinhanha",
1440 state: State::BA,
1441 },
1442 Municipio {
1443 ibge_code: 2907202,
1444 name: "Casa Nova",
1445 state: State::BA,
1446 },
1447 Municipio {
1448 ibge_code: 2907301,
1449 name: "Castro Alves",
1450 state: State::BA,
1451 },
1452 Municipio {
1453 ibge_code: 2907400,
1454 name: "Catolândia",
1455 state: State::BA,
1456 },
1457 Municipio {
1458 ibge_code: 2907509,
1459 name: "Catu",
1460 state: State::BA,
1461 },
1462 Municipio {
1463 ibge_code: 2907558,
1464 name: "Caturama",
1465 state: State::BA,
1466 },
1467 Municipio {
1468 ibge_code: 2905107,
1469 name: "Caém",
1470 state: State::BA,
1471 },
1472 Municipio {
1473 ibge_code: 2907608,
1474 name: "Central",
1475 state: State::BA,
1476 },
1477 Municipio {
1478 ibge_code: 2907707,
1479 name: "Chorrochó",
1480 state: State::BA,
1481 },
1482 Municipio {
1483 ibge_code: 2907905,
1484 name: "Cipó",
1485 state: State::BA,
1486 },
1487 Municipio {
1488 ibge_code: 2908002,
1489 name: "Coaraci",
1490 state: State::BA,
1491 },
1492 Municipio {
1493 ibge_code: 2908101,
1494 name: "Cocos",
1495 state: State::BA,
1496 },
1497 Municipio {
1498 ibge_code: 2908200,
1499 name: "Conceição da Feira",
1500 state: State::BA,
1501 },
1502 Municipio {
1503 ibge_code: 2908309,
1504 name: "Conceição do Almeida",
1505 state: State::BA,
1506 },
1507 Municipio {
1508 ibge_code: 2908408,
1509 name: "Conceição do Coité",
1510 state: State::BA,
1511 },
1512 Municipio {
1513 ibge_code: 2908507,
1514 name: "Conceição do Jacuípe",
1515 state: State::BA,
1516 },
1517 Municipio {
1518 ibge_code: 2908606,
1519 name: "Conde",
1520 state: State::BA,
1521 },
1522 Municipio {
1523 ibge_code: 2908705,
1524 name: "Condeúba",
1525 state: State::BA,
1526 },
1527 Municipio {
1528 ibge_code: 2908804,
1529 name: "Contendas do Sincorá",
1530 state: State::BA,
1531 },
1532 Municipio {
1533 ibge_code: 2908903,
1534 name: "Coração de Maria",
1535 state: State::BA,
1536 },
1537 Municipio {
1538 ibge_code: 2909000,
1539 name: "Cordeiros",
1540 state: State::BA,
1541 },
1542 Municipio {
1543 ibge_code: 2909109,
1544 name: "Coribe",
1545 state: State::BA,
1546 },
1547 Municipio {
1548 ibge_code: 2909208,
1549 name: "Coronel João Sá",
1550 state: State::BA,
1551 },
1552 Municipio {
1553 ibge_code: 2909307,
1554 name: "Correntina",
1555 state: State::BA,
1556 },
1557 Municipio {
1558 ibge_code: 2909406,
1559 name: "Cotegipe",
1560 state: State::BA,
1561 },
1562 Municipio {
1563 ibge_code: 2909505,
1564 name: "Cravolândia",
1565 state: State::BA,
1566 },
1567 Municipio {
1568 ibge_code: 2909703,
1569 name: "Cristópolis",
1570 state: State::BA,
1571 },
1572 Municipio {
1573 ibge_code: 2909604,
1574 name: "Crisópolis",
1575 state: State::BA,
1576 },
1577 Municipio {
1578 ibge_code: 2909802,
1579 name: "Cruz das Almas",
1580 state: State::BA,
1581 },
1582 Municipio {
1583 ibge_code: 2909901,
1584 name: "Curaçá",
1585 state: State::BA,
1586 },
1587 Municipio {
1588 ibge_code: 2906709,
1589 name: "Cândido Sales",
1590 state: State::BA,
1591 },
1592 Municipio {
1593 ibge_code: 2907806,
1594 name: "Cícero Dantas",
1595 state: State::BA,
1596 },
1597 Municipio {
1598 ibge_code: 2910057,
1599 name: "Dias d'Ávila",
1600 state: State::BA,
1601 },
1602 Municipio {
1603 ibge_code: 2910107,
1604 name: "Dom Basílio",
1605 state: State::BA,
1606 },
1607 Municipio {
1608 ibge_code: 2910206,
1609 name: "Dom Macedo Costa",
1610 state: State::BA,
1611 },
1612 Municipio {
1613 ibge_code: 2910008,
1614 name: "Dário Meira",
1615 state: State::BA,
1616 },
1617 Municipio {
1618 ibge_code: 2910305,
1619 name: "Elísio Medrado",
1620 state: State::BA,
1621 },
1622 Municipio {
1623 ibge_code: 2910404,
1624 name: "Encruzilhada",
1625 state: State::BA,
1626 },
1627 Municipio {
1628 ibge_code: 2910503,
1629 name: "Entre Rios",
1630 state: State::BA,
1631 },
1632 Municipio {
1633 ibge_code: 2910602,
1634 name: "Esplanada",
1635 state: State::BA,
1636 },
1637 Municipio {
1638 ibge_code: 2910701,
1639 name: "Euclides da Cunha",
1640 state: State::BA,
1641 },
1642 Municipio {
1643 ibge_code: 2910727,
1644 name: "Eunápolis",
1645 state: State::BA,
1646 },
1647 Municipio {
1648 ibge_code: 2910776,
1649 name: "Feira da Mata",
1650 state: State::BA,
1651 },
1652 Municipio {
1653 ibge_code: 2910800,
1654 name: "Feira de Santana",
1655 state: State::BA,
1656 },
1657 Municipio {
1658 ibge_code: 2910859,
1659 name: "Filadélfia",
1660 state: State::BA,
1661 },
1662 Municipio {
1663 ibge_code: 2910909,
1664 name: "Firmino Alves",
1665 state: State::BA,
1666 },
1667 Municipio {
1668 ibge_code: 2911006,
1669 name: "Floresta Azul",
1670 state: State::BA,
1671 },
1672 Municipio {
1673 ibge_code: 2911105,
1674 name: "Formosa do Rio Preto",
1675 state: State::BA,
1676 },
1677 Municipio {
1678 ibge_code: 2910750,
1679 name: "Fátima",
1680 state: State::BA,
1681 },
1682 Municipio {
1683 ibge_code: 2911204,
1684 name: "Gandu",
1685 state: State::BA,
1686 },
1687 Municipio {
1688 ibge_code: 2911253,
1689 name: "Gavião",
1690 state: State::BA,
1691 },
1692 Municipio {
1693 ibge_code: 2911303,
1694 name: "Gentio do Ouro",
1695 state: State::BA,
1696 },
1697 Municipio {
1698 ibge_code: 2911402,
1699 name: "Glória",
1700 state: State::BA,
1701 },
1702 Municipio {
1703 ibge_code: 2911501,
1704 name: "Gongogi",
1705 state: State::BA,
1706 },
1707 Municipio {
1708 ibge_code: 2911600,
1709 name: "Governador Mangabeira",
1710 state: State::BA,
1711 },
1712 Municipio {
1713 ibge_code: 2911659,
1714 name: "Guajeru",
1715 state: State::BA,
1716 },
1717 Municipio {
1718 ibge_code: 2911709,
1719 name: "Guanambi",
1720 state: State::BA,
1721 },
1722 Municipio {
1723 ibge_code: 2911808,
1724 name: "Guaratinga",
1725 state: State::BA,
1726 },
1727 Municipio {
1728 ibge_code: 2911857,
1729 name: "Heliópolis",
1730 state: State::BA,
1731 },
1732 Municipio {
1733 ibge_code: 2911907,
1734 name: "Iaçu",
1735 state: State::BA,
1736 },
1737 Municipio {
1738 ibge_code: 2912004,
1739 name: "Ibiassucê",
1740 state: State::BA,
1741 },
1742 Municipio {
1743 ibge_code: 2912103,
1744 name: "Ibicaraí",
1745 state: State::BA,
1746 },
1747 Municipio {
1748 ibge_code: 2912202,
1749 name: "Ibicoara",
1750 state: State::BA,
1751 },
1752 Municipio {
1753 ibge_code: 2912301,
1754 name: "Ibicuí",
1755 state: State::BA,
1756 },
1757 Municipio {
1758 ibge_code: 2912400,
1759 name: "Ibipeba",
1760 state: State::BA,
1761 },
1762 Municipio {
1763 ibge_code: 2912509,
1764 name: "Ibipitanga",
1765 state: State::BA,
1766 },
1767 Municipio {
1768 ibge_code: 2912608,
1769 name: "Ibiquera",
1770 state: State::BA,
1771 },
1772 Municipio {
1773 ibge_code: 2912707,
1774 name: "Ibirapitanga",
1775 state: State::BA,
1776 },
1777 Municipio {
1778 ibge_code: 2912806,
1779 name: "Ibirapuã",
1780 state: State::BA,
1781 },
1782 Municipio {
1783 ibge_code: 2912905,
1784 name: "Ibirataia",
1785 state: State::BA,
1786 },
1787 Municipio {
1788 ibge_code: 2913002,
1789 name: "Ibitiara",
1790 state: State::BA,
1791 },
1792 Municipio {
1793 ibge_code: 2913101,
1794 name: "Ibititá",
1795 state: State::BA,
1796 },
1797 Municipio {
1798 ibge_code: 2913200,
1799 name: "Ibotirama",
1800 state: State::BA,
1801 },
1802 Municipio {
1803 ibge_code: 2913309,
1804 name: "Ichu",
1805 state: State::BA,
1806 },
1807 Municipio {
1808 ibge_code: 2913408,
1809 name: "Igaporã",
1810 state: State::BA,
1811 },
1812 Municipio {
1813 ibge_code: 2913457,
1814 name: "Igrapiúna",
1815 state: State::BA,
1816 },
1817 Municipio {
1818 ibge_code: 2913507,
1819 name: "Iguaí",
1820 state: State::BA,
1821 },
1822 Municipio {
1823 ibge_code: 2913606,
1824 name: "Ilhéus",
1825 state: State::BA,
1826 },
1827 Municipio {
1828 ibge_code: 2913705,
1829 name: "Inhambupe",
1830 state: State::BA,
1831 },
1832 Municipio {
1833 ibge_code: 2913804,
1834 name: "Ipecaetá",
1835 state: State::BA,
1836 },
1837 Municipio {
1838 ibge_code: 2913903,
1839 name: "Ipiaú",
1840 state: State::BA,
1841 },
1842 Municipio {
1843 ibge_code: 2914000,
1844 name: "Ipirá",
1845 state: State::BA,
1846 },
1847 Municipio {
1848 ibge_code: 2914109,
1849 name: "Ipupiara",
1850 state: State::BA,
1851 },
1852 Municipio {
1853 ibge_code: 2914208,
1854 name: "Irajuba",
1855 state: State::BA,
1856 },
1857 Municipio {
1858 ibge_code: 2914307,
1859 name: "Iramaia",
1860 state: State::BA,
1861 },
1862 Municipio {
1863 ibge_code: 2914406,
1864 name: "Iraquara",
1865 state: State::BA,
1866 },
1867 Municipio {
1868 ibge_code: 2914505,
1869 name: "Irará",
1870 state: State::BA,
1871 },
1872 Municipio {
1873 ibge_code: 2914604,
1874 name: "Irecê",
1875 state: State::BA,
1876 },
1877 Municipio {
1878 ibge_code: 2914653,
1879 name: "Itabela",
1880 state: State::BA,
1881 },
1882 Municipio {
1883 ibge_code: 2914703,
1884 name: "Itaberaba",
1885 state: State::BA,
1886 },
1887 Municipio {
1888 ibge_code: 2914802,
1889 name: "Itabuna",
1890 state: State::BA,
1891 },
1892 Municipio {
1893 ibge_code: 2914901,
1894 name: "Itacaré",
1895 state: State::BA,
1896 },
1897 Municipio {
1898 ibge_code: 2915007,
1899 name: "Itaeté",
1900 state: State::BA,
1901 },
1902 Municipio {
1903 ibge_code: 2915106,
1904 name: "Itagi",
1905 state: State::BA,
1906 },
1907 Municipio {
1908 ibge_code: 2915205,
1909 name: "Itagibá",
1910 state: State::BA,
1911 },
1912 Municipio {
1913 ibge_code: 2915304,
1914 name: "Itagimirim",
1915 state: State::BA,
1916 },
1917 Municipio {
1918 ibge_code: 2915353,
1919 name: "Itaguaçu da Bahia",
1920 state: State::BA,
1921 },
1922 Municipio {
1923 ibge_code: 2915403,
1924 name: "Itaju do Colônia",
1925 state: State::BA,
1926 },
1927 Municipio {
1928 ibge_code: 2915502,
1929 name: "Itajuípe",
1930 state: State::BA,
1931 },
1932 Municipio {
1933 ibge_code: 2915601,
1934 name: "Itamaraju",
1935 state: State::BA,
1936 },
1937 Municipio {
1938 ibge_code: 2915700,
1939 name: "Itamari",
1940 state: State::BA,
1941 },
1942 Municipio {
1943 ibge_code: 2915809,
1944 name: "Itambé",
1945 state: State::BA,
1946 },
1947 Municipio {
1948 ibge_code: 2915908,
1949 name: "Itanagra",
1950 state: State::BA,
1951 },
1952 Municipio {
1953 ibge_code: 2916005,
1954 name: "Itanhém",
1955 state: State::BA,
1956 },
1957 Municipio {
1958 ibge_code: 2916104,
1959 name: "Itaparica",
1960 state: State::BA,
1961 },
1962 Municipio {
1963 ibge_code: 2916302,
1964 name: "Itapebi",
1965 state: State::BA,
1966 },
1967 Municipio {
1968 ibge_code: 2916401,
1969 name: "Itapetinga",
1970 state: State::BA,
1971 },
1972 Municipio {
1973 ibge_code: 2916500,
1974 name: "Itapicuru",
1975 state: State::BA,
1976 },
1977 Municipio {
1978 ibge_code: 2916609,
1979 name: "Itapitanga",
1980 state: State::BA,
1981 },
1982 Municipio {
1983 ibge_code: 2916203,
1984 name: "Itapé",
1985 state: State::BA,
1986 },
1987 Municipio {
1988 ibge_code: 2916708,
1989 name: "Itaquara",
1990 state: State::BA,
1991 },
1992 Municipio {
1993 ibge_code: 2916807,
1994 name: "Itarantim",
1995 state: State::BA,
1996 },
1997 Municipio {
1998 ibge_code: 2916856,
1999 name: "Itatim",
2000 state: State::BA,
2001 },
2002 Municipio {
2003 ibge_code: 2916906,
2004 name: "Itiruçu",
2005 state: State::BA,
2006 },
2007 Municipio {
2008 ibge_code: 2917003,
2009 name: "Itiúba",
2010 state: State::BA,
2011 },
2012 Municipio {
2013 ibge_code: 2917102,
2014 name: "Itororó",
2015 state: State::BA,
2016 },
2017 Municipio {
2018 ibge_code: 2917201,
2019 name: "Ituaçu",
2020 state: State::BA,
2021 },
2022 Municipio {
2023 ibge_code: 2917300,
2024 name: "Ituberá",
2025 state: State::BA,
2026 },
2027 Municipio {
2028 ibge_code: 2917334,
2029 name: "Iuiu",
2030 state: State::BA,
2031 },
2032 Municipio {
2033 ibge_code: 2917359,
2034 name: "Jaborandi",
2035 state: State::BA,
2036 },
2037 Municipio {
2038 ibge_code: 2917409,
2039 name: "Jacaraci",
2040 state: State::BA,
2041 },
2042 Municipio {
2043 ibge_code: 2917508,
2044 name: "Jacobina",
2045 state: State::BA,
2046 },
2047 Municipio {
2048 ibge_code: 2917607,
2049 name: "Jaguaquara",
2050 state: State::BA,
2051 },
2052 Municipio {
2053 ibge_code: 2917706,
2054 name: "Jaguarari",
2055 state: State::BA,
2056 },
2057 Municipio {
2058 ibge_code: 2917805,
2059 name: "Jaguaripe",
2060 state: State::BA,
2061 },
2062 Municipio {
2063 ibge_code: 2917904,
2064 name: "Jandaíra",
2065 state: State::BA,
2066 },
2067 Municipio {
2068 ibge_code: 2918001,
2069 name: "Jequié",
2070 state: State::BA,
2071 },
2072 Municipio {
2073 ibge_code: 2918100,
2074 name: "Jeremoabo",
2075 state: State::BA,
2076 },
2077 Municipio {
2078 ibge_code: 2918209,
2079 name: "Jiquiriçá",
2080 state: State::BA,
2081 },
2082 Municipio {
2083 ibge_code: 2918308,
2084 name: "Jitaúna",
2085 state: State::BA,
2086 },
2087 Municipio {
2088 ibge_code: 2918357,
2089 name: "João Dourado",
2090 state: State::BA,
2091 },
2092 Municipio {
2093 ibge_code: 2918407,
2094 name: "Juazeiro",
2095 state: State::BA,
2096 },
2097 Municipio {
2098 ibge_code: 2918456,
2099 name: "Jucuruçu",
2100 state: State::BA,
2101 },
2102 Municipio {
2103 ibge_code: 2918506,
2104 name: "Jussara",
2105 state: State::BA,
2106 },
2107 Municipio {
2108 ibge_code: 2918555,
2109 name: "Jussari",
2110 state: State::BA,
2111 },
2112 Municipio {
2113 ibge_code: 2918605,
2114 name: "Jussiape",
2115 state: State::BA,
2116 },
2117 Municipio {
2118 ibge_code: 2918704,
2119 name: "Lafaiete Coutinho",
2120 state: State::BA,
2121 },
2122 Municipio {
2123 ibge_code: 2918753,
2124 name: "Lagoa Real",
2125 state: State::BA,
2126 },
2127 Municipio {
2128 ibge_code: 2918803,
2129 name: "Laje",
2130 state: State::BA,
2131 },
2132 Municipio {
2133 ibge_code: 2919009,
2134 name: "Lajedinho",
2135 state: State::BA,
2136 },
2137 Municipio {
2138 ibge_code: 2919058,
2139 name: "Lajedo do Tabocal",
2140 state: State::BA,
2141 },
2142 Municipio {
2143 ibge_code: 2918902,
2144 name: "Lajedão",
2145 state: State::BA,
2146 },
2147 Municipio {
2148 ibge_code: 2919108,
2149 name: "Lamarão",
2150 state: State::BA,
2151 },
2152 Municipio {
2153 ibge_code: 2919157,
2154 name: "Lapão",
2155 state: State::BA,
2156 },
2157 Municipio {
2158 ibge_code: 2919207,
2159 name: "Lauro de Freitas",
2160 state: State::BA,
2161 },
2162 Municipio {
2163 ibge_code: 2919306,
2164 name: "Lençóis",
2165 state: State::BA,
2166 },
2167 Municipio {
2168 ibge_code: 2919405,
2169 name: "Licínio de Almeida",
2170 state: State::BA,
2171 },
2172 Municipio {
2173 ibge_code: 2919504,
2174 name: "Livramento de Nossa Senhora",
2175 state: State::BA,
2176 },
2177 Municipio {
2178 ibge_code: 2919553,
2179 name: "Luís Eduardo Magalhães",
2180 state: State::BA,
2181 },
2182 Municipio {
2183 ibge_code: 2919603,
2184 name: "Macajuba",
2185 state: State::BA,
2186 },
2187 Municipio {
2188 ibge_code: 2919702,
2189 name: "Macarani",
2190 state: State::BA,
2191 },
2192 Municipio {
2193 ibge_code: 2919801,
2194 name: "Macaúbas",
2195 state: State::BA,
2196 },
2197 Municipio {
2198 ibge_code: 2919900,
2199 name: "Macururé",
2200 state: State::BA,
2201 },
2202 Municipio {
2203 ibge_code: 2919926,
2204 name: "Madre de Deus",
2205 state: State::BA,
2206 },
2207 Municipio {
2208 ibge_code: 2919959,
2209 name: "Maetinga",
2210 state: State::BA,
2211 },
2212 Municipio {
2213 ibge_code: 2920007,
2214 name: "Maiquinique",
2215 state: State::BA,
2216 },
2217 Municipio {
2218 ibge_code: 2920106,
2219 name: "Mairi",
2220 state: State::BA,
2221 },
2222 Municipio {
2223 ibge_code: 2920205,
2224 name: "Malhada",
2225 state: State::BA,
2226 },
2227 Municipio {
2228 ibge_code: 2920304,
2229 name: "Malhada de Pedras",
2230 state: State::BA,
2231 },
2232 Municipio {
2233 ibge_code: 2920403,
2234 name: "Manoel Vitorino",
2235 state: State::BA,
2236 },
2237 Municipio {
2238 ibge_code: 2920452,
2239 name: "Mansidão",
2240 state: State::BA,
2241 },
2242 Municipio {
2243 ibge_code: 2920502,
2244 name: "Maracás",
2245 state: State::BA,
2246 },
2247 Municipio {
2248 ibge_code: 2920601,
2249 name: "Maragogipe",
2250 state: State::BA,
2251 },
2252 Municipio {
2253 ibge_code: 2920700,
2254 name: "Maraú",
2255 state: State::BA,
2256 },
2257 Municipio {
2258 ibge_code: 2920809,
2259 name: "Marcionílio Souza",
2260 state: State::BA,
2261 },
2262 Municipio {
2263 ibge_code: 2920908,
2264 name: "Mascote",
2265 state: State::BA,
2266 },
2267 Municipio {
2268 ibge_code: 2921005,
2269 name: "Mata de São João",
2270 state: State::BA,
2271 },
2272 Municipio {
2273 ibge_code: 2921054,
2274 name: "Matina",
2275 state: State::BA,
2276 },
2277 Municipio {
2278 ibge_code: 2921104,
2279 name: "Medeiros Neto",
2280 state: State::BA,
2281 },
2282 Municipio {
2283 ibge_code: 2921203,
2284 name: "Miguel Calmon",
2285 state: State::BA,
2286 },
2287 Municipio {
2288 ibge_code: 2921302,
2289 name: "Milagres",
2290 state: State::BA,
2291 },
2292 Municipio {
2293 ibge_code: 2921401,
2294 name: "Mirangaba",
2295 state: State::BA,
2296 },
2297 Municipio {
2298 ibge_code: 2921450,
2299 name: "Mirante",
2300 state: State::BA,
2301 },
2302 Municipio {
2303 ibge_code: 2921500,
2304 name: "Monte Santo",
2305 state: State::BA,
2306 },
2307 Municipio {
2308 ibge_code: 2921609,
2309 name: "Morpará",
2310 state: State::BA,
2311 },
2312 Municipio {
2313 ibge_code: 2921708,
2314 name: "Morro do Chapéu",
2315 state: State::BA,
2316 },
2317 Municipio {
2318 ibge_code: 2921807,
2319 name: "Mortugaba",
2320 state: State::BA,
2321 },
2322 Municipio {
2323 ibge_code: 2921906,
2324 name: "Mucugê",
2325 state: State::BA,
2326 },
2327 Municipio {
2328 ibge_code: 2922003,
2329 name: "Mucuri",
2330 state: State::BA,
2331 },
2332 Municipio {
2333 ibge_code: 2922052,
2334 name: "Mulungu do Morro",
2335 state: State::BA,
2336 },
2337 Municipio {
2338 ibge_code: 2922102,
2339 name: "Mundo Novo",
2340 state: State::BA,
2341 },
2342 Municipio {
2343 ibge_code: 2922201,
2344 name: "Muniz Ferreira",
2345 state: State::BA,
2346 },
2347 Municipio {
2348 ibge_code: 2922250,
2349 name: "Muquém do São Francisco",
2350 state: State::BA,
2351 },
2352 Municipio {
2353 ibge_code: 2922300,
2354 name: "Muritiba",
2355 state: State::BA,
2356 },
2357 Municipio {
2358 ibge_code: 2922409,
2359 name: "Mutuípe",
2360 state: State::BA,
2361 },
2362 Municipio {
2363 ibge_code: 2922508,
2364 name: "Nazaré",
2365 state: State::BA,
2366 },
2367 Municipio {
2368 ibge_code: 2922607,
2369 name: "Nilo Peçanha",
2370 state: State::BA,
2371 },
2372 Municipio {
2373 ibge_code: 2922656,
2374 name: "Nordestina",
2375 state: State::BA,
2376 },
2377 Municipio {
2378 ibge_code: 2922706,
2379 name: "Nova Canaã",
2380 state: State::BA,
2381 },
2382 Municipio {
2383 ibge_code: 2922730,
2384 name: "Nova Fátima",
2385 state: State::BA,
2386 },
2387 Municipio {
2388 ibge_code: 2922755,
2389 name: "Nova Ibiá",
2390 state: State::BA,
2391 },
2392 Municipio {
2393 ibge_code: 2922805,
2394 name: "Nova Itarana",
2395 state: State::BA,
2396 },
2397 Municipio {
2398 ibge_code: 2922854,
2399 name: "Nova Redenção",
2400 state: State::BA,
2401 },
2402 Municipio {
2403 ibge_code: 2922904,
2404 name: "Nova Soure",
2405 state: State::BA,
2406 },
2407 Municipio {
2408 ibge_code: 2923001,
2409 name: "Nova Viçosa",
2410 state: State::BA,
2411 },
2412 Municipio {
2413 ibge_code: 2923035,
2414 name: "Novo Horizonte",
2415 state: State::BA,
2416 },
2417 Municipio {
2418 ibge_code: 2923050,
2419 name: "Novo Triunfo",
2420 state: State::BA,
2421 },
2422 Municipio {
2423 ibge_code: 2923100,
2424 name: "Olindina",
2425 state: State::BA,
2426 },
2427 Municipio {
2428 ibge_code: 2923209,
2429 name: "Oliveira dos Brejinhos",
2430 state: State::BA,
2431 },
2432 Municipio {
2433 ibge_code: 2923308,
2434 name: "Ouriçangas",
2435 state: State::BA,
2436 },
2437 Municipio {
2438 ibge_code: 2923357,
2439 name: "Ourolândia",
2440 state: State::BA,
2441 },
2442 Municipio {
2443 ibge_code: 2923407,
2444 name: "Palmas de Monte Alto",
2445 state: State::BA,
2446 },
2447 Municipio {
2448 ibge_code: 2923506,
2449 name: "Palmeiras",
2450 state: State::BA,
2451 },
2452 Municipio {
2453 ibge_code: 2923605,
2454 name: "Paramirim",
2455 state: State::BA,
2456 },
2457 Municipio {
2458 ibge_code: 2923704,
2459 name: "Paratinga",
2460 state: State::BA,
2461 },
2462 Municipio {
2463 ibge_code: 2923803,
2464 name: "Paripiranga",
2465 state: State::BA,
2466 },
2467 Municipio {
2468 ibge_code: 2923902,
2469 name: "Pau Brasil",
2470 state: State::BA,
2471 },
2472 Municipio {
2473 ibge_code: 2924009,
2474 name: "Paulo Afonso",
2475 state: State::BA,
2476 },
2477 Municipio {
2478 ibge_code: 2924207,
2479 name: "Pedro Alexandre",
2480 state: State::BA,
2481 },
2482 Municipio {
2483 ibge_code: 2924108,
2484 name: "Pedrão",
2485 state: State::BA,
2486 },
2487 Municipio {
2488 ibge_code: 2924306,
2489 name: "Piatã",
2490 state: State::BA,
2491 },
2492 Municipio {
2493 ibge_code: 2924405,
2494 name: "Pilão Arcado",
2495 state: State::BA,
2496 },
2497 Municipio {
2498 ibge_code: 2924504,
2499 name: "Pindaí",
2500 state: State::BA,
2501 },
2502 Municipio {
2503 ibge_code: 2924603,
2504 name: "Pindobaçu",
2505 state: State::BA,
2506 },
2507 Municipio {
2508 ibge_code: 2924652,
2509 name: "Pintadas",
2510 state: State::BA,
2511 },
2512 Municipio {
2513 ibge_code: 2924678,
2514 name: "Piraí do Norte",
2515 state: State::BA,
2516 },
2517 Municipio {
2518 ibge_code: 2924702,
2519 name: "Piripá",
2520 state: State::BA,
2521 },
2522 Municipio {
2523 ibge_code: 2924801,
2524 name: "Piritiba",
2525 state: State::BA,
2526 },
2527 Municipio {
2528 ibge_code: 2924900,
2529 name: "Planaltino",
2530 state: State::BA,
2531 },
2532 Municipio {
2533 ibge_code: 2925006,
2534 name: "Planalto",
2535 state: State::BA,
2536 },
2537 Municipio {
2538 ibge_code: 2925204,
2539 name: "Pojuca",
2540 state: State::BA,
2541 },
2542 Municipio {
2543 ibge_code: 2925253,
2544 name: "Ponto Novo",
2545 state: State::BA,
2546 },
2547 Municipio {
2548 ibge_code: 2925303,
2549 name: "Porto Seguro",
2550 state: State::BA,
2551 },
2552 Municipio {
2553 ibge_code: 2925402,
2554 name: "Potiraguá",
2555 state: State::BA,
2556 },
2557 Municipio {
2558 ibge_code: 2925105,
2559 name: "Poções",
2560 state: State::BA,
2561 },
2562 Municipio {
2563 ibge_code: 2925501,
2564 name: "Prado",
2565 state: State::BA,
2566 },
2567 Municipio {
2568 ibge_code: 2925600,
2569 name: "Presidente Dutra",
2570 state: State::BA,
2571 },
2572 Municipio {
2573 ibge_code: 2925709,
2574 name: "Presidente Jânio Quadros",
2575 state: State::BA,
2576 },
2577 Municipio {
2578 ibge_code: 2925758,
2579 name: "Presidente Tancredo Neves",
2580 state: State::BA,
2581 },
2582 Municipio {
2583 ibge_code: 2924058,
2584 name: "Pé de Serra",
2585 state: State::BA,
2586 },
2587 Municipio {
2588 ibge_code: 2925808,
2589 name: "Queimadas",
2590 state: State::BA,
2591 },
2592 Municipio {
2593 ibge_code: 2925907,
2594 name: "Quijingue",
2595 state: State::BA,
2596 },
2597 Municipio {
2598 ibge_code: 2925931,
2599 name: "Quixabeira",
2600 state: State::BA,
2601 },
2602 Municipio {
2603 ibge_code: 2925956,
2604 name: "Rafael Jambeiro",
2605 state: State::BA,
2606 },
2607 Municipio {
2608 ibge_code: 2926004,
2609 name: "Remanso",
2610 state: State::BA,
2611 },
2612 Municipio {
2613 ibge_code: 2926103,
2614 name: "Retirolândia",
2615 state: State::BA,
2616 },
2617 Municipio {
2618 ibge_code: 2926400,
2619 name: "Riacho de Santana",
2620 state: State::BA,
2621 },
2622 Municipio {
2623 ibge_code: 2926202,
2624 name: "Riachão das Neves",
2625 state: State::BA,
2626 },
2627 Municipio {
2628 ibge_code: 2926301,
2629 name: "Riachão do Jacuípe",
2630 state: State::BA,
2631 },
2632 Municipio {
2633 ibge_code: 2926509,
2634 name: "Ribeira do Amparo",
2635 state: State::BA,
2636 },
2637 Municipio {
2638 ibge_code: 2926608,
2639 name: "Ribeira do Pombal",
2640 state: State::BA,
2641 },
2642 Municipio {
2643 ibge_code: 2926657,
2644 name: "Ribeirão do Largo",
2645 state: State::BA,
2646 },
2647 Municipio {
2648 ibge_code: 2927002,
2649 name: "Rio Real",
2650 state: State::BA,
2651 },
2652 Municipio {
2653 ibge_code: 2926707,
2654 name: "Rio de Contas",
2655 state: State::BA,
2656 },
2657 Municipio {
2658 ibge_code: 2926806,
2659 name: "Rio do Antônio",
2660 state: State::BA,
2661 },
2662 Municipio {
2663 ibge_code: 2926905,
2664 name: "Rio do Pires",
2665 state: State::BA,
2666 },
2667 Municipio {
2668 ibge_code: 2927101,
2669 name: "Rodelas",
2670 state: State::BA,
2671 },
2672 Municipio {
2673 ibge_code: 2927200,
2674 name: "Ruy Barbosa",
2675 state: State::BA,
2676 },
2677 Municipio {
2678 ibge_code: 2927309,
2679 name: "Salinas da Margarida",
2680 state: State::BA,
2681 },
2682 Municipio {
2683 ibge_code: 2927408,
2684 name: "Salvador",
2685 state: State::BA,
2686 },
2687 Municipio {
2688 ibge_code: 2927606,
2689 name: "Santa Brígida",
2690 state: State::BA,
2691 },
2692 Municipio {
2693 ibge_code: 2927507,
2694 name: "Santa Bárbara",
2695 state: State::BA,
2696 },
2697 Municipio {
2698 ibge_code: 2927705,
2699 name: "Santa Cruz Cabrália",
2700 state: State::BA,
2701 },
2702 Municipio {
2703 ibge_code: 2927804,
2704 name: "Santa Cruz da Vitória",
2705 state: State::BA,
2706 },
2707 Municipio {
2708 ibge_code: 2927903,
2709 name: "Santa Inês",
2710 state: State::BA,
2711 },
2712 Municipio {
2713 ibge_code: 2928059,
2714 name: "Santa Luzia",
2715 state: State::BA,
2716 },
2717 Municipio {
2718 ibge_code: 2928109,
2719 name: "Santa Maria da Vitória",
2720 state: State::BA,
2721 },
2722 Municipio {
2723 ibge_code: 2928406,
2724 name: "Santa Rita de Cássia",
2725 state: State::BA,
2726 },
2727 Municipio {
2728 ibge_code: 2928505,
2729 name: "Santa Terezinha",
2730 state: State::BA,
2731 },
2732 Municipio {
2733 ibge_code: 2928000,
2734 name: "Santaluz",
2735 state: State::BA,
2736 },
2737 Municipio {
2738 ibge_code: 2928208,
2739 name: "Santana",
2740 state: State::BA,
2741 },
2742 Municipio {
2743 ibge_code: 2928307,
2744 name: "Santanópolis",
2745 state: State::BA,
2746 },
2747 Municipio {
2748 ibge_code: 2928604,
2749 name: "Santo Amaro",
2750 state: State::BA,
2751 },
2752 Municipio {
2753 ibge_code: 2928703,
2754 name: "Santo Antônio de Jesus",
2755 state: State::BA,
2756 },
2757 Municipio {
2758 ibge_code: 2928802,
2759 name: "Santo Estêvão",
2760 state: State::BA,
2761 },
2762 Municipio {
2763 ibge_code: 2929602,
2764 name: "Sapeaçu",
2765 state: State::BA,
2766 },
2767 Municipio {
2768 ibge_code: 2929750,
2769 name: "Saubara",
2770 state: State::BA,
2771 },
2772 Municipio {
2773 ibge_code: 2929800,
2774 name: "Saúde",
2775 state: State::BA,
2776 },
2777 Municipio {
2778 ibge_code: 2929909,
2779 name: "Seabra",
2780 state: State::BA,
2781 },
2782 Municipio {
2783 ibge_code: 2930006,
2784 name: "Sebastião Laranjeiras",
2785 state: State::BA,
2786 },
2787 Municipio {
2788 ibge_code: 2930105,
2789 name: "Senhor do Bonfim",
2790 state: State::BA,
2791 },
2792 Municipio {
2793 ibge_code: 2930204,
2794 name: "Sento Sé",
2795 state: State::BA,
2796 },
2797 Municipio {
2798 ibge_code: 2930303,
2799 name: "Serra Dourada",
2800 state: State::BA,
2801 },
2802 Municipio {
2803 ibge_code: 2930402,
2804 name: "Serra Preta",
2805 state: State::BA,
2806 },
2807 Municipio {
2808 ibge_code: 2930154,
2809 name: "Serra do Ramalho",
2810 state: State::BA,
2811 },
2812 Municipio {
2813 ibge_code: 2930501,
2814 name: "Serrinha",
2815 state: State::BA,
2816 },
2817 Municipio {
2818 ibge_code: 2930600,
2819 name: "Serrolândia",
2820 state: State::BA,
2821 },
2822 Municipio {
2823 ibge_code: 2930709,
2824 name: "Simões Filho",
2825 state: State::BA,
2826 },
2827 Municipio {
2828 ibge_code: 2930774,
2829 name: "Sobradinho",
2830 state: State::BA,
2831 },
2832 Municipio {
2833 ibge_code: 2930808,
2834 name: "Souto Soares",
2835 state: State::BA,
2836 },
2837 Municipio {
2838 ibge_code: 2929701,
2839 name: "Sátiro Dias",
2840 state: State::BA,
2841 },
2842 Municipio {
2843 ibge_code: 2928901,
2844 name: "São Desidério",
2845 state: State::BA,
2846 },
2847 Municipio {
2848 ibge_code: 2928950,
2849 name: "São Domingos",
2850 state: State::BA,
2851 },
2852 Municipio {
2853 ibge_code: 2929107,
2854 name: "São Felipe",
2855 state: State::BA,
2856 },
2857 Municipio {
2858 ibge_code: 2929206,
2859 name: "São Francisco do Conde",
2860 state: State::BA,
2861 },
2862 Municipio {
2863 ibge_code: 2929008,
2864 name: "São Félix",
2865 state: State::BA,
2866 },
2867 Municipio {
2868 ibge_code: 2929057,
2869 name: "São Félix do Coribe",
2870 state: State::BA,
2871 },
2872 Municipio {
2873 ibge_code: 2929255,
2874 name: "São Gabriel",
2875 state: State::BA,
2876 },
2877 Municipio {
2878 ibge_code: 2929305,
2879 name: "São Gonçalo dos Campos",
2880 state: State::BA,
2881 },
2882 Municipio {
2883 ibge_code: 2929354,
2884 name: "São José da Vitória",
2885 state: State::BA,
2886 },
2887 Municipio {
2888 ibge_code: 2929370,
2889 name: "São José do Jacuípe",
2890 state: State::BA,
2891 },
2892 Municipio {
2893 ibge_code: 2929404,
2894 name: "São Miguel das Matas",
2895 state: State::BA,
2896 },
2897 Municipio {
2898 ibge_code: 2929503,
2899 name: "São Sebastião do Passé",
2900 state: State::BA,
2901 },
2902 Municipio {
2903 ibge_code: 2930758,
2904 name: "Sítio do Mato",
2905 state: State::BA,
2906 },
2907 Municipio {
2908 ibge_code: 2930766,
2909 name: "Sítio do Quinto",
2910 state: State::BA,
2911 },
2912 Municipio {
2913 ibge_code: 2930907,
2914 name: "Tabocas do Brejo Velho",
2915 state: State::BA,
2916 },
2917 Municipio {
2918 ibge_code: 2931004,
2919 name: "Tanhaçu",
2920 state: State::BA,
2921 },
2922 Municipio {
2923 ibge_code: 2931053,
2924 name: "Tanque Novo",
2925 state: State::BA,
2926 },
2927 Municipio {
2928 ibge_code: 2931103,
2929 name: "Tanquinho",
2930 state: State::BA,
2931 },
2932 Municipio {
2933 ibge_code: 2931202,
2934 name: "Taperoá",
2935 state: State::BA,
2936 },
2937 Municipio {
2938 ibge_code: 2931301,
2939 name: "Tapiramutá",
2940 state: State::BA,
2941 },
2942 Municipio {
2943 ibge_code: 2931350,
2944 name: "Teixeira de Freitas",
2945 state: State::BA,
2946 },
2947 Municipio {
2948 ibge_code: 2931400,
2949 name: "Teodoro Sampaio",
2950 state: State::BA,
2951 },
2952 Municipio {
2953 ibge_code: 2931509,
2954 name: "Teofilândia",
2955 state: State::BA,
2956 },
2957 Municipio {
2958 ibge_code: 2931608,
2959 name: "Teolândia",
2960 state: State::BA,
2961 },
2962 Municipio {
2963 ibge_code: 2931707,
2964 name: "Terra Nova",
2965 state: State::BA,
2966 },
2967 Municipio {
2968 ibge_code: 2931806,
2969 name: "Tremedal",
2970 state: State::BA,
2971 },
2972 Municipio {
2973 ibge_code: 2931905,
2974 name: "Tucano",
2975 state: State::BA,
2976 },
2977 Municipio {
2978 ibge_code: 2932002,
2979 name: "Uauá",
2980 state: State::BA,
2981 },
2982 Municipio {
2983 ibge_code: 2932200,
2984 name: "Ubaitaba",
2985 state: State::BA,
2986 },
2987 Municipio {
2988 ibge_code: 2932309,
2989 name: "Ubatã",
2990 state: State::BA,
2991 },
2992 Municipio {
2993 ibge_code: 2932101,
2994 name: "Ubaíra",
2995 state: State::BA,
2996 },
2997 Municipio {
2998 ibge_code: 2932408,
2999 name: "Uibaí",
3000 state: State::BA,
3001 },
3002 Municipio {
3003 ibge_code: 2932457,
3004 name: "Umburanas",
3005 state: State::BA,
3006 },
3007 Municipio {
3008 ibge_code: 2932507,
3009 name: "Una",
3010 state: State::BA,
3011 },
3012 Municipio {
3013 ibge_code: 2932606,
3014 name: "Urandi",
3015 state: State::BA,
3016 },
3017 Municipio {
3018 ibge_code: 2932705,
3019 name: "Uruçuca",
3020 state: State::BA,
3021 },
3022 Municipio {
3023 ibge_code: 2932804,
3024 name: "Utinga",
3025 state: State::BA,
3026 },
3027 Municipio {
3028 ibge_code: 2933000,
3029 name: "Valente",
3030 state: State::BA,
3031 },
3032 Municipio {
3033 ibge_code: 2932903,
3034 name: "Valença",
3035 state: State::BA,
3036 },
3037 Municipio {
3038 ibge_code: 2933174,
3039 name: "Varzedo",
3040 state: State::BA,
3041 },
3042 Municipio {
3043 ibge_code: 2933208,
3044 name: "Vera Cruz",
3045 state: State::BA,
3046 },
3047 Municipio {
3048 ibge_code: 2933257,
3049 name: "Vereda",
3050 state: State::BA,
3051 },
3052 Municipio {
3053 ibge_code: 2933307,
3054 name: "Vitória da Conquista",
3055 state: State::BA,
3056 },
3057 Municipio {
3058 ibge_code: 2933158,
3059 name: "Várzea Nova",
3060 state: State::BA,
3061 },
3062 Municipio {
3063 ibge_code: 2933059,
3064 name: "Várzea da Roça",
3065 state: State::BA,
3066 },
3067 Municipio {
3068 ibge_code: 2933109,
3069 name: "Várzea do Poço",
3070 state: State::BA,
3071 },
3072 Municipio {
3073 ibge_code: 2933406,
3074 name: "Wagner",
3075 state: State::BA,
3076 },
3077 Municipio {
3078 ibge_code: 2933455,
3079 name: "Wanderley",
3080 state: State::BA,
3081 },
3082 Municipio {
3083 ibge_code: 2933505,
3084 name: "Wenceslau Guimarães",
3085 state: State::BA,
3086 },
3087 Municipio {
3088 ibge_code: 2933604,
3089 name: "Xique-Xique",
3090 state: State::BA,
3091 },
3092 Municipio {
3093 ibge_code: 2900405,
3094 name: "Água Fria",
3095 state: State::BA,
3096 },
3097 Municipio {
3098 ibge_code: 2900504,
3099 name: "Érico Cardoso",
3100 state: State::BA,
3101 },
3102 Municipio {
3103 ibge_code: 2300101,
3104 name: "Abaiara",
3105 state: State::CE,
3106 },
3107 Municipio {
3108 ibge_code: 2300150,
3109 name: "Acarape",
3110 state: State::CE,
3111 },
3112 Municipio {
3113 ibge_code: 2300200,
3114 name: "Acaraú",
3115 state: State::CE,
3116 },
3117 Municipio {
3118 ibge_code: 2300309,
3119 name: "Acopiara",
3120 state: State::CE,
3121 },
3122 Municipio {
3123 ibge_code: 2300408,
3124 name: "Aiuaba",
3125 state: State::CE,
3126 },
3127 Municipio {
3128 ibge_code: 2300507,
3129 name: "Alcântaras",
3130 state: State::CE,
3131 },
3132 Municipio {
3133 ibge_code: 2300606,
3134 name: "Altaneira",
3135 state: State::CE,
3136 },
3137 Municipio {
3138 ibge_code: 2300705,
3139 name: "Alto Santo",
3140 state: State::CE,
3141 },
3142 Municipio {
3143 ibge_code: 2300754,
3144 name: "Amontada",
3145 state: State::CE,
3146 },
3147 Municipio {
3148 ibge_code: 2300804,
3149 name: "Antonina do Norte",
3150 state: State::CE,
3151 },
3152 Municipio {
3153 ibge_code: 2300903,
3154 name: "Apuiarés",
3155 state: State::CE,
3156 },
3157 Municipio {
3158 ibge_code: 2301000,
3159 name: "Aquiraz",
3160 state: State::CE,
3161 },
3162 Municipio {
3163 ibge_code: 2301109,
3164 name: "Aracati",
3165 state: State::CE,
3166 },
3167 Municipio {
3168 ibge_code: 2301208,
3169 name: "Aracoiaba",
3170 state: State::CE,
3171 },
3172 Municipio {
3173 ibge_code: 2301257,
3174 name: "Ararendá",
3175 state: State::CE,
3176 },
3177 Municipio {
3178 ibge_code: 2301307,
3179 name: "Araripe",
3180 state: State::CE,
3181 },
3182 Municipio {
3183 ibge_code: 2301406,
3184 name: "Aratuba",
3185 state: State::CE,
3186 },
3187 Municipio {
3188 ibge_code: 2301505,
3189 name: "Arneiroz",
3190 state: State::CE,
3191 },
3192 Municipio {
3193 ibge_code: 2301604,
3194 name: "Assaré",
3195 state: State::CE,
3196 },
3197 Municipio {
3198 ibge_code: 2301703,
3199 name: "Aurora",
3200 state: State::CE,
3201 },
3202 Municipio {
3203 ibge_code: 2301802,
3204 name: "Baixio",
3205 state: State::CE,
3206 },
3207 Municipio {
3208 ibge_code: 2301851,
3209 name: "Banabuiú",
3210 state: State::CE,
3211 },
3212 Municipio {
3213 ibge_code: 2301901,
3214 name: "Barbalha",
3215 state: State::CE,
3216 },
3217 Municipio {
3218 ibge_code: 2301950,
3219 name: "Barreira",
3220 state: State::CE,
3221 },
3222 Municipio {
3223 ibge_code: 2302008,
3224 name: "Barro",
3225 state: State::CE,
3226 },
3227 Municipio {
3228 ibge_code: 2302057,
3229 name: "Barroquinha",
3230 state: State::CE,
3231 },
3232 Municipio {
3233 ibge_code: 2302107,
3234 name: "Baturité",
3235 state: State::CE,
3236 },
3237 Municipio {
3238 ibge_code: 2302206,
3239 name: "Beberibe",
3240 state: State::CE,
3241 },
3242 Municipio {
3243 ibge_code: 2302305,
3244 name: "Bela Cruz",
3245 state: State::CE,
3246 },
3247 Municipio {
3248 ibge_code: 2302404,
3249 name: "Boa Viagem",
3250 state: State::CE,
3251 },
3252 Municipio {
3253 ibge_code: 2302503,
3254 name: "Brejo Santo",
3255 state: State::CE,
3256 },
3257 Municipio {
3258 ibge_code: 2302602,
3259 name: "Camocim",
3260 state: State::CE,
3261 },
3262 Municipio {
3263 ibge_code: 2302701,
3264 name: "Campos Sales",
3265 state: State::CE,
3266 },
3267 Municipio {
3268 ibge_code: 2302800,
3269 name: "Canindé",
3270 state: State::CE,
3271 },
3272 Municipio {
3273 ibge_code: 2302909,
3274 name: "Capistrano",
3275 state: State::CE,
3276 },
3277 Municipio {
3278 ibge_code: 2303006,
3279 name: "Caridade",
3280 state: State::CE,
3281 },
3282 Municipio {
3283 ibge_code: 2303204,
3284 name: "Caririaçu",
3285 state: State::CE,
3286 },
3287 Municipio {
3288 ibge_code: 2303105,
3289 name: "Cariré",
3290 state: State::CE,
3291 },
3292 Municipio {
3293 ibge_code: 2303303,
3294 name: "Cariús",
3295 state: State::CE,
3296 },
3297 Municipio {
3298 ibge_code: 2303402,
3299 name: "Carnaubal",
3300 state: State::CE,
3301 },
3302 Municipio {
3303 ibge_code: 2303501,
3304 name: "Cascavel",
3305 state: State::CE,
3306 },
3307 Municipio {
3308 ibge_code: 2303600,
3309 name: "Catarina",
3310 state: State::CE,
3311 },
3312 Municipio {
3313 ibge_code: 2303659,
3314 name: "Catunda",
3315 state: State::CE,
3316 },
3317 Municipio {
3318 ibge_code: 2303709,
3319 name: "Caucaia",
3320 state: State::CE,
3321 },
3322 Municipio {
3323 ibge_code: 2303808,
3324 name: "Cedro",
3325 state: State::CE,
3326 },
3327 Municipio {
3328 ibge_code: 2303907,
3329 name: "Chaval",
3330 state: State::CE,
3331 },
3332 Municipio {
3333 ibge_code: 2303956,
3334 name: "Chorozinho",
3335 state: State::CE,
3336 },
3337 Municipio {
3338 ibge_code: 2303931,
3339 name: "Choró",
3340 state: State::CE,
3341 },
3342 Municipio {
3343 ibge_code: 2304004,
3344 name: "Coreaú",
3345 state: State::CE,
3346 },
3347 Municipio {
3348 ibge_code: 2304103,
3349 name: "Crateús",
3350 state: State::CE,
3351 },
3352 Municipio {
3353 ibge_code: 2304202,
3354 name: "Crato",
3355 state: State::CE,
3356 },
3357 Municipio {
3358 ibge_code: 2304236,
3359 name: "Croatá",
3360 state: State::CE,
3361 },
3362 Municipio {
3363 ibge_code: 2304251,
3364 name: "Cruz",
3365 state: State::CE,
3366 },
3367 Municipio {
3368 ibge_code: 2304269,
3369 name: "Deputado Irapuan Pinheiro",
3370 state: State::CE,
3371 },
3372 Municipio {
3373 ibge_code: 2304277,
3374 name: "Ereré",
3375 state: State::CE,
3376 },
3377 Municipio {
3378 ibge_code: 2304285,
3379 name: "Eusébio",
3380 state: State::CE,
3381 },
3382 Municipio {
3383 ibge_code: 2304301,
3384 name: "Farias Brito",
3385 state: State::CE,
3386 },
3387 Municipio {
3388 ibge_code: 2304350,
3389 name: "Forquilha",
3390 state: State::CE,
3391 },
3392 Municipio {
3393 ibge_code: 2304400,
3394 name: "Fortaleza",
3395 state: State::CE,
3396 },
3397 Municipio {
3398 ibge_code: 2304459,
3399 name: "Fortim",
3400 state: State::CE,
3401 },
3402 Municipio {
3403 ibge_code: 2304509,
3404 name: "Frecheirinha",
3405 state: State::CE,
3406 },
3407 Municipio {
3408 ibge_code: 2304608,
3409 name: "General Sampaio",
3410 state: State::CE,
3411 },
3412 Municipio {
3413 ibge_code: 2304707,
3414 name: "Granja",
3415 state: State::CE,
3416 },
3417 Municipio {
3418 ibge_code: 2304806,
3419 name: "Granjeiro",
3420 state: State::CE,
3421 },
3422 Municipio {
3423 ibge_code: 2304657,
3424 name: "Graça",
3425 state: State::CE,
3426 },
3427 Municipio {
3428 ibge_code: 2304905,
3429 name: "Groaíras",
3430 state: State::CE,
3431 },
3432 Municipio {
3433 ibge_code: 2304954,
3434 name: "Guaiúba",
3435 state: State::CE,
3436 },
3437 Municipio {
3438 ibge_code: 2305001,
3439 name: "Guaraciaba do Norte",
3440 state: State::CE,
3441 },
3442 Municipio {
3443 ibge_code: 2305100,
3444 name: "Guaramiranga",
3445 state: State::CE,
3446 },
3447 Municipio {
3448 ibge_code: 2305209,
3449 name: "Hidrolândia",
3450 state: State::CE,
3451 },
3452 Municipio {
3453 ibge_code: 2305233,
3454 name: "Horizonte",
3455 state: State::CE,
3456 },
3457 Municipio {
3458 ibge_code: 2305266,
3459 name: "Ibaretama",
3460 state: State::CE,
3461 },
3462 Municipio {
3463 ibge_code: 2305308,
3464 name: "Ibiapina",
3465 state: State::CE,
3466 },
3467 Municipio {
3468 ibge_code: 2305332,
3469 name: "Ibicuitinga",
3470 state: State::CE,
3471 },
3472 Municipio {
3473 ibge_code: 2305357,
3474 name: "Icapuí",
3475 state: State::CE,
3476 },
3477 Municipio {
3478 ibge_code: 2305407,
3479 name: "Icó",
3480 state: State::CE,
3481 },
3482 Municipio {
3483 ibge_code: 2305506,
3484 name: "Iguatu",
3485 state: State::CE,
3486 },
3487 Municipio {
3488 ibge_code: 2305605,
3489 name: "Independência",
3490 state: State::CE,
3491 },
3492 Municipio {
3493 ibge_code: 2305654,
3494 name: "Ipaporanga",
3495 state: State::CE,
3496 },
3497 Municipio {
3498 ibge_code: 2305704,
3499 name: "Ipaumirim",
3500 state: State::CE,
3501 },
3502 Municipio {
3503 ibge_code: 2305803,
3504 name: "Ipu",
3505 state: State::CE,
3506 },
3507 Municipio {
3508 ibge_code: 2305902,
3509 name: "Ipueiras",
3510 state: State::CE,
3511 },
3512 Municipio {
3513 ibge_code: 2306009,
3514 name: "Iracema",
3515 state: State::CE,
3516 },
3517 Municipio {
3518 ibge_code: 2306108,
3519 name: "Irauçuba",
3520 state: State::CE,
3521 },
3522 Municipio {
3523 ibge_code: 2306256,
3524 name: "Itaitinga",
3525 state: State::CE,
3526 },
3527 Municipio {
3528 ibge_code: 2306207,
3529 name: "Itaiçaba",
3530 state: State::CE,
3531 },
3532 Municipio {
3533 ibge_code: 2306306,
3534 name: "Itapajé",
3535 state: State::CE,
3536 },
3537 Municipio {
3538 ibge_code: 2306405,
3539 name: "Itapipoca",
3540 state: State::CE,
3541 },
3542 Municipio {
3543 ibge_code: 2306504,
3544 name: "Itapiúna",
3545 state: State::CE,
3546 },
3547 Municipio {
3548 ibge_code: 2306553,
3549 name: "Itarema",
3550 state: State::CE,
3551 },
3552 Municipio {
3553 ibge_code: 2306603,
3554 name: "Itatira",
3555 state: State::CE,
3556 },
3557 Municipio {
3558 ibge_code: 2306702,
3559 name: "Jaguaretama",
3560 state: State::CE,
3561 },
3562 Municipio {
3563 ibge_code: 2306801,
3564 name: "Jaguaribara",
3565 state: State::CE,
3566 },
3567 Municipio {
3568 ibge_code: 2306900,
3569 name: "Jaguaribe",
3570 state: State::CE,
3571 },
3572 Municipio {
3573 ibge_code: 2307007,
3574 name: "Jaguaruana",
3575 state: State::CE,
3576 },
3577 Municipio {
3578 ibge_code: 2307106,
3579 name: "Jardim",
3580 state: State::CE,
3581 },
3582 Municipio {
3583 ibge_code: 2307205,
3584 name: "Jati",
3585 state: State::CE,
3586 },
3587 Municipio {
3588 ibge_code: 2307254,
3589 name: "Jijoca de Jericoacoara",
3590 state: State::CE,
3591 },
3592 Municipio {
3593 ibge_code: 2307304,
3594 name: "Juazeiro do Norte",
3595 state: State::CE,
3596 },
3597 Municipio {
3598 ibge_code: 2307403,
3599 name: "Jucás",
3600 state: State::CE,
3601 },
3602 Municipio {
3603 ibge_code: 2307502,
3604 name: "Lavras da Mangabeira",
3605 state: State::CE,
3606 },
3607 Municipio {
3608 ibge_code: 2307601,
3609 name: "Limoeiro do Norte",
3610 state: State::CE,
3611 },
3612 Municipio {
3613 ibge_code: 2307635,
3614 name: "Madalena",
3615 state: State::CE,
3616 },
3617 Municipio {
3618 ibge_code: 2307650,
3619 name: "Maracanaú",
3620 state: State::CE,
3621 },
3622 Municipio {
3623 ibge_code: 2307700,
3624 name: "Maranguape",
3625 state: State::CE,
3626 },
3627 Municipio {
3628 ibge_code: 2307809,
3629 name: "Marco",
3630 state: State::CE,
3631 },
3632 Municipio {
3633 ibge_code: 2307908,
3634 name: "Martinópole",
3635 state: State::CE,
3636 },
3637 Municipio {
3638 ibge_code: 2308005,
3639 name: "Massapê",
3640 state: State::CE,
3641 },
3642 Municipio {
3643 ibge_code: 2308104,
3644 name: "Mauriti",
3645 state: State::CE,
3646 },
3647 Municipio {
3648 ibge_code: 2308203,
3649 name: "Meruoca",
3650 state: State::CE,
3651 },
3652 Municipio {
3653 ibge_code: 2308302,
3654 name: "Milagres",
3655 state: State::CE,
3656 },
3657 Municipio {
3658 ibge_code: 2308351,
3659 name: "Milhã",
3660 state: State::CE,
3661 },
3662 Municipio {
3663 ibge_code: 2308377,
3664 name: "Miraíma",
3665 state: State::CE,
3666 },
3667 Municipio {
3668 ibge_code: 2308401,
3669 name: "Missão Velha",
3670 state: State::CE,
3671 },
3672 Municipio {
3673 ibge_code: 2308500,
3674 name: "Mombaça",
3675 state: State::CE,
3676 },
3677 Municipio {
3678 ibge_code: 2308609,
3679 name: "Monsenhor Tabosa",
3680 state: State::CE,
3681 },
3682 Municipio {
3683 ibge_code: 2308708,
3684 name: "Morada Nova",
3685 state: State::CE,
3686 },
3687 Municipio {
3688 ibge_code: 2308807,
3689 name: "Moraújo",
3690 state: State::CE,
3691 },
3692 Municipio {
3693 ibge_code: 2308906,
3694 name: "Morrinhos",
3695 state: State::CE,
3696 },
3697 Municipio {
3698 ibge_code: 2309003,
3699 name: "Mucambo",
3700 state: State::CE,
3701 },
3702 Municipio {
3703 ibge_code: 2309102,
3704 name: "Mulungu",
3705 state: State::CE,
3706 },
3707 Municipio {
3708 ibge_code: 2309201,
3709 name: "Nova Olinda",
3710 state: State::CE,
3711 },
3712 Municipio {
3713 ibge_code: 2309300,
3714 name: "Nova Russas",
3715 state: State::CE,
3716 },
3717 Municipio {
3718 ibge_code: 2309409,
3719 name: "Novo Oriente",
3720 state: State::CE,
3721 },
3722 Municipio {
3723 ibge_code: 2309458,
3724 name: "Ocara",
3725 state: State::CE,
3726 },
3727 Municipio {
3728 ibge_code: 2309508,
3729 name: "Orós",
3730 state: State::CE,
3731 },
3732 Municipio {
3733 ibge_code: 2309607,
3734 name: "Pacajus",
3735 state: State::CE,
3736 },
3737 Municipio {
3738 ibge_code: 2309706,
3739 name: "Pacatuba",
3740 state: State::CE,
3741 },
3742 Municipio {
3743 ibge_code: 2309805,
3744 name: "Pacoti",
3745 state: State::CE,
3746 },
3747 Municipio {
3748 ibge_code: 2309904,
3749 name: "Pacujá",
3750 state: State::CE,
3751 },
3752 Municipio {
3753 ibge_code: 2310001,
3754 name: "Palhano",
3755 state: State::CE,
3756 },
3757 Municipio {
3758 ibge_code: 2310100,
3759 name: "Palmácia",
3760 state: State::CE,
3761 },
3762 Municipio {
3763 ibge_code: 2310209,
3764 name: "Paracuru",
3765 state: State::CE,
3766 },
3767 Municipio {
3768 ibge_code: 2310258,
3769 name: "Paraipaba",
3770 state: State::CE,
3771 },
3772 Municipio {
3773 ibge_code: 2310308,
3774 name: "Parambu",
3775 state: State::CE,
3776 },
3777 Municipio {
3778 ibge_code: 2310407,
3779 name: "Paramoti",
3780 state: State::CE,
3781 },
3782 Municipio {
3783 ibge_code: 2310506,
3784 name: "Pedra Branca",
3785 state: State::CE,
3786 },
3787 Municipio {
3788 ibge_code: 2310605,
3789 name: "Penaforte",
3790 state: State::CE,
3791 },
3792 Municipio {
3793 ibge_code: 2310704,
3794 name: "Pentecoste",
3795 state: State::CE,
3796 },
3797 Municipio {
3798 ibge_code: 2310803,
3799 name: "Pereiro",
3800 state: State::CE,
3801 },
3802 Municipio {
3803 ibge_code: 2310852,
3804 name: "Pindoretama",
3805 state: State::CE,
3806 },
3807 Municipio {
3808 ibge_code: 2310902,
3809 name: "Piquet Carneiro",
3810 state: State::CE,
3811 },
3812 Municipio {
3813 ibge_code: 2310951,
3814 name: "Pires Ferreira",
3815 state: State::CE,
3816 },
3817 Municipio {
3818 ibge_code: 2311009,
3819 name: "Poranga",
3820 state: State::CE,
3821 },
3822 Municipio {
3823 ibge_code: 2311108,
3824 name: "Porteiras",
3825 state: State::CE,
3826 },
3827 Municipio {
3828 ibge_code: 2311207,
3829 name: "Potengi",
3830 state: State::CE,
3831 },
3832 Municipio {
3833 ibge_code: 2311231,
3834 name: "Potiretama",
3835 state: State::CE,
3836 },
3837 Municipio {
3838 ibge_code: 2311264,
3839 name: "Quiterianópolis",
3840 state: State::CE,
3841 },
3842 Municipio {
3843 ibge_code: 2311306,
3844 name: "Quixadá",
3845 state: State::CE,
3846 },
3847 Municipio {
3848 ibge_code: 2311355,
3849 name: "Quixelô",
3850 state: State::CE,
3851 },
3852 Municipio {
3853 ibge_code: 2311405,
3854 name: "Quixeramobim",
3855 state: State::CE,
3856 },
3857 Municipio {
3858 ibge_code: 2311504,
3859 name: "Quixeré",
3860 state: State::CE,
3861 },
3862 Municipio {
3863 ibge_code: 2311603,
3864 name: "Redenção",
3865 state: State::CE,
3866 },
3867 Municipio {
3868 ibge_code: 2311702,
3869 name: "Reriutaba",
3870 state: State::CE,
3871 },
3872 Municipio {
3873 ibge_code: 2311801,
3874 name: "Russas",
3875 state: State::CE,
3876 },
3877 Municipio {
3878 ibge_code: 2311900,
3879 name: "Saboeiro",
3880 state: State::CE,
3881 },
3882 Municipio {
3883 ibge_code: 2311959,
3884 name: "Salitre",
3885 state: State::CE,
3886 },
3887 Municipio {
3888 ibge_code: 2312205,
3889 name: "Santa Quitéria",
3890 state: State::CE,
3891 },
3892 Municipio {
3893 ibge_code: 2312007,
3894 name: "Santana do Acaraú",
3895 state: State::CE,
3896 },
3897 Municipio {
3898 ibge_code: 2312106,
3899 name: "Santana do Cariri",
3900 state: State::CE,
3901 },
3902 Municipio {
3903 ibge_code: 2312700,
3904 name: "Senador Pompeu",
3905 state: State::CE,
3906 },
3907 Municipio {
3908 ibge_code: 2312809,
3909 name: "Senador Sá",
3910 state: State::CE,
3911 },
3912 Municipio {
3913 ibge_code: 2312908,
3914 name: "Sobral",
3915 state: State::CE,
3916 },
3917 Municipio {
3918 ibge_code: 2313005,
3919 name: "Solonópole",
3920 state: State::CE,
3921 },
3922 Municipio {
3923 ibge_code: 2312304,
3924 name: "São Benedito",
3925 state: State::CE,
3926 },
3927 Municipio {
3928 ibge_code: 2312403,
3929 name: "São Gonçalo do Amarante",
3930 state: State::CE,
3931 },
3932 Municipio {
3933 ibge_code: 2312502,
3934 name: "São João do Jaguaribe",
3935 state: State::CE,
3936 },
3937 Municipio {
3938 ibge_code: 2312601,
3939 name: "São Luís do Curu",
3940 state: State::CE,
3941 },
3942 Municipio {
3943 ibge_code: 2313104,
3944 name: "Tabuleiro do Norte",
3945 state: State::CE,
3946 },
3947 Municipio {
3948 ibge_code: 2313203,
3949 name: "Tamboril",
3950 state: State::CE,
3951 },
3952 Municipio {
3953 ibge_code: 2313252,
3954 name: "Tarrafas",
3955 state: State::CE,
3956 },
3957 Municipio {
3958 ibge_code: 2313302,
3959 name: "Tauá",
3960 state: State::CE,
3961 },
3962 Municipio {
3963 ibge_code: 2313351,
3964 name: "Tejuçuoca",
3965 state: State::CE,
3966 },
3967 Municipio {
3968 ibge_code: 2313401,
3969 name: "Tianguá",
3970 state: State::CE,
3971 },
3972 Municipio {
3973 ibge_code: 2313500,
3974 name: "Trairi",
3975 state: State::CE,
3976 },
3977 Municipio {
3978 ibge_code: 2313559,
3979 name: "Tururu",
3980 state: State::CE,
3981 },
3982 Municipio {
3983 ibge_code: 2313609,
3984 name: "Ubajara",
3985 state: State::CE,
3986 },
3987 Municipio {
3988 ibge_code: 2313708,
3989 name: "Umari",
3990 state: State::CE,
3991 },
3992 Municipio {
3993 ibge_code: 2313757,
3994 name: "Umirim",
3995 state: State::CE,
3996 },
3997 Municipio {
3998 ibge_code: 2313807,
3999 name: "Uruburetama",
4000 state: State::CE,
4001 },
4002 Municipio {
4003 ibge_code: 2313906,
4004 name: "Uruoca",
4005 state: State::CE,
4006 },
4007 Municipio {
4008 ibge_code: 2313955,
4009 name: "Varjota",
4010 state: State::CE,
4011 },
4012 Municipio {
4013 ibge_code: 2314102,
4014 name: "Viçosa do Ceará",
4015 state: State::CE,
4016 },
4017 Municipio {
4018 ibge_code: 2314003,
4019 name: "Várzea Alegre",
4020 state: State::CE,
4021 },
4022 Municipio {
4023 ibge_code: 5300108,
4024 name: "Brasília",
4025 state: State::DF,
4026 },
4027 Municipio {
4028 ibge_code: 3200102,
4029 name: "Afonso Cláudio",
4030 state: State::ES,
4031 },
4032 Municipio {
4033 ibge_code: 3200201,
4034 name: "Alegre",
4035 state: State::ES,
4036 },
4037 Municipio {
4038 ibge_code: 3200300,
4039 name: "Alfredo Chaves",
4040 state: State::ES,
4041 },
4042 Municipio {
4043 ibge_code: 3200359,
4044 name: "Alto Rio Novo",
4045 state: State::ES,
4046 },
4047 Municipio {
4048 ibge_code: 3200409,
4049 name: "Anchieta",
4050 state: State::ES,
4051 },
4052 Municipio {
4053 ibge_code: 3200508,
4054 name: "Apiacá",
4055 state: State::ES,
4056 },
4057 Municipio {
4058 ibge_code: 3200607,
4059 name: "Aracruz",
4060 state: State::ES,
4061 },
4062 Municipio {
4063 ibge_code: 3200706,
4064 name: "Atílio Vivácqua",
4065 state: State::ES,
4066 },
4067 Municipio {
4068 ibge_code: 3200805,
4069 name: "Baixo Guandu",
4070 state: State::ES,
4071 },
4072 Municipio {
4073 ibge_code: 3200904,
4074 name: "Barra de São Francisco",
4075 state: State::ES,
4076 },
4077 Municipio {
4078 ibge_code: 3201001,
4079 name: "Boa Esperança",
4080 state: State::ES,
4081 },
4082 Municipio {
4083 ibge_code: 3201100,
4084 name: "Bom Jesus do Norte",
4085 state: State::ES,
4086 },
4087 Municipio {
4088 ibge_code: 3201159,
4089 name: "Brejetuba",
4090 state: State::ES,
4091 },
4092 Municipio {
4093 ibge_code: 3201209,
4094 name: "Cachoeiro de Itapemirim",
4095 state: State::ES,
4096 },
4097 Municipio {
4098 ibge_code: 3201308,
4099 name: "Cariacica",
4100 state: State::ES,
4101 },
4102 Municipio {
4103 ibge_code: 3201407,
4104 name: "Castelo",
4105 state: State::ES,
4106 },
4107 Municipio {
4108 ibge_code: 3201506,
4109 name: "Colatina",
4110 state: State::ES,
4111 },
4112 Municipio {
4113 ibge_code: 3201605,
4114 name: "Conceição da Barra",
4115 state: State::ES,
4116 },
4117 Municipio {
4118 ibge_code: 3201704,
4119 name: "Conceição do Castelo",
4120 state: State::ES,
4121 },
4122 Municipio {
4123 ibge_code: 3201803,
4124 name: "Divino de São Lourenço",
4125 state: State::ES,
4126 },
4127 Municipio {
4128 ibge_code: 3201902,
4129 name: "Domingos Martins",
4130 state: State::ES,
4131 },
4132 Municipio {
4133 ibge_code: 3202009,
4134 name: "Dores do Rio Preto",
4135 state: State::ES,
4136 },
4137 Municipio {
4138 ibge_code: 3202108,
4139 name: "Ecoporanga",
4140 state: State::ES,
4141 },
4142 Municipio {
4143 ibge_code: 3202207,
4144 name: "Fundão",
4145 state: State::ES,
4146 },
4147 Municipio {
4148 ibge_code: 3202256,
4149 name: "Governador Lindenberg",
4150 state: State::ES,
4151 },
4152 Municipio {
4153 ibge_code: 3202405,
4154 name: "Guarapari",
4155 state: State::ES,
4156 },
4157 Municipio {
4158 ibge_code: 3202306,
4159 name: "Guaçuí",
4160 state: State::ES,
4161 },
4162 Municipio {
4163 ibge_code: 3202454,
4164 name: "Ibatiba",
4165 state: State::ES,
4166 },
4167 Municipio {
4168 ibge_code: 3202504,
4169 name: "Ibiraçu",
4170 state: State::ES,
4171 },
4172 Municipio {
4173 ibge_code: 3202553,
4174 name: "Ibitirama",
4175 state: State::ES,
4176 },
4177 Municipio {
4178 ibge_code: 3202603,
4179 name: "Iconha",
4180 state: State::ES,
4181 },
4182 Municipio {
4183 ibge_code: 3202652,
4184 name: "Irupi",
4185 state: State::ES,
4186 },
4187 Municipio {
4188 ibge_code: 3202702,
4189 name: "Itaguaçu",
4190 state: State::ES,
4191 },
4192 Municipio {
4193 ibge_code: 3202801,
4194 name: "Itapemirim",
4195 state: State::ES,
4196 },
4197 Municipio {
4198 ibge_code: 3202900,
4199 name: "Itarana",
4200 state: State::ES,
4201 },
4202 Municipio {
4203 ibge_code: 3203007,
4204 name: "Iúna",
4205 state: State::ES,
4206 },
4207 Municipio {
4208 ibge_code: 3203056,
4209 name: "Jaguaré",
4210 state: State::ES,
4211 },
4212 Municipio {
4213 ibge_code: 3203106,
4214 name: "Jerônimo Monteiro",
4215 state: State::ES,
4216 },
4217 Municipio {
4218 ibge_code: 3203130,
4219 name: "João Neiva",
4220 state: State::ES,
4221 },
4222 Municipio {
4223 ibge_code: 3203163,
4224 name: "Laranja da Terra",
4225 state: State::ES,
4226 },
4227 Municipio {
4228 ibge_code: 3203205,
4229 name: "Linhares",
4230 state: State::ES,
4231 },
4232 Municipio {
4233 ibge_code: 3203304,
4234 name: "Mantenópolis",
4235 state: State::ES,
4236 },
4237 Municipio {
4238 ibge_code: 3203320,
4239 name: "Marataízes",
4240 state: State::ES,
4241 },
4242 Municipio {
4243 ibge_code: 3203346,
4244 name: "Marechal Floriano",
4245 state: State::ES,
4246 },
4247 Municipio {
4248 ibge_code: 3203353,
4249 name: "Marilândia",
4250 state: State::ES,
4251 },
4252 Municipio {
4253 ibge_code: 3203403,
4254 name: "Mimoso do Sul",
4255 state: State::ES,
4256 },
4257 Municipio {
4258 ibge_code: 3203502,
4259 name: "Montanha",
4260 state: State::ES,
4261 },
4262 Municipio {
4263 ibge_code: 3203601,
4264 name: "Mucurici",
4265 state: State::ES,
4266 },
4267 Municipio {
4268 ibge_code: 3203700,
4269 name: "Muniz Freire",
4270 state: State::ES,
4271 },
4272 Municipio {
4273 ibge_code: 3203809,
4274 name: "Muqui",
4275 state: State::ES,
4276 },
4277 Municipio {
4278 ibge_code: 3203908,
4279 name: "Nova Venécia",
4280 state: State::ES,
4281 },
4282 Municipio {
4283 ibge_code: 3204005,
4284 name: "Pancas",
4285 state: State::ES,
4286 },
4287 Municipio {
4288 ibge_code: 3204054,
4289 name: "Pedro Canário",
4290 state: State::ES,
4291 },
4292 Municipio {
4293 ibge_code: 3204104,
4294 name: "Pinheiros",
4295 state: State::ES,
4296 },
4297 Municipio {
4298 ibge_code: 3204203,
4299 name: "Piúma",
4300 state: State::ES,
4301 },
4302 Municipio {
4303 ibge_code: 3204252,
4304 name: "Ponto Belo",
4305 state: State::ES,
4306 },
4307 Municipio {
4308 ibge_code: 3204302,
4309 name: "Presidente Kennedy",
4310 state: State::ES,
4311 },
4312 Municipio {
4313 ibge_code: 3204351,
4314 name: "Rio Bananal",
4315 state: State::ES,
4316 },
4317 Municipio {
4318 ibge_code: 3204401,
4319 name: "Rio Novo do Sul",
4320 state: State::ES,
4321 },
4322 Municipio {
4323 ibge_code: 3204500,
4324 name: "Santa Leopoldina",
4325 state: State::ES,
4326 },
4327 Municipio {
4328 ibge_code: 3204559,
4329 name: "Santa Maria de Jetibá",
4330 state: State::ES,
4331 },
4332 Municipio {
4333 ibge_code: 3204609,
4334 name: "Santa Teresa",
4335 state: State::ES,
4336 },
4337 Municipio {
4338 ibge_code: 3205002,
4339 name: "Serra",
4340 state: State::ES,
4341 },
4342 Municipio {
4343 ibge_code: 3205010,
4344 name: "Sooretama",
4345 state: State::ES,
4346 },
4347 Municipio {
4348 ibge_code: 3204658,
4349 name: "São Domingos do Norte",
4350 state: State::ES,
4351 },
4352 Municipio {
4353 ibge_code: 3204708,
4354 name: "São Gabriel da Palha",
4355 state: State::ES,
4356 },
4357 Municipio {
4358 ibge_code: 3204807,
4359 name: "São José do Calçado",
4360 state: State::ES,
4361 },
4362 Municipio {
4363 ibge_code: 3204906,
4364 name: "São Mateus",
4365 state: State::ES,
4366 },
4367 Municipio {
4368 ibge_code: 3204955,
4369 name: "São Roque do Canaã",
4370 state: State::ES,
4371 },
4372 Municipio {
4373 ibge_code: 3205036,
4374 name: "Vargem Alta",
4375 state: State::ES,
4376 },
4377 Municipio {
4378 ibge_code: 3205069,
4379 name: "Venda Nova do Imigrante",
4380 state: State::ES,
4381 },
4382 Municipio {
4383 ibge_code: 3205101,
4384 name: "Viana",
4385 state: State::ES,
4386 },
4387 Municipio {
4388 ibge_code: 3205150,
4389 name: "Vila Pavão",
4390 state: State::ES,
4391 },
4392 Municipio {
4393 ibge_code: 3205176,
4394 name: "Vila Valério",
4395 state: State::ES,
4396 },
4397 Municipio {
4398 ibge_code: 3205200,
4399 name: "Vila Velha",
4400 state: State::ES,
4401 },
4402 Municipio {
4403 ibge_code: 3205309,
4404 name: "Vitória",
4405 state: State::ES,
4406 },
4407 Municipio {
4408 ibge_code: 3200169,
4409 name: "Água Doce do Norte",
4410 state: State::ES,
4411 },
4412 Municipio {
4413 ibge_code: 3200136,
4414 name: "Águia Branca",
4415 state: State::ES,
4416 },
4417 Municipio {
4418 ibge_code: 5200050,
4419 name: "Abadia de Goiás",
4420 state: State::GO,
4421 },
4422 Municipio {
4423 ibge_code: 5200100,
4424 name: "Abadiânia",
4425 state: State::GO,
4426 },
4427 Municipio {
4428 ibge_code: 5200134,
4429 name: "Acreúna",
4430 state: State::GO,
4431 },
4432 Municipio {
4433 ibge_code: 5200159,
4434 name: "Adelândia",
4435 state: State::GO,
4436 },
4437 Municipio {
4438 ibge_code: 5200308,
4439 name: "Alexânia",
4440 state: State::GO,
4441 },
4442 Municipio {
4443 ibge_code: 5200506,
4444 name: "Aloândia",
4445 state: State::GO,
4446 },
4447 Municipio {
4448 ibge_code: 5200555,
4449 name: "Alto Horizonte",
4450 state: State::GO,
4451 },
4452 Municipio {
4453 ibge_code: 5200605,
4454 name: "Alto Paraíso de Goiás",
4455 state: State::GO,
4456 },
4457 Municipio {
4458 ibge_code: 5200803,
4459 name: "Alvorada do Norte",
4460 state: State::GO,
4461 },
4462 Municipio {
4463 ibge_code: 5200829,
4464 name: "Amaralina",
4465 state: State::GO,
4466 },
4467 Municipio {
4468 ibge_code: 5200852,
4469 name: "Americano do Brasil",
4470 state: State::GO,
4471 },
4472 Municipio {
4473 ibge_code: 5200902,
4474 name: "Amorinópolis",
4475 state: State::GO,
4476 },
4477 Municipio {
4478 ibge_code: 5201207,
4479 name: "Anhanguera",
4480 state: State::GO,
4481 },
4482 Municipio {
4483 ibge_code: 5201306,
4484 name: "Anicuns",
4485 state: State::GO,
4486 },
4487 Municipio {
4488 ibge_code: 5201108,
4489 name: "Anápolis",
4490 state: State::GO,
4491 },
4492 Municipio {
4493 ibge_code: 5201405,
4494 name: "Aparecida de Goiânia",
4495 state: State::GO,
4496 },
4497 Municipio {
4498 ibge_code: 5201454,
4499 name: "Aparecida do Rio Doce",
4500 state: State::GO,
4501 },
4502 Municipio {
4503 ibge_code: 5201504,
4504 name: "Aporé",
4505 state: State::GO,
4506 },
4507 Municipio {
4508 ibge_code: 5201702,
4509 name: "Aragarças",
4510 state: State::GO,
4511 },
4512 Municipio {
4513 ibge_code: 5201801,
4514 name: "Aragoiânia",
4515 state: State::GO,
4516 },
4517 Municipio {
4518 ibge_code: 5202155,
4519 name: "Araguapaz",
4520 state: State::GO,
4521 },
4522 Municipio {
4523 ibge_code: 5201603,
4524 name: "Araçu",
4525 state: State::GO,
4526 },
4527 Municipio {
4528 ibge_code: 5202353,
4529 name: "Arenópolis",
4530 state: State::GO,
4531 },
4532 Municipio {
4533 ibge_code: 5202502,
4534 name: "Aruanã",
4535 state: State::GO,
4536 },
4537 Municipio {
4538 ibge_code: 5202601,
4539 name: "Aurilândia",
4540 state: State::GO,
4541 },
4542 Municipio {
4543 ibge_code: 5202809,
4544 name: "Avelinópolis",
4545 state: State::GO,
4546 },
4547 Municipio {
4548 ibge_code: 5203104,
4549 name: "Baliza",
4550 state: State::GO,
4551 },
4552 Municipio {
4553 ibge_code: 5203203,
4554 name: "Barro Alto",
4555 state: State::GO,
4556 },
4557 Municipio {
4558 ibge_code: 5203302,
4559 name: "Bela Vista de Goiás",
4560 state: State::GO,
4561 },
4562 Municipio {
4563 ibge_code: 5203401,
4564 name: "Bom Jardim de Goiás",
4565 state: State::GO,
4566 },
4567 Municipio {
4568 ibge_code: 5203500,
4569 name: "Bom Jesus de Goiás",
4570 state: State::GO,
4571 },
4572 Municipio {
4573 ibge_code: 5203559,
4574 name: "Bonfinópolis",
4575 state: State::GO,
4576 },
4577 Municipio {
4578 ibge_code: 5203575,
4579 name: "Bonópolis",
4580 state: State::GO,
4581 },
4582 Municipio {
4583 ibge_code: 5203609,
4584 name: "Brazabrantes",
4585 state: State::GO,
4586 },
4587 Municipio {
4588 ibge_code: 5203807,
4589 name: "Britânia",
4590 state: State::GO,
4591 },
4592 Municipio {
4593 ibge_code: 5203906,
4594 name: "Buriti Alegre",
4595 state: State::GO,
4596 },
4597 Municipio {
4598 ibge_code: 5203939,
4599 name: "Buriti de Goiás",
4600 state: State::GO,
4601 },
4602 Municipio {
4603 ibge_code: 5203962,
4604 name: "Buritinópolis",
4605 state: State::GO,
4606 },
4607 Municipio {
4608 ibge_code: 5204003,
4609 name: "Cabeceiras",
4610 state: State::GO,
4611 },
4612 Municipio {
4613 ibge_code: 5204102,
4614 name: "Cachoeira Alta",
4615 state: State::GO,
4616 },
4617 Municipio {
4618 ibge_code: 5204250,
4619 name: "Cachoeira Dourada",
4620 state: State::GO,
4621 },
4622 Municipio {
4623 ibge_code: 5204201,
4624 name: "Cachoeira de Goiás",
4625 state: State::GO,
4626 },
4627 Municipio {
4628 ibge_code: 5204409,
4629 name: "Caiapônia",
4630 state: State::GO,
4631 },
4632 Municipio {
4633 ibge_code: 5204508,
4634 name: "Caldas Novas",
4635 state: State::GO,
4636 },
4637 Municipio {
4638 ibge_code: 5204557,
4639 name: "Caldazinha",
4640 state: State::GO,
4641 },
4642 Municipio {
4643 ibge_code: 5204607,
4644 name: "Campestre de Goiás",
4645 state: State::GO,
4646 },
4647 Municipio {
4648 ibge_code: 5204656,
4649 name: "Campinaçu",
4650 state: State::GO,
4651 },
4652 Municipio {
4653 ibge_code: 5204706,
4654 name: "Campinorte",
4655 state: State::GO,
4656 },
4657 Municipio {
4658 ibge_code: 5204805,
4659 name: "Campo Alegre de Goiás",
4660 state: State::GO,
4661 },
4662 Municipio {
4663 ibge_code: 5204854,
4664 name: "Campo Limpo de Goiás",
4665 state: State::GO,
4666 },
4667 Municipio {
4668 ibge_code: 5204904,
4669 name: "Campos Belos",
4670 state: State::GO,
4671 },
4672 Municipio {
4673 ibge_code: 5204953,
4674 name: "Campos Verdes",
4675 state: State::GO,
4676 },
4677 Municipio {
4678 ibge_code: 5205000,
4679 name: "Carmo do Rio Verde",
4680 state: State::GO,
4681 },
4682 Municipio {
4683 ibge_code: 5205059,
4684 name: "Castelândia",
4685 state: State::GO,
4686 },
4687 Municipio {
4688 ibge_code: 5205109,
4689 name: "Catalão",
4690 state: State::GO,
4691 },
4692 Municipio {
4693 ibge_code: 5205208,
4694 name: "Caturaí",
4695 state: State::GO,
4696 },
4697 Municipio {
4698 ibge_code: 5205307,
4699 name: "Cavalcante",
4700 state: State::GO,
4701 },
4702 Municipio {
4703 ibge_code: 5204300,
4704 name: "Caçu",
4705 state: State::GO,
4706 },
4707 Municipio {
4708 ibge_code: 5205406,
4709 name: "Ceres",
4710 state: State::GO,
4711 },
4712 Municipio {
4713 ibge_code: 5205455,
4714 name: "Cezarina",
4715 state: State::GO,
4716 },
4717 Municipio {
4718 ibge_code: 5205471,
4719 name: "Chapadão do Céu",
4720 state: State::GO,
4721 },
4722 Municipio {
4723 ibge_code: 5205497,
4724 name: "Cidade Ocidental",
4725 state: State::GO,
4726 },
4727 Municipio {
4728 ibge_code: 5205513,
4729 name: "Cocalzinho de Goiás",
4730 state: State::GO,
4731 },
4732 Municipio {
4733 ibge_code: 5205521,
4734 name: "Colinas do Sul",
4735 state: State::GO,
4736 },
4737 Municipio {
4738 ibge_code: 5205901,
4739 name: "Corumbaíba",
4740 state: State::GO,
4741 },
4742 Municipio {
4743 ibge_code: 5205802,
4744 name: "Corumbá de Goiás",
4745 state: State::GO,
4746 },
4747 Municipio {
4748 ibge_code: 5206206,
4749 name: "Cristalina",
4750 state: State::GO,
4751 },
4752 Municipio {
4753 ibge_code: 5206305,
4754 name: "Cristianópolis",
4755 state: State::GO,
4756 },
4757 Municipio {
4758 ibge_code: 5206404,
4759 name: "Crixás",
4760 state: State::GO,
4761 },
4762 Municipio {
4763 ibge_code: 5206503,
4764 name: "Cromínia",
4765 state: State::GO,
4766 },
4767 Municipio {
4768 ibge_code: 5206602,
4769 name: "Cumari",
4770 state: State::GO,
4771 },
4772 Municipio {
4773 ibge_code: 5205703,
4774 name: "Córrego do Ouro",
4775 state: State::GO,
4776 },
4777 Municipio {
4778 ibge_code: 5206701,
4779 name: "Damianópolis",
4780 state: State::GO,
4781 },
4782 Municipio {
4783 ibge_code: 5206800,
4784 name: "Damolândia",
4785 state: State::GO,
4786 },
4787 Municipio {
4788 ibge_code: 5206909,
4789 name: "Davinópolis",
4790 state: State::GO,
4791 },
4792 Municipio {
4793 ibge_code: 5207105,
4794 name: "Diorama",
4795 state: State::GO,
4796 },
4797 Municipio {
4798 ibge_code: 5208301,
4799 name: "Divinópolis de Goiás",
4800 state: State::GO,
4801 },
4802 Municipio {
4803 ibge_code: 5207253,
4804 name: "Doverlândia",
4805 state: State::GO,
4806 },
4807 Municipio {
4808 ibge_code: 5207352,
4809 name: "Edealina",
4810 state: State::GO,
4811 },
4812 Municipio {
4813 ibge_code: 5207402,
4814 name: "Edéia",
4815 state: State::GO,
4816 },
4817 Municipio {
4818 ibge_code: 5207501,
4819 name: "Estrela do Norte",
4820 state: State::GO,
4821 },
4822 Municipio {
4823 ibge_code: 5207535,
4824 name: "Faina",
4825 state: State::GO,
4826 },
4827 Municipio {
4828 ibge_code: 5207600,
4829 name: "Fazenda Nova",
4830 state: State::GO,
4831 },
4832 Municipio {
4833 ibge_code: 5207808,
4834 name: "Firminópolis",
4835 state: State::GO,
4836 },
4837 Municipio {
4838 ibge_code: 5207907,
4839 name: "Flores de Goiás",
4840 state: State::GO,
4841 },
4842 Municipio {
4843 ibge_code: 5208004,
4844 name: "Formosa",
4845 state: State::GO,
4846 },
4847 Municipio {
4848 ibge_code: 5208103,
4849 name: "Formoso",
4850 state: State::GO,
4851 },
4852 Municipio {
4853 ibge_code: 5208152,
4854 name: "Gameleira de Goiás",
4855 state: State::GO,
4856 },
4857 Municipio {
4858 ibge_code: 5208509,
4859 name: "Goiandira",
4860 state: State::GO,
4861 },
4862 Municipio {
4863 ibge_code: 5208806,
4864 name: "Goianira",
4865 state: State::GO,
4866 },
4867 Municipio {
4868 ibge_code: 5208400,
4869 name: "Goianápolis",
4870 state: State::GO,
4871 },
4872 Municipio {
4873 ibge_code: 5208608,
4874 name: "Goianésia",
4875 state: State::GO,
4876 },
4877 Municipio {
4878 ibge_code: 5209101,
4879 name: "Goiatuba",
4880 state: State::GO,
4881 },
4882 Municipio {
4883 ibge_code: 5208905,
4884 name: "Goiás",
4885 state: State::GO,
4886 },
4887 Municipio {
4888 ibge_code: 5208707,
4889 name: "Goiânia",
4890 state: State::GO,
4891 },
4892 Municipio {
4893 ibge_code: 5209150,
4894 name: "Gouvelândia",
4895 state: State::GO,
4896 },
4897 Municipio {
4898 ibge_code: 5209200,
4899 name: "Guapó",
4900 state: State::GO,
4901 },
4902 Municipio {
4903 ibge_code: 5209408,
4904 name: "Guarani de Goiás",
4905 state: State::GO,
4906 },
4907 Municipio {
4908 ibge_code: 5209291,
4909 name: "Guaraíta",
4910 state: State::GO,
4911 },
4912 Municipio {
4913 ibge_code: 5209457,
4914 name: "Guarinos",
4915 state: State::GO,
4916 },
4917 Municipio {
4918 ibge_code: 5209606,
4919 name: "Heitoraí",
4920 state: State::GO,
4921 },
4922 Municipio {
4923 ibge_code: 5209804,
4924 name: "Hidrolina",
4925 state: State::GO,
4926 },
4927 Municipio {
4928 ibge_code: 5209705,
4929 name: "Hidrolândia",
4930 state: State::GO,
4931 },
4932 Municipio {
4933 ibge_code: 5209903,
4934 name: "Iaciara",
4935 state: State::GO,
4936 },
4937 Municipio {
4938 ibge_code: 5209937,
4939 name: "Inaciolândia",
4940 state: State::GO,
4941 },
4942 Municipio {
4943 ibge_code: 5209952,
4944 name: "Indiara",
4945 state: State::GO,
4946 },
4947 Municipio {
4948 ibge_code: 5210000,
4949 name: "Inhumas",
4950 state: State::GO,
4951 },
4952 Municipio {
4953 ibge_code: 5210109,
4954 name: "Ipameri",
4955 state: State::GO,
4956 },
4957 Municipio {
4958 ibge_code: 5210158,
4959 name: "Ipiranga de Goiás",
4960 state: State::GO,
4961 },
4962 Municipio {
4963 ibge_code: 5210208,
4964 name: "Iporá",
4965 state: State::GO,
4966 },
4967 Municipio {
4968 ibge_code: 5210307,
4969 name: "Israelândia",
4970 state: State::GO,
4971 },
4972 Municipio {
4973 ibge_code: 5210406,
4974 name: "Itaberaí",
4975 state: State::GO,
4976 },
4977 Municipio {
4978 ibge_code: 5210562,
4979 name: "Itaguari",
4980 state: State::GO,
4981 },
4982 Municipio {
4983 ibge_code: 5210604,
4984 name: "Itaguaru",
4985 state: State::GO,
4986 },
4987 Municipio {
4988 ibge_code: 5210802,
4989 name: "Itajá",
4990 state: State::GO,
4991 },
4992 Municipio {
4993 ibge_code: 5210901,
4994 name: "Itapaci",
4995 state: State::GO,
4996 },
4997 Municipio {
4998 ibge_code: 5211008,
4999 name: "Itapirapuã",
5000 state: State::GO,
5001 },
5002 Municipio {
5003 ibge_code: 5211206,
5004 name: "Itapuranga",
5005 state: State::GO,
5006 },
5007 Municipio {
5008 ibge_code: 5211305,
5009 name: "Itarumã",
5010 state: State::GO,
5011 },
5012 Municipio {
5013 ibge_code: 5211404,
5014 name: "Itauçu",
5015 state: State::GO,
5016 },
5017 Municipio {
5018 ibge_code: 5211503,
5019 name: "Itumbiara",
5020 state: State::GO,
5021 },
5022 Municipio {
5023 ibge_code: 5211602,
5024 name: "Ivolândia",
5025 state: State::GO,
5026 },
5027 Municipio {
5028 ibge_code: 5211701,
5029 name: "Jandaia",
5030 state: State::GO,
5031 },
5032 Municipio {
5033 ibge_code: 5211800,
5034 name: "Jaraguá",
5035 state: State::GO,
5036 },
5037 Municipio {
5038 ibge_code: 5211909,
5039 name: "Jataí",
5040 state: State::GO,
5041 },
5042 Municipio {
5043 ibge_code: 5212006,
5044 name: "Jaupaci",
5045 state: State::GO,
5046 },
5047 Municipio {
5048 ibge_code: 5212055,
5049 name: "Jesúpolis",
5050 state: State::GO,
5051 },
5052 Municipio {
5053 ibge_code: 5212105,
5054 name: "Joviânia",
5055 state: State::GO,
5056 },
5057 Municipio {
5058 ibge_code: 5212204,
5059 name: "Jussara",
5060 state: State::GO,
5061 },
5062 Municipio {
5063 ibge_code: 5212253,
5064 name: "Lagoa Santa",
5065 state: State::GO,
5066 },
5067 Municipio {
5068 ibge_code: 5212303,
5069 name: "Leopoldo de Bulhões",
5070 state: State::GO,
5071 },
5072 Municipio {
5073 ibge_code: 5212501,
5074 name: "Luziânia",
5075 state: State::GO,
5076 },
5077 Municipio {
5078 ibge_code: 5212600,
5079 name: "Mairipotaba",
5080 state: State::GO,
5081 },
5082 Municipio {
5083 ibge_code: 5212709,
5084 name: "Mambaí",
5085 state: State::GO,
5086 },
5087 Municipio {
5088 ibge_code: 5212808,
5089 name: "Mara Rosa",
5090 state: State::GO,
5091 },
5092 Municipio {
5093 ibge_code: 5212907,
5094 name: "Marzagão",
5095 state: State::GO,
5096 },
5097 Municipio {
5098 ibge_code: 5212956,
5099 name: "Matrinchã",
5100 state: State::GO,
5101 },
5102 Municipio {
5103 ibge_code: 5213004,
5104 name: "Maurilândia",
5105 state: State::GO,
5106 },
5107 Municipio {
5108 ibge_code: 5213053,
5109 name: "Mimoso de Goiás",
5110 state: State::GO,
5111 },
5112 Municipio {
5113 ibge_code: 5213087,
5114 name: "Minaçu",
5115 state: State::GO,
5116 },
5117 Municipio {
5118 ibge_code: 5213103,
5119 name: "Mineiros",
5120 state: State::GO,
5121 },
5122 Municipio {
5123 ibge_code: 5213400,
5124 name: "Moiporá",
5125 state: State::GO,
5126 },
5127 Municipio {
5128 ibge_code: 5213509,
5129 name: "Monte Alegre de Goiás",
5130 state: State::GO,
5131 },
5132 Municipio {
5133 ibge_code: 5213707,
5134 name: "Montes Claros de Goiás",
5135 state: State::GO,
5136 },
5137 Municipio {
5138 ibge_code: 5213756,
5139 name: "Montividiu",
5140 state: State::GO,
5141 },
5142 Municipio {
5143 ibge_code: 5213772,
5144 name: "Montividiu do Norte",
5145 state: State::GO,
5146 },
5147 Municipio {
5148 ibge_code: 5213806,
5149 name: "Morrinhos",
5150 state: State::GO,
5151 },
5152 Municipio {
5153 ibge_code: 5213855,
5154 name: "Morro Agudo de Goiás",
5155 state: State::GO,
5156 },
5157 Municipio {
5158 ibge_code: 5213905,
5159 name: "Mossâmedes",
5160 state: State::GO,
5161 },
5162 Municipio {
5163 ibge_code: 5214002,
5164 name: "Mozarlândia",
5165 state: State::GO,
5166 },
5167 Municipio {
5168 ibge_code: 5214051,
5169 name: "Mundo Novo",
5170 state: State::GO,
5171 },
5172 Municipio {
5173 ibge_code: 5214101,
5174 name: "Mutunópolis",
5175 state: State::GO,
5176 },
5177 Municipio {
5178 ibge_code: 5214408,
5179 name: "Nazário",
5180 state: State::GO,
5181 },
5182 Municipio {
5183 ibge_code: 5214507,
5184 name: "Nerópolis",
5185 state: State::GO,
5186 },
5187 Municipio {
5188 ibge_code: 5214606,
5189 name: "Niquelândia",
5190 state: State::GO,
5191 },
5192 Municipio {
5193 ibge_code: 5214705,
5194 name: "Nova América",
5195 state: State::GO,
5196 },
5197 Municipio {
5198 ibge_code: 5214804,
5199 name: "Nova Aurora",
5200 state: State::GO,
5201 },
5202 Municipio {
5203 ibge_code: 5214838,
5204 name: "Nova Crixás",
5205 state: State::GO,
5206 },
5207 Municipio {
5208 ibge_code: 5214861,
5209 name: "Nova Glória",
5210 state: State::GO,
5211 },
5212 Municipio {
5213 ibge_code: 5214879,
5214 name: "Nova Iguaçu de Goiás",
5215 state: State::GO,
5216 },
5217 Municipio {
5218 ibge_code: 5214903,
5219 name: "Nova Roma",
5220 state: State::GO,
5221 },
5222 Municipio {
5223 ibge_code: 5215009,
5224 name: "Nova Veneza",
5225 state: State::GO,
5226 },
5227 Municipio {
5228 ibge_code: 5215207,
5229 name: "Novo Brasil",
5230 state: State::GO,
5231 },
5232 Municipio {
5233 ibge_code: 5215231,
5234 name: "Novo Gama",
5235 state: State::GO,
5236 },
5237 Municipio {
5238 ibge_code: 5215256,
5239 name: "Novo Planalto",
5240 state: State::GO,
5241 },
5242 Municipio {
5243 ibge_code: 5215306,
5244 name: "Orizona",
5245 state: State::GO,
5246 },
5247 Municipio {
5248 ibge_code: 5215405,
5249 name: "Ouro Verde de Goiás",
5250 state: State::GO,
5251 },
5252 Municipio {
5253 ibge_code: 5215504,
5254 name: "Ouvidor",
5255 state: State::GO,
5256 },
5257 Municipio {
5258 ibge_code: 5215603,
5259 name: "Padre Bernardo",
5260 state: State::GO,
5261 },
5262 Municipio {
5263 ibge_code: 5215652,
5264 name: "Palestina de Goiás",
5265 state: State::GO,
5266 },
5267 Municipio {
5268 ibge_code: 5215702,
5269 name: "Palmeiras de Goiás",
5270 state: State::GO,
5271 },
5272 Municipio {
5273 ibge_code: 5215801,
5274 name: "Palmelo",
5275 state: State::GO,
5276 },
5277 Municipio {
5278 ibge_code: 5215900,
5279 name: "Palminópolis",
5280 state: State::GO,
5281 },
5282 Municipio {
5283 ibge_code: 5216007,
5284 name: "Panamá",
5285 state: State::GO,
5286 },
5287 Municipio {
5288 ibge_code: 5216304,
5289 name: "Paranaiguara",
5290 state: State::GO,
5291 },
5292 Municipio {
5293 ibge_code: 5216403,
5294 name: "Paraúna",
5295 state: State::GO,
5296 },
5297 Municipio {
5298 ibge_code: 5216452,
5299 name: "Perolândia",
5300 state: State::GO,
5301 },
5302 Municipio {
5303 ibge_code: 5216809,
5304 name: "Petrolina de Goiás",
5305 state: State::GO,
5306 },
5307 Municipio {
5308 ibge_code: 5216908,
5309 name: "Pilar de Goiás",
5310 state: State::GO,
5311 },
5312 Municipio {
5313 ibge_code: 5217104,
5314 name: "Piracanjuba",
5315 state: State::GO,
5316 },
5317 Municipio {
5318 ibge_code: 5217203,
5319 name: "Piranhas",
5320 state: State::GO,
5321 },
5322 Municipio {
5323 ibge_code: 5217302,
5324 name: "Pirenópolis",
5325 state: State::GO,
5326 },
5327 Municipio {
5328 ibge_code: 5217401,
5329 name: "Pires do Rio",
5330 state: State::GO,
5331 },
5332 Municipio {
5333 ibge_code: 5217609,
5334 name: "Planaltina",
5335 state: State::GO,
5336 },
5337 Municipio {
5338 ibge_code: 5217708,
5339 name: "Pontalina",
5340 state: State::GO,
5341 },
5342 Municipio {
5343 ibge_code: 5218003,
5344 name: "Porangatu",
5345 state: State::GO,
5346 },
5347 Municipio {
5348 ibge_code: 5218052,
5349 name: "Porteirão",
5350 state: State::GO,
5351 },
5352 Municipio {
5353 ibge_code: 5218102,
5354 name: "Portelândia",
5355 state: State::GO,
5356 },
5357 Municipio {
5358 ibge_code: 5218300,
5359 name: "Posse",
5360 state: State::GO,
5361 },
5362 Municipio {
5363 ibge_code: 5218391,
5364 name: "Professor Jamil",
5365 state: State::GO,
5366 },
5367 Municipio {
5368 ibge_code: 5218508,
5369 name: "Quirinópolis",
5370 state: State::GO,
5371 },
5372 Municipio {
5373 ibge_code: 5218607,
5374 name: "Rialma",
5375 state: State::GO,
5376 },
5377 Municipio {
5378 ibge_code: 5218706,
5379 name: "Rianápolis",
5380 state: State::GO,
5381 },
5382 Municipio {
5383 ibge_code: 5218789,
5384 name: "Rio Quente",
5385 state: State::GO,
5386 },
5387 Municipio {
5388 ibge_code: 5218805,
5389 name: "Rio Verde",
5390 state: State::GO,
5391 },
5392 Municipio {
5393 ibge_code: 5218904,
5394 name: "Rubiataba",
5395 state: State::GO,
5396 },
5397 Municipio {
5398 ibge_code: 5219001,
5399 name: "Sanclerlândia",
5400 state: State::GO,
5401 },
5402 Municipio {
5403 ibge_code: 5219100,
5404 name: "Santa Bárbara de Goiás",
5405 state: State::GO,
5406 },
5407 Municipio {
5408 ibge_code: 5219209,
5409 name: "Santa Cruz de Goiás",
5410 state: State::GO,
5411 },
5412 Municipio {
5413 ibge_code: 5219258,
5414 name: "Santa Fé de Goiás",
5415 state: State::GO,
5416 },
5417 Municipio {
5418 ibge_code: 5219308,
5419 name: "Santa Helena de Goiás",
5420 state: State::GO,
5421 },
5422 Municipio {
5423 ibge_code: 5219357,
5424 name: "Santa Isabel",
5425 state: State::GO,
5426 },
5427 Municipio {
5428 ibge_code: 5219407,
5429 name: "Santa Rita do Araguaia",
5430 state: State::GO,
5431 },
5432 Municipio {
5433 ibge_code: 5219456,
5434 name: "Santa Rita do Novo Destino",
5435 state: State::GO,
5436 },
5437 Municipio {
5438 ibge_code: 5219506,
5439 name: "Santa Rosa de Goiás",
5440 state: State::GO,
5441 },
5442 Municipio {
5443 ibge_code: 5219605,
5444 name: "Santa Tereza de Goiás",
5445 state: State::GO,
5446 },
5447 Municipio {
5448 ibge_code: 5219704,
5449 name: "Santa Terezinha de Goiás",
5450 state: State::GO,
5451 },
5452 Municipio {
5453 ibge_code: 5219712,
5454 name: "Santo Antônio da Barra",
5455 state: State::GO,
5456 },
5457 Municipio {
5458 ibge_code: 5219738,
5459 name: "Santo Antônio de Goiás",
5460 state: State::GO,
5461 },
5462 Municipio {
5463 ibge_code: 5219753,
5464 name: "Santo Antônio do Descoberto",
5465 state: State::GO,
5466 },
5467 Municipio {
5468 ibge_code: 5220454,
5469 name: "Senador Canedo",
5470 state: State::GO,
5471 },
5472 Municipio {
5473 ibge_code: 5220504,
5474 name: "Serranópolis",
5475 state: State::GO,
5476 },
5477 Municipio {
5478 ibge_code: 5220603,
5479 name: "Silvânia",
5480 state: State::GO,
5481 },
5482 Municipio {
5483 ibge_code: 5220686,
5484 name: "Simolândia",
5485 state: State::GO,
5486 },
5487 Municipio {
5488 ibge_code: 5219803,
5489 name: "São Domingos",
5490 state: State::GO,
5491 },
5492 Municipio {
5493 ibge_code: 5219902,
5494 name: "São Francisco de Goiás",
5495 state: State::GO,
5496 },
5497 Municipio {
5498 ibge_code: 5220009,
5499 name: "São João d'Aliança",
5500 state: State::GO,
5501 },
5502 Municipio {
5503 ibge_code: 5220058,
5504 name: "São João da Paraúna",
5505 state: State::GO,
5506 },
5507 Municipio {
5508 ibge_code: 5220157,
5509 name: "São Luiz do Norte",
5510 state: State::GO,
5511 },
5512 Municipio {
5513 ibge_code: 5220108,
5514 name: "São Luís de Montes Belos",
5515 state: State::GO,
5516 },
5517 Municipio {
5518 ibge_code: 5220207,
5519 name: "São Miguel do Araguaia",
5520 state: State::GO,
5521 },
5522 Municipio {
5523 ibge_code: 5220264,
5524 name: "São Miguel do Passa Quatro",
5525 state: State::GO,
5526 },
5527 Municipio {
5528 ibge_code: 5220280,
5529 name: "São Patrício",
5530 state: State::GO,
5531 },
5532 Municipio {
5533 ibge_code: 5220405,
5534 name: "São Simão",
5535 state: State::GO,
5536 },
5537 Municipio {
5538 ibge_code: 5220702,
5539 name: "Sítio d'Abadia",
5540 state: State::GO,
5541 },
5542 Municipio {
5543 ibge_code: 5221007,
5544 name: "Taquaral de Goiás",
5545 state: State::GO,
5546 },
5547 Municipio {
5548 ibge_code: 5221080,
5549 name: "Teresina de Goiás",
5550 state: State::GO,
5551 },
5552 Municipio {
5553 ibge_code: 5221197,
5554 name: "Terezópolis de Goiás",
5555 state: State::GO,
5556 },
5557 Municipio {
5558 ibge_code: 5221403,
5559 name: "Trindade",
5560 state: State::GO,
5561 },
5562 Municipio {
5563 ibge_code: 5221452,
5564 name: "Trombas",
5565 state: State::GO,
5566 },
5567 Municipio {
5568 ibge_code: 5221304,
5569 name: "Três Ranchos",
5570 state: State::GO,
5571 },
5572 Municipio {
5573 ibge_code: 5221551,
5574 name: "Turvelândia",
5575 state: State::GO,
5576 },
5577 Municipio {
5578 ibge_code: 5221502,
5579 name: "Turvânia",
5580 state: State::GO,
5581 },
5582 Municipio {
5583 ibge_code: 5221577,
5584 name: "Uirapuru",
5585 state: State::GO,
5586 },
5587 Municipio {
5588 ibge_code: 5221700,
5589 name: "Uruana",
5590 state: State::GO,
5591 },
5592 Municipio {
5593 ibge_code: 5221601,
5594 name: "Uruaçu",
5595 state: State::GO,
5596 },
5597 Municipio {
5598 ibge_code: 5221809,
5599 name: "Urutaí",
5600 state: State::GO,
5601 },
5602 Municipio {
5603 ibge_code: 5221858,
5604 name: "Valparaíso de Goiás",
5605 state: State::GO,
5606 },
5607 Municipio {
5608 ibge_code: 5221908,
5609 name: "Varjão",
5610 state: State::GO,
5611 },
5612 Municipio {
5613 ibge_code: 5222005,
5614 name: "Vianópolis",
5615 state: State::GO,
5616 },
5617 Municipio {
5618 ibge_code: 5222054,
5619 name: "Vicentinópolis",
5620 state: State::GO,
5621 },
5622 Municipio {
5623 ibge_code: 5222203,
5624 name: "Vila Boa",
5625 state: State::GO,
5626 },
5627 Municipio {
5628 ibge_code: 5222302,
5629 name: "Vila Propício",
5630 state: State::GO,
5631 },
5632 Municipio {
5633 ibge_code: 5200175,
5634 name: "Água Fria de Goiás",
5635 state: State::GO,
5636 },
5637 Municipio {
5638 ibge_code: 5200209,
5639 name: "Água Limpa",
5640 state: State::GO,
5641 },
5642 Municipio {
5643 ibge_code: 5200258,
5644 name: "Águas Lindas de Goiás",
5645 state: State::GO,
5646 },
5647 Municipio {
5648 ibge_code: 2100105,
5649 name: "Afonso Cunha",
5650 state: State::MA,
5651 },
5652 Municipio {
5653 ibge_code: 2100204,
5654 name: "Alcântara",
5655 state: State::MA,
5656 },
5657 Municipio {
5658 ibge_code: 2100303,
5659 name: "Aldeias Altas",
5660 state: State::MA,
5661 },
5662 Municipio {
5663 ibge_code: 2100402,
5664 name: "Altamira do Maranhão",
5665 state: State::MA,
5666 },
5667 Municipio {
5668 ibge_code: 2100436,
5669 name: "Alto Alegre do Maranhão",
5670 state: State::MA,
5671 },
5672 Municipio {
5673 ibge_code: 2100477,
5674 name: "Alto Alegre do Pindaré",
5675 state: State::MA,
5676 },
5677 Municipio {
5678 ibge_code: 2100501,
5679 name: "Alto Parnaíba",
5680 state: State::MA,
5681 },
5682 Municipio {
5683 ibge_code: 2100550,
5684 name: "Amapá do Maranhão",
5685 state: State::MA,
5686 },
5687 Municipio {
5688 ibge_code: 2100600,
5689 name: "Amarante do Maranhão",
5690 state: State::MA,
5691 },
5692 Municipio {
5693 ibge_code: 2100709,
5694 name: "Anajatuba",
5695 state: State::MA,
5696 },
5697 Municipio {
5698 ibge_code: 2100808,
5699 name: "Anapurus",
5700 state: State::MA,
5701 },
5702 Municipio {
5703 ibge_code: 2100832,
5704 name: "Apicum-Açu",
5705 state: State::MA,
5706 },
5707 Municipio {
5708 ibge_code: 2100873,
5709 name: "Araguanã",
5710 state: State::MA,
5711 },
5712 Municipio {
5713 ibge_code: 2100907,
5714 name: "Araioses",
5715 state: State::MA,
5716 },
5717 Municipio {
5718 ibge_code: 2100956,
5719 name: "Arame",
5720 state: State::MA,
5721 },
5722 Municipio {
5723 ibge_code: 2101004,
5724 name: "Arari",
5725 state: State::MA,
5726 },
5727 Municipio {
5728 ibge_code: 2101103,
5729 name: "Axixá",
5730 state: State::MA,
5731 },
5732 Municipio {
5733 ibge_code: 2100055,
5734 name: "Açailândia",
5735 state: State::MA,
5736 },
5737 Municipio {
5738 ibge_code: 2101202,
5739 name: "Bacabal",
5740 state: State::MA,
5741 },
5742 Municipio {
5743 ibge_code: 2101251,
5744 name: "Bacabeira",
5745 state: State::MA,
5746 },
5747 Municipio {
5748 ibge_code: 2101301,
5749 name: "Bacuri",
5750 state: State::MA,
5751 },
5752 Municipio {
5753 ibge_code: 2101350,
5754 name: "Bacurituba",
5755 state: State::MA,
5756 },
5757 Municipio {
5758 ibge_code: 2101400,
5759 name: "Balsas",
5760 state: State::MA,
5761 },
5762 Municipio {
5763 ibge_code: 2101608,
5764 name: "Barra do Corda",
5765 state: State::MA,
5766 },
5767 Municipio {
5768 ibge_code: 2101707,
5769 name: "Barreirinhas",
5770 state: State::MA,
5771 },
5772 Municipio {
5773 ibge_code: 2101509,
5774 name: "Barão de Grajaú",
5775 state: State::MA,
5776 },
5777 Municipio {
5778 ibge_code: 2101772,
5779 name: "Bela Vista do Maranhão",
5780 state: State::MA,
5781 },
5782 Municipio {
5783 ibge_code: 2101731,
5784 name: "Belágua",
5785 state: State::MA,
5786 },
5787 Municipio {
5788 ibge_code: 2101806,
5789 name: "Benedito Leite",
5790 state: State::MA,
5791 },
5792 Municipio {
5793 ibge_code: 2101905,
5794 name: "Bequimão",
5795 state: State::MA,
5796 },
5797 Municipio {
5798 ibge_code: 2101939,
5799 name: "Bernardo do Mearim",
5800 state: State::MA,
5801 },
5802 Municipio {
5803 ibge_code: 2101970,
5804 name: "Boa Vista do Gurupi",
5805 state: State::MA,
5806 },
5807 Municipio {
5808 ibge_code: 2102002,
5809 name: "Bom Jardim",
5810 state: State::MA,
5811 },
5812 Municipio {
5813 ibge_code: 2102036,
5814 name: "Bom Jesus das Selvas",
5815 state: State::MA,
5816 },
5817 Municipio {
5818 ibge_code: 2102077,
5819 name: "Bom Lugar",
5820 state: State::MA,
5821 },
5822 Municipio {
5823 ibge_code: 2102101,
5824 name: "Brejo",
5825 state: State::MA,
5826 },
5827 Municipio {
5828 ibge_code: 2102150,
5829 name: "Brejo de Areia",
5830 state: State::MA,
5831 },
5832 Municipio {
5833 ibge_code: 2102200,
5834 name: "Buriti",
5835 state: State::MA,
5836 },
5837 Municipio {
5838 ibge_code: 2102309,
5839 name: "Buriti Bravo",
5840 state: State::MA,
5841 },
5842 Municipio {
5843 ibge_code: 2102325,
5844 name: "Buriticupu",
5845 state: State::MA,
5846 },
5847 Municipio {
5848 ibge_code: 2102358,
5849 name: "Buritirana",
5850 state: State::MA,
5851 },
5852 Municipio {
5853 ibge_code: 2102374,
5854 name: "Cachoeira Grande",
5855 state: State::MA,
5856 },
5857 Municipio {
5858 ibge_code: 2102408,
5859 name: "Cajapió",
5860 state: State::MA,
5861 },
5862 Municipio {
5863 ibge_code: 2102507,
5864 name: "Cajari",
5865 state: State::MA,
5866 },
5867 Municipio {
5868 ibge_code: 2102556,
5869 name: "Campestre do Maranhão",
5870 state: State::MA,
5871 },
5872 Municipio {
5873 ibge_code: 2102705,
5874 name: "Cantanhede",
5875 state: State::MA,
5876 },
5877 Municipio {
5878 ibge_code: 2102754,
5879 name: "Capinzal do Norte",
5880 state: State::MA,
5881 },
5882 Municipio {
5883 ibge_code: 2102804,
5884 name: "Carolina",
5885 state: State::MA,
5886 },
5887 Municipio {
5888 ibge_code: 2102903,
5889 name: "Carutapera",
5890 state: State::MA,
5891 },
5892 Municipio {
5893 ibge_code: 2103000,
5894 name: "Caxias",
5895 state: State::MA,
5896 },
5897 Municipio {
5898 ibge_code: 2103109,
5899 name: "Cedral",
5900 state: State::MA,
5901 },
5902 Municipio {
5903 ibge_code: 2103125,
5904 name: "Central do Maranhão",
5905 state: State::MA,
5906 },
5907 Municipio {
5908 ibge_code: 2103174,
5909 name: "Centro Novo do Maranhão",
5910 state: State::MA,
5911 },
5912 Municipio {
5913 ibge_code: 2103158,
5914 name: "Centro do Guilherme",
5915 state: State::MA,
5916 },
5917 Municipio {
5918 ibge_code: 2103208,
5919 name: "Chapadinha",
5920 state: State::MA,
5921 },
5922 Municipio {
5923 ibge_code: 2103257,
5924 name: "Cidelândia",
5925 state: State::MA,
5926 },
5927 Municipio {
5928 ibge_code: 2103307,
5929 name: "Codó",
5930 state: State::MA,
5931 },
5932 Municipio {
5933 ibge_code: 2103406,
5934 name: "Coelho Neto",
5935 state: State::MA,
5936 },
5937 Municipio {
5938 ibge_code: 2103505,
5939 name: "Colinas",
5940 state: State::MA,
5941 },
5942 Municipio {
5943 ibge_code: 2103554,
5944 name: "Conceição do Lago-Açu",
5945 state: State::MA,
5946 },
5947 Municipio {
5948 ibge_code: 2103604,
5949 name: "Coroatá",
5950 state: State::MA,
5951 },
5952 Municipio {
5953 ibge_code: 2103703,
5954 name: "Cururupu",
5955 state: State::MA,
5956 },
5957 Municipio {
5958 ibge_code: 2102606,
5959 name: "Cândido Mendes",
5960 state: State::MA,
5961 },
5962 Municipio {
5963 ibge_code: 2103752,
5964 name: "Davinópolis",
5965 state: State::MA,
5966 },
5967 Municipio {
5968 ibge_code: 2103802,
5969 name: "Dom Pedro",
5970 state: State::MA,
5971 },
5972 Municipio {
5973 ibge_code: 2103901,
5974 name: "Duque Bacelar",
5975 state: State::MA,
5976 },
5977 Municipio {
5978 ibge_code: 2104008,
5979 name: "Esperantinópolis",
5980 state: State::MA,
5981 },
5982 Municipio {
5983 ibge_code: 2104057,
5984 name: "Estreito",
5985 state: State::MA,
5986 },
5987 Municipio {
5988 ibge_code: 2104073,
5989 name: "Feira Nova do Maranhão",
5990 state: State::MA,
5991 },
5992 Municipio {
5993 ibge_code: 2104081,
5994 name: "Fernando Falcão",
5995 state: State::MA,
5996 },
5997 Municipio {
5998 ibge_code: 2104099,
5999 name: "Formosa da Serra Negra",
6000 state: State::MA,
6001 },
6002 Municipio {
6003 ibge_code: 2104107,
6004 name: "Fortaleza dos Nogueiras",
6005 state: State::MA,
6006 },
6007 Municipio {
6008 ibge_code: 2104206,
6009 name: "Fortuna",
6010 state: State::MA,
6011 },
6012 Municipio {
6013 ibge_code: 2104305,
6014 name: "Godofredo Viana",
6015 state: State::MA,
6016 },
6017 Municipio {
6018 ibge_code: 2104404,
6019 name: "Gonçalves Dias",
6020 state: State::MA,
6021 },
6022 Municipio {
6023 ibge_code: 2104503,
6024 name: "Governador Archer",
6025 state: State::MA,
6026 },
6027 Municipio {
6028 ibge_code: 2104552,
6029 name: "Governador Edison Lobão",
6030 state: State::MA,
6031 },
6032 Municipio {
6033 ibge_code: 2104602,
6034 name: "Governador Eugênio Barros",
6035 state: State::MA,
6036 },
6037 Municipio {
6038 ibge_code: 2104628,
6039 name: "Governador Luiz Rocha",
6040 state: State::MA,
6041 },
6042 Municipio {
6043 ibge_code: 2104651,
6044 name: "Governador Newton Bello",
6045 state: State::MA,
6046 },
6047 Municipio {
6048 ibge_code: 2104677,
6049 name: "Governador Nunes Freire",
6050 state: State::MA,
6051 },
6052 Municipio {
6053 ibge_code: 2104800,
6054 name: "Grajaú",
6055 state: State::MA,
6056 },
6057 Municipio {
6058 ibge_code: 2104701,
6059 name: "Graça Aranha",
6060 state: State::MA,
6061 },
6062 Municipio {
6063 ibge_code: 2104909,
6064 name: "Guimarães",
6065 state: State::MA,
6066 },
6067 Municipio {
6068 ibge_code: 2105005,
6069 name: "Humberto de Campos",
6070 state: State::MA,
6071 },
6072 Municipio {
6073 ibge_code: 2105104,
6074 name: "Icatu",
6075 state: State::MA,
6076 },
6077 Municipio {
6078 ibge_code: 2105203,
6079 name: "Igarapé Grande",
6080 state: State::MA,
6081 },
6082 Municipio {
6083 ibge_code: 2105153,
6084 name: "Igarapé do Meio",
6085 state: State::MA,
6086 },
6087 Municipio {
6088 ibge_code: 2105302,
6089 name: "Imperatriz",
6090 state: State::MA,
6091 },
6092 Municipio {
6093 ibge_code: 2105351,
6094 name: "Itaipava do Grajaú",
6095 state: State::MA,
6096 },
6097 Municipio {
6098 ibge_code: 2105401,
6099 name: "Itapecuru Mirim",
6100 state: State::MA,
6101 },
6102 Municipio {
6103 ibge_code: 2105427,
6104 name: "Itinga do Maranhão",
6105 state: State::MA,
6106 },
6107 Municipio {
6108 ibge_code: 2105450,
6109 name: "Jatobá",
6110 state: State::MA,
6111 },
6112 Municipio {
6113 ibge_code: 2105476,
6114 name: "Jenipapo dos Vieiras",
6115 state: State::MA,
6116 },
6117 Municipio {
6118 ibge_code: 2105609,
6119 name: "Joselândia",
6120 state: State::MA,
6121 },
6122 Municipio {
6123 ibge_code: 2105500,
6124 name: "João Lisboa",
6125 state: State::MA,
6126 },
6127 Municipio {
6128 ibge_code: 2105658,
6129 name: "Junco do Maranhão",
6130 state: State::MA,
6131 },
6132 Municipio {
6133 ibge_code: 2105906,
6134 name: "Lago Verde",
6135 state: State::MA,
6136 },
6137 Municipio {
6138 ibge_code: 2105708,
6139 name: "Lago da Pedra",
6140 state: State::MA,
6141 },
6142 Municipio {
6143 ibge_code: 2105807,
6144 name: "Lago do Junco",
6145 state: State::MA,
6146 },
6147 Municipio {
6148 ibge_code: 2105948,
6149 name: "Lago dos Rodrigues",
6150 state: State::MA,
6151 },
6152 Municipio {
6153 ibge_code: 2105963,
6154 name: "Lagoa Grande do Maranhão",
6155 state: State::MA,
6156 },
6157 Municipio {
6158 ibge_code: 2105922,
6159 name: "Lagoa do Mato",
6160 state: State::MA,
6161 },
6162 Municipio {
6163 ibge_code: 2105989,
6164 name: "Lajeado Novo",
6165 state: State::MA,
6166 },
6167 Municipio {
6168 ibge_code: 2106003,
6169 name: "Lima Campos",
6170 state: State::MA,
6171 },
6172 Municipio {
6173 ibge_code: 2106102,
6174 name: "Loreto",
6175 state: State::MA,
6176 },
6177 Municipio {
6178 ibge_code: 2106201,
6179 name: "Luís Domingues",
6180 state: State::MA,
6181 },
6182 Municipio {
6183 ibge_code: 2106300,
6184 name: "Magalhães de Almeida",
6185 state: State::MA,
6186 },
6187 Municipio {
6188 ibge_code: 2106326,
6189 name: "Maracaçumé",
6190 state: State::MA,
6191 },
6192 Municipio {
6193 ibge_code: 2106359,
6194 name: "Marajá do Sena",
6195 state: State::MA,
6196 },
6197 Municipio {
6198 ibge_code: 2106375,
6199 name: "Maranhãozinho",
6200 state: State::MA,
6201 },
6202 Municipio {
6203 ibge_code: 2106409,
6204 name: "Mata Roma",
6205 state: State::MA,
6206 },
6207 Municipio {
6208 ibge_code: 2106508,
6209 name: "Matinha",
6210 state: State::MA,
6211 },
6212 Municipio {
6213 ibge_code: 2106607,
6214 name: "Matões",
6215 state: State::MA,
6216 },
6217 Municipio {
6218 ibge_code: 2106631,
6219 name: "Matões do Norte",
6220 state: State::MA,
6221 },
6222 Municipio {
6223 ibge_code: 2106672,
6224 name: "Milagres do Maranhão",
6225 state: State::MA,
6226 },
6227 Municipio {
6228 ibge_code: 2106706,
6229 name: "Mirador",
6230 state: State::MA,
6231 },
6232 Municipio {
6233 ibge_code: 2106755,
6234 name: "Miranda do Norte",
6235 state: State::MA,
6236 },
6237 Municipio {
6238 ibge_code: 2106805,
6239 name: "Mirinzal",
6240 state: State::MA,
6241 },
6242 Municipio {
6243 ibge_code: 2107001,
6244 name: "Montes Altos",
6245 state: State::MA,
6246 },
6247 Municipio {
6248 ibge_code: 2106904,
6249 name: "Monção",
6250 state: State::MA,
6251 },
6252 Municipio {
6253 ibge_code: 2107100,
6254 name: "Morros",
6255 state: State::MA,
6256 },
6257 Municipio {
6258 ibge_code: 2107209,
6259 name: "Nina Rodrigues",
6260 state: State::MA,
6261 },
6262 Municipio {
6263 ibge_code: 2107258,
6264 name: "Nova Colinas",
6265 state: State::MA,
6266 },
6267 Municipio {
6268 ibge_code: 2107308,
6269 name: "Nova Iorque",
6270 state: State::MA,
6271 },
6272 Municipio {
6273 ibge_code: 2107357,
6274 name: "Nova Olinda do Maranhão",
6275 state: State::MA,
6276 },
6277 Municipio {
6278 ibge_code: 2107407,
6279 name: "Olho d'Água das Cunhãs",
6280 state: State::MA,
6281 },
6282 Municipio {
6283 ibge_code: 2107456,
6284 name: "Olinda Nova do Maranhão",
6285 state: State::MA,
6286 },
6287 Municipio {
6288 ibge_code: 2107605,
6289 name: "Palmeirândia",
6290 state: State::MA,
6291 },
6292 Municipio {
6293 ibge_code: 2107704,
6294 name: "Paraibano",
6295 state: State::MA,
6296 },
6297 Municipio {
6298 ibge_code: 2107803,
6299 name: "Parnarama",
6300 state: State::MA,
6301 },
6302 Municipio {
6303 ibge_code: 2107902,
6304 name: "Passagem Franca",
6305 state: State::MA,
6306 },
6307 Municipio {
6308 ibge_code: 2108009,
6309 name: "Pastos Bons",
6310 state: State::MA,
6311 },
6312 Municipio {
6313 ibge_code: 2108058,
6314 name: "Paulino Neves",
6315 state: State::MA,
6316 },
6317 Municipio {
6318 ibge_code: 2108108,
6319 name: "Paulo Ramos",
6320 state: State::MA,
6321 },
6322 Municipio {
6323 ibge_code: 2107506,
6324 name: "Paço do Lumiar",
6325 state: State::MA,
6326 },
6327 Municipio {
6328 ibge_code: 2108207,
6329 name: "Pedreiras",
6330 state: State::MA,
6331 },
6332 Municipio {
6333 ibge_code: 2108256,
6334 name: "Pedro do Rosário",
6335 state: State::MA,
6336 },
6337 Municipio {
6338 ibge_code: 2108306,
6339 name: "Penalva",
6340 state: State::MA,
6341 },
6342 Municipio {
6343 ibge_code: 2108405,
6344 name: "Peri Mirim",
6345 state: State::MA,
6346 },
6347 Municipio {
6348 ibge_code: 2108454,
6349 name: "Peritoró",
6350 state: State::MA,
6351 },
6352 Municipio {
6353 ibge_code: 2108504,
6354 name: "Pindaré-Mirim",
6355 state: State::MA,
6356 },
6357 Municipio {
6358 ibge_code: 2108603,
6359 name: "Pinheiro",
6360 state: State::MA,
6361 },
6362 Municipio {
6363 ibge_code: 2108702,
6364 name: "Pio XII",
6365 state: State::MA,
6366 },
6367 Municipio {
6368 ibge_code: 2108801,
6369 name: "Pirapemas",
6370 state: State::MA,
6371 },
6372 Municipio {
6373 ibge_code: 2109007,
6374 name: "Porto Franco",
6375 state: State::MA,
6376 },
6377 Municipio {
6378 ibge_code: 2109056,
6379 name: "Porto Rico do Maranhão",
6380 state: State::MA,
6381 },
6382 Municipio {
6383 ibge_code: 2108900,
6384 name: "Poção de Pedras",
6385 state: State::MA,
6386 },
6387 Municipio {
6388 ibge_code: 2109106,
6389 name: "Presidente Dutra",
6390 state: State::MA,
6391 },
6392 Municipio {
6393 ibge_code: 2109205,
6394 name: "Presidente Juscelino",
6395 state: State::MA,
6396 },
6397 Municipio {
6398 ibge_code: 2109239,
6399 name: "Presidente Médici",
6400 state: State::MA,
6401 },
6402 Municipio {
6403 ibge_code: 2109270,
6404 name: "Presidente Sarney",
6405 state: State::MA,
6406 },
6407 Municipio {
6408 ibge_code: 2109304,
6409 name: "Presidente Vargas",
6410 state: State::MA,
6411 },
6412 Municipio {
6413 ibge_code: 2109403,
6414 name: "Primeira Cruz",
6415 state: State::MA,
6416 },
6417 Municipio {
6418 ibge_code: 2109452,
6419 name: "Raposa",
6420 state: State::MA,
6421 },
6422 Municipio {
6423 ibge_code: 2109502,
6424 name: "Riachão",
6425 state: State::MA,
6426 },
6427 Municipio {
6428 ibge_code: 2109551,
6429 name: "Ribamar Fiquene",
6430 state: State::MA,
6431 },
6432 Municipio {
6433 ibge_code: 2109601,
6434 name: "Rosário",
6435 state: State::MA,
6436 },
6437 Municipio {
6438 ibge_code: 2109700,
6439 name: "Sambaíba",
6440 state: State::MA,
6441 },
6442 Municipio {
6443 ibge_code: 2109759,
6444 name: "Santa Filomena do Maranhão",
6445 state: State::MA,
6446 },
6447 Municipio {
6448 ibge_code: 2109809,
6449 name: "Santa Helena",
6450 state: State::MA,
6451 },
6452 Municipio {
6453 ibge_code: 2109908,
6454 name: "Santa Inês",
6455 state: State::MA,
6456 },
6457 Municipio {
6458 ibge_code: 2110005,
6459 name: "Santa Luzia",
6460 state: State::MA,
6461 },
6462 Municipio {
6463 ibge_code: 2110039,
6464 name: "Santa Luzia do Paruá",
6465 state: State::MA,
6466 },
6467 Municipio {
6468 ibge_code: 2110104,
6469 name: "Santa Quitéria do Maranhão",
6470 state: State::MA,
6471 },
6472 Municipio {
6473 ibge_code: 2110203,
6474 name: "Santa Rita",
6475 state: State::MA,
6476 },
6477 Municipio {
6478 ibge_code: 2110237,
6479 name: "Santana do Maranhão",
6480 state: State::MA,
6481 },
6482 Municipio {
6483 ibge_code: 2110278,
6484 name: "Santo Amaro do Maranhão",
6485 state: State::MA,
6486 },
6487 Municipio {
6488 ibge_code: 2110302,
6489 name: "Santo Antônio dos Lopes",
6490 state: State::MA,
6491 },
6492 Municipio {
6493 ibge_code: 2111722,
6494 name: "Satubinha",
6495 state: State::MA,
6496 },
6497 Municipio {
6498 ibge_code: 2111748,
6499 name: "Senador Alexandre Costa",
6500 state: State::MA,
6501 },
6502 Municipio {
6503 ibge_code: 2111763,
6504 name: "Senador La Rocque",
6505 state: State::MA,
6506 },
6507 Municipio {
6508 ibge_code: 2111789,
6509 name: "Serrano do Maranhão",
6510 state: State::MA,
6511 },
6512 Municipio {
6513 ibge_code: 2111904,
6514 name: "Sucupira do Norte",
6515 state: State::MA,
6516 },
6517 Municipio {
6518 ibge_code: 2111953,
6519 name: "Sucupira do Riachão",
6520 state: State::MA,
6521 },
6522 Municipio {
6523 ibge_code: 2110401,
6524 name: "São Benedito do Rio Preto",
6525 state: State::MA,
6526 },
6527 Municipio {
6528 ibge_code: 2110500,
6529 name: "São Bento",
6530 state: State::MA,
6531 },
6532 Municipio {
6533 ibge_code: 2110609,
6534 name: "São Bernardo",
6535 state: State::MA,
6536 },
6537 Municipio {
6538 ibge_code: 2110658,
6539 name: "São Domingos do Azeitão",
6540 state: State::MA,
6541 },
6542 Municipio {
6543 ibge_code: 2110708,
6544 name: "São Domingos do Maranhão",
6545 state: State::MA,
6546 },
6547 Municipio {
6548 ibge_code: 2110856,
6549 name: "São Francisco do Brejão",
6550 state: State::MA,
6551 },
6552 Municipio {
6553 ibge_code: 2110906,
6554 name: "São Francisco do Maranhão",
6555 state: State::MA,
6556 },
6557 Municipio {
6558 ibge_code: 2110807,
6559 name: "São Félix de Balsas",
6560 state: State::MA,
6561 },
6562 Municipio {
6563 ibge_code: 2111201,
6564 name: "São José de Ribamar",
6565 state: State::MA,
6566 },
6567 Municipio {
6568 ibge_code: 2111250,
6569 name: "São José dos Basílios",
6570 state: State::MA,
6571 },
6572 Municipio {
6573 ibge_code: 2111003,
6574 name: "São João Batista",
6575 state: State::MA,
6576 },
6577 Municipio {
6578 ibge_code: 2111029,
6579 name: "São João do Carú",
6580 state: State::MA,
6581 },
6582 Municipio {
6583 ibge_code: 2111052,
6584 name: "São João do Paraíso",
6585 state: State::MA,
6586 },
6587 Municipio {
6588 ibge_code: 2111078,
6589 name: "São João do Soter",
6590 state: State::MA,
6591 },
6592 Municipio {
6593 ibge_code: 2111102,
6594 name: "São João dos Patos",
6595 state: State::MA,
6596 },
6597 Municipio {
6598 ibge_code: 2111300,
6599 name: "São Luís",
6600 state: State::MA,
6601 },
6602 Municipio {
6603 ibge_code: 2111409,
6604 name: "São Luís Gonzaga do Maranhão",
6605 state: State::MA,
6606 },
6607 Municipio {
6608 ibge_code: 2111508,
6609 name: "São Mateus do Maranhão",
6610 state: State::MA,
6611 },
6612 Municipio {
6613 ibge_code: 2111532,
6614 name: "São Pedro da Água Branca",
6615 state: State::MA,
6616 },
6617 Municipio {
6618 ibge_code: 2111573,
6619 name: "São Pedro dos Crentes",
6620 state: State::MA,
6621 },
6622 Municipio {
6623 ibge_code: 2111607,
6624 name: "São Raimundo das Mangabeiras",
6625 state: State::MA,
6626 },
6627 Municipio {
6628 ibge_code: 2111631,
6629 name: "São Raimundo do Doca Bezerra",
6630 state: State::MA,
6631 },
6632 Municipio {
6633 ibge_code: 2111672,
6634 name: "São Roberto",
6635 state: State::MA,
6636 },
6637 Municipio {
6638 ibge_code: 2111706,
6639 name: "São Vicente Ferrer",
6640 state: State::MA,
6641 },
6642 Municipio {
6643 ibge_code: 2111805,
6644 name: "Sítio Novo",
6645 state: State::MA,
6646 },
6647 Municipio {
6648 ibge_code: 2112001,
6649 name: "Tasso Fragoso",
6650 state: State::MA,
6651 },
6652 Municipio {
6653 ibge_code: 2112100,
6654 name: "Timbiras",
6655 state: State::MA,
6656 },
6657 Municipio {
6658 ibge_code: 2112209,
6659 name: "Timon",
6660 state: State::MA,
6661 },
6662 Municipio {
6663 ibge_code: 2112233,
6664 name: "Trizidela do Vale",
6665 state: State::MA,
6666 },
6667 Municipio {
6668 ibge_code: 2112274,
6669 name: "Tufilândia",
6670 state: State::MA,
6671 },
6672 Municipio {
6673 ibge_code: 2112308,
6674 name: "Tuntum",
6675 state: State::MA,
6676 },
6677 Municipio {
6678 ibge_code: 2112407,
6679 name: "Turiaçu",
6680 state: State::MA,
6681 },
6682 Municipio {
6683 ibge_code: 2112456,
6684 name: "Turilândia",
6685 state: State::MA,
6686 },
6687 Municipio {
6688 ibge_code: 2112506,
6689 name: "Tutóia",
6690 state: State::MA,
6691 },
6692 Municipio {
6693 ibge_code: 2112605,
6694 name: "Urbano Santos",
6695 state: State::MA,
6696 },
6697 Municipio {
6698 ibge_code: 2112704,
6699 name: "Vargem Grande",
6700 state: State::MA,
6701 },
6702 Municipio {
6703 ibge_code: 2112803,
6704 name: "Viana",
6705 state: State::MA,
6706 },
6707 Municipio {
6708 ibge_code: 2112852,
6709 name: "Vila Nova dos Martírios",
6710 state: State::MA,
6711 },
6712 Municipio {
6713 ibge_code: 2113009,
6714 name: "Vitorino Freire",
6715 state: State::MA,
6716 },
6717 Municipio {
6718 ibge_code: 2112902,
6719 name: "Vitória do Mearim",
6720 state: State::MA,
6721 },
6722 Municipio {
6723 ibge_code: 2114007,
6724 name: "Zé Doca",
6725 state: State::MA,
6726 },
6727 Municipio {
6728 ibge_code: 2100154,
6729 name: "Água Doce do Maranhão",
6730 state: State::MA,
6731 },
6732 Municipio {
6733 ibge_code: 3100104,
6734 name: "Abadia dos Dourados",
6735 state: State::MG,
6736 },
6737 Municipio {
6738 ibge_code: 3100203,
6739 name: "Abaeté",
6740 state: State::MG,
6741 },
6742 Municipio {
6743 ibge_code: 3100302,
6744 name: "Abre Campo",
6745 state: State::MG,
6746 },
6747 Municipio {
6748 ibge_code: 3100401,
6749 name: "Acaiaca",
6750 state: State::MG,
6751 },
6752 Municipio {
6753 ibge_code: 3100807,
6754 name: "Aguanil",
6755 state: State::MG,
6756 },
6757 Municipio {
6758 ibge_code: 3101102,
6759 name: "Aimorés",
6760 state: State::MG,
6761 },
6762 Municipio {
6763 ibge_code: 3101201,
6764 name: "Aiuruoca",
6765 state: State::MG,
6766 },
6767 Municipio {
6768 ibge_code: 3101300,
6769 name: "Alagoa",
6770 state: State::MG,
6771 },
6772 Municipio {
6773 ibge_code: 3101409,
6774 name: "Albertina",
6775 state: State::MG,
6776 },
6777 Municipio {
6778 ibge_code: 3101607,
6779 name: "Alfenas",
6780 state: State::MG,
6781 },
6782 Municipio {
6783 ibge_code: 3101631,
6784 name: "Alfredo Vasconcelos",
6785 state: State::MG,
6786 },
6787 Municipio {
6788 ibge_code: 3101706,
6789 name: "Almenara",
6790 state: State::MG,
6791 },
6792 Municipio {
6793 ibge_code: 3101805,
6794 name: "Alpercata",
6795 state: State::MG,
6796 },
6797 Municipio {
6798 ibge_code: 3101904,
6799 name: "Alpinópolis",
6800 state: State::MG,
6801 },
6802 Municipio {
6803 ibge_code: 3102001,
6804 name: "Alterosa",
6805 state: State::MG,
6806 },
6807 Municipio {
6808 ibge_code: 3102050,
6809 name: "Alto Caparaó",
6810 state: State::MG,
6811 },
6812 Municipio {
6813 ibge_code: 3153509,
6814 name: "Alto Jequitibá",
6815 state: State::MG,
6816 },
6817 Municipio {
6818 ibge_code: 3102100,
6819 name: "Alto Rio Doce",
6820 state: State::MG,
6821 },
6822 Municipio {
6823 ibge_code: 3102209,
6824 name: "Alvarenga",
6825 state: State::MG,
6826 },
6827 Municipio {
6828 ibge_code: 3102308,
6829 name: "Alvinópolis",
6830 state: State::MG,
6831 },
6832 Municipio {
6833 ibge_code: 3102407,
6834 name: "Alvorada de Minas",
6835 state: State::MG,
6836 },
6837 Municipio {
6838 ibge_code: 3101508,
6839 name: "Além Paraíba",
6840 state: State::MG,
6841 },
6842 Municipio {
6843 ibge_code: 3102506,
6844 name: "Amparo do Serra",
6845 state: State::MG,
6846 },
6847 Municipio {
6848 ibge_code: 3102605,
6849 name: "Andradas",
6850 state: State::MG,
6851 },
6852 Municipio {
6853 ibge_code: 3102803,
6854 name: "Andrelândia",
6855 state: State::MG,
6856 },
6857 Municipio {
6858 ibge_code: 3102852,
6859 name: "Angelândia",
6860 state: State::MG,
6861 },
6862 Municipio {
6863 ibge_code: 3102902,
6864 name: "Antônio Carlos",
6865 state: State::MG,
6866 },
6867 Municipio {
6868 ibge_code: 3103009,
6869 name: "Antônio Dias",
6870 state: State::MG,
6871 },
6872 Municipio {
6873 ibge_code: 3103108,
6874 name: "Antônio Prado de Minas",
6875 state: State::MG,
6876 },
6877 Municipio {
6878 ibge_code: 3103306,
6879 name: "Aracitaba",
6880 state: State::MG,
6881 },
6882 Municipio {
6883 ibge_code: 3103504,
6884 name: "Araguari",
6885 state: State::MG,
6886 },
6887 Municipio {
6888 ibge_code: 3103603,
6889 name: "Arantina",
6890 state: State::MG,
6891 },
6892 Municipio {
6893 ibge_code: 3103702,
6894 name: "Araponga",
6895 state: State::MG,
6896 },
6897 Municipio {
6898 ibge_code: 3103751,
6899 name: "Araporã",
6900 state: State::MG,
6901 },
6902 Municipio {
6903 ibge_code: 3103801,
6904 name: "Arapuá",
6905 state: State::MG,
6906 },
6907 Municipio {
6908 ibge_code: 3104007,
6909 name: "Araxá",
6910 state: State::MG,
6911 },
6912 Municipio {
6913 ibge_code: 3103207,
6914 name: "Araçaí",
6915 state: State::MG,
6916 },
6917 Municipio {
6918 ibge_code: 3103405,
6919 name: "Araçuaí",
6920 state: State::MG,
6921 },
6922 Municipio {
6923 ibge_code: 3103900,
6924 name: "Araújos",
6925 state: State::MG,
6926 },
6927 Municipio {
6928 ibge_code: 3104106,
6929 name: "Arceburgo",
6930 state: State::MG,
6931 },
6932 Municipio {
6933 ibge_code: 3104205,
6934 name: "Arcos",
6935 state: State::MG,
6936 },
6937 Municipio {
6938 ibge_code: 3104304,
6939 name: "Areado",
6940 state: State::MG,
6941 },
6942 Municipio {
6943 ibge_code: 3104403,
6944 name: "Argirita",
6945 state: State::MG,
6946 },
6947 Municipio {
6948 ibge_code: 3104452,
6949 name: "Aricanduva",
6950 state: State::MG,
6951 },
6952 Municipio {
6953 ibge_code: 3104502,
6954 name: "Arinos",
6955 state: State::MG,
6956 },
6957 Municipio {
6958 ibge_code: 3104601,
6959 name: "Astolfo Dutra",
6960 state: State::MG,
6961 },
6962 Municipio {
6963 ibge_code: 3104700,
6964 name: "Ataléia",
6965 state: State::MG,
6966 },
6967 Municipio {
6968 ibge_code: 3104809,
6969 name: "Augusto de Lima",
6970 state: State::MG,
6971 },
6972 Municipio {
6973 ibge_code: 3100500,
6974 name: "Açucena",
6975 state: State::MG,
6976 },
6977 Municipio {
6978 ibge_code: 3104908,
6979 name: "Baependi",
6980 state: State::MG,
6981 },
6982 Municipio {
6983 ibge_code: 3105004,
6984 name: "Baldim",
6985 state: State::MG,
6986 },
6987 Municipio {
6988 ibge_code: 3105103,
6989 name: "Bambuí",
6990 state: State::MG,
6991 },
6992 Municipio {
6993 ibge_code: 3105202,
6994 name: "Bandeira",
6995 state: State::MG,
6996 },
6997 Municipio {
6998 ibge_code: 3105301,
6999 name: "Bandeira do Sul",
7000 state: State::MG,
7001 },
7002 Municipio {
7003 ibge_code: 3105608,
7004 name: "Barbacena",
7005 state: State::MG,
7006 },
7007 Municipio {
7008 ibge_code: 3105707,
7009 name: "Barra Longa",
7010 state: State::MG,
7011 },
7012 Municipio {
7013 ibge_code: 3105905,
7014 name: "Barroso",
7015 state: State::MG,
7016 },
7017 Municipio {
7018 ibge_code: 3105400,
7019 name: "Barão de Cocais",
7020 state: State::MG,
7021 },
7022 Municipio {
7023 ibge_code: 3105509,
7024 name: "Barão do Monte Alto",
7025 state: State::MG,
7026 },
7027 Municipio {
7028 ibge_code: 3106002,
7029 name: "Bela Vista de Minas",
7030 state: State::MG,
7031 },
7032 Municipio {
7033 ibge_code: 3106101,
7034 name: "Belmiro Braga",
7035 state: State::MG,
7036 },
7037 Municipio {
7038 ibge_code: 3106200,
7039 name: "Belo Horizonte",
7040 state: State::MG,
7041 },
7042 Municipio {
7043 ibge_code: 3106309,
7044 name: "Belo Oriente",
7045 state: State::MG,
7046 },
7047 Municipio {
7048 ibge_code: 3106408,
7049 name: "Belo Vale",
7050 state: State::MG,
7051 },
7052 Municipio {
7053 ibge_code: 3106507,
7054 name: "Berilo",
7055 state: State::MG,
7056 },
7057 Municipio {
7058 ibge_code: 3106655,
7059 name: "Berizal",
7060 state: State::MG,
7061 },
7062 Municipio {
7063 ibge_code: 3106606,
7064 name: "Bertópolis",
7065 state: State::MG,
7066 },
7067 Municipio {
7068 ibge_code: 3106705,
7069 name: "Betim",
7070 state: State::MG,
7071 },
7072 Municipio {
7073 ibge_code: 3106804,
7074 name: "Bias Fortes",
7075 state: State::MG,
7076 },
7077 Municipio {
7078 ibge_code: 3106903,
7079 name: "Bicas",
7080 state: State::MG,
7081 },
7082 Municipio {
7083 ibge_code: 3107000,
7084 name: "Biquinhas",
7085 state: State::MG,
7086 },
7087 Municipio {
7088 ibge_code: 3107109,
7089 name: "Boa Esperança",
7090 state: State::MG,
7091 },
7092 Municipio {
7093 ibge_code: 3107208,
7094 name: "Bocaina de Minas",
7095 state: State::MG,
7096 },
7097 Municipio {
7098 ibge_code: 3107307,
7099 name: "Bocaiúva",
7100 state: State::MG,
7101 },
7102 Municipio {
7103 ibge_code: 3107406,
7104 name: "Bom Despacho",
7105 state: State::MG,
7106 },
7107 Municipio {
7108 ibge_code: 3107505,
7109 name: "Bom Jardim de Minas",
7110 state: State::MG,
7111 },
7112 Municipio {
7113 ibge_code: 3107604,
7114 name: "Bom Jesus da Penha",
7115 state: State::MG,
7116 },
7117 Municipio {
7118 ibge_code: 3107703,
7119 name: "Bom Jesus do Amparo",
7120 state: State::MG,
7121 },
7122 Municipio {
7123 ibge_code: 3107802,
7124 name: "Bom Jesus do Galho",
7125 state: State::MG,
7126 },
7127 Municipio {
7128 ibge_code: 3107901,
7129 name: "Bom Repouso",
7130 state: State::MG,
7131 },
7132 Municipio {
7133 ibge_code: 3108008,
7134 name: "Bom Sucesso",
7135 state: State::MG,
7136 },
7137 Municipio {
7138 ibge_code: 3108107,
7139 name: "Bonfim",
7140 state: State::MG,
7141 },
7142 Municipio {
7143 ibge_code: 3108206,
7144 name: "Bonfinópolis de Minas",
7145 state: State::MG,
7146 },
7147 Municipio {
7148 ibge_code: 3108255,
7149 name: "Bonito de Minas",
7150 state: State::MG,
7151 },
7152 Municipio {
7153 ibge_code: 3108305,
7154 name: "Borda da Mata",
7155 state: State::MG,
7156 },
7157 Municipio {
7158 ibge_code: 3108404,
7159 name: "Botelhos",
7160 state: State::MG,
7161 },
7162 Municipio {
7163 ibge_code: 3108503,
7164 name: "Botumirim",
7165 state: State::MG,
7166 },
7167 Municipio {
7168 ibge_code: 3108552,
7169 name: "Brasilândia de Minas",
7170 state: State::MG,
7171 },
7172 Municipio {
7173 ibge_code: 3108602,
7174 name: "Brasília de Minas",
7175 state: State::MG,
7176 },
7177 Municipio {
7178 ibge_code: 3108909,
7179 name: "Brazópolis",
7180 state: State::MG,
7181 },
7182 Municipio {
7183 ibge_code: 3108800,
7184 name: "Braúnas",
7185 state: State::MG,
7186 },
7187 Municipio {
7188 ibge_code: 3109006,
7189 name: "Brumadinho",
7190 state: State::MG,
7191 },
7192 Municipio {
7193 ibge_code: 3108701,
7194 name: "Brás Pires",
7195 state: State::MG,
7196 },
7197 Municipio {
7198 ibge_code: 3109105,
7199 name: "Bueno Brandão",
7200 state: State::MG,
7201 },
7202 Municipio {
7203 ibge_code: 3109204,
7204 name: "Buenópolis",
7205 state: State::MG,
7206 },
7207 Municipio {
7208 ibge_code: 3109253,
7209 name: "Bugre",
7210 state: State::MG,
7211 },
7212 Municipio {
7213 ibge_code: 3109303,
7214 name: "Buritis",
7215 state: State::MG,
7216 },
7217 Municipio {
7218 ibge_code: 3109402,
7219 name: "Buritizeiro",
7220 state: State::MG,
7221 },
7222 Municipio {
7223 ibge_code: 3109451,
7224 name: "Cabeceira Grande",
7225 state: State::MG,
7226 },
7227 Municipio {
7228 ibge_code: 3109501,
7229 name: "Cabo Verde",
7230 state: State::MG,
7231 },
7232 Municipio {
7233 ibge_code: 3109808,
7234 name: "Cachoeira Dourada",
7235 state: State::MG,
7236 },
7237 Municipio {
7238 ibge_code: 3109600,
7239 name: "Cachoeira da Prata",
7240 state: State::MG,
7241 },
7242 Municipio {
7243 ibge_code: 3109709,
7244 name: "Cachoeira de Minas",
7245 state: State::MG,
7246 },
7247 Municipio {
7248 ibge_code: 3102704,
7249 name: "Cachoeira de Pajeú",
7250 state: State::MG,
7251 },
7252 Municipio {
7253 ibge_code: 3109907,
7254 name: "Caetanópolis",
7255 state: State::MG,
7256 },
7257 Municipio {
7258 ibge_code: 3110004,
7259 name: "Caeté",
7260 state: State::MG,
7261 },
7262 Municipio {
7263 ibge_code: 3110103,
7264 name: "Caiana",
7265 state: State::MG,
7266 },
7267 Municipio {
7268 ibge_code: 3110202,
7269 name: "Cajuri",
7270 state: State::MG,
7271 },
7272 Municipio {
7273 ibge_code: 3110301,
7274 name: "Caldas",
7275 state: State::MG,
7276 },
7277 Municipio {
7278 ibge_code: 3110400,
7279 name: "Camacho",
7280 state: State::MG,
7281 },
7282 Municipio {
7283 ibge_code: 3110509,
7284 name: "Camanducaia",
7285 state: State::MG,
7286 },
7287 Municipio {
7288 ibge_code: 3110707,
7289 name: "Cambuquira",
7290 state: State::MG,
7291 },
7292 Municipio {
7293 ibge_code: 3110608,
7294 name: "Cambuí",
7295 state: State::MG,
7296 },
7297 Municipio {
7298 ibge_code: 3110905,
7299 name: "Campanha",
7300 state: State::MG,
7301 },
7302 Municipio {
7303 ibge_code: 3110806,
7304 name: "Campanário",
7305 state: State::MG,
7306 },
7307 Municipio {
7308 ibge_code: 3111002,
7309 name: "Campestre",
7310 state: State::MG,
7311 },
7312 Municipio {
7313 ibge_code: 3111101,
7314 name: "Campina Verde",
7315 state: State::MG,
7316 },
7317 Municipio {
7318 ibge_code: 3111150,
7319 name: "Campo Azul",
7320 state: State::MG,
7321 },
7322 Municipio {
7323 ibge_code: 3111200,
7324 name: "Campo Belo",
7325 state: State::MG,
7326 },
7327 Municipio {
7328 ibge_code: 3111408,
7329 name: "Campo Florido",
7330 state: State::MG,
7331 },
7332 Municipio {
7333 ibge_code: 3111309,
7334 name: "Campo do Meio",
7335 state: State::MG,
7336 },
7337 Municipio {
7338 ibge_code: 3111507,
7339 name: "Campos Altos",
7340 state: State::MG,
7341 },
7342 Municipio {
7343 ibge_code: 3111606,
7344 name: "Campos Gerais",
7345 state: State::MG,
7346 },
7347 Municipio {
7348 ibge_code: 3111903,
7349 name: "Cana Verde",
7350 state: State::MG,
7351 },
7352 Municipio {
7353 ibge_code: 3111705,
7354 name: "Canaã",
7355 state: State::MG,
7356 },
7357 Municipio {
7358 ibge_code: 3112000,
7359 name: "Candeias",
7360 state: State::MG,
7361 },
7362 Municipio {
7363 ibge_code: 3112059,
7364 name: "Cantagalo",
7365 state: State::MG,
7366 },
7367 Municipio {
7368 ibge_code: 3111804,
7369 name: "Canápolis",
7370 state: State::MG,
7371 },
7372 Municipio {
7373 ibge_code: 3112109,
7374 name: "Caparaó",
7375 state: State::MG,
7376 },
7377 Municipio {
7378 ibge_code: 3112208,
7379 name: "Capela Nova",
7380 state: State::MG,
7381 },
7382 Municipio {
7383 ibge_code: 3112307,
7384 name: "Capelinha",
7385 state: State::MG,
7386 },
7387 Municipio {
7388 ibge_code: 3112406,
7389 name: "Capetinga",
7390 state: State::MG,
7391 },
7392 Municipio {
7393 ibge_code: 3112505,
7394 name: "Capim Branco",
7395 state: State::MG,
7396 },
7397 Municipio {
7398 ibge_code: 3112604,
7399 name: "Capinópolis",
7400 state: State::MG,
7401 },
7402 Municipio {
7403 ibge_code: 3112653,
7404 name: "Capitão Andrade",
7405 state: State::MG,
7406 },
7407 Municipio {
7408 ibge_code: 3112703,
7409 name: "Capitão Enéas",
7410 state: State::MG,
7411 },
7412 Municipio {
7413 ibge_code: 3112802,
7414 name: "Capitólio",
7415 state: State::MG,
7416 },
7417 Municipio {
7418 ibge_code: 3112901,
7419 name: "Caputira",
7420 state: State::MG,
7421 },
7422 Municipio {
7423 ibge_code: 3113107,
7424 name: "Caranaíba",
7425 state: State::MG,
7426 },
7427 Municipio {
7428 ibge_code: 3113206,
7429 name: "Carandaí",
7430 state: State::MG,
7431 },
7432 Municipio {
7433 ibge_code: 3113305,
7434 name: "Carangola",
7435 state: State::MG,
7436 },
7437 Municipio {
7438 ibge_code: 3113404,
7439 name: "Caratinga",
7440 state: State::MG,
7441 },
7442 Municipio {
7443 ibge_code: 3113008,
7444 name: "Caraí",
7445 state: State::MG,
7446 },
7447 Municipio {
7448 ibge_code: 3113503,
7449 name: "Carbonita",
7450 state: State::MG,
7451 },
7452 Municipio {
7453 ibge_code: 3113602,
7454 name: "Careaçu",
7455 state: State::MG,
7456 },
7457 Municipio {
7458 ibge_code: 3113701,
7459 name: "Carlos Chagas",
7460 state: State::MG,
7461 },
7462 Municipio {
7463 ibge_code: 3113909,
7464 name: "Carmo da Cachoeira",
7465 state: State::MG,
7466 },
7467 Municipio {
7468 ibge_code: 3114006,
7469 name: "Carmo da Mata",
7470 state: State::MG,
7471 },
7472 Municipio {
7473 ibge_code: 3114105,
7474 name: "Carmo de Minas",
7475 state: State::MG,
7476 },
7477 Municipio {
7478 ibge_code: 3114204,
7479 name: "Carmo do Cajuru",
7480 state: State::MG,
7481 },
7482 Municipio {
7483 ibge_code: 3114303,
7484 name: "Carmo do Paranaíba",
7485 state: State::MG,
7486 },
7487 Municipio {
7488 ibge_code: 3114402,
7489 name: "Carmo do Rio Claro",
7490 state: State::MG,
7491 },
7492 Municipio {
7493 ibge_code: 3113800,
7494 name: "Carmésia",
7495 state: State::MG,
7496 },
7497 Municipio {
7498 ibge_code: 3114501,
7499 name: "Carmópolis de Minas",
7500 state: State::MG,
7501 },
7502 Municipio {
7503 ibge_code: 3114550,
7504 name: "Carneirinho",
7505 state: State::MG,
7506 },
7507 Municipio {
7508 ibge_code: 3114600,
7509 name: "Carrancas",
7510 state: State::MG,
7511 },
7512 Municipio {
7513 ibge_code: 3114808,
7514 name: "Carvalhos",
7515 state: State::MG,
7516 },
7517 Municipio {
7518 ibge_code: 3114709,
7519 name: "Carvalhópolis",
7520 state: State::MG,
7521 },
7522 Municipio {
7523 ibge_code: 3114907,
7524 name: "Casa Grande",
7525 state: State::MG,
7526 },
7527 Municipio {
7528 ibge_code: 3115003,
7529 name: "Cascalho Rico",
7530 state: State::MG,
7531 },
7532 Municipio {
7533 ibge_code: 3115300,
7534 name: "Cataguases",
7535 state: State::MG,
7536 },
7537 Municipio {
7538 ibge_code: 3115359,
7539 name: "Catas Altas",
7540 state: State::MG,
7541 },
7542 Municipio {
7543 ibge_code: 3115409,
7544 name: "Catas Altas da Noruega",
7545 state: State::MG,
7546 },
7547 Municipio {
7548 ibge_code: 3115458,
7549 name: "Catuji",
7550 state: State::MG,
7551 },
7552 Municipio {
7553 ibge_code: 3115474,
7554 name: "Catuti",
7555 state: State::MG,
7556 },
7557 Municipio {
7558 ibge_code: 3115508,
7559 name: "Caxambu",
7560 state: State::MG,
7561 },
7562 Municipio {
7563 ibge_code: 3115607,
7564 name: "Cedro do Abaeté",
7565 state: State::MG,
7566 },
7567 Municipio {
7568 ibge_code: 3115706,
7569 name: "Central de Minas",
7570 state: State::MG,
7571 },
7572 Municipio {
7573 ibge_code: 3115805,
7574 name: "Centralina",
7575 state: State::MG,
7576 },
7577 Municipio {
7578 ibge_code: 3116001,
7579 name: "Chalé",
7580 state: State::MG,
7581 },
7582 Municipio {
7583 ibge_code: 3116159,
7584 name: "Chapada Gaúcha",
7585 state: State::MG,
7586 },
7587 Municipio {
7588 ibge_code: 3116100,
7589 name: "Chapada do Norte",
7590 state: State::MG,
7591 },
7592 Municipio {
7593 ibge_code: 3116209,
7594 name: "Chiador",
7595 state: State::MG,
7596 },
7597 Municipio {
7598 ibge_code: 3115904,
7599 name: "Chácara",
7600 state: State::MG,
7601 },
7602 Municipio {
7603 ibge_code: 3116308,
7604 name: "Cipotânea",
7605 state: State::MG,
7606 },
7607 Municipio {
7608 ibge_code: 3116407,
7609 name: "Claraval",
7610 state: State::MG,
7611 },
7612 Municipio {
7613 ibge_code: 3116506,
7614 name: "Claro dos Poções",
7615 state: State::MG,
7616 },
7617 Municipio {
7618 ibge_code: 3116605,
7619 name: "Cláudio",
7620 state: State::MG,
7621 },
7622 Municipio {
7623 ibge_code: 3116704,
7624 name: "Coimbra",
7625 state: State::MG,
7626 },
7627 Municipio {
7628 ibge_code: 3116803,
7629 name: "Coluna",
7630 state: State::MG,
7631 },
7632 Municipio {
7633 ibge_code: 3116902,
7634 name: "Comendador Gomes",
7635 state: State::MG,
7636 },
7637 Municipio {
7638 ibge_code: 3117009,
7639 name: "Comercinho",
7640 state: State::MG,
7641 },
7642 Municipio {
7643 ibge_code: 3117108,
7644 name: "Conceição da Aparecida",
7645 state: State::MG,
7646 },
7647 Municipio {
7648 ibge_code: 3115201,
7649 name: "Conceição da Barra de Minas",
7650 state: State::MG,
7651 },
7652 Municipio {
7653 ibge_code: 3117306,
7654 name: "Conceição das Alagoas",
7655 state: State::MG,
7656 },
7657 Municipio {
7658 ibge_code: 3117207,
7659 name: "Conceição das Pedras",
7660 state: State::MG,
7661 },
7662 Municipio {
7663 ibge_code: 3117405,
7664 name: "Conceição de Ipanema",
7665 state: State::MG,
7666 },
7667 Municipio {
7668 ibge_code: 3117504,
7669 name: "Conceição do Mato Dentro",
7670 state: State::MG,
7671 },
7672 Municipio {
7673 ibge_code: 3117603,
7674 name: "Conceição do Pará",
7675 state: State::MG,
7676 },
7677 Municipio {
7678 ibge_code: 3117702,
7679 name: "Conceição do Rio Verde",
7680 state: State::MG,
7681 },
7682 Municipio {
7683 ibge_code: 3117801,
7684 name: "Conceição dos Ouros",
7685 state: State::MG,
7686 },
7687 Municipio {
7688 ibge_code: 3117876,
7689 name: "Confins",
7690 state: State::MG,
7691 },
7692 Municipio {
7693 ibge_code: 3117900,
7694 name: "Congonhal",
7695 state: State::MG,
7696 },
7697 Municipio {
7698 ibge_code: 3118007,
7699 name: "Congonhas",
7700 state: State::MG,
7701 },
7702 Municipio {
7703 ibge_code: 3118106,
7704 name: "Congonhas do Norte",
7705 state: State::MG,
7706 },
7707 Municipio {
7708 ibge_code: 3118205,
7709 name: "Conquista",
7710 state: State::MG,
7711 },
7712 Municipio {
7713 ibge_code: 3118304,
7714 name: "Conselheiro Lafaiete",
7715 state: State::MG,
7716 },
7717 Municipio {
7718 ibge_code: 3118403,
7719 name: "Conselheiro Pena",
7720 state: State::MG,
7721 },
7722 Municipio {
7723 ibge_code: 3118502,
7724 name: "Consolação",
7725 state: State::MG,
7726 },
7727 Municipio {
7728 ibge_code: 3118601,
7729 name: "Contagem",
7730 state: State::MG,
7731 },
7732 Municipio {
7733 ibge_code: 3118700,
7734 name: "Coqueiral",
7735 state: State::MG,
7736 },
7737 Municipio {
7738 ibge_code: 3118809,
7739 name: "Coração de Jesus",
7740 state: State::MG,
7741 },
7742 Municipio {
7743 ibge_code: 3118908,
7744 name: "Cordisburgo",
7745 state: State::MG,
7746 },
7747 Municipio {
7748 ibge_code: 3119005,
7749 name: "Cordislândia",
7750 state: State::MG,
7751 },
7752 Municipio {
7753 ibge_code: 3119104,
7754 name: "Corinto",
7755 state: State::MG,
7756 },
7757 Municipio {
7758 ibge_code: 3119203,
7759 name: "Coroaci",
7760 state: State::MG,
7761 },
7762 Municipio {
7763 ibge_code: 3119302,
7764 name: "Coromandel",
7765 state: State::MG,
7766 },
7767 Municipio {
7768 ibge_code: 3119401,
7769 name: "Coronel Fabriciano",
7770 state: State::MG,
7771 },
7772 Municipio {
7773 ibge_code: 3119500,
7774 name: "Coronel Murta",
7775 state: State::MG,
7776 },
7777 Municipio {
7778 ibge_code: 3119609,
7779 name: "Coronel Pacheco",
7780 state: State::MG,
7781 },
7782 Municipio {
7783 ibge_code: 3119708,
7784 name: "Coronel Xavier Chaves",
7785 state: State::MG,
7786 },
7787 Municipio {
7788 ibge_code: 3120102,
7789 name: "Couto de Magalhães de Minas",
7790 state: State::MG,
7791 },
7792 Municipio {
7793 ibge_code: 3120201,
7794 name: "Cristais",
7795 state: State::MG,
7796 },
7797 Municipio {
7798 ibge_code: 3120409,
7799 name: "Cristiano Otoni",
7800 state: State::MG,
7801 },
7802 Municipio {
7803 ibge_code: 3120508,
7804 name: "Cristina",
7805 state: State::MG,
7806 },
7807 Municipio {
7808 ibge_code: 3120300,
7809 name: "Cristália",
7810 state: State::MG,
7811 },
7812 Municipio {
7813 ibge_code: 3120151,
7814 name: "Crisólita",
7815 state: State::MG,
7816 },
7817 Municipio {
7818 ibge_code: 3120607,
7819 name: "Crucilândia",
7820 state: State::MG,
7821 },
7822 Municipio {
7823 ibge_code: 3120706,
7824 name: "Cruzeiro da Fortaleza",
7825 state: State::MG,
7826 },
7827 Municipio {
7828 ibge_code: 3120805,
7829 name: "Cruzília",
7830 state: State::MG,
7831 },
7832 Municipio {
7833 ibge_code: 3120839,
7834 name: "Cuparaque",
7835 state: State::MG,
7836 },
7837 Municipio {
7838 ibge_code: 3120870,
7839 name: "Curral de Dentro",
7840 state: State::MG,
7841 },
7842 Municipio {
7843 ibge_code: 3120904,
7844 name: "Curvelo",
7845 state: State::MG,
7846 },
7847 Municipio {
7848 ibge_code: 3115102,
7849 name: "Cássia",
7850 state: State::MG,
7851 },
7852 Municipio {
7853 ibge_code: 3119807,
7854 name: "Córrego Danta",
7855 state: State::MG,
7856 },
7857 Municipio {
7858 ibge_code: 3119955,
7859 name: "Córrego Fundo",
7860 state: State::MG,
7861 },
7862 Municipio {
7863 ibge_code: 3120003,
7864 name: "Córrego Novo",
7865 state: State::MG,
7866 },
7867 Municipio {
7868 ibge_code: 3119906,
7869 name: "Córrego do Bom Jesus",
7870 state: State::MG,
7871 },
7872 Municipio {
7873 ibge_code: 3117836,
7874 name: "Cônego Marinho",
7875 state: State::MG,
7876 },
7877 Municipio {
7878 ibge_code: 3121001,
7879 name: "Datas",
7880 state: State::MG,
7881 },
7882 Municipio {
7883 ibge_code: 3121100,
7884 name: "Delfim Moreira",
7885 state: State::MG,
7886 },
7887 Municipio {
7888 ibge_code: 3121209,
7889 name: "Delfinópolis",
7890 state: State::MG,
7891 },
7892 Municipio {
7893 ibge_code: 3121258,
7894 name: "Delta",
7895 state: State::MG,
7896 },
7897 Municipio {
7898 ibge_code: 3121308,
7899 name: "Descoberto",
7900 state: State::MG,
7901 },
7902 Municipio {
7903 ibge_code: 3121407,
7904 name: "Desterro de Entre Rios",
7905 state: State::MG,
7906 },
7907 Municipio {
7908 ibge_code: 3121506,
7909 name: "Desterro do Melo",
7910 state: State::MG,
7911 },
7912 Municipio {
7913 ibge_code: 3121605,
7914 name: "Diamantina",
7915 state: State::MG,
7916 },
7917 Municipio {
7918 ibge_code: 3121704,
7919 name: "Diogo de Vasconcelos",
7920 state: State::MG,
7921 },
7922 Municipio {
7923 ibge_code: 3121803,
7924 name: "Dionísio",
7925 state: State::MG,
7926 },
7927 Municipio {
7928 ibge_code: 3122009,
7929 name: "Divino",
7930 state: State::MG,
7931 },
7932 Municipio {
7933 ibge_code: 3122108,
7934 name: "Divino das Laranjeiras",
7935 state: State::MG,
7936 },
7937 Municipio {
7938 ibge_code: 3122207,
7939 name: "Divinolândia de Minas",
7940 state: State::MG,
7941 },
7942 Municipio {
7943 ibge_code: 3121902,
7944 name: "Divinésia",
7945 state: State::MG,
7946 },
7947 Municipio {
7948 ibge_code: 3122306,
7949 name: "Divinópolis",
7950 state: State::MG,
7951 },
7952 Municipio {
7953 ibge_code: 3122355,
7954 name: "Divisa Alegre",
7955 state: State::MG,
7956 },
7957 Municipio {
7958 ibge_code: 3122405,
7959 name: "Divisa Nova",
7960 state: State::MG,
7961 },
7962 Municipio {
7963 ibge_code: 3122454,
7964 name: "Divisópolis",
7965 state: State::MG,
7966 },
7967 Municipio {
7968 ibge_code: 3122470,
7969 name: "Dom Bosco",
7970 state: State::MG,
7971 },
7972 Municipio {
7973 ibge_code: 3122504,
7974 name: "Dom Cavati",
7975 state: State::MG,
7976 },
7977 Municipio {
7978 ibge_code: 3122603,
7979 name: "Dom Joaquim",
7980 state: State::MG,
7981 },
7982 Municipio {
7983 ibge_code: 3122702,
7984 name: "Dom Silvério",
7985 state: State::MG,
7986 },
7987 Municipio {
7988 ibge_code: 3122801,
7989 name: "Dom Viçoso",
7990 state: State::MG,
7991 },
7992 Municipio {
7993 ibge_code: 3122900,
7994 name: "Dona Euzébia",
7995 state: State::MG,
7996 },
7997 Municipio {
7998 ibge_code: 3123007,
7999 name: "Dores de Campos",
8000 state: State::MG,
8001 },
8002 Municipio {
8003 ibge_code: 3123106,
8004 name: "Dores de Guanhães",
8005 state: State::MG,
8006 },
8007 Municipio {
8008 ibge_code: 3123205,
8009 name: "Dores do Indaiá",
8010 state: State::MG,
8011 },
8012 Municipio {
8013 ibge_code: 3123304,
8014 name: "Dores do Turvo",
8015 state: State::MG,
8016 },
8017 Municipio {
8018 ibge_code: 3123403,
8019 name: "Doresópolis",
8020 state: State::MG,
8021 },
8022 Municipio {
8023 ibge_code: 3123502,
8024 name: "Douradoquara",
8025 state: State::MG,
8026 },
8027 Municipio {
8028 ibge_code: 3123528,
8029 name: "Durandé",
8030 state: State::MG,
8031 },
8032 Municipio {
8033 ibge_code: 3123601,
8034 name: "Elói Mendes",
8035 state: State::MG,
8036 },
8037 Municipio {
8038 ibge_code: 3123700,
8039 name: "Engenheiro Caldas",
8040 state: State::MG,
8041 },
8042 Municipio {
8043 ibge_code: 3123809,
8044 name: "Engenheiro Navarro",
8045 state: State::MG,
8046 },
8047 Municipio {
8048 ibge_code: 3123858,
8049 name: "Entre Folhas",
8050 state: State::MG,
8051 },
8052 Municipio {
8053 ibge_code: 3123908,
8054 name: "Entre Rios de Minas",
8055 state: State::MG,
8056 },
8057 Municipio {
8058 ibge_code: 3124005,
8059 name: "Ervália",
8060 state: State::MG,
8061 },
8062 Municipio {
8063 ibge_code: 3124104,
8064 name: "Esmeraldas",
8065 state: State::MG,
8066 },
8067 Municipio {
8068 ibge_code: 3124203,
8069 name: "Espera Feliz",
8070 state: State::MG,
8071 },
8072 Municipio {
8073 ibge_code: 3124302,
8074 name: "Espinosa",
8075 state: State::MG,
8076 },
8077 Municipio {
8078 ibge_code: 3124401,
8079 name: "Espírito Santo do Dourado",
8080 state: State::MG,
8081 },
8082 Municipio {
8083 ibge_code: 3124500,
8084 name: "Estiva",
8085 state: State::MG,
8086 },
8087 Municipio {
8088 ibge_code: 3124609,
8089 name: "Estrela Dalva",
8090 state: State::MG,
8091 },
8092 Municipio {
8093 ibge_code: 3124708,
8094 name: "Estrela do Indaiá",
8095 state: State::MG,
8096 },
8097 Municipio {
8098 ibge_code: 3124807,
8099 name: "Estrela do Sul",
8100 state: State::MG,
8101 },
8102 Municipio {
8103 ibge_code: 3124906,
8104 name: "Eugenópolis",
8105 state: State::MG,
8106 },
8107 Municipio {
8108 ibge_code: 3125002,
8109 name: "Ewbank da Câmara",
8110 state: State::MG,
8111 },
8112 Municipio {
8113 ibge_code: 3125101,
8114 name: "Extrema",
8115 state: State::MG,
8116 },
8117 Municipio {
8118 ibge_code: 3125200,
8119 name: "Fama",
8120 state: State::MG,
8121 },
8122 Municipio {
8123 ibge_code: 3125309,
8124 name: "Faria Lemos",
8125 state: State::MG,
8126 },
8127 Municipio {
8128 ibge_code: 3125606,
8129 name: "Felisburgo",
8130 state: State::MG,
8131 },
8132 Municipio {
8133 ibge_code: 3125705,
8134 name: "Felixlândia",
8135 state: State::MG,
8136 },
8137 Municipio {
8138 ibge_code: 3125408,
8139 name: "Felício dos Santos",
8140 state: State::MG,
8141 },
8142 Municipio {
8143 ibge_code: 3125804,
8144 name: "Fernandes Tourinho",
8145 state: State::MG,
8146 },
8147 Municipio {
8148 ibge_code: 3125903,
8149 name: "Ferros",
8150 state: State::MG,
8151 },
8152 Municipio {
8153 ibge_code: 3125952,
8154 name: "Fervedouro",
8155 state: State::MG,
8156 },
8157 Municipio {
8158 ibge_code: 3126000,
8159 name: "Florestal",
8160 state: State::MG,
8161 },
8162 Municipio {
8163 ibge_code: 3126109,
8164 name: "Formiga",
8165 state: State::MG,
8166 },
8167 Municipio {
8168 ibge_code: 3126208,
8169 name: "Formoso",
8170 state: State::MG,
8171 },
8172 Municipio {
8173 ibge_code: 3126307,
8174 name: "Fortaleza de Minas",
8175 state: State::MG,
8176 },
8177 Municipio {
8178 ibge_code: 3126406,
8179 name: "Fortuna de Minas",
8180 state: State::MG,
8181 },
8182 Municipio {
8183 ibge_code: 3126505,
8184 name: "Francisco Badaró",
8185 state: State::MG,
8186 },
8187 Municipio {
8188 ibge_code: 3126604,
8189 name: "Francisco Dumont",
8190 state: State::MG,
8191 },
8192 Municipio {
8193 ibge_code: 3126703,
8194 name: "Francisco Sá",
8195 state: State::MG,
8196 },
8197 Municipio {
8198 ibge_code: 3126752,
8199 name: "Franciscópolis",
8200 state: State::MG,
8201 },
8202 Municipio {
8203 ibge_code: 3126802,
8204 name: "Frei Gaspar",
8205 state: State::MG,
8206 },
8207 Municipio {
8208 ibge_code: 3126901,
8209 name: "Frei Inocêncio",
8210 state: State::MG,
8211 },
8212 Municipio {
8213 ibge_code: 3126950,
8214 name: "Frei Lagonegro",
8215 state: State::MG,
8216 },
8217 Municipio {
8218 ibge_code: 3127008,
8219 name: "Fronteira",
8220 state: State::MG,
8221 },
8222 Municipio {
8223 ibge_code: 3127057,
8224 name: "Fronteira dos Vales",
8225 state: State::MG,
8226 },
8227 Municipio {
8228 ibge_code: 3127073,
8229 name: "Fruta de Leite",
8230 state: State::MG,
8231 },
8232 Municipio {
8233 ibge_code: 3127107,
8234 name: "Frutal",
8235 state: State::MG,
8236 },
8237 Municipio {
8238 ibge_code: 3127206,
8239 name: "Funilândia",
8240 state: State::MG,
8241 },
8242 Municipio {
8243 ibge_code: 3127305,
8244 name: "Galiléia",
8245 state: State::MG,
8246 },
8247 Municipio {
8248 ibge_code: 3127339,
8249 name: "Gameleiras",
8250 state: State::MG,
8251 },
8252 Municipio {
8253 ibge_code: 3127354,
8254 name: "Glaucilândia",
8255 state: State::MG,
8256 },
8257 Municipio {
8258 ibge_code: 3127370,
8259 name: "Goiabeira",
8260 state: State::MG,
8261 },
8262 Municipio {
8263 ibge_code: 3127388,
8264 name: "Goianá",
8265 state: State::MG,
8266 },
8267 Municipio {
8268 ibge_code: 3127503,
8269 name: "Gonzaga",
8270 state: State::MG,
8271 },
8272 Municipio {
8273 ibge_code: 3127404,
8274 name: "Gonçalves",
8275 state: State::MG,
8276 },
8277 Municipio {
8278 ibge_code: 3127602,
8279 name: "Gouveia",
8280 state: State::MG,
8281 },
8282 Municipio {
8283 ibge_code: 3127701,
8284 name: "Governador Valadares",
8285 state: State::MG,
8286 },
8287 Municipio {
8288 ibge_code: 3127909,
8289 name: "Grupiara",
8290 state: State::MG,
8291 },
8292 Municipio {
8293 ibge_code: 3127800,
8294 name: "Grão Mogol",
8295 state: State::MG,
8296 },
8297 Municipio {
8298 ibge_code: 3128006,
8299 name: "Guanhães",
8300 state: State::MG,
8301 },
8302 Municipio {
8303 ibge_code: 3128105,
8304 name: "Guapé",
8305 state: State::MG,
8306 },
8307 Municipio {
8308 ibge_code: 3128204,
8309 name: "Guaraciaba",
8310 state: State::MG,
8311 },
8312 Municipio {
8313 ibge_code: 3128253,
8314 name: "Guaraciama",
8315 state: State::MG,
8316 },
8317 Municipio {
8318 ibge_code: 3128402,
8319 name: "Guarani",
8320 state: State::MG,
8321 },
8322 Municipio {
8323 ibge_code: 3128303,
8324 name: "Guaranésia",
8325 state: State::MG,
8326 },
8327 Municipio {
8328 ibge_code: 3128501,
8329 name: "Guarará",
8330 state: State::MG,
8331 },
8332 Municipio {
8333 ibge_code: 3128600,
8334 name: "Guarda-Mor",
8335 state: State::MG,
8336 },
8337 Municipio {
8338 ibge_code: 3128709,
8339 name: "Guaxupé",
8340 state: State::MG,
8341 },
8342 Municipio {
8343 ibge_code: 3128808,
8344 name: "Guidoval",
8345 state: State::MG,
8346 },
8347 Municipio {
8348 ibge_code: 3128907,
8349 name: "Guimarânia",
8350 state: State::MG,
8351 },
8352 Municipio {
8353 ibge_code: 3129004,
8354 name: "Guiricema",
8355 state: State::MG,
8356 },
8357 Municipio {
8358 ibge_code: 3129103,
8359 name: "Gurinhatã",
8360 state: State::MG,
8361 },
8362 Municipio {
8363 ibge_code: 3129202,
8364 name: "Heliodora",
8365 state: State::MG,
8366 },
8367 Municipio {
8368 ibge_code: 3129301,
8369 name: "Iapu",
8370 state: State::MG,
8371 },
8372 Municipio {
8373 ibge_code: 3129400,
8374 name: "Ibertioga",
8375 state: State::MG,
8376 },
8377 Municipio {
8378 ibge_code: 3129608,
8379 name: "Ibiaí",
8380 state: State::MG,
8381 },
8382 Municipio {
8383 ibge_code: 3129657,
8384 name: "Ibiracatu",
8385 state: State::MG,
8386 },
8387 Municipio {
8388 ibge_code: 3129707,
8389 name: "Ibiraci",
8390 state: State::MG,
8391 },
8392 Municipio {
8393 ibge_code: 3129806,
8394 name: "Ibirité",
8395 state: State::MG,
8396 },
8397 Municipio {
8398 ibge_code: 3129905,
8399 name: "Ibitiúra de Minas",
8400 state: State::MG,
8401 },
8402 Municipio {
8403 ibge_code: 3130002,
8404 name: "Ibituruna",
8405 state: State::MG,
8406 },
8407 Municipio {
8408 ibge_code: 3129509,
8409 name: "Ibiá",
8410 state: State::MG,
8411 },
8412 Municipio {
8413 ibge_code: 3130051,
8414 name: "Icaraí de Minas",
8415 state: State::MG,
8416 },
8417 Municipio {
8418 ibge_code: 3130101,
8419 name: "Igarapé",
8420 state: State::MG,
8421 },
8422 Municipio {
8423 ibge_code: 3130200,
8424 name: "Igaratinga",
8425 state: State::MG,
8426 },
8427 Municipio {
8428 ibge_code: 3130309,
8429 name: "Iguatama",
8430 state: State::MG,
8431 },
8432 Municipio {
8433 ibge_code: 3130408,
8434 name: "Ijaci",
8435 state: State::MG,
8436 },
8437 Municipio {
8438 ibge_code: 3130507,
8439 name: "Ilicínea",
8440 state: State::MG,
8441 },
8442 Municipio {
8443 ibge_code: 3130556,
8444 name: "Imbé de Minas",
8445 state: State::MG,
8446 },
8447 Municipio {
8448 ibge_code: 3130606,
8449 name: "Inconfidentes",
8450 state: State::MG,
8451 },
8452 Municipio {
8453 ibge_code: 3130655,
8454 name: "Indaiabira",
8455 state: State::MG,
8456 },
8457 Municipio {
8458 ibge_code: 3130705,
8459 name: "Indianópolis",
8460 state: State::MG,
8461 },
8462 Municipio {
8463 ibge_code: 3130804,
8464 name: "Ingaí",
8465 state: State::MG,
8466 },
8467 Municipio {
8468 ibge_code: 3130903,
8469 name: "Inhapim",
8470 state: State::MG,
8471 },
8472 Municipio {
8473 ibge_code: 3131000,
8474 name: "Inhaúma",
8475 state: State::MG,
8476 },
8477 Municipio {
8478 ibge_code: 3131109,
8479 name: "Inimutaba",
8480 state: State::MG,
8481 },
8482 Municipio {
8483 ibge_code: 3131158,
8484 name: "Ipaba",
8485 state: State::MG,
8486 },
8487 Municipio {
8488 ibge_code: 3131208,
8489 name: "Ipanema",
8490 state: State::MG,
8491 },
8492 Municipio {
8493 ibge_code: 3131307,
8494 name: "Ipatinga",
8495 state: State::MG,
8496 },
8497 Municipio {
8498 ibge_code: 3131406,
8499 name: "Ipiaçu",
8500 state: State::MG,
8501 },
8502 Municipio {
8503 ibge_code: 3131505,
8504 name: "Ipuiúna",
8505 state: State::MG,
8506 },
8507 Municipio {
8508 ibge_code: 3131604,
8509 name: "Iraí de Minas",
8510 state: State::MG,
8511 },
8512 Municipio {
8513 ibge_code: 3131703,
8514 name: "Itabira",
8515 state: State::MG,
8516 },
8517 Municipio {
8518 ibge_code: 3131802,
8519 name: "Itabirinha",
8520 state: State::MG,
8521 },
8522 Municipio {
8523 ibge_code: 3131901,
8524 name: "Itabirito",
8525 state: State::MG,
8526 },
8527 Municipio {
8528 ibge_code: 3132008,
8529 name: "Itacambira",
8530 state: State::MG,
8531 },
8532 Municipio {
8533 ibge_code: 3132107,
8534 name: "Itacarambi",
8535 state: State::MG,
8536 },
8537 Municipio {
8538 ibge_code: 3132206,
8539 name: "Itaguara",
8540 state: State::MG,
8541 },
8542 Municipio {
8543 ibge_code: 3132305,
8544 name: "Itaipé",
8545 state: State::MG,
8546 },
8547 Municipio {
8548 ibge_code: 3132404,
8549 name: "Itajubá",
8550 state: State::MG,
8551 },
8552 Municipio {
8553 ibge_code: 3132503,
8554 name: "Itamarandiba",
8555 state: State::MG,
8556 },
8557 Municipio {
8558 ibge_code: 3132602,
8559 name: "Itamarati de Minas",
8560 state: State::MG,
8561 },
8562 Municipio {
8563 ibge_code: 3132701,
8564 name: "Itambacuri",
8565 state: State::MG,
8566 },
8567 Municipio {
8568 ibge_code: 3132800,
8569 name: "Itambé do Mato Dentro",
8570 state: State::MG,
8571 },
8572 Municipio {
8573 ibge_code: 3132909,
8574 name: "Itamogi",
8575 state: State::MG,
8576 },
8577 Municipio {
8578 ibge_code: 3133006,
8579 name: "Itamonte",
8580 state: State::MG,
8581 },
8582 Municipio {
8583 ibge_code: 3133105,
8584 name: "Itanhandu",
8585 state: State::MG,
8586 },
8587 Municipio {
8588 ibge_code: 3133204,
8589 name: "Itanhomi",
8590 state: State::MG,
8591 },
8592 Municipio {
8593 ibge_code: 3133303,
8594 name: "Itaobim",
8595 state: State::MG,
8596 },
8597 Municipio {
8598 ibge_code: 3133402,
8599 name: "Itapagipe",
8600 state: State::MG,
8601 },
8602 Municipio {
8603 ibge_code: 3133501,
8604 name: "Itapecerica",
8605 state: State::MG,
8606 },
8607 Municipio {
8608 ibge_code: 3133600,
8609 name: "Itapeva",
8610 state: State::MG,
8611 },
8612 Municipio {
8613 ibge_code: 3133709,
8614 name: "Itatiaiuçu",
8615 state: State::MG,
8616 },
8617 Municipio {
8618 ibge_code: 3133907,
8619 name: "Itaverava",
8620 state: State::MG,
8621 },
8622 Municipio {
8623 ibge_code: 3133758,
8624 name: "Itaú de Minas",
8625 state: State::MG,
8626 },
8627 Municipio {
8628 ibge_code: 3133808,
8629 name: "Itaúna",
8630 state: State::MG,
8631 },
8632 Municipio {
8633 ibge_code: 3134004,
8634 name: "Itinga",
8635 state: State::MG,
8636 },
8637 Municipio {
8638 ibge_code: 3134103,
8639 name: "Itueta",
8640 state: State::MG,
8641 },
8642 Municipio {
8643 ibge_code: 3134202,
8644 name: "Ituiutaba",
8645 state: State::MG,
8646 },
8647 Municipio {
8648 ibge_code: 3134301,
8649 name: "Itumirim",
8650 state: State::MG,
8651 },
8652 Municipio {
8653 ibge_code: 3134400,
8654 name: "Iturama",
8655 state: State::MG,
8656 },
8657 Municipio {
8658 ibge_code: 3134509,
8659 name: "Itutinga",
8660 state: State::MG,
8661 },
8662 Municipio {
8663 ibge_code: 3134608,
8664 name: "Jaboticatubas",
8665 state: State::MG,
8666 },
8667 Municipio {
8668 ibge_code: 3134707,
8669 name: "Jacinto",
8670 state: State::MG,
8671 },
8672 Municipio {
8673 ibge_code: 3134905,
8674 name: "Jacutinga",
8675 state: State::MG,
8676 },
8677 Municipio {
8678 ibge_code: 3134806,
8679 name: "Jacuí",
8680 state: State::MG,
8681 },
8682 Municipio {
8683 ibge_code: 3135001,
8684 name: "Jaguaraçu",
8685 state: State::MG,
8686 },
8687 Municipio {
8688 ibge_code: 3135076,
8689 name: "Jampruca",
8690 state: State::MG,
8691 },
8692 Municipio {
8693 ibge_code: 3135100,
8694 name: "Janaúba",
8695 state: State::MG,
8696 },
8697 Municipio {
8698 ibge_code: 3135209,
8699 name: "Januária",
8700 state: State::MG,
8701 },
8702 Municipio {
8703 ibge_code: 3135308,
8704 name: "Japaraíba",
8705 state: State::MG,
8706 },
8707 Municipio {
8708 ibge_code: 3135357,
8709 name: "Japonvar",
8710 state: State::MG,
8711 },
8712 Municipio {
8713 ibge_code: 3135050,
8714 name: "Jaíba",
8715 state: State::MG,
8716 },
8717 Municipio {
8718 ibge_code: 3135407,
8719 name: "Jeceaba",
8720 state: State::MG,
8721 },
8722 Municipio {
8723 ibge_code: 3135456,
8724 name: "Jenipapo de Minas",
8725 state: State::MG,
8726 },
8727 Municipio {
8728 ibge_code: 3135506,
8729 name: "Jequeri",
8730 state: State::MG,
8731 },
8732 Municipio {
8733 ibge_code: 3135605,
8734 name: "Jequitaí",
8735 state: State::MG,
8736 },
8737 Municipio {
8738 ibge_code: 3135704,
8739 name: "Jequitibá",
8740 state: State::MG,
8741 },
8742 Municipio {
8743 ibge_code: 3135803,
8744 name: "Jequitinhonha",
8745 state: State::MG,
8746 },
8747 Municipio {
8748 ibge_code: 3135902,
8749 name: "Jesuânia",
8750 state: State::MG,
8751 },
8752 Municipio {
8753 ibge_code: 3136108,
8754 name: "Joanésia",
8755 state: State::MG,
8756 },
8757 Municipio {
8758 ibge_code: 3136405,
8759 name: "Joaquim Felício",
8760 state: State::MG,
8761 },
8762 Municipio {
8763 ibge_code: 3136009,
8764 name: "Joaíma",
8765 state: State::MG,
8766 },
8767 Municipio {
8768 ibge_code: 3136504,
8769 name: "Jordânia",
8770 state: State::MG,
8771 },
8772 Municipio {
8773 ibge_code: 3136579,
8774 name: "Josenópolis",
8775 state: State::MG,
8776 },
8777 Municipio {
8778 ibge_code: 3136520,
8779 name: "José Gonçalves de Minas",
8780 state: State::MG,
8781 },
8782 Municipio {
8783 ibge_code: 3136553,
8784 name: "José Raydan",
8785 state: State::MG,
8786 },
8787 Municipio {
8788 ibge_code: 3136207,
8789 name: "João Monlevade",
8790 state: State::MG,
8791 },
8792 Municipio {
8793 ibge_code: 3136306,
8794 name: "João Pinheiro",
8795 state: State::MG,
8796 },
8797 Municipio {
8798 ibge_code: 3136652,
8799 name: "Juatuba",
8800 state: State::MG,
8801 },
8802 Municipio {
8803 ibge_code: 3136702,
8804 name: "Juiz de Fora",
8805 state: State::MG,
8806 },
8807 Municipio {
8808 ibge_code: 3136801,
8809 name: "Juramento",
8810 state: State::MG,
8811 },
8812 Municipio {
8813 ibge_code: 3136900,
8814 name: "Juruaia",
8815 state: State::MG,
8816 },
8817 Municipio {
8818 ibge_code: 3136959,
8819 name: "Juvenília",
8820 state: State::MG,
8821 },
8822 Municipio {
8823 ibge_code: 3137007,
8824 name: "Ladainha",
8825 state: State::MG,
8826 },
8827 Municipio {
8828 ibge_code: 3137106,
8829 name: "Lagamar",
8830 state: State::MG,
8831 },
8832 Municipio {
8833 ibge_code: 3137403,
8834 name: "Lagoa Dourada",
8835 state: State::MG,
8836 },
8837 Municipio {
8838 ibge_code: 3137502,
8839 name: "Lagoa Formosa",
8840 state: State::MG,
8841 },
8842 Municipio {
8843 ibge_code: 3137536,
8844 name: "Lagoa Grande",
8845 state: State::MG,
8846 },
8847 Municipio {
8848 ibge_code: 3137601,
8849 name: "Lagoa Santa",
8850 state: State::MG,
8851 },
8852 Municipio {
8853 ibge_code: 3137205,
8854 name: "Lagoa da Prata",
8855 state: State::MG,
8856 },
8857 Municipio {
8858 ibge_code: 3137304,
8859 name: "Lagoa dos Patos",
8860 state: State::MG,
8861 },
8862 Municipio {
8863 ibge_code: 3137700,
8864 name: "Lajinha",
8865 state: State::MG,
8866 },
8867 Municipio {
8868 ibge_code: 3137809,
8869 name: "Lambari",
8870 state: State::MG,
8871 },
8872 Municipio {
8873 ibge_code: 3137908,
8874 name: "Lamim",
8875 state: State::MG,
8876 },
8877 Municipio {
8878 ibge_code: 3138005,
8879 name: "Laranjal",
8880 state: State::MG,
8881 },
8882 Municipio {
8883 ibge_code: 3138104,
8884 name: "Lassance",
8885 state: State::MG,
8886 },
8887 Municipio {
8888 ibge_code: 3138203,
8889 name: "Lavras",
8890 state: State::MG,
8891 },
8892 Municipio {
8893 ibge_code: 3138302,
8894 name: "Leandro Ferreira",
8895 state: State::MG,
8896 },
8897 Municipio {
8898 ibge_code: 3138351,
8899 name: "Leme do Prado",
8900 state: State::MG,
8901 },
8902 Municipio {
8903 ibge_code: 3138401,
8904 name: "Leopoldina",
8905 state: State::MG,
8906 },
8907 Municipio {
8908 ibge_code: 3138500,
8909 name: "Liberdade",
8910 state: State::MG,
8911 },
8912 Municipio {
8913 ibge_code: 3138609,
8914 name: "Lima Duarte",
8915 state: State::MG,
8916 },
8917 Municipio {
8918 ibge_code: 3138625,
8919 name: "Limeira do Oeste",
8920 state: State::MG,
8921 },
8922 Municipio {
8923 ibge_code: 3138658,
8924 name: "Lontra",
8925 state: State::MG,
8926 },
8927 Municipio {
8928 ibge_code: 3138674,
8929 name: "Luisburgo",
8930 state: State::MG,
8931 },
8932 Municipio {
8933 ibge_code: 3138682,
8934 name: "Luislândia",
8935 state: State::MG,
8936 },
8937 Municipio {
8938 ibge_code: 3138708,
8939 name: "Luminárias",
8940 state: State::MG,
8941 },
8942 Municipio {
8943 ibge_code: 3138807,
8944 name: "Luz",
8945 state: State::MG,
8946 },
8947 Municipio {
8948 ibge_code: 3138906,
8949 name: "Machacalis",
8950 state: State::MG,
8951 },
8952 Municipio {
8953 ibge_code: 3139003,
8954 name: "Machado",
8955 state: State::MG,
8956 },
8957 Municipio {
8958 ibge_code: 3139102,
8959 name: "Madre de Deus de Minas",
8960 state: State::MG,
8961 },
8962 Municipio {
8963 ibge_code: 3139201,
8964 name: "Malacacheta",
8965 state: State::MG,
8966 },
8967 Municipio {
8968 ibge_code: 3139250,
8969 name: "Mamonas",
8970 state: State::MG,
8971 },
8972 Municipio {
8973 ibge_code: 3139300,
8974 name: "Manga",
8975 state: State::MG,
8976 },
8977 Municipio {
8978 ibge_code: 3139409,
8979 name: "Manhuaçu",
8980 state: State::MG,
8981 },
8982 Municipio {
8983 ibge_code: 3139508,
8984 name: "Manhumirim",
8985 state: State::MG,
8986 },
8987 Municipio {
8988 ibge_code: 3139607,
8989 name: "Mantena",
8990 state: State::MG,
8991 },
8992 Municipio {
8993 ibge_code: 3139805,
8994 name: "Mar de Espanha",
8995 state: State::MG,
8996 },
8997 Municipio {
8998 ibge_code: 3139706,
8999 name: "Maravilhas",
9000 state: State::MG,
9001 },
9002 Municipio {
9003 ibge_code: 3139904,
9004 name: "Maria da Fé",
9005 state: State::MG,
9006 },
9007 Municipio {
9008 ibge_code: 3140001,
9009 name: "Mariana",
9010 state: State::MG,
9011 },
9012 Municipio {
9013 ibge_code: 3140100,
9014 name: "Marilac",
9015 state: State::MG,
9016 },
9017 Municipio {
9018 ibge_code: 3140209,
9019 name: "Maripá de Minas",
9020 state: State::MG,
9021 },
9022 Municipio {
9023 ibge_code: 3140308,
9024 name: "Marliéria",
9025 state: State::MG,
9026 },
9027 Municipio {
9028 ibge_code: 3140407,
9029 name: "Marmelópolis",
9030 state: State::MG,
9031 },
9032 Municipio {
9033 ibge_code: 3140506,
9034 name: "Martinho Campos",
9035 state: State::MG,
9036 },
9037 Municipio {
9038 ibge_code: 3140530,
9039 name: "Martins Soares",
9040 state: State::MG,
9041 },
9042 Municipio {
9043 ibge_code: 3140555,
9044 name: "Mata Verde",
9045 state: State::MG,
9046 },
9047 Municipio {
9048 ibge_code: 3140605,
9049 name: "Materlândia",
9050 state: State::MG,
9051 },
9052 Municipio {
9053 ibge_code: 3140704,
9054 name: "Mateus Leme",
9055 state: State::MG,
9056 },
9057 Municipio {
9058 ibge_code: 3171501,
9059 name: "Mathias Lobato",
9060 state: State::MG,
9061 },
9062 Municipio {
9063 ibge_code: 3140803,
9064 name: "Matias Barbosa",
9065 state: State::MG,
9066 },
9067 Municipio {
9068 ibge_code: 3140852,
9069 name: "Matias Cardoso",
9070 state: State::MG,
9071 },
9072 Municipio {
9073 ibge_code: 3140902,
9074 name: "Matipó",
9075 state: State::MG,
9076 },
9077 Municipio {
9078 ibge_code: 3141009,
9079 name: "Mato Verde",
9080 state: State::MG,
9081 },
9082 Municipio {
9083 ibge_code: 3141108,
9084 name: "Matozinhos",
9085 state: State::MG,
9086 },
9087 Municipio {
9088 ibge_code: 3141207,
9089 name: "Matutina",
9090 state: State::MG,
9091 },
9092 Municipio {
9093 ibge_code: 3141306,
9094 name: "Medeiros",
9095 state: State::MG,
9096 },
9097 Municipio {
9098 ibge_code: 3141405,
9099 name: "Medina",
9100 state: State::MG,
9101 },
9102 Municipio {
9103 ibge_code: 3141504,
9104 name: "Mendes Pimentel",
9105 state: State::MG,
9106 },
9107 Municipio {
9108 ibge_code: 3141603,
9109 name: "Mercês",
9110 state: State::MG,
9111 },
9112 Municipio {
9113 ibge_code: 3141702,
9114 name: "Mesquita",
9115 state: State::MG,
9116 },
9117 Municipio {
9118 ibge_code: 3141801,
9119 name: "Minas Novas",
9120 state: State::MG,
9121 },
9122 Municipio {
9123 ibge_code: 3141900,
9124 name: "Minduri",
9125 state: State::MG,
9126 },
9127 Municipio {
9128 ibge_code: 3142007,
9129 name: "Mirabela",
9130 state: State::MG,
9131 },
9132 Municipio {
9133 ibge_code: 3142106,
9134 name: "Miradouro",
9135 state: State::MG,
9136 },
9137 Municipio {
9138 ibge_code: 3142254,
9139 name: "Miravânia",
9140 state: State::MG,
9141 },
9142 Municipio {
9143 ibge_code: 3142205,
9144 name: "Miraí",
9145 state: State::MG,
9146 },
9147 Municipio {
9148 ibge_code: 3142304,
9149 name: "Moeda",
9150 state: State::MG,
9151 },
9152 Municipio {
9153 ibge_code: 3142403,
9154 name: "Moema",
9155 state: State::MG,
9156 },
9157 Municipio {
9158 ibge_code: 3142502,
9159 name: "Monjolos",
9160 state: State::MG,
9161 },
9162 Municipio {
9163 ibge_code: 3142601,
9164 name: "Monsenhor Paulo",
9165 state: State::MG,
9166 },
9167 Municipio {
9168 ibge_code: 3142700,
9169 name: "Montalvânia",
9170 state: State::MG,
9171 },
9172 Municipio {
9173 ibge_code: 3142809,
9174 name: "Monte Alegre de Minas",
9175 state: State::MG,
9176 },
9177 Municipio {
9178 ibge_code: 3142908,
9179 name: "Monte Azul",
9180 state: State::MG,
9181 },
9182 Municipio {
9183 ibge_code: 3143005,
9184 name: "Monte Belo",
9185 state: State::MG,
9186 },
9187 Municipio {
9188 ibge_code: 3143104,
9189 name: "Monte Carmelo",
9190 state: State::MG,
9191 },
9192 Municipio {
9193 ibge_code: 3143153,
9194 name: "Monte Formoso",
9195 state: State::MG,
9196 },
9197 Municipio {
9198 ibge_code: 3143203,
9199 name: "Monte Santo de Minas",
9200 state: State::MG,
9201 },
9202 Municipio {
9203 ibge_code: 3143401,
9204 name: "Monte Sião",
9205 state: State::MG,
9206 },
9207 Municipio {
9208 ibge_code: 3143302,
9209 name: "Montes Claros",
9210 state: State::MG,
9211 },
9212 Municipio {
9213 ibge_code: 3143450,
9214 name: "Montezuma",
9215 state: State::MG,
9216 },
9217 Municipio {
9218 ibge_code: 3143500,
9219 name: "Morada Nova de Minas",
9220 state: State::MG,
9221 },
9222 Municipio {
9223 ibge_code: 3143609,
9224 name: "Morro da Garça",
9225 state: State::MG,
9226 },
9227 Municipio {
9228 ibge_code: 3143708,
9229 name: "Morro do Pilar",
9230 state: State::MG,
9231 },
9232 Municipio {
9233 ibge_code: 3143807,
9234 name: "Munhoz",
9235 state: State::MG,
9236 },
9237 Municipio {
9238 ibge_code: 3143906,
9239 name: "Muriaé",
9240 state: State::MG,
9241 },
9242 Municipio {
9243 ibge_code: 3144003,
9244 name: "Mutum",
9245 state: State::MG,
9246 },
9247 Municipio {
9248 ibge_code: 3144102,
9249 name: "Muzambinho",
9250 state: State::MG,
9251 },
9252 Municipio {
9253 ibge_code: 3140159,
9254 name: "Mário Campos",
9255 state: State::MG,
9256 },
9257 Municipio {
9258 ibge_code: 3144201,
9259 name: "Nacip Raydan",
9260 state: State::MG,
9261 },
9262 Municipio {
9263 ibge_code: 3144300,
9264 name: "Nanuque",
9265 state: State::MG,
9266 },
9267 Municipio {
9268 ibge_code: 3144359,
9269 name: "Naque",
9270 state: State::MG,
9271 },
9272 Municipio {
9273 ibge_code: 3144375,
9274 name: "Natalândia",
9275 state: State::MG,
9276 },
9277 Municipio {
9278 ibge_code: 3144409,
9279 name: "Natércia",
9280 state: State::MG,
9281 },
9282 Municipio {
9283 ibge_code: 3144508,
9284 name: "Nazareno",
9285 state: State::MG,
9286 },
9287 Municipio {
9288 ibge_code: 3144607,
9289 name: "Nepomuceno",
9290 state: State::MG,
9291 },
9292 Municipio {
9293 ibge_code: 3144656,
9294 name: "Ninheira",
9295 state: State::MG,
9296 },
9297 Municipio {
9298 ibge_code: 3144672,
9299 name: "Nova Belém",
9300 state: State::MG,
9301 },
9302 Municipio {
9303 ibge_code: 3144706,
9304 name: "Nova Era",
9305 state: State::MG,
9306 },
9307 Municipio {
9308 ibge_code: 3144805,
9309 name: "Nova Lima",
9310 state: State::MG,
9311 },
9312 Municipio {
9313 ibge_code: 3144904,
9314 name: "Nova Módica",
9315 state: State::MG,
9316 },
9317 Municipio {
9318 ibge_code: 3145000,
9319 name: "Nova Ponte",
9320 state: State::MG,
9321 },
9322 Municipio {
9323 ibge_code: 3145059,
9324 name: "Nova Porteirinha",
9325 state: State::MG,
9326 },
9327 Municipio {
9328 ibge_code: 3145109,
9329 name: "Nova Resende",
9330 state: State::MG,
9331 },
9332 Municipio {
9333 ibge_code: 3145208,
9334 name: "Nova Serrana",
9335 state: State::MG,
9336 },
9337 Municipio {
9338 ibge_code: 3136603,
9339 name: "Nova União",
9340 state: State::MG,
9341 },
9342 Municipio {
9343 ibge_code: 3145307,
9344 name: "Novo Cruzeiro",
9345 state: State::MG,
9346 },
9347 Municipio {
9348 ibge_code: 3145356,
9349 name: "Novo Oriente de Minas",
9350 state: State::MG,
9351 },
9352 Municipio {
9353 ibge_code: 3145372,
9354 name: "Novorizonte",
9355 state: State::MG,
9356 },
9357 Municipio {
9358 ibge_code: 3145406,
9359 name: "Olaria",
9360 state: State::MG,
9361 },
9362 Municipio {
9363 ibge_code: 3145455,
9364 name: "Olhos-d'Água",
9365 state: State::MG,
9366 },
9367 Municipio {
9368 ibge_code: 3145604,
9369 name: "Oliveira",
9370 state: State::MG,
9371 },
9372 Municipio {
9373 ibge_code: 3145703,
9374 name: "Oliveira Fortes",
9375 state: State::MG,
9376 },
9377 Municipio {
9378 ibge_code: 3145505,
9379 name: "Olímpio Noronha",
9380 state: State::MG,
9381 },
9382 Municipio {
9383 ibge_code: 3145802,
9384 name: "Onça de Pitangui",
9385 state: State::MG,
9386 },
9387 Municipio {
9388 ibge_code: 3145851,
9389 name: "Oratórios",
9390 state: State::MG,
9391 },
9392 Municipio {
9393 ibge_code: 3145877,
9394 name: "Orizânia",
9395 state: State::MG,
9396 },
9397 Municipio {
9398 ibge_code: 3145901,
9399 name: "Ouro Branco",
9400 state: State::MG,
9401 },
9402 Municipio {
9403 ibge_code: 3146008,
9404 name: "Ouro Fino",
9405 state: State::MG,
9406 },
9407 Municipio {
9408 ibge_code: 3146107,
9409 name: "Ouro Preto",
9410 state: State::MG,
9411 },
9412 Municipio {
9413 ibge_code: 3146206,
9414 name: "Ouro Verde de Minas",
9415 state: State::MG,
9416 },
9417 Municipio {
9418 ibge_code: 3146255,
9419 name: "Padre Carvalho",
9420 state: State::MG,
9421 },
9422 Municipio {
9423 ibge_code: 3146305,
9424 name: "Padre Paraíso",
9425 state: State::MG,
9426 },
9427 Municipio {
9428 ibge_code: 3146552,
9429 name: "Pai Pedro",
9430 state: State::MG,
9431 },
9432 Municipio {
9433 ibge_code: 3146404,
9434 name: "Paineiras",
9435 state: State::MG,
9436 },
9437 Municipio {
9438 ibge_code: 3146503,
9439 name: "Pains",
9440 state: State::MG,
9441 },
9442 Municipio {
9443 ibge_code: 3146602,
9444 name: "Paiva",
9445 state: State::MG,
9446 },
9447 Municipio {
9448 ibge_code: 3146701,
9449 name: "Palma",
9450 state: State::MG,
9451 },
9452 Municipio {
9453 ibge_code: 3146750,
9454 name: "Palmópolis",
9455 state: State::MG,
9456 },
9457 Municipio {
9458 ibge_code: 3146909,
9459 name: "Papagaios",
9460 state: State::MG,
9461 },
9462 Municipio {
9463 ibge_code: 3147006,
9464 name: "Paracatu",
9465 state: State::MG,
9466 },
9467 Municipio {
9468 ibge_code: 3147204,
9469 name: "Paraguaçu",
9470 state: State::MG,
9471 },
9472 Municipio {
9473 ibge_code: 3147303,
9474 name: "Paraisópolis",
9475 state: State::MG,
9476 },
9477 Municipio {
9478 ibge_code: 3147402,
9479 name: "Paraopeba",
9480 state: State::MG,
9481 },
9482 Municipio {
9483 ibge_code: 3147105,
9484 name: "Pará de Minas",
9485 state: State::MG,
9486 },
9487 Municipio {
9488 ibge_code: 3147600,
9489 name: "Passa Quatro",
9490 state: State::MG,
9491 },
9492 Municipio {
9493 ibge_code: 3147709,
9494 name: "Passa Tempo",
9495 state: State::MG,
9496 },
9497 Municipio {
9498 ibge_code: 3147808,
9499 name: "Passa Vinte",
9500 state: State::MG,
9501 },
9502 Municipio {
9503 ibge_code: 3147501,
9504 name: "Passabém",
9505 state: State::MG,
9506 },
9507 Municipio {
9508 ibge_code: 3147907,
9509 name: "Passos",
9510 state: State::MG,
9511 },
9512 Municipio {
9513 ibge_code: 3147956,
9514 name: "Patis",
9515 state: State::MG,
9516 },
9517 Municipio {
9518 ibge_code: 3148004,
9519 name: "Patos de Minas",
9520 state: State::MG,
9521 },
9522 Municipio {
9523 ibge_code: 3148103,
9524 name: "Patrocínio",
9525 state: State::MG,
9526 },
9527 Municipio {
9528 ibge_code: 3148202,
9529 name: "Patrocínio do Muriaé",
9530 state: State::MG,
9531 },
9532 Municipio {
9533 ibge_code: 3148301,
9534 name: "Paula Cândido",
9535 state: State::MG,
9536 },
9537 Municipio {
9538 ibge_code: 3148400,
9539 name: "Paulistas",
9540 state: State::MG,
9541 },
9542 Municipio {
9543 ibge_code: 3148509,
9544 name: "Pavão",
9545 state: State::MG,
9546 },
9547 Municipio {
9548 ibge_code: 3148707,
9549 name: "Pedra Azul",
9550 state: State::MG,
9551 },
9552 Municipio {
9553 ibge_code: 3148756,
9554 name: "Pedra Bonita",
9555 state: State::MG,
9556 },
9557 Municipio {
9558 ibge_code: 3149002,
9559 name: "Pedra Dourada",
9560 state: State::MG,
9561 },
9562 Municipio {
9563 ibge_code: 3148806,
9564 name: "Pedra do Anta",
9565 state: State::MG,
9566 },
9567 Municipio {
9568 ibge_code: 3148905,
9569 name: "Pedra do Indaiá",
9570 state: State::MG,
9571 },
9572 Municipio {
9573 ibge_code: 3149101,
9574 name: "Pedralva",
9575 state: State::MG,
9576 },
9577 Municipio {
9578 ibge_code: 3149150,
9579 name: "Pedras de Maria da Cruz",
9580 state: State::MG,
9581 },
9582 Municipio {
9583 ibge_code: 3149200,
9584 name: "Pedrinópolis",
9585 state: State::MG,
9586 },
9587 Municipio {
9588 ibge_code: 3149309,
9589 name: "Pedro Leopoldo",
9590 state: State::MG,
9591 },
9592 Municipio {
9593 ibge_code: 3149408,
9594 name: "Pedro Teixeira",
9595 state: State::MG,
9596 },
9597 Municipio {
9598 ibge_code: 3149507,
9599 name: "Pequeri",
9600 state: State::MG,
9601 },
9602 Municipio {
9603 ibge_code: 3149606,
9604 name: "Pequi",
9605 state: State::MG,
9606 },
9607 Municipio {
9608 ibge_code: 3149705,
9609 name: "Perdigão",
9610 state: State::MG,
9611 },
9612 Municipio {
9613 ibge_code: 3149804,
9614 name: "Perdizes",
9615 state: State::MG,
9616 },
9617 Municipio {
9618 ibge_code: 3149903,
9619 name: "Perdões",
9620 state: State::MG,
9621 },
9622 Municipio {
9623 ibge_code: 3149952,
9624 name: "Periquito",
9625 state: State::MG,
9626 },
9627 Municipio {
9628 ibge_code: 3150000,
9629 name: "Pescador",
9630 state: State::MG,
9631 },
9632 Municipio {
9633 ibge_code: 3148608,
9634 name: "Peçanha",
9635 state: State::MG,
9636 },
9637 Municipio {
9638 ibge_code: 3150109,
9639 name: "Piau",
9640 state: State::MG,
9641 },
9642 Municipio {
9643 ibge_code: 3150158,
9644 name: "Piedade de Caratinga",
9645 state: State::MG,
9646 },
9647 Municipio {
9648 ibge_code: 3150208,
9649 name: "Piedade de Ponte Nova",
9650 state: State::MG,
9651 },
9652 Municipio {
9653 ibge_code: 3150307,
9654 name: "Piedade do Rio Grande",
9655 state: State::MG,
9656 },
9657 Municipio {
9658 ibge_code: 3150406,
9659 name: "Piedade dos Gerais",
9660 state: State::MG,
9661 },
9662 Municipio {
9663 ibge_code: 3150505,
9664 name: "Pimenta",
9665 state: State::MG,
9666 },
9667 Municipio {
9668 ibge_code: 3150539,
9669 name: "Pingo-d'Água",
9670 state: State::MG,
9671 },
9672 Municipio {
9673 ibge_code: 3150570,
9674 name: "Pintópolis",
9675 state: State::MG,
9676 },
9677 Municipio {
9678 ibge_code: 3150604,
9679 name: "Piracema",
9680 state: State::MG,
9681 },
9682 Municipio {
9683 ibge_code: 3150703,
9684 name: "Pirajuba",
9685 state: State::MG,
9686 },
9687 Municipio {
9688 ibge_code: 3150802,
9689 name: "Piranga",
9690 state: State::MG,
9691 },
9692 Municipio {
9693 ibge_code: 3151008,
9694 name: "Piranguinho",
9695 state: State::MG,
9696 },
9697 Municipio {
9698 ibge_code: 3150901,
9699 name: "Piranguçu",
9700 state: State::MG,
9701 },
9702 Municipio {
9703 ibge_code: 3151107,
9704 name: "Pirapetinga",
9705 state: State::MG,
9706 },
9707 Municipio {
9708 ibge_code: 3151206,
9709 name: "Pirapora",
9710 state: State::MG,
9711 },
9712 Municipio {
9713 ibge_code: 3151305,
9714 name: "Piraúba",
9715 state: State::MG,
9716 },
9717 Municipio {
9718 ibge_code: 3151404,
9719 name: "Pitangui",
9720 state: State::MG,
9721 },
9722 Municipio {
9723 ibge_code: 3151503,
9724 name: "Piumhi",
9725 state: State::MG,
9726 },
9727 Municipio {
9728 ibge_code: 3151602,
9729 name: "Planura",
9730 state: State::MG,
9731 },
9732 Municipio {
9733 ibge_code: 3151909,
9734 name: "Pocrane",
9735 state: State::MG,
9736 },
9737 Municipio {
9738 ibge_code: 3152006,
9739 name: "Pompéu",
9740 state: State::MG,
9741 },
9742 Municipio {
9743 ibge_code: 3152105,
9744 name: "Ponte Nova",
9745 state: State::MG,
9746 },
9747 Municipio {
9748 ibge_code: 3152131,
9749 name: "Ponto Chique",
9750 state: State::MG,
9751 },
9752 Municipio {
9753 ibge_code: 3152170,
9754 name: "Ponto dos Volantes",
9755 state: State::MG,
9756 },
9757 Municipio {
9758 ibge_code: 3152204,
9759 name: "Porteirinha",
9760 state: State::MG,
9761 },
9762 Municipio {
9763 ibge_code: 3152303,
9764 name: "Porto Firme",
9765 state: State::MG,
9766 },
9767 Municipio {
9768 ibge_code: 3152402,
9769 name: "Poté",
9770 state: State::MG,
9771 },
9772 Municipio {
9773 ibge_code: 3152501,
9774 name: "Pouso Alegre",
9775 state: State::MG,
9776 },
9777 Municipio {
9778 ibge_code: 3152600,
9779 name: "Pouso Alto",
9780 state: State::MG,
9781 },
9782 Municipio {
9783 ibge_code: 3151701,
9784 name: "Poço Fundo",
9785 state: State::MG,
9786 },
9787 Municipio {
9788 ibge_code: 3151800,
9789 name: "Poços de Caldas",
9790 state: State::MG,
9791 },
9792 Municipio {
9793 ibge_code: 3152709,
9794 name: "Prados",
9795 state: State::MG,
9796 },
9797 Municipio {
9798 ibge_code: 3152808,
9799 name: "Prata",
9800 state: State::MG,
9801 },
9802 Municipio {
9803 ibge_code: 3153004,
9804 name: "Pratinha",
9805 state: State::MG,
9806 },
9807 Municipio {
9808 ibge_code: 3152907,
9809 name: "Pratápolis",
9810 state: State::MG,
9811 },
9812 Municipio {
9813 ibge_code: 3153103,
9814 name: "Presidente Bernardes",
9815 state: State::MG,
9816 },
9817 Municipio {
9818 ibge_code: 3153202,
9819 name: "Presidente Juscelino",
9820 state: State::MG,
9821 },
9822 Municipio {
9823 ibge_code: 3153301,
9824 name: "Presidente Kubitschek",
9825 state: State::MG,
9826 },
9827 Municipio {
9828 ibge_code: 3153400,
9829 name: "Presidente Olegário",
9830 state: State::MG,
9831 },
9832 Municipio {
9833 ibge_code: 3153608,
9834 name: "Prudente de Morais",
9835 state: State::MG,
9836 },
9837 Municipio {
9838 ibge_code: 3153707,
9839 name: "Quartel Geral",
9840 state: State::MG,
9841 },
9842 Municipio {
9843 ibge_code: 3153806,
9844 name: "Queluzito",
9845 state: State::MG,
9846 },
9847 Municipio {
9848 ibge_code: 3153905,
9849 name: "Raposos",
9850 state: State::MG,
9851 },
9852 Municipio {
9853 ibge_code: 3154002,
9854 name: "Raul Soares",
9855 state: State::MG,
9856 },
9857 Municipio {
9858 ibge_code: 3154101,
9859 name: "Recreio",
9860 state: State::MG,
9861 },
9862 Municipio {
9863 ibge_code: 3154150,
9864 name: "Reduto",
9865 state: State::MG,
9866 },
9867 Municipio {
9868 ibge_code: 3154200,
9869 name: "Resende Costa",
9870 state: State::MG,
9871 },
9872 Municipio {
9873 ibge_code: 3154309,
9874 name: "Resplendor",
9875 state: State::MG,
9876 },
9877 Municipio {
9878 ibge_code: 3154408,
9879 name: "Ressaquinha",
9880 state: State::MG,
9881 },
9882 Municipio {
9883 ibge_code: 3154457,
9884 name: "Riachinho",
9885 state: State::MG,
9886 },
9887 Municipio {
9888 ibge_code: 3154507,
9889 name: "Riacho dos Machados",
9890 state: State::MG,
9891 },
9892 Municipio {
9893 ibge_code: 3154705,
9894 name: "Ribeirão Vermelho",
9895 state: State::MG,
9896 },
9897 Municipio {
9898 ibge_code: 3154606,
9899 name: "Ribeirão das Neves",
9900 state: State::MG,
9901 },
9902 Municipio {
9903 ibge_code: 3154804,
9904 name: "Rio Acima",
9905 state: State::MG,
9906 },
9907 Municipio {
9908 ibge_code: 3154903,
9909 name: "Rio Casca",
9910 state: State::MG,
9911 },
9912 Municipio {
9913 ibge_code: 3155009,
9914 name: "Rio Doce",
9915 state: State::MG,
9916 },
9917 Municipio {
9918 ibge_code: 3155207,
9919 name: "Rio Espera",
9920 state: State::MG,
9921 },
9922 Municipio {
9923 ibge_code: 3155306,
9924 name: "Rio Manso",
9925 state: State::MG,
9926 },
9927 Municipio {
9928 ibge_code: 3155405,
9929 name: "Rio Novo",
9930 state: State::MG,
9931 },
9932 Municipio {
9933 ibge_code: 3155504,
9934 name: "Rio Paranaíba",
9935 state: State::MG,
9936 },
9937 Municipio {
9938 ibge_code: 3155603,
9939 name: "Rio Pardo de Minas",
9940 state: State::MG,
9941 },
9942 Municipio {
9943 ibge_code: 3155702,
9944 name: "Rio Piracicaba",
9945 state: State::MG,
9946 },
9947 Municipio {
9948 ibge_code: 3155801,
9949 name: "Rio Pomba",
9950 state: State::MG,
9951 },
9952 Municipio {
9953 ibge_code: 3155900,
9954 name: "Rio Preto",
9955 state: State::MG,
9956 },
9957 Municipio {
9958 ibge_code: 3156007,
9959 name: "Rio Vermelho",
9960 state: State::MG,
9961 },
9962 Municipio {
9963 ibge_code: 3155108,
9964 name: "Rio do Prado",
9965 state: State::MG,
9966 },
9967 Municipio {
9968 ibge_code: 3156106,
9969 name: "Ritápolis",
9970 state: State::MG,
9971 },
9972 Municipio {
9973 ibge_code: 3156205,
9974 name: "Rochedo de Minas",
9975 state: State::MG,
9976 },
9977 Municipio {
9978 ibge_code: 3156304,
9979 name: "Rodeiro",
9980 state: State::MG,
9981 },
9982 Municipio {
9983 ibge_code: 3156403,
9984 name: "Romaria",
9985 state: State::MG,
9986 },
9987 Municipio {
9988 ibge_code: 3156452,
9989 name: "Rosário da Limeira",
9990 state: State::MG,
9991 },
9992 Municipio {
9993 ibge_code: 3156502,
9994 name: "Rubelita",
9995 state: State::MG,
9996 },
9997 Municipio {
9998 ibge_code: 3156601,
9999 name: "Rubim",
10000 state: State::MG,
10001 },
10002 Municipio {
10003 ibge_code: 3156700,
10004 name: "Sabará",
10005 state: State::MG,
10006 },
10007 Municipio {
10008 ibge_code: 3156809,
10009 name: "Sabinópolis",
10010 state: State::MG,
10011 },
10012 Municipio {
10013 ibge_code: 3156908,
10014 name: "Sacramento",
10015 state: State::MG,
10016 },
10017 Municipio {
10018 ibge_code: 3157005,
10019 name: "Salinas",
10020 state: State::MG,
10021 },
10022 Municipio {
10023 ibge_code: 3157104,
10024 name: "Salto da Divisa",
10025 state: State::MG,
10026 },
10027 Municipio {
10028 ibge_code: 3157203,
10029 name: "Santa Bárbara",
10030 state: State::MG,
10031 },
10032 Municipio {
10033 ibge_code: 3157252,
10034 name: "Santa Bárbara do Leste",
10035 state: State::MG,
10036 },
10037 Municipio {
10038 ibge_code: 3157278,
10039 name: "Santa Bárbara do Monte Verde",
10040 state: State::MG,
10041 },
10042 Municipio {
10043 ibge_code: 3157302,
10044 name: "Santa Bárbara do Tugúrio",
10045 state: State::MG,
10046 },
10047 Municipio {
10048 ibge_code: 3157336,
10049 name: "Santa Cruz de Minas",
10050 state: State::MG,
10051 },
10052 Municipio {
10053 ibge_code: 3157377,
10054 name: "Santa Cruz de Salinas",
10055 state: State::MG,
10056 },
10057 Municipio {
10058 ibge_code: 3157401,
10059 name: "Santa Cruz do Escalvado",
10060 state: State::MG,
10061 },
10062 Municipio {
10063 ibge_code: 3157500,
10064 name: "Santa Efigênia de Minas",
10065 state: State::MG,
10066 },
10067 Municipio {
10068 ibge_code: 3157609,
10069 name: "Santa Fé de Minas",
10070 state: State::MG,
10071 },
10072 Municipio {
10073 ibge_code: 3157658,
10074 name: "Santa Helena de Minas",
10075 state: State::MG,
10076 },
10077 Municipio {
10078 ibge_code: 3157708,
10079 name: "Santa Juliana",
10080 state: State::MG,
10081 },
10082 Municipio {
10083 ibge_code: 3157807,
10084 name: "Santa Luzia",
10085 state: State::MG,
10086 },
10087 Municipio {
10088 ibge_code: 3157906,
10089 name: "Santa Margarida",
10090 state: State::MG,
10091 },
10092 Municipio {
10093 ibge_code: 3158003,
10094 name: "Santa Maria de Itabira",
10095 state: State::MG,
10096 },
10097 Municipio {
10098 ibge_code: 3158102,
10099 name: "Santa Maria do Salto",
10100 state: State::MG,
10101 },
10102 Municipio {
10103 ibge_code: 3158201,
10104 name: "Santa Maria do Suaçuí",
10105 state: State::MG,
10106 },
10107 Municipio {
10108 ibge_code: 3159209,
10109 name: "Santa Rita de Caldas",
10110 state: State::MG,
10111 },
10112 Municipio {
10113 ibge_code: 3159407,
10114 name: "Santa Rita de Ibitipoca",
10115 state: State::MG,
10116 },
10117 Municipio {
10118 ibge_code: 3159308,
10119 name: "Santa Rita de Jacutinga",
10120 state: State::MG,
10121 },
10122 Municipio {
10123 ibge_code: 3159357,
10124 name: "Santa Rita de Minas",
10125 state: State::MG,
10126 },
10127 Municipio {
10128 ibge_code: 3159506,
10129 name: "Santa Rita do Itueto",
10130 state: State::MG,
10131 },
10132 Municipio {
10133 ibge_code: 3159605,
10134 name: "Santa Rita do Sapucaí",
10135 state: State::MG,
10136 },
10137 Municipio {
10138 ibge_code: 3159704,
10139 name: "Santa Rosa da Serra",
10140 state: State::MG,
10141 },
10142 Municipio {
10143 ibge_code: 3159803,
10144 name: "Santa Vitória",
10145 state: State::MG,
10146 },
10147 Municipio {
10148 ibge_code: 3158300,
10149 name: "Santana da Vargem",
10150 state: State::MG,
10151 },
10152 Municipio {
10153 ibge_code: 3158409,
10154 name: "Santana de Cataguases",
10155 state: State::MG,
10156 },
10157 Municipio {
10158 ibge_code: 3158508,
10159 name: "Santana de Pirapama",
10160 state: State::MG,
10161 },
10162 Municipio {
10163 ibge_code: 3158607,
10164 name: "Santana do Deserto",
10165 state: State::MG,
10166 },
10167 Municipio {
10168 ibge_code: 3158706,
10169 name: "Santana do Garambéu",
10170 state: State::MG,
10171 },
10172 Municipio {
10173 ibge_code: 3158805,
10174 name: "Santana do Jacaré",
10175 state: State::MG,
10176 },
10177 Municipio {
10178 ibge_code: 3158904,
10179 name: "Santana do Manhuaçu",
10180 state: State::MG,
10181 },
10182 Municipio {
10183 ibge_code: 3158953,
10184 name: "Santana do Paraíso",
10185 state: State::MG,
10186 },
10187 Municipio {
10188 ibge_code: 3159001,
10189 name: "Santana do Riacho",
10190 state: State::MG,
10191 },
10192 Municipio {
10193 ibge_code: 3159100,
10194 name: "Santana dos Montes",
10195 state: State::MG,
10196 },
10197 Municipio {
10198 ibge_code: 3159902,
10199 name: "Santo Antônio do Amparo",
10200 state: State::MG,
10201 },
10202 Municipio {
10203 ibge_code: 3160009,
10204 name: "Santo Antônio do Aventureiro",
10205 state: State::MG,
10206 },
10207 Municipio {
10208 ibge_code: 3160108,
10209 name: "Santo Antônio do Grama",
10210 state: State::MG,
10211 },
10212 Municipio {
10213 ibge_code: 3160207,
10214 name: "Santo Antônio do Itambé",
10215 state: State::MG,
10216 },
10217 Municipio {
10218 ibge_code: 3160306,
10219 name: "Santo Antônio do Jacinto",
10220 state: State::MG,
10221 },
10222 Municipio {
10223 ibge_code: 3160405,
10224 name: "Santo Antônio do Monte",
10225 state: State::MG,
10226 },
10227 Municipio {
10228 ibge_code: 3160454,
10229 name: "Santo Antônio do Retiro",
10230 state: State::MG,
10231 },
10232 Municipio {
10233 ibge_code: 3160504,
10234 name: "Santo Antônio do Rio Abaixo",
10235 state: State::MG,
10236 },
10237 Municipio {
10238 ibge_code: 3160603,
10239 name: "Santo Hipólito",
10240 state: State::MG,
10241 },
10242 Municipio {
10243 ibge_code: 3160702,
10244 name: "Santos Dumont",
10245 state: State::MG,
10246 },
10247 Municipio {
10248 ibge_code: 3165404,
10249 name: "Sapucaí-Mirim",
10250 state: State::MG,
10251 },
10252 Municipio {
10253 ibge_code: 3165503,
10254 name: "Sardoá",
10255 state: State::MG,
10256 },
10257 Municipio {
10258 ibge_code: 3165537,
10259 name: "Sarzedo",
10260 state: State::MG,
10261 },
10262 Municipio {
10263 ibge_code: 3165560,
10264 name: "Sem-Peixe",
10265 state: State::MG,
10266 },
10267 Municipio {
10268 ibge_code: 3165578,
10269 name: "Senador Amaral",
10270 state: State::MG,
10271 },
10272 Municipio {
10273 ibge_code: 3165602,
10274 name: "Senador Cortes",
10275 state: State::MG,
10276 },
10277 Municipio {
10278 ibge_code: 3165701,
10279 name: "Senador Firmino",
10280 state: State::MG,
10281 },
10282 Municipio {
10283 ibge_code: 3165800,
10284 name: "Senador José Bento",
10285 state: State::MG,
10286 },
10287 Municipio {
10288 ibge_code: 3165909,
10289 name: "Senador Modestino Gonçalves",
10290 state: State::MG,
10291 },
10292 Municipio {
10293 ibge_code: 3166006,
10294 name: "Senhora de Oliveira",
10295 state: State::MG,
10296 },
10297 Municipio {
10298 ibge_code: 3166105,
10299 name: "Senhora do Porto",
10300 state: State::MG,
10301 },
10302 Municipio {
10303 ibge_code: 3166204,
10304 name: "Senhora dos Remédios",
10305 state: State::MG,
10306 },
10307 Municipio {
10308 ibge_code: 3166303,
10309 name: "Sericita",
10310 state: State::MG,
10311 },
10312 Municipio {
10313 ibge_code: 3166402,
10314 name: "Seritinga",
10315 state: State::MG,
10316 },
10317 Municipio {
10318 ibge_code: 3166501,
10319 name: "Serra Azul de Minas",
10320 state: State::MG,
10321 },
10322 Municipio {
10323 ibge_code: 3166600,
10324 name: "Serra da Saudade",
10325 state: State::MG,
10326 },
10327 Municipio {
10328 ibge_code: 3166808,
10329 name: "Serra do Salitre",
10330 state: State::MG,
10331 },
10332 Municipio {
10333 ibge_code: 3166709,
10334 name: "Serra dos Aimorés",
10335 state: State::MG,
10336 },
10337 Municipio {
10338 ibge_code: 3166907,
10339 name: "Serrania",
10340 state: State::MG,
10341 },
10342 Municipio {
10343 ibge_code: 3167004,
10344 name: "Serranos",
10345 state: State::MG,
10346 },
10347 Municipio {
10348 ibge_code: 3166956,
10349 name: "Serranópolis de Minas",
10350 state: State::MG,
10351 },
10352 Municipio {
10353 ibge_code: 3167103,
10354 name: "Serro",
10355 state: State::MG,
10356 },
10357 Municipio {
10358 ibge_code: 3167202,
10359 name: "Sete Lagoas",
10360 state: State::MG,
10361 },
10362 Municipio {
10363 ibge_code: 3165552,
10364 name: "Setubinha",
10365 state: State::MG,
10366 },
10367 Municipio {
10368 ibge_code: 3167301,
10369 name: "Silveirânia",
10370 state: State::MG,
10371 },
10372 Municipio {
10373 ibge_code: 3167400,
10374 name: "Silvianópolis",
10375 state: State::MG,
10376 },
10377 Municipio {
10378 ibge_code: 3167608,
10379 name: "Simonésia",
10380 state: State::MG,
10381 },
10382 Municipio {
10383 ibge_code: 3167509,
10384 name: "Simão Pereira",
10385 state: State::MG,
10386 },
10387 Municipio {
10388 ibge_code: 3167707,
10389 name: "Sobrália",
10390 state: State::MG,
10391 },
10392 Municipio {
10393 ibge_code: 3167806,
10394 name: "Soledade de Minas",
10395 state: State::MG,
10396 },
10397 Municipio {
10398 ibge_code: 3160801,
10399 name: "São Bento Abade",
10400 state: State::MG,
10401 },
10402 Municipio {
10403 ibge_code: 3160900,
10404 name: "São Brás do Suaçuí",
10405 state: State::MG,
10406 },
10407 Municipio {
10408 ibge_code: 3160959,
10409 name: "São Domingos das Dores",
10410 state: State::MG,
10411 },
10412 Municipio {
10413 ibge_code: 3161007,
10414 name: "São Domingos do Prata",
10415 state: State::MG,
10416 },
10417 Municipio {
10418 ibge_code: 3161106,
10419 name: "São Francisco",
10420 state: State::MG,
10421 },
10422 Municipio {
10423 ibge_code: 3161205,
10424 name: "São Francisco de Paula",
10425 state: State::MG,
10426 },
10427 Municipio {
10428 ibge_code: 3161304,
10429 name: "São Francisco de Sales",
10430 state: State::MG,
10431 },
10432 Municipio {
10433 ibge_code: 3161403,
10434 name: "São Francisco do Glória",
10435 state: State::MG,
10436 },
10437 Municipio {
10438 ibge_code: 3161056,
10439 name: "São Félix de Minas",
10440 state: State::MG,
10441 },
10442 Municipio {
10443 ibge_code: 3161502,
10444 name: "São Geraldo",
10445 state: State::MG,
10446 },
10447 Municipio {
10448 ibge_code: 3161601,
10449 name: "São Geraldo da Piedade",
10450 state: State::MG,
10451 },
10452 Municipio {
10453 ibge_code: 3161650,
10454 name: "São Geraldo do Baixio",
10455 state: State::MG,
10456 },
10457 Municipio {
10458 ibge_code: 3161700,
10459 name: "São Gonçalo do Abaeté",
10460 state: State::MG,
10461 },
10462 Municipio {
10463 ibge_code: 3161809,
10464 name: "São Gonçalo do Pará",
10465 state: State::MG,
10466 },
10467 Municipio {
10468 ibge_code: 3161908,
10469 name: "São Gonçalo do Rio Abaixo",
10470 state: State::MG,
10471 },
10472 Municipio {
10473 ibge_code: 3125507,
10474 name: "São Gonçalo do Rio Preto",
10475 state: State::MG,
10476 },
10477 Municipio {
10478 ibge_code: 3162005,
10479 name: "São Gonçalo do Sapucaí",
10480 state: State::MG,
10481 },
10482 Municipio {
10483 ibge_code: 3162104,
10484 name: "São Gotardo",
10485 state: State::MG,
10486 },
10487 Municipio {
10488 ibge_code: 3162922,
10489 name: "São Joaquim de Bicas",
10490 state: State::MG,
10491 },
10492 Municipio {
10493 ibge_code: 3162948,
10494 name: "São José da Barra",
10495 state: State::MG,
10496 },
10497 Municipio {
10498 ibge_code: 3162955,
10499 name: "São José da Lapa",
10500 state: State::MG,
10501 },
10502 Municipio {
10503 ibge_code: 3163003,
10504 name: "São José da Safira",
10505 state: State::MG,
10506 },
10507 Municipio {
10508 ibge_code: 3163102,
10509 name: "São José da Varginha",
10510 state: State::MG,
10511 },
10512 Municipio {
10513 ibge_code: 3163201,
10514 name: "São José do Alegre",
10515 state: State::MG,
10516 },
10517 Municipio {
10518 ibge_code: 3163300,
10519 name: "São José do Divino",
10520 state: State::MG,
10521 },
10522 Municipio {
10523 ibge_code: 3163409,
10524 name: "São José do Goiabal",
10525 state: State::MG,
10526 },
10527 Municipio {
10528 ibge_code: 3163508,
10529 name: "São José do Jacuri",
10530 state: State::MG,
10531 },
10532 Municipio {
10533 ibge_code: 3163607,
10534 name: "São José do Mantimento",
10535 state: State::MG,
10536 },
10537 Municipio {
10538 ibge_code: 3162203,
10539 name: "São João Batista do Glória",
10540 state: State::MG,
10541 },
10542 Municipio {
10543 ibge_code: 3162807,
10544 name: "São João Evangelista",
10545 state: State::MG,
10546 },
10547 Municipio {
10548 ibge_code: 3162906,
10549 name: "São João Nepomuceno",
10550 state: State::MG,
10551 },
10552 Municipio {
10553 ibge_code: 3162252,
10554 name: "São João da Lagoa",
10555 state: State::MG,
10556 },
10557 Municipio {
10558 ibge_code: 3162302,
10559 name: "São João da Mata",
10560 state: State::MG,
10561 },
10562 Municipio {
10563 ibge_code: 3162401,
10564 name: "São João da Ponte",
10565 state: State::MG,
10566 },
10567 Municipio {
10568 ibge_code: 3162450,
10569 name: "São João das Missões",
10570 state: State::MG,
10571 },
10572 Municipio {
10573 ibge_code: 3162500,
10574 name: "São João del Rei",
10575 state: State::MG,
10576 },
10577 Municipio {
10578 ibge_code: 3162559,
10579 name: "São João do Manhuaçu",
10580 state: State::MG,
10581 },
10582 Municipio {
10583 ibge_code: 3162575,
10584 name: "São João do Manteninha",
10585 state: State::MG,
10586 },
10587 Municipio {
10588 ibge_code: 3162609,
10589 name: "São João do Oriente",
10590 state: State::MG,
10591 },
10592 Municipio {
10593 ibge_code: 3162658,
10594 name: "São João do Pacuí",
10595 state: State::MG,
10596 },
10597 Municipio {
10598 ibge_code: 3162708,
10599 name: "São João do Paraíso",
10600 state: State::MG,
10601 },
10602 Municipio {
10603 ibge_code: 3163706,
10604 name: "São Lourenço",
10605 state: State::MG,
10606 },
10607 Municipio {
10608 ibge_code: 3163805,
10609 name: "São Miguel do Anta",
10610 state: State::MG,
10611 },
10612 Municipio {
10613 ibge_code: 3163904,
10614 name: "São Pedro da União",
10615 state: State::MG,
10616 },
10617 Municipio {
10618 ibge_code: 3164100,
10619 name: "São Pedro do Suaçuí",
10620 state: State::MG,
10621 },
10622 Municipio {
10623 ibge_code: 3164001,
10624 name: "São Pedro dos Ferros",
10625 state: State::MG,
10626 },
10627 Municipio {
10628 ibge_code: 3164209,
10629 name: "São Romão",
10630 state: State::MG,
10631 },
10632 Municipio {
10633 ibge_code: 3164308,
10634 name: "São Roque de Minas",
10635 state: State::MG,
10636 },
10637 Municipio {
10638 ibge_code: 3164407,
10639 name: "São Sebastião da Bela Vista",
10640 state: State::MG,
10641 },
10642 Municipio {
10643 ibge_code: 3164431,
10644 name: "São Sebastião da Vargem Alegre",
10645 state: State::MG,
10646 },
10647 Municipio {
10648 ibge_code: 3164472,
10649 name: "São Sebastião do Anta",
10650 state: State::MG,
10651 },
10652 Municipio {
10653 ibge_code: 3164506,
10654 name: "São Sebastião do Maranhão",
10655 state: State::MG,
10656 },
10657 Municipio {
10658 ibge_code: 3164605,
10659 name: "São Sebastião do Oeste",
10660 state: State::MG,
10661 },
10662 Municipio {
10663 ibge_code: 3164704,
10664 name: "São Sebastião do Paraíso",
10665 state: State::MG,
10666 },
10667 Municipio {
10668 ibge_code: 3164803,
10669 name: "São Sebastião do Rio Preto",
10670 state: State::MG,
10671 },
10672 Municipio {
10673 ibge_code: 3164902,
10674 name: "São Sebastião do Rio Verde",
10675 state: State::MG,
10676 },
10677 Municipio {
10678 ibge_code: 3165008,
10679 name: "São Tiago",
10680 state: State::MG,
10681 },
10682 Municipio {
10683 ibge_code: 3165107,
10684 name: "São Tomás de Aquino",
10685 state: State::MG,
10686 },
10687 Municipio {
10688 ibge_code: 3165206,
10689 name: "São Tomé das Letras",
10690 state: State::MG,
10691 },
10692 Municipio {
10693 ibge_code: 3165305,
10694 name: "São Vicente de Minas",
10695 state: State::MG,
10696 },
10697 Municipio {
10698 ibge_code: 3167905,
10699 name: "Tabuleiro",
10700 state: State::MG,
10701 },
10702 Municipio {
10703 ibge_code: 3168002,
10704 name: "Taiobeiras",
10705 state: State::MG,
10706 },
10707 Municipio {
10708 ibge_code: 3168051,
10709 name: "Taparuba",
10710 state: State::MG,
10711 },
10712 Municipio {
10713 ibge_code: 3168101,
10714 name: "Tapira",
10715 state: State::MG,
10716 },
10717 Municipio {
10718 ibge_code: 3168200,
10719 name: "Tapiraí",
10720 state: State::MG,
10721 },
10722 Municipio {
10723 ibge_code: 3168309,
10724 name: "Taquaraçu de Minas",
10725 state: State::MG,
10726 },
10727 Municipio {
10728 ibge_code: 3168408,
10729 name: "Tarumirim",
10730 state: State::MG,
10731 },
10732 Municipio {
10733 ibge_code: 3168507,
10734 name: "Teixeiras",
10735 state: State::MG,
10736 },
10737 Municipio {
10738 ibge_code: 3168606,
10739 name: "Teófilo Otoni",
10740 state: State::MG,
10741 },
10742 Municipio {
10743 ibge_code: 3168705,
10744 name: "Timóteo",
10745 state: State::MG,
10746 },
10747 Municipio {
10748 ibge_code: 3168804,
10749 name: "Tiradentes",
10750 state: State::MG,
10751 },
10752 Municipio {
10753 ibge_code: 3168903,
10754 name: "Tiros",
10755 state: State::MG,
10756 },
10757 Municipio {
10758 ibge_code: 3169000,
10759 name: "Tocantins",
10760 state: State::MG,
10761 },
10762 Municipio {
10763 ibge_code: 3169059,
10764 name: "Tocos do Moji",
10765 state: State::MG,
10766 },
10767 Municipio {
10768 ibge_code: 3169109,
10769 name: "Toledo",
10770 state: State::MG,
10771 },
10772 Municipio {
10773 ibge_code: 3169208,
10774 name: "Tombos",
10775 state: State::MG,
10776 },
10777 Municipio {
10778 ibge_code: 3169307,
10779 name: "Três Corações",
10780 state: State::MG,
10781 },
10782 Municipio {
10783 ibge_code: 3169356,
10784 name: "Três Marias",
10785 state: State::MG,
10786 },
10787 Municipio {
10788 ibge_code: 3169406,
10789 name: "Três Pontas",
10790 state: State::MG,
10791 },
10792 Municipio {
10793 ibge_code: 3169505,
10794 name: "Tumiritinga",
10795 state: State::MG,
10796 },
10797 Municipio {
10798 ibge_code: 3169604,
10799 name: "Tupaciguara",
10800 state: State::MG,
10801 },
10802 Municipio {
10803 ibge_code: 3169703,
10804 name: "Turmalina",
10805 state: State::MG,
10806 },
10807 Municipio {
10808 ibge_code: 3169802,
10809 name: "Turvolândia",
10810 state: State::MG,
10811 },
10812 Municipio {
10813 ibge_code: 3170057,
10814 name: "Ubaporanga",
10815 state: State::MG,
10816 },
10817 Municipio {
10818 ibge_code: 3170008,
10819 name: "Ubaí",
10820 state: State::MG,
10821 },
10822 Municipio {
10823 ibge_code: 3170107,
10824 name: "Uberaba",
10825 state: State::MG,
10826 },
10827 Municipio {
10828 ibge_code: 3170206,
10829 name: "Uberlândia",
10830 state: State::MG,
10831 },
10832 Municipio {
10833 ibge_code: 3169901,
10834 name: "Ubá",
10835 state: State::MG,
10836 },
10837 Municipio {
10838 ibge_code: 3170305,
10839 name: "Umburatiba",
10840 state: State::MG,
10841 },
10842 Municipio {
10843 ibge_code: 3170404,
10844 name: "Unaí",
10845 state: State::MG,
10846 },
10847 Municipio {
10848 ibge_code: 3170438,
10849 name: "União de Minas",
10850 state: State::MG,
10851 },
10852 Municipio {
10853 ibge_code: 3170479,
10854 name: "Uruana de Minas",
10855 state: State::MG,
10856 },
10857 Municipio {
10858 ibge_code: 3170529,
10859 name: "Urucuia",
10860 state: State::MG,
10861 },
10862 Municipio {
10863 ibge_code: 3170503,
10864 name: "Urucânia",
10865 state: State::MG,
10866 },
10867 Municipio {
10868 ibge_code: 3170578,
10869 name: "Vargem Alegre",
10870 state: State::MG,
10871 },
10872 Municipio {
10873 ibge_code: 3170602,
10874 name: "Vargem Bonita",
10875 state: State::MG,
10876 },
10877 Municipio {
10878 ibge_code: 3170651,
10879 name: "Vargem Grande do Rio Pardo",
10880 state: State::MG,
10881 },
10882 Municipio {
10883 ibge_code: 3170701,
10884 name: "Varginha",
10885 state: State::MG,
10886 },
10887 Municipio {
10888 ibge_code: 3170750,
10889 name: "Varjão de Minas",
10890 state: State::MG,
10891 },
10892 Municipio {
10893 ibge_code: 3170909,
10894 name: "Varzelândia",
10895 state: State::MG,
10896 },
10897 Municipio {
10898 ibge_code: 3171006,
10899 name: "Vazante",
10900 state: State::MG,
10901 },
10902 Municipio {
10903 ibge_code: 3171030,
10904 name: "Verdelândia",
10905 state: State::MG,
10906 },
10907 Municipio {
10908 ibge_code: 3171071,
10909 name: "Veredinha",
10910 state: State::MG,
10911 },
10912 Municipio {
10913 ibge_code: 3171154,
10914 name: "Vermelho Novo",
10915 state: State::MG,
10916 },
10917 Municipio {
10918 ibge_code: 3171105,
10919 name: "Veríssimo",
10920 state: State::MG,
10921 },
10922 Municipio {
10923 ibge_code: 3171204,
10924 name: "Vespasiano",
10925 state: State::MG,
10926 },
10927 Municipio {
10928 ibge_code: 3171402,
10929 name: "Vieiras",
10930 state: State::MG,
10931 },
10932 Municipio {
10933 ibge_code: 3171600,
10934 name: "Virgem da Lapa",
10935 state: State::MG,
10936 },
10937 Municipio {
10938 ibge_code: 3171808,
10939 name: "Virginópolis",
10940 state: State::MG,
10941 },
10942 Municipio {
10943 ibge_code: 3171907,
10944 name: "Virgolândia",
10945 state: State::MG,
10946 },
10947 Municipio {
10948 ibge_code: 3171709,
10949 name: "Virgínia",
10950 state: State::MG,
10951 },
10952 Municipio {
10953 ibge_code: 3172004,
10954 name: "Visconde do Rio Branco",
10955 state: State::MG,
10956 },
10957 Municipio {
10958 ibge_code: 3171303,
10959 name: "Viçosa",
10960 state: State::MG,
10961 },
10962 Municipio {
10963 ibge_code: 3172103,
10964 name: "Volta Grande",
10965 state: State::MG,
10966 },
10967 Municipio {
10968 ibge_code: 3170800,
10969 name: "Várzea da Palma",
10970 state: State::MG,
10971 },
10972 Municipio {
10973 ibge_code: 3172202,
10974 name: "Wenceslau Braz",
10975 state: State::MG,
10976 },
10977 Municipio {
10978 ibge_code: 3100609,
10979 name: "Água Boa",
10980 state: State::MG,
10981 },
10982 Municipio {
10983 ibge_code: 3100708,
10984 name: "Água Comprida",
10985 state: State::MG,
10986 },
10987 Municipio {
10988 ibge_code: 3100906,
10989 name: "Águas Formosas",
10990 state: State::MG,
10991 },
10992 Municipio {
10993 ibge_code: 3101003,
10994 name: "Águas Vermelhas",
10995 state: State::MG,
10996 },
10997 Municipio {
10998 ibge_code: 5000252,
10999 name: "Alcinópolis",
11000 state: State::MS,
11001 },
11002 Municipio {
11003 ibge_code: 5000609,
11004 name: "Amambai",
11005 state: State::MS,
11006 },
11007 Municipio {
11008 ibge_code: 5000708,
11009 name: "Anastácio",
11010 state: State::MS,
11011 },
11012 Municipio {
11013 ibge_code: 5000807,
11014 name: "Anaurilândia",
11015 state: State::MS,
11016 },
11017 Municipio {
11018 ibge_code: 5000856,
11019 name: "Angélica",
11020 state: State::MS,
11021 },
11022 Municipio {
11023 ibge_code: 5000906,
11024 name: "Antônio João",
11025 state: State::MS,
11026 },
11027 Municipio {
11028 ibge_code: 5001003,
11029 name: "Aparecida do Taboado",
11030 state: State::MS,
11031 },
11032 Municipio {
11033 ibge_code: 5001102,
11034 name: "Aquidauana",
11035 state: State::MS,
11036 },
11037 Municipio {
11038 ibge_code: 5001243,
11039 name: "Aral Moreira",
11040 state: State::MS,
11041 },
11042 Municipio {
11043 ibge_code: 5001508,
11044 name: "Bandeirantes",
11045 state: State::MS,
11046 },
11047 Municipio {
11048 ibge_code: 5001904,
11049 name: "Bataguassu",
11050 state: State::MS,
11051 },
11052 Municipio {
11053 ibge_code: 5002001,
11054 name: "Batayporã",
11055 state: State::MS,
11056 },
11057 Municipio {
11058 ibge_code: 5002100,
11059 name: "Bela Vista",
11060 state: State::MS,
11061 },
11062 Municipio {
11063 ibge_code: 5002159,
11064 name: "Bodoquena",
11065 state: State::MS,
11066 },
11067 Municipio {
11068 ibge_code: 5002209,
11069 name: "Bonito",
11070 state: State::MS,
11071 },
11072 Municipio {
11073 ibge_code: 5002308,
11074 name: "Brasilândia",
11075 state: State::MS,
11076 },
11077 Municipio {
11078 ibge_code: 5002407,
11079 name: "Caarapó",
11080 state: State::MS,
11081 },
11082 Municipio {
11083 ibge_code: 5002605,
11084 name: "Camapuã",
11085 state: State::MS,
11086 },
11087 Municipio {
11088 ibge_code: 5002704,
11089 name: "Campo Grande",
11090 state: State::MS,
11091 },
11092 Municipio {
11093 ibge_code: 5002803,
11094 name: "Caracol",
11095 state: State::MS,
11096 },
11097 Municipio {
11098 ibge_code: 5002902,
11099 name: "Cassilândia",
11100 state: State::MS,
11101 },
11102 Municipio {
11103 ibge_code: 5002951,
11104 name: "Chapadão do Sul",
11105 state: State::MS,
11106 },
11107 Municipio {
11108 ibge_code: 5003108,
11109 name: "Corguinho",
11110 state: State::MS,
11111 },
11112 Municipio {
11113 ibge_code: 5003157,
11114 name: "Coronel Sapucaia",
11115 state: State::MS,
11116 },
11117 Municipio {
11118 ibge_code: 5003207,
11119 name: "Corumbá",
11120 state: State::MS,
11121 },
11122 Municipio {
11123 ibge_code: 5003256,
11124 name: "Costa Rica",
11125 state: State::MS,
11126 },
11127 Municipio {
11128 ibge_code: 5003306,
11129 name: "Coxim",
11130 state: State::MS,
11131 },
11132 Municipio {
11133 ibge_code: 5003454,
11134 name: "Deodápolis",
11135 state: State::MS,
11136 },
11137 Municipio {
11138 ibge_code: 5003488,
11139 name: "Dois Irmãos do Buriti",
11140 state: State::MS,
11141 },
11142 Municipio {
11143 ibge_code: 5003504,
11144 name: "Douradina",
11145 state: State::MS,
11146 },
11147 Municipio {
11148 ibge_code: 5003702,
11149 name: "Dourados",
11150 state: State::MS,
11151 },
11152 Municipio {
11153 ibge_code: 5003751,
11154 name: "Eldorado",
11155 state: State::MS,
11156 },
11157 Municipio {
11158 ibge_code: 5003900,
11159 name: "Figueirão",
11160 state: State::MS,
11161 },
11162 Municipio {
11163 ibge_code: 5003801,
11164 name: "Fátima do Sul",
11165 state: State::MS,
11166 },
11167 Municipio {
11168 ibge_code: 5004007,
11169 name: "Glória de Dourados",
11170 state: State::MS,
11171 },
11172 Municipio {
11173 ibge_code: 5004106,
11174 name: "Guia Lopes da Laguna",
11175 state: State::MS,
11176 },
11177 Municipio {
11178 ibge_code: 5004304,
11179 name: "Iguatemi",
11180 state: State::MS,
11181 },
11182 Municipio {
11183 ibge_code: 5004403,
11184 name: "Inocência",
11185 state: State::MS,
11186 },
11187 Municipio {
11188 ibge_code: 5004502,
11189 name: "Itaporã",
11190 state: State::MS,
11191 },
11192 Municipio {
11193 ibge_code: 5004601,
11194 name: "Itaquiraí",
11195 state: State::MS,
11196 },
11197 Municipio {
11198 ibge_code: 5004700,
11199 name: "Ivinhema",
11200 state: State::MS,
11201 },
11202 Municipio {
11203 ibge_code: 5004809,
11204 name: "Japorã",
11205 state: State::MS,
11206 },
11207 Municipio {
11208 ibge_code: 5004908,
11209 name: "Jaraguari",
11210 state: State::MS,
11211 },
11212 Municipio {
11213 ibge_code: 5005004,
11214 name: "Jardim",
11215 state: State::MS,
11216 },
11217 Municipio {
11218 ibge_code: 5005103,
11219 name: "Jateí",
11220 state: State::MS,
11221 },
11222 Municipio {
11223 ibge_code: 5005152,
11224 name: "Juti",
11225 state: State::MS,
11226 },
11227 Municipio {
11228 ibge_code: 5005202,
11229 name: "Ladário",
11230 state: State::MS,
11231 },
11232 Municipio {
11233 ibge_code: 5005251,
11234 name: "Laguna Carapã",
11235 state: State::MS,
11236 },
11237 Municipio {
11238 ibge_code: 5005400,
11239 name: "Maracaju",
11240 state: State::MS,
11241 },
11242 Municipio {
11243 ibge_code: 5005608,
11244 name: "Miranda",
11245 state: State::MS,
11246 },
11247 Municipio {
11248 ibge_code: 5005681,
11249 name: "Mundo Novo",
11250 state: State::MS,
11251 },
11252 Municipio {
11253 ibge_code: 5005707,
11254 name: "Naviraí",
11255 state: State::MS,
11256 },
11257 Municipio {
11258 ibge_code: 5005806,
11259 name: "Nioaque",
11260 state: State::MS,
11261 },
11262 Municipio {
11263 ibge_code: 5006002,
11264 name: "Nova Alvorada do Sul",
11265 state: State::MS,
11266 },
11267 Municipio {
11268 ibge_code: 5006200,
11269 name: "Nova Andradina",
11270 state: State::MS,
11271 },
11272 Municipio {
11273 ibge_code: 5006259,
11274 name: "Novo Horizonte do Sul",
11275 state: State::MS,
11276 },
11277 Municipio {
11278 ibge_code: 5006309,
11279 name: "Paranaíba",
11280 state: State::MS,
11281 },
11282 Municipio {
11283 ibge_code: 5006358,
11284 name: "Paranhos",
11285 state: State::MS,
11286 },
11287 Municipio {
11288 ibge_code: 5006275,
11289 name: "Paraíso das Águas",
11290 state: State::MS,
11291 },
11292 Municipio {
11293 ibge_code: 5006408,
11294 name: "Pedro Gomes",
11295 state: State::MS,
11296 },
11297 Municipio {
11298 ibge_code: 5006606,
11299 name: "Ponta Porã",
11300 state: State::MS,
11301 },
11302 Municipio {
11303 ibge_code: 5006903,
11304 name: "Porto Murtinho",
11305 state: State::MS,
11306 },
11307 Municipio {
11308 ibge_code: 5007109,
11309 name: "Ribas do Rio Pardo",
11310 state: State::MS,
11311 },
11312 Municipio {
11313 ibge_code: 5007208,
11314 name: "Rio Brilhante",
11315 state: State::MS,
11316 },
11317 Municipio {
11318 ibge_code: 5007307,
11319 name: "Rio Negro",
11320 state: State::MS,
11321 },
11322 Municipio {
11323 ibge_code: 5007406,
11324 name: "Rio Verde de Mato Grosso",
11325 state: State::MS,
11326 },
11327 Municipio {
11328 ibge_code: 5007505,
11329 name: "Rochedo",
11330 state: State::MS,
11331 },
11332 Municipio {
11333 ibge_code: 5007554,
11334 name: "Santa Rita do Pardo",
11335 state: State::MS,
11336 },
11337 Municipio {
11338 ibge_code: 5007802,
11339 name: "Selvíria",
11340 state: State::MS,
11341 },
11342 Municipio {
11343 ibge_code: 5007703,
11344 name: "Sete Quedas",
11345 state: State::MS,
11346 },
11347 Municipio {
11348 ibge_code: 5007901,
11349 name: "Sidrolândia",
11350 state: State::MS,
11351 },
11352 Municipio {
11353 ibge_code: 5007935,
11354 name: "Sonora",
11355 state: State::MS,
11356 },
11357 Municipio {
11358 ibge_code: 5007695,
11359 name: "São Gabriel do Oeste",
11360 state: State::MS,
11361 },
11362 Municipio {
11363 ibge_code: 5007950,
11364 name: "Tacuru",
11365 state: State::MS,
11366 },
11367 Municipio {
11368 ibge_code: 5007976,
11369 name: "Taquarussu",
11370 state: State::MS,
11371 },
11372 Municipio {
11373 ibge_code: 5008008,
11374 name: "Terenos",
11375 state: State::MS,
11376 },
11377 Municipio {
11378 ibge_code: 5008305,
11379 name: "Três Lagoas",
11380 state: State::MS,
11381 },
11382 Municipio {
11383 ibge_code: 5008404,
11384 name: "Vicentina",
11385 state: State::MS,
11386 },
11387 Municipio {
11388 ibge_code: 5000203,
11389 name: "Água Clara",
11390 state: State::MS,
11391 },
11392 Municipio {
11393 ibge_code: 5100102,
11394 name: "Acorizal",
11395 state: State::MT,
11396 },
11397 Municipio {
11398 ibge_code: 5100250,
11399 name: "Alta Floresta",
11400 state: State::MT,
11401 },
11402 Municipio {
11403 ibge_code: 5100300,
11404 name: "Alto Araguaia",
11405 state: State::MT,
11406 },
11407 Municipio {
11408 ibge_code: 5100359,
11409 name: "Alto Boa Vista",
11410 state: State::MT,
11411 },
11412 Municipio {
11413 ibge_code: 5100409,
11414 name: "Alto Garças",
11415 state: State::MT,
11416 },
11417 Municipio {
11418 ibge_code: 5100508,
11419 name: "Alto Paraguai",
11420 state: State::MT,
11421 },
11422 Municipio {
11423 ibge_code: 5100607,
11424 name: "Alto Taquari",
11425 state: State::MT,
11426 },
11427 Municipio {
11428 ibge_code: 5100805,
11429 name: "Apiacás",
11430 state: State::MT,
11431 },
11432 Municipio {
11433 ibge_code: 5101001,
11434 name: "Araguaiana",
11435 state: State::MT,
11436 },
11437 Municipio {
11438 ibge_code: 5101209,
11439 name: "Araguainha",
11440 state: State::MT,
11441 },
11442 Municipio {
11443 ibge_code: 5101258,
11444 name: "Araputanga",
11445 state: State::MT,
11446 },
11447 Municipio {
11448 ibge_code: 5101308,
11449 name: "Arenápolis",
11450 state: State::MT,
11451 },
11452 Municipio {
11453 ibge_code: 5101407,
11454 name: "Aripuanã",
11455 state: State::MT,
11456 },
11457 Municipio {
11458 ibge_code: 5101704,
11459 name: "Barra do Bugres",
11460 state: State::MT,
11461 },
11462 Municipio {
11463 ibge_code: 5101803,
11464 name: "Barra do Garças",
11465 state: State::MT,
11466 },
11467 Municipio {
11468 ibge_code: 5101605,
11469 name: "Barão de Melgaço",
11470 state: State::MT,
11471 },
11472 Municipio {
11473 ibge_code: 5101837,
11474 name: "Boa Esperança do Norte",
11475 state: State::MT,
11476 },
11477 Municipio {
11478 ibge_code: 5101852,
11479 name: "Bom Jesus do Araguaia",
11480 state: State::MT,
11481 },
11482 Municipio {
11483 ibge_code: 5101902,
11484 name: "Brasnorte",
11485 state: State::MT,
11486 },
11487 Municipio {
11488 ibge_code: 5102603,
11489 name: "Campinápolis",
11490 state: State::MT,
11491 },
11492 Municipio {
11493 ibge_code: 5102637,
11494 name: "Campo Novo do Parecis",
11495 state: State::MT,
11496 },
11497 Municipio {
11498 ibge_code: 5102678,
11499 name: "Campo Verde",
11500 state: State::MT,
11501 },
11502 Municipio {
11503 ibge_code: 5102686,
11504 name: "Campos de Júlio",
11505 state: State::MT,
11506 },
11507 Municipio {
11508 ibge_code: 5102694,
11509 name: "Canabrava do Norte",
11510 state: State::MT,
11511 },
11512 Municipio {
11513 ibge_code: 5102702,
11514 name: "Canarana",
11515 state: State::MT,
11516 },
11517 Municipio {
11518 ibge_code: 5102793,
11519 name: "Carlinda",
11520 state: State::MT,
11521 },
11522 Municipio {
11523 ibge_code: 5102850,
11524 name: "Castanheira",
11525 state: State::MT,
11526 },
11527 Municipio {
11528 ibge_code: 5103007,
11529 name: "Chapada dos Guimarães",
11530 state: State::MT,
11531 },
11532 Municipio {
11533 ibge_code: 5103056,
11534 name: "Cláudia",
11535 state: State::MT,
11536 },
11537 Municipio {
11538 ibge_code: 5103106,
11539 name: "Cocalinho",
11540 state: State::MT,
11541 },
11542 Municipio {
11543 ibge_code: 5103254,
11544 name: "Colniza",
11545 state: State::MT,
11546 },
11547 Municipio {
11548 ibge_code: 5103205,
11549 name: "Colíder",
11550 state: State::MT,
11551 },
11552 Municipio {
11553 ibge_code: 5103304,
11554 name: "Comodoro",
11555 state: State::MT,
11556 },
11557 Municipio {
11558 ibge_code: 5103353,
11559 name: "Confresa",
11560 state: State::MT,
11561 },
11562 Municipio {
11563 ibge_code: 5103361,
11564 name: "Conquista D'Oeste",
11565 state: State::MT,
11566 },
11567 Municipio {
11568 ibge_code: 5103379,
11569 name: "Cotriguaçu",
11570 state: State::MT,
11571 },
11572 Municipio {
11573 ibge_code: 5103403,
11574 name: "Cuiabá",
11575 state: State::MT,
11576 },
11577 Municipio {
11578 ibge_code: 5103437,
11579 name: "Curvelândia",
11580 state: State::MT,
11581 },
11582 Municipio {
11583 ibge_code: 5102504,
11584 name: "Cáceres",
11585 state: State::MT,
11586 },
11587 Municipio {
11588 ibge_code: 5103452,
11589 name: "Denise",
11590 state: State::MT,
11591 },
11592 Municipio {
11593 ibge_code: 5103502,
11594 name: "Diamantino",
11595 state: State::MT,
11596 },
11597 Municipio {
11598 ibge_code: 5103601,
11599 name: "Dom Aquino",
11600 state: State::MT,
11601 },
11602 Municipio {
11603 ibge_code: 5103700,
11604 name: "Feliz Natal",
11605 state: State::MT,
11606 },
11607 Municipio {
11608 ibge_code: 5103809,
11609 name: "Figueirópolis D'Oeste",
11610 state: State::MT,
11611 },
11612 Municipio {
11613 ibge_code: 5103858,
11614 name: "Gaúcha do Norte",
11615 state: State::MT,
11616 },
11617 Municipio {
11618 ibge_code: 5103908,
11619 name: "General Carneiro",
11620 state: State::MT,
11621 },
11622 Municipio {
11623 ibge_code: 5103957,
11624 name: "Glória D'Oeste",
11625 state: State::MT,
11626 },
11627 Municipio {
11628 ibge_code: 5104104,
11629 name: "Guarantã do Norte",
11630 state: State::MT,
11631 },
11632 Municipio {
11633 ibge_code: 5104203,
11634 name: "Guiratinga",
11635 state: State::MT,
11636 },
11637 Municipio {
11638 ibge_code: 5104500,
11639 name: "Indiavaí",
11640 state: State::MT,
11641 },
11642 Municipio {
11643 ibge_code: 5104526,
11644 name: "Ipiranga do Norte",
11645 state: State::MT,
11646 },
11647 Municipio {
11648 ibge_code: 5104542,
11649 name: "Itanhangá",
11650 state: State::MT,
11651 },
11652 Municipio {
11653 ibge_code: 5104559,
11654 name: "Itaúba",
11655 state: State::MT,
11656 },
11657 Municipio {
11658 ibge_code: 5104609,
11659 name: "Itiquira",
11660 state: State::MT,
11661 },
11662 Municipio {
11663 ibge_code: 5104807,
11664 name: "Jaciara",
11665 state: State::MT,
11666 },
11667 Municipio {
11668 ibge_code: 5104906,
11669 name: "Jangada",
11670 state: State::MT,
11671 },
11672 Municipio {
11673 ibge_code: 5105002,
11674 name: "Jauru",
11675 state: State::MT,
11676 },
11677 Municipio {
11678 ibge_code: 5105101,
11679 name: "Juara",
11680 state: State::MT,
11681 },
11682 Municipio {
11683 ibge_code: 5105176,
11684 name: "Juruena",
11685 state: State::MT,
11686 },
11687 Municipio {
11688 ibge_code: 5105200,
11689 name: "Juscimeira",
11690 state: State::MT,
11691 },
11692 Municipio {
11693 ibge_code: 5105150,
11694 name: "Juína",
11695 state: State::MT,
11696 },
11697 Municipio {
11698 ibge_code: 5105234,
11699 name: "Lambari D'Oeste",
11700 state: State::MT,
11701 },
11702 Municipio {
11703 ibge_code: 5105259,
11704 name: "Lucas do Rio Verde",
11705 state: State::MT,
11706 },
11707 Municipio {
11708 ibge_code: 5105309,
11709 name: "Luciara",
11710 state: State::MT,
11711 },
11712 Municipio {
11713 ibge_code: 5105580,
11714 name: "Marcelândia",
11715 state: State::MT,
11716 },
11717 Municipio {
11718 ibge_code: 5105606,
11719 name: "Matupá",
11720 state: State::MT,
11721 },
11722 Municipio {
11723 ibge_code: 5105622,
11724 name: "Mirassol d'Oeste",
11725 state: State::MT,
11726 },
11727 Municipio {
11728 ibge_code: 5105903,
11729 name: "Nobres",
11730 state: State::MT,
11731 },
11732 Municipio {
11733 ibge_code: 5106000,
11734 name: "Nortelândia",
11735 state: State::MT,
11736 },
11737 Municipio {
11738 ibge_code: 5106109,
11739 name: "Nossa Senhora do Livramento",
11740 state: State::MT,
11741 },
11742 Municipio {
11743 ibge_code: 5106158,
11744 name: "Nova Bandeirantes",
11745 state: State::MT,
11746 },
11747 Municipio {
11748 ibge_code: 5106208,
11749 name: "Nova Brasilândia",
11750 state: State::MT,
11751 },
11752 Municipio {
11753 ibge_code: 5106216,
11754 name: "Nova Canaã do Norte",
11755 state: State::MT,
11756 },
11757 Municipio {
11758 ibge_code: 5108808,
11759 name: "Nova Guarita",
11760 state: State::MT,
11761 },
11762 Municipio {
11763 ibge_code: 5106182,
11764 name: "Nova Lacerda",
11765 state: State::MT,
11766 },
11767 Municipio {
11768 ibge_code: 5108857,
11769 name: "Nova Marilândia",
11770 state: State::MT,
11771 },
11772 Municipio {
11773 ibge_code: 5108907,
11774 name: "Nova Maringá",
11775 state: State::MT,
11776 },
11777 Municipio {
11778 ibge_code: 5108956,
11779 name: "Nova Monte Verde",
11780 state: State::MT,
11781 },
11782 Municipio {
11783 ibge_code: 5106224,
11784 name: "Nova Mutum",
11785 state: State::MT,
11786 },
11787 Municipio {
11788 ibge_code: 5106174,
11789 name: "Nova Nazaré",
11790 state: State::MT,
11791 },
11792 Municipio {
11793 ibge_code: 5106232,
11794 name: "Nova Olímpia",
11795 state: State::MT,
11796 },
11797 Municipio {
11798 ibge_code: 5106190,
11799 name: "Nova Santa Helena",
11800 state: State::MT,
11801 },
11802 Municipio {
11803 ibge_code: 5106240,
11804 name: "Nova Ubiratã",
11805 state: State::MT,
11806 },
11807 Municipio {
11808 ibge_code: 5106257,
11809 name: "Nova Xavantina",
11810 state: State::MT,
11811 },
11812 Municipio {
11813 ibge_code: 5106273,
11814 name: "Novo Horizonte do Norte",
11815 state: State::MT,
11816 },
11817 Municipio {
11818 ibge_code: 5106265,
11819 name: "Novo Mundo",
11820 state: State::MT,
11821 },
11822 Municipio {
11823 ibge_code: 5106315,
11824 name: "Novo Santo Antônio",
11825 state: State::MT,
11826 },
11827 Municipio {
11828 ibge_code: 5106281,
11829 name: "Novo São Joaquim",
11830 state: State::MT,
11831 },
11832 Municipio {
11833 ibge_code: 5106307,
11834 name: "Paranatinga",
11835 state: State::MT,
11836 },
11837 Municipio {
11838 ibge_code: 5106299,
11839 name: "Paranaíta",
11840 state: State::MT,
11841 },
11842 Municipio {
11843 ibge_code: 5106372,
11844 name: "Pedra Preta",
11845 state: State::MT,
11846 },
11847 Municipio {
11848 ibge_code: 5106422,
11849 name: "Peixoto de Azevedo",
11850 state: State::MT,
11851 },
11852 Municipio {
11853 ibge_code: 5106455,
11854 name: "Planalto da Serra",
11855 state: State::MT,
11856 },
11857 Municipio {
11858 ibge_code: 5106505,
11859 name: "Poconé",
11860 state: State::MT,
11861 },
11862 Municipio {
11863 ibge_code: 5106653,
11864 name: "Pontal do Araguaia",
11865 state: State::MT,
11866 },
11867 Municipio {
11868 ibge_code: 5106703,
11869 name: "Ponte Branca",
11870 state: State::MT,
11871 },
11872 Municipio {
11873 ibge_code: 5106752,
11874 name: "Pontes e Lacerda",
11875 state: State::MT,
11876 },
11877 Municipio {
11878 ibge_code: 5106778,
11879 name: "Porto Alegre do Norte",
11880 state: State::MT,
11881 },
11882 Municipio {
11883 ibge_code: 5106828,
11884 name: "Porto Esperidião",
11885 state: State::MT,
11886 },
11887 Municipio {
11888 ibge_code: 5106851,
11889 name: "Porto Estrela",
11890 state: State::MT,
11891 },
11892 Municipio {
11893 ibge_code: 5106802,
11894 name: "Porto dos Gaúchos",
11895 state: State::MT,
11896 },
11897 Municipio {
11898 ibge_code: 5107008,
11899 name: "Poxoréu",
11900 state: State::MT,
11901 },
11902 Municipio {
11903 ibge_code: 5107040,
11904 name: "Primavera do Leste",
11905 state: State::MT,
11906 },
11907 Municipio {
11908 ibge_code: 5107065,
11909 name: "Querência",
11910 state: State::MT,
11911 },
11912 Municipio {
11913 ibge_code: 5107156,
11914 name: "Reserva do Cabaçal",
11915 state: State::MT,
11916 },
11917 Municipio {
11918 ibge_code: 5107180,
11919 name: "Ribeirão Cascalheira",
11920 state: State::MT,
11921 },
11922 Municipio {
11923 ibge_code: 5107198,
11924 name: "Ribeirãozinho",
11925 state: State::MT,
11926 },
11927 Municipio {
11928 ibge_code: 5107206,
11929 name: "Rio Branco",
11930 state: State::MT,
11931 },
11932 Municipio {
11933 ibge_code: 5107578,
11934 name: "Rondolândia",
11935 state: State::MT,
11936 },
11937 Municipio {
11938 ibge_code: 5107602,
11939 name: "Rondonópolis",
11940 state: State::MT,
11941 },
11942 Municipio {
11943 ibge_code: 5107701,
11944 name: "Rosário Oeste",
11945 state: State::MT,
11946 },
11947 Municipio {
11948 ibge_code: 5107750,
11949 name: "Salto do Céu",
11950 state: State::MT,
11951 },
11952 Municipio {
11953 ibge_code: 5107248,
11954 name: "Santa Carmem",
11955 state: State::MT,
11956 },
11957 Municipio {
11958 ibge_code: 5107743,
11959 name: "Santa Cruz do Xingu",
11960 state: State::MT,
11961 },
11962 Municipio {
11963 ibge_code: 5107768,
11964 name: "Santa Rita do Trivelato",
11965 state: State::MT,
11966 },
11967 Municipio {
11968 ibge_code: 5107776,
11969 name: "Santa Terezinha",
11970 state: State::MT,
11971 },
11972 Municipio {
11973 ibge_code: 5107263,
11974 name: "Santo Afonso",
11975 state: State::MT,
11976 },
11977 Municipio {
11978 ibge_code: 5107800,
11979 name: "Santo Antônio de Leverger",
11980 state: State::MT,
11981 },
11982 Municipio {
11983 ibge_code: 5107792,
11984 name: "Santo Antônio do Leste",
11985 state: State::MT,
11986 },
11987 Municipio {
11988 ibge_code: 5107875,
11989 name: "Sapezal",
11990 state: State::MT,
11991 },
11992 Municipio {
11993 ibge_code: 5107883,
11994 name: "Serra Nova Dourada",
11995 state: State::MT,
11996 },
11997 Municipio {
11998 ibge_code: 5107909,
11999 name: "Sinop",
12000 state: State::MT,
12001 },
12002 Municipio {
12003 ibge_code: 5107925,
12004 name: "Sorriso",
12005 state: State::MT,
12006 },
12007 Municipio {
12008 ibge_code: 5107859,
12009 name: "São Félix do Araguaia",
12010 state: State::MT,
12011 },
12012 Municipio {
12013 ibge_code: 5107297,
12014 name: "São José do Povo",
12015 state: State::MT,
12016 },
12017 Municipio {
12018 ibge_code: 5107305,
12019 name: "São José do Rio Claro",
12020 state: State::MT,
12021 },
12022 Municipio {
12023 ibge_code: 5107354,
12024 name: "São José do Xingu",
12025 state: State::MT,
12026 },
12027 Municipio {
12028 ibge_code: 5107107,
12029 name: "São José dos Quatro Marcos",
12030 state: State::MT,
12031 },
12032 Municipio {
12033 ibge_code: 5107404,
12034 name: "São Pedro da Cipa",
12035 state: State::MT,
12036 },
12037 Municipio {
12038 ibge_code: 5107941,
12039 name: "Tabaporã",
12040 state: State::MT,
12041 },
12042 Municipio {
12043 ibge_code: 5107958,
12044 name: "Tangará da Serra",
12045 state: State::MT,
12046 },
12047 Municipio {
12048 ibge_code: 5108006,
12049 name: "Tapurah",
12050 state: State::MT,
12051 },
12052 Municipio {
12053 ibge_code: 5108055,
12054 name: "Terra Nova do Norte",
12055 state: State::MT,
12056 },
12057 Municipio {
12058 ibge_code: 5108105,
12059 name: "Tesouro",
12060 state: State::MT,
12061 },
12062 Municipio {
12063 ibge_code: 5108204,
12064 name: "Torixoréu",
12065 state: State::MT,
12066 },
12067 Municipio {
12068 ibge_code: 5108303,
12069 name: "União do Sul",
12070 state: State::MT,
12071 },
12072 Municipio {
12073 ibge_code: 5108352,
12074 name: "Vale de São Domingos",
12075 state: State::MT,
12076 },
12077 Municipio {
12078 ibge_code: 5108501,
12079 name: "Vera",
12080 state: State::MT,
12081 },
12082 Municipio {
12083 ibge_code: 5105507,
12084 name: "Vila Bela da Santíssima Trindade",
12085 state: State::MT,
12086 },
12087 Municipio {
12088 ibge_code: 5108600,
12089 name: "Vila Rica",
12090 state: State::MT,
12091 },
12092 Municipio {
12093 ibge_code: 5108402,
12094 name: "Várzea Grande",
12095 state: State::MT,
12096 },
12097 Municipio {
12098 ibge_code: 5100201,
12099 name: "Água Boa",
12100 state: State::MT,
12101 },
12102 Municipio {
12103 ibge_code: 1500107,
12104 name: "Abaetetuba",
12105 state: State::PA,
12106 },
12107 Municipio {
12108 ibge_code: 1500131,
12109 name: "Abel Figueiredo",
12110 state: State::PA,
12111 },
12112 Municipio {
12113 ibge_code: 1500206,
12114 name: "Acará",
12115 state: State::PA,
12116 },
12117 Municipio {
12118 ibge_code: 1500305,
12119 name: "Afuá",
12120 state: State::PA,
12121 },
12122 Municipio {
12123 ibge_code: 1500404,
12124 name: "Alenquer",
12125 state: State::PA,
12126 },
12127 Municipio {
12128 ibge_code: 1500503,
12129 name: "Almeirim",
12130 state: State::PA,
12131 },
12132 Municipio {
12133 ibge_code: 1500602,
12134 name: "Altamira",
12135 state: State::PA,
12136 },
12137 Municipio {
12138 ibge_code: 1500701,
12139 name: "Anajás",
12140 state: State::PA,
12141 },
12142 Municipio {
12143 ibge_code: 1500800,
12144 name: "Ananindeua",
12145 state: State::PA,
12146 },
12147 Municipio {
12148 ibge_code: 1500859,
12149 name: "Anapu",
12150 state: State::PA,
12151 },
12152 Municipio {
12153 ibge_code: 1500909,
12154 name: "Augusto Corrêa",
12155 state: State::PA,
12156 },
12157 Municipio {
12158 ibge_code: 1500958,
12159 name: "Aurora do Pará",
12160 state: State::PA,
12161 },
12162 Municipio {
12163 ibge_code: 1501006,
12164 name: "Aveiro",
12165 state: State::PA,
12166 },
12167 Municipio {
12168 ibge_code: 1501105,
12169 name: "Bagre",
12170 state: State::PA,
12171 },
12172 Municipio {
12173 ibge_code: 1501204,
12174 name: "Baião",
12175 state: State::PA,
12176 },
12177 Municipio {
12178 ibge_code: 1501253,
12179 name: "Bannach",
12180 state: State::PA,
12181 },
12182 Municipio {
12183 ibge_code: 1501303,
12184 name: "Barcarena",
12185 state: State::PA,
12186 },
12187 Municipio {
12188 ibge_code: 1501451,
12189 name: "Belterra",
12190 state: State::PA,
12191 },
12192 Municipio {
12193 ibge_code: 1501402,
12194 name: "Belém",
12195 state: State::PA,
12196 },
12197 Municipio {
12198 ibge_code: 1501501,
12199 name: "Benevides",
12200 state: State::PA,
12201 },
12202 Municipio {
12203 ibge_code: 1501576,
12204 name: "Bom Jesus do Tocantins",
12205 state: State::PA,
12206 },
12207 Municipio {
12208 ibge_code: 1501600,
12209 name: "Bonito",
12210 state: State::PA,
12211 },
12212 Municipio {
12213 ibge_code: 1501709,
12214 name: "Bragança",
12215 state: State::PA,
12216 },
12217 Municipio {
12218 ibge_code: 1501725,
12219 name: "Brasil Novo",
12220 state: State::PA,
12221 },
12222 Municipio {
12223 ibge_code: 1501758,
12224 name: "Brejo Grande do Araguaia",
12225 state: State::PA,
12226 },
12227 Municipio {
12228 ibge_code: 1501782,
12229 name: "Breu Branco",
12230 state: State::PA,
12231 },
12232 Municipio {
12233 ibge_code: 1501808,
12234 name: "Breves",
12235 state: State::PA,
12236 },
12237 Municipio {
12238 ibge_code: 1501907,
12239 name: "Bujaru",
12240 state: State::PA,
12241 },
12242 Municipio {
12243 ibge_code: 1502004,
12244 name: "Cachoeira do Arari",
12245 state: State::PA,
12246 },
12247 Municipio {
12248 ibge_code: 1501956,
12249 name: "Cachoeira do Piriá",
12250 state: State::PA,
12251 },
12252 Municipio {
12253 ibge_code: 1502103,
12254 name: "Cametá",
12255 state: State::PA,
12256 },
12257 Municipio {
12258 ibge_code: 1502152,
12259 name: "Canaã dos Carajás",
12260 state: State::PA,
12261 },
12262 Municipio {
12263 ibge_code: 1502202,
12264 name: "Capanema",
12265 state: State::PA,
12266 },
12267 Municipio {
12268 ibge_code: 1502301,
12269 name: "Capitão Poço",
12270 state: State::PA,
12271 },
12272 Municipio {
12273 ibge_code: 1502400,
12274 name: "Castanhal",
12275 state: State::PA,
12276 },
12277 Municipio {
12278 ibge_code: 1502509,
12279 name: "Chaves",
12280 state: State::PA,
12281 },
12282 Municipio {
12283 ibge_code: 1502608,
12284 name: "Colares",
12285 state: State::PA,
12286 },
12287 Municipio {
12288 ibge_code: 1502707,
12289 name: "Conceição do Araguaia",
12290 state: State::PA,
12291 },
12292 Municipio {
12293 ibge_code: 1502756,
12294 name: "Concórdia do Pará",
12295 state: State::PA,
12296 },
12297 Municipio {
12298 ibge_code: 1502764,
12299 name: "Cumaru do Norte",
12300 state: State::PA,
12301 },
12302 Municipio {
12303 ibge_code: 1502772,
12304 name: "Curionópolis",
12305 state: State::PA,
12306 },
12307 Municipio {
12308 ibge_code: 1502806,
12309 name: "Curralinho",
12310 state: State::PA,
12311 },
12312 Municipio {
12313 ibge_code: 1502855,
12314 name: "Curuá",
12315 state: State::PA,
12316 },
12317 Municipio {
12318 ibge_code: 1502905,
12319 name: "Curuçá",
12320 state: State::PA,
12321 },
12322 Municipio {
12323 ibge_code: 1502939,
12324 name: "Dom Eliseu",
12325 state: State::PA,
12326 },
12327 Municipio {
12328 ibge_code: 1502954,
12329 name: "Eldorado do Carajás",
12330 state: State::PA,
12331 },
12332 Municipio {
12333 ibge_code: 1503002,
12334 name: "Faro",
12335 state: State::PA,
12336 },
12337 Municipio {
12338 ibge_code: 1503044,
12339 name: "Floresta do Araguaia",
12340 state: State::PA,
12341 },
12342 Municipio {
12343 ibge_code: 1503077,
12344 name: "Garrafão do Norte",
12345 state: State::PA,
12346 },
12347 Municipio {
12348 ibge_code: 1503093,
12349 name: "Goianésia do Pará",
12350 state: State::PA,
12351 },
12352 Municipio {
12353 ibge_code: 1503101,
12354 name: "Gurupá",
12355 state: State::PA,
12356 },
12357 Municipio {
12358 ibge_code: 1503200,
12359 name: "Igarapé-Açu",
12360 state: State::PA,
12361 },
12362 Municipio {
12363 ibge_code: 1503309,
12364 name: "Igarapé-Miri",
12365 state: State::PA,
12366 },
12367 Municipio {
12368 ibge_code: 1503408,
12369 name: "Inhangapi",
12370 state: State::PA,
12371 },
12372 Municipio {
12373 ibge_code: 1503457,
12374 name: "Ipixuna do Pará",
12375 state: State::PA,
12376 },
12377 Municipio {
12378 ibge_code: 1503507,
12379 name: "Irituia",
12380 state: State::PA,
12381 },
12382 Municipio {
12383 ibge_code: 1503606,
12384 name: "Itaituba",
12385 state: State::PA,
12386 },
12387 Municipio {
12388 ibge_code: 1503705,
12389 name: "Itupiranga",
12390 state: State::PA,
12391 },
12392 Municipio {
12393 ibge_code: 1503754,
12394 name: "Jacareacanga",
12395 state: State::PA,
12396 },
12397 Municipio {
12398 ibge_code: 1503804,
12399 name: "Jacundá",
12400 state: State::PA,
12401 },
12402 Municipio {
12403 ibge_code: 1503903,
12404 name: "Juruti",
12405 state: State::PA,
12406 },
12407 Municipio {
12408 ibge_code: 1504000,
12409 name: "Limoeiro do Ajuru",
12410 state: State::PA,
12411 },
12412 Municipio {
12413 ibge_code: 1504109,
12414 name: "Magalhães Barata",
12415 state: State::PA,
12416 },
12417 Municipio {
12418 ibge_code: 1504208,
12419 name: "Marabá",
12420 state: State::PA,
12421 },
12422 Municipio {
12423 ibge_code: 1504307,
12424 name: "Maracanã",
12425 state: State::PA,
12426 },
12427 Municipio {
12428 ibge_code: 1504406,
12429 name: "Marapanim",
12430 state: State::PA,
12431 },
12432 Municipio {
12433 ibge_code: 1504422,
12434 name: "Marituba",
12435 state: State::PA,
12436 },
12437 Municipio {
12438 ibge_code: 1504455,
12439 name: "Medicilândia",
12440 state: State::PA,
12441 },
12442 Municipio {
12443 ibge_code: 1504505,
12444 name: "Melgaço",
12445 state: State::PA,
12446 },
12447 Municipio {
12448 ibge_code: 1504604,
12449 name: "Mocajuba",
12450 state: State::PA,
12451 },
12452 Municipio {
12453 ibge_code: 1504703,
12454 name: "Moju",
12455 state: State::PA,
12456 },
12457 Municipio {
12458 ibge_code: 1504752,
12459 name: "Mojuí dos Campos",
12460 state: State::PA,
12461 },
12462 Municipio {
12463 ibge_code: 1504802,
12464 name: "Monte Alegre",
12465 state: State::PA,
12466 },
12467 Municipio {
12468 ibge_code: 1504901,
12469 name: "Muaná",
12470 state: State::PA,
12471 },
12472 Municipio {
12473 ibge_code: 1504059,
12474 name: "Mãe do Rio",
12475 state: State::PA,
12476 },
12477 Municipio {
12478 ibge_code: 1504950,
12479 name: "Nova Esperança do Piriá",
12480 state: State::PA,
12481 },
12482 Municipio {
12483 ibge_code: 1504976,
12484 name: "Nova Ipixuna",
12485 state: State::PA,
12486 },
12487 Municipio {
12488 ibge_code: 1505007,
12489 name: "Nova Timboteua",
12490 state: State::PA,
12491 },
12492 Municipio {
12493 ibge_code: 1505031,
12494 name: "Novo Progresso",
12495 state: State::PA,
12496 },
12497 Municipio {
12498 ibge_code: 1505064,
12499 name: "Novo Repartimento",
12500 state: State::PA,
12501 },
12502 Municipio {
12503 ibge_code: 1505205,
12504 name: "Oeiras do Pará",
12505 state: State::PA,
12506 },
12507 Municipio {
12508 ibge_code: 1505304,
12509 name: "Oriximiná",
12510 state: State::PA,
12511 },
12512 Municipio {
12513 ibge_code: 1505437,
12514 name: "Ourilândia do Norte",
12515 state: State::PA,
12516 },
12517 Municipio {
12518 ibge_code: 1505403,
12519 name: "Ourém",
12520 state: State::PA,
12521 },
12522 Municipio {
12523 ibge_code: 1505486,
12524 name: "Pacajá",
12525 state: State::PA,
12526 },
12527 Municipio {
12528 ibge_code: 1505494,
12529 name: "Palestina do Pará",
12530 state: State::PA,
12531 },
12532 Municipio {
12533 ibge_code: 1505502,
12534 name: "Paragominas",
12535 state: State::PA,
12536 },
12537 Municipio {
12538 ibge_code: 1505536,
12539 name: "Parauapebas",
12540 state: State::PA,
12541 },
12542 Municipio {
12543 ibge_code: 1505551,
12544 name: "Pau D'Arco",
12545 state: State::PA,
12546 },
12547 Municipio {
12548 ibge_code: 1505601,
12549 name: "Peixe-Boi",
12550 state: State::PA,
12551 },
12552 Municipio {
12553 ibge_code: 1505635,
12554 name: "Piçarra",
12555 state: State::PA,
12556 },
12557 Municipio {
12558 ibge_code: 1505650,
12559 name: "Placas",
12560 state: State::PA,
12561 },
12562 Municipio {
12563 ibge_code: 1505700,
12564 name: "Ponta de Pedras",
12565 state: State::PA,
12566 },
12567 Municipio {
12568 ibge_code: 1505809,
12569 name: "Portel",
12570 state: State::PA,
12571 },
12572 Municipio {
12573 ibge_code: 1505908,
12574 name: "Porto de Moz",
12575 state: State::PA,
12576 },
12577 Municipio {
12578 ibge_code: 1506005,
12579 name: "Prainha",
12580 state: State::PA,
12581 },
12582 Municipio {
12583 ibge_code: 1506104,
12584 name: "Primavera",
12585 state: State::PA,
12586 },
12587 Municipio {
12588 ibge_code: 1506112,
12589 name: "Quatipuru",
12590 state: State::PA,
12591 },
12592 Municipio {
12593 ibge_code: 1506138,
12594 name: "Redenção",
12595 state: State::PA,
12596 },
12597 Municipio {
12598 ibge_code: 1506161,
12599 name: "Rio Maria",
12600 state: State::PA,
12601 },
12602 Municipio {
12603 ibge_code: 1506187,
12604 name: "Rondon do Pará",
12605 state: State::PA,
12606 },
12607 Municipio {
12608 ibge_code: 1506195,
12609 name: "Rurópolis",
12610 state: State::PA,
12611 },
12612 Municipio {
12613 ibge_code: 1506203,
12614 name: "Salinópolis",
12615 state: State::PA,
12616 },
12617 Municipio {
12618 ibge_code: 1506302,
12619 name: "Salvaterra",
12620 state: State::PA,
12621 },
12622 Municipio {
12623 ibge_code: 1506351,
12624 name: "Santa Bárbara do Pará",
12625 state: State::PA,
12626 },
12627 Municipio {
12628 ibge_code: 1506401,
12629 name: "Santa Cruz do Arari",
12630 state: State::PA,
12631 },
12632 Municipio {
12633 ibge_code: 1506500,
12634 name: "Santa Izabel do Pará",
12635 state: State::PA,
12636 },
12637 Municipio {
12638 ibge_code: 1506559,
12639 name: "Santa Luzia do Pará",
12640 state: State::PA,
12641 },
12642 Municipio {
12643 ibge_code: 1506583,
12644 name: "Santa Maria das Barreiras",
12645 state: State::PA,
12646 },
12647 Municipio {
12648 ibge_code: 1506609,
12649 name: "Santa Maria do Pará",
12650 state: State::PA,
12651 },
12652 Municipio {
12653 ibge_code: 1506708,
12654 name: "Santana do Araguaia",
12655 state: State::PA,
12656 },
12657 Municipio {
12658 ibge_code: 1506807,
12659 name: "Santarém",
12660 state: State::PA,
12661 },
12662 Municipio {
12663 ibge_code: 1506906,
12664 name: "Santarém Novo",
12665 state: State::PA,
12666 },
12667 Municipio {
12668 ibge_code: 1507003,
12669 name: "Santo Antônio do Tauá",
12670 state: State::PA,
12671 },
12672 Municipio {
12673 ibge_code: 1507755,
12674 name: "Sapucaia",
12675 state: State::PA,
12676 },
12677 Municipio {
12678 ibge_code: 1507805,
12679 name: "Senador José Porfírio",
12680 state: State::PA,
12681 },
12682 Municipio {
12683 ibge_code: 1507904,
12684 name: "Soure",
12685 state: State::PA,
12686 },
12687 Municipio {
12688 ibge_code: 1507102,
12689 name: "São Caetano de Odivelas",
12690 state: State::PA,
12691 },
12692 Municipio {
12693 ibge_code: 1507151,
12694 name: "São Domingos do Araguaia",
12695 state: State::PA,
12696 },
12697 Municipio {
12698 ibge_code: 1507201,
12699 name: "São Domingos do Capim",
12700 state: State::PA,
12701 },
12702 Municipio {
12703 ibge_code: 1507409,
12704 name: "São Francisco do Pará",
12705 state: State::PA,
12706 },
12707 Municipio {
12708 ibge_code: 1507300,
12709 name: "São Félix do Xingu",
12710 state: State::PA,
12711 },
12712 Municipio {
12713 ibge_code: 1507458,
12714 name: "São Geraldo do Araguaia",
12715 state: State::PA,
12716 },
12717 Municipio {
12718 ibge_code: 1507466,
12719 name: "São João da Ponta",
12720 state: State::PA,
12721 },
12722 Municipio {
12723 ibge_code: 1507474,
12724 name: "São João de Pirabas",
12725 state: State::PA,
12726 },
12727 Municipio {
12728 ibge_code: 1507508,
12729 name: "São João do Araguaia",
12730 state: State::PA,
12731 },
12732 Municipio {
12733 ibge_code: 1507607,
12734 name: "São Miguel do Guamá",
12735 state: State::PA,
12736 },
12737 Municipio {
12738 ibge_code: 1507706,
12739 name: "São Sebastião da Boa Vista",
12740 state: State::PA,
12741 },
12742 Municipio {
12743 ibge_code: 1507953,
12744 name: "Tailândia",
12745 state: State::PA,
12746 },
12747 Municipio {
12748 ibge_code: 1507961,
12749 name: "Terra Alta",
12750 state: State::PA,
12751 },
12752 Municipio {
12753 ibge_code: 1507979,
12754 name: "Terra Santa",
12755 state: State::PA,
12756 },
12757 Municipio {
12758 ibge_code: 1508001,
12759 name: "Tomé-Açu",
12760 state: State::PA,
12761 },
12762 Municipio {
12763 ibge_code: 1508035,
12764 name: "Tracuateua",
12765 state: State::PA,
12766 },
12767 Municipio {
12768 ibge_code: 1508050,
12769 name: "Trairão",
12770 state: State::PA,
12771 },
12772 Municipio {
12773 ibge_code: 1508084,
12774 name: "Tucumã",
12775 state: State::PA,
12776 },
12777 Municipio {
12778 ibge_code: 1508100,
12779 name: "Tucuruí",
12780 state: State::PA,
12781 },
12782 Municipio {
12783 ibge_code: 1508126,
12784 name: "Ulianópolis",
12785 state: State::PA,
12786 },
12787 Municipio {
12788 ibge_code: 1508159,
12789 name: "Uruará",
12790 state: State::PA,
12791 },
12792 Municipio {
12793 ibge_code: 1508209,
12794 name: "Vigia",
12795 state: State::PA,
12796 },
12797 Municipio {
12798 ibge_code: 1508308,
12799 name: "Viseu",
12800 state: State::PA,
12801 },
12802 Municipio {
12803 ibge_code: 1508357,
12804 name: "Vitória do Xingu",
12805 state: State::PA,
12806 },
12807 Municipio {
12808 ibge_code: 1508407,
12809 name: "Xinguara",
12810 state: State::PA,
12811 },
12812 Municipio {
12813 ibge_code: 1500347,
12814 name: "Água Azul do Norte",
12815 state: State::PA,
12816 },
12817 Municipio {
12818 ibge_code: 1505106,
12819 name: "Óbidos",
12820 state: State::PA,
12821 },
12822 Municipio {
12823 ibge_code: 2500205,
12824 name: "Aguiar",
12825 state: State::PB,
12826 },
12827 Municipio {
12828 ibge_code: 2500304,
12829 name: "Alagoa Grande",
12830 state: State::PB,
12831 },
12832 Municipio {
12833 ibge_code: 2500403,
12834 name: "Alagoa Nova",
12835 state: State::PB,
12836 },
12837 Municipio {
12838 ibge_code: 2500502,
12839 name: "Alagoinha",
12840 state: State::PB,
12841 },
12842 Municipio {
12843 ibge_code: 2500536,
12844 name: "Alcantil",
12845 state: State::PB,
12846 },
12847 Municipio {
12848 ibge_code: 2500577,
12849 name: "Algodão de Jandaíra",
12850 state: State::PB,
12851 },
12852 Municipio {
12853 ibge_code: 2500601,
12854 name: "Alhandra",
12855 state: State::PB,
12856 },
12857 Municipio {
12858 ibge_code: 2500734,
12859 name: "Amparo",
12860 state: State::PB,
12861 },
12862 Municipio {
12863 ibge_code: 2500775,
12864 name: "Aparecida",
12865 state: State::PB,
12866 },
12867 Municipio {
12868 ibge_code: 2500908,
12869 name: "Arara",
12870 state: State::PB,
12871 },
12872 Municipio {
12873 ibge_code: 2501005,
12874 name: "Araruna",
12875 state: State::PB,
12876 },
12877 Municipio {
12878 ibge_code: 2500809,
12879 name: "Araçagi",
12880 state: State::PB,
12881 },
12882 Municipio {
12883 ibge_code: 2501104,
12884 name: "Areia",
12885 state: State::PB,
12886 },
12887 Municipio {
12888 ibge_code: 2501153,
12889 name: "Areia de Baraúnas",
12890 state: State::PB,
12891 },
12892 Municipio {
12893 ibge_code: 2501203,
12894 name: "Areial",
12895 state: State::PB,
12896 },
12897 Municipio {
12898 ibge_code: 2501302,
12899 name: "Aroeiras",
12900 state: State::PB,
12901 },
12902 Municipio {
12903 ibge_code: 2501351,
12904 name: "Assunção",
12905 state: State::PB,
12906 },
12907 Municipio {
12908 ibge_code: 2501500,
12909 name: "Bananeiras",
12910 state: State::PB,
12911 },
12912 Municipio {
12913 ibge_code: 2501534,
12914 name: "Baraúna",
12915 state: State::PB,
12916 },
12917 Municipio {
12918 ibge_code: 2501609,
12919 name: "Barra de Santa Rosa",
12920 state: State::PB,
12921 },
12922 Municipio {
12923 ibge_code: 2501575,
12924 name: "Barra de Santana",
12925 state: State::PB,
12926 },
12927 Municipio {
12928 ibge_code: 2501708,
12929 name: "Barra de São Miguel",
12930 state: State::PB,
12931 },
12932 Municipio {
12933 ibge_code: 2501807,
12934 name: "Bayeux",
12935 state: State::PB,
12936 },
12937 Municipio {
12938 ibge_code: 2501401,
12939 name: "Baía da Traição",
12940 state: State::PB,
12941 },
12942 Municipio {
12943 ibge_code: 2501906,
12944 name: "Belém",
12945 state: State::PB,
12946 },
12947 Municipio {
12948 ibge_code: 2502003,
12949 name: "Belém do Brejo do Cruz",
12950 state: State::PB,
12951 },
12952 Municipio {
12953 ibge_code: 2502052,
12954 name: "Bernardino Batista",
12955 state: State::PB,
12956 },
12957 Municipio {
12958 ibge_code: 2502102,
12959 name: "Boa Ventura",
12960 state: State::PB,
12961 },
12962 Municipio {
12963 ibge_code: 2502151,
12964 name: "Boa Vista",
12965 state: State::PB,
12966 },
12967 Municipio {
12968 ibge_code: 2502201,
12969 name: "Bom Jesus",
12970 state: State::PB,
12971 },
12972 Municipio {
12973 ibge_code: 2502300,
12974 name: "Bom Sucesso",
12975 state: State::PB,
12976 },
12977 Municipio {
12978 ibge_code: 2502409,
12979 name: "Bonito de Santa Fé",
12980 state: State::PB,
12981 },
12982 Municipio {
12983 ibge_code: 2502508,
12984 name: "Boqueirão",
12985 state: State::PB,
12986 },
12987 Municipio {
12988 ibge_code: 2502706,
12989 name: "Borborema",
12990 state: State::PB,
12991 },
12992 Municipio {
12993 ibge_code: 2502805,
12994 name: "Brejo do Cruz",
12995 state: State::PB,
12996 },
12997 Municipio {
12998 ibge_code: 2502904,
12999 name: "Brejo dos Santos",
13000 state: State::PB,
13001 },
13002 Municipio {
13003 ibge_code: 2503001,
13004 name: "Caaporã",
13005 state: State::PB,
13006 },
13007 Municipio {
13008 ibge_code: 2503100,
13009 name: "Cabaceiras",
13010 state: State::PB,
13011 },
13012 Municipio {
13013 ibge_code: 2503209,
13014 name: "Cabedelo",
13015 state: State::PB,
13016 },
13017 Municipio {
13018 ibge_code: 2503308,
13019 name: "Cachoeira dos Índios",
13020 state: State::PB,
13021 },
13022 Municipio {
13023 ibge_code: 2503407,
13024 name: "Cacimba de Areia",
13025 state: State::PB,
13026 },
13027 Municipio {
13028 ibge_code: 2503506,
13029 name: "Cacimba de Dentro",
13030 state: State::PB,
13031 },
13032 Municipio {
13033 ibge_code: 2503555,
13034 name: "Cacimbas",
13035 state: State::PB,
13036 },
13037 Municipio {
13038 ibge_code: 2503605,
13039 name: "Caiçara",
13040 state: State::PB,
13041 },
13042 Municipio {
13043 ibge_code: 2503704,
13044 name: "Cajazeiras",
13045 state: State::PB,
13046 },
13047 Municipio {
13048 ibge_code: 2503753,
13049 name: "Cajazeirinhas",
13050 state: State::PB,
13051 },
13052 Municipio {
13053 ibge_code: 2503803,
13054 name: "Caldas Brandão",
13055 state: State::PB,
13056 },
13057 Municipio {
13058 ibge_code: 2503902,
13059 name: "Camalaú",
13060 state: State::PB,
13061 },
13062 Municipio {
13063 ibge_code: 2504009,
13064 name: "Campina Grande",
13065 state: State::PB,
13066 },
13067 Municipio {
13068 ibge_code: 2504033,
13069 name: "Capim",
13070 state: State::PB,
13071 },
13072 Municipio {
13073 ibge_code: 2504074,
13074 name: "Caraúbas",
13075 state: State::PB,
13076 },
13077 Municipio {
13078 ibge_code: 2504108,
13079 name: "Carrapateira",
13080 state: State::PB,
13081 },
13082 Municipio {
13083 ibge_code: 2504157,
13084 name: "Casserengue",
13085 state: State::PB,
13086 },
13087 Municipio {
13088 ibge_code: 2504207,
13089 name: "Catingueira",
13090 state: State::PB,
13091 },
13092 Municipio {
13093 ibge_code: 2504306,
13094 name: "Catolé do Rocha",
13095 state: State::PB,
13096 },
13097 Municipio {
13098 ibge_code: 2504355,
13099 name: "Caturité",
13100 state: State::PB,
13101 },
13102 Municipio {
13103 ibge_code: 2504405,
13104 name: "Conceição",
13105 state: State::PB,
13106 },
13107 Municipio {
13108 ibge_code: 2504504,
13109 name: "Condado",
13110 state: State::PB,
13111 },
13112 Municipio {
13113 ibge_code: 2504603,
13114 name: "Conde",
13115 state: State::PB,
13116 },
13117 Municipio {
13118 ibge_code: 2504702,
13119 name: "Congo",
13120 state: State::PB,
13121 },
13122 Municipio {
13123 ibge_code: 2504801,
13124 name: "Coremas",
13125 state: State::PB,
13126 },
13127 Municipio {
13128 ibge_code: 2504850,
13129 name: "Coxixola",
13130 state: State::PB,
13131 },
13132 Municipio {
13133 ibge_code: 2504900,
13134 name: "Cruz do Espírito Santo",
13135 state: State::PB,
13136 },
13137 Municipio {
13138 ibge_code: 2505006,
13139 name: "Cubati",
13140 state: State::PB,
13141 },
13142 Municipio {
13143 ibge_code: 2505204,
13144 name: "Cuitegi",
13145 state: State::PB,
13146 },
13147 Municipio {
13148 ibge_code: 2505105,
13149 name: "Cuité",
13150 state: State::PB,
13151 },
13152 Municipio {
13153 ibge_code: 2505238,
13154 name: "Cuité de Mamanguape",
13155 state: State::PB,
13156 },
13157 Municipio {
13158 ibge_code: 2505303,
13159 name: "Curral Velho",
13160 state: State::PB,
13161 },
13162 Municipio {
13163 ibge_code: 2505279,
13164 name: "Curral de Cima",
13165 state: State::PB,
13166 },
13167 Municipio {
13168 ibge_code: 2505352,
13169 name: "Damião",
13170 state: State::PB,
13171 },
13172 Municipio {
13173 ibge_code: 2505402,
13174 name: "Desterro",
13175 state: State::PB,
13176 },
13177 Municipio {
13178 ibge_code: 2505600,
13179 name: "Diamante",
13180 state: State::PB,
13181 },
13182 Municipio {
13183 ibge_code: 2505709,
13184 name: "Dona Inês",
13185 state: State::PB,
13186 },
13187 Municipio {
13188 ibge_code: 2505808,
13189 name: "Duas Estradas",
13190 state: State::PB,
13191 },
13192 Municipio {
13193 ibge_code: 2505907,
13194 name: "Emas",
13195 state: State::PB,
13196 },
13197 Municipio {
13198 ibge_code: 2506004,
13199 name: "Esperança",
13200 state: State::PB,
13201 },
13202 Municipio {
13203 ibge_code: 2506103,
13204 name: "Fagundes",
13205 state: State::PB,
13206 },
13207 Municipio {
13208 ibge_code: 2506202,
13209 name: "Frei Martinho",
13210 state: State::PB,
13211 },
13212 Municipio {
13213 ibge_code: 2506251,
13214 name: "Gado Bravo",
13215 state: State::PB,
13216 },
13217 Municipio {
13218 ibge_code: 2506301,
13219 name: "Guarabira",
13220 state: State::PB,
13221 },
13222 Municipio {
13223 ibge_code: 2506400,
13224 name: "Gurinhém",
13225 state: State::PB,
13226 },
13227 Municipio {
13228 ibge_code: 2506509,
13229 name: "Gurjão",
13230 state: State::PB,
13231 },
13232 Municipio {
13233 ibge_code: 2506608,
13234 name: "Ibiara",
13235 state: State::PB,
13236 },
13237 Municipio {
13238 ibge_code: 2502607,
13239 name: "Igaracy",
13240 state: State::PB,
13241 },
13242 Municipio {
13243 ibge_code: 2506707,
13244 name: "Imaculada",
13245 state: State::PB,
13246 },
13247 Municipio {
13248 ibge_code: 2506806,
13249 name: "Ingá",
13250 state: State::PB,
13251 },
13252 Municipio {
13253 ibge_code: 2506905,
13254 name: "Itabaiana",
13255 state: State::PB,
13256 },
13257 Municipio {
13258 ibge_code: 2507002,
13259 name: "Itaporanga",
13260 state: State::PB,
13261 },
13262 Municipio {
13263 ibge_code: 2507101,
13264 name: "Itapororoca",
13265 state: State::PB,
13266 },
13267 Municipio {
13268 ibge_code: 2507200,
13269 name: "Itatuba",
13270 state: State::PB,
13271 },
13272 Municipio {
13273 ibge_code: 2507309,
13274 name: "Jacaraú",
13275 state: State::PB,
13276 },
13277 Municipio {
13278 ibge_code: 2507408,
13279 name: "Jericó",
13280 state: State::PB,
13281 },
13282 Municipio {
13283 ibge_code: 2513653,
13284 name: "Joca Claudino",
13285 state: State::PB,
13286 },
13287 Municipio {
13288 ibge_code: 2507507,
13289 name: "João Pessoa",
13290 state: State::PB,
13291 },
13292 Municipio {
13293 ibge_code: 2507606,
13294 name: "Juarez Távora",
13295 state: State::PB,
13296 },
13297 Municipio {
13298 ibge_code: 2507705,
13299 name: "Juazeirinho",
13300 state: State::PB,
13301 },
13302 Municipio {
13303 ibge_code: 2507804,
13304 name: "Junco do Seridó",
13305 state: State::PB,
13306 },
13307 Municipio {
13308 ibge_code: 2507903,
13309 name: "Juripiranga",
13310 state: State::PB,
13311 },
13312 Municipio {
13313 ibge_code: 2508000,
13314 name: "Juru",
13315 state: State::PB,
13316 },
13317 Municipio {
13318 ibge_code: 2508109,
13319 name: "Lagoa",
13320 state: State::PB,
13321 },
13322 Municipio {
13323 ibge_code: 2508307,
13324 name: "Lagoa Seca",
13325 state: State::PB,
13326 },
13327 Municipio {
13328 ibge_code: 2508208,
13329 name: "Lagoa de Dentro",
13330 state: State::PB,
13331 },
13332 Municipio {
13333 ibge_code: 2508406,
13334 name: "Lastro",
13335 state: State::PB,
13336 },
13337 Municipio {
13338 ibge_code: 2508505,
13339 name: "Livramento",
13340 state: State::PB,
13341 },
13342 Municipio {
13343 ibge_code: 2508554,
13344 name: "Logradouro",
13345 state: State::PB,
13346 },
13347 Municipio {
13348 ibge_code: 2508604,
13349 name: "Lucena",
13350 state: State::PB,
13351 },
13352 Municipio {
13353 ibge_code: 2508802,
13354 name: "Malta",
13355 state: State::PB,
13356 },
13357 Municipio {
13358 ibge_code: 2508901,
13359 name: "Mamanguape",
13360 state: State::PB,
13361 },
13362 Municipio {
13363 ibge_code: 2509008,
13364 name: "Manaíra",
13365 state: State::PB,
13366 },
13367 Municipio {
13368 ibge_code: 2509057,
13369 name: "Marcação",
13370 state: State::PB,
13371 },
13372 Municipio {
13373 ibge_code: 2509107,
13374 name: "Mari",
13375 state: State::PB,
13376 },
13377 Municipio {
13378 ibge_code: 2509156,
13379 name: "Marizópolis",
13380 state: State::PB,
13381 },
13382 Municipio {
13383 ibge_code: 2509206,
13384 name: "Massaranduba",
13385 state: State::PB,
13386 },
13387 Municipio {
13388 ibge_code: 2509305,
13389 name: "Mataraca",
13390 state: State::PB,
13391 },
13392 Municipio {
13393 ibge_code: 2509339,
13394 name: "Matinhas",
13395 state: State::PB,
13396 },
13397 Municipio {
13398 ibge_code: 2509370,
13399 name: "Mato Grosso",
13400 state: State::PB,
13401 },
13402 Municipio {
13403 ibge_code: 2509396,
13404 name: "Maturéia",
13405 state: State::PB,
13406 },
13407 Municipio {
13408 ibge_code: 2509404,
13409 name: "Mogeiro",
13410 state: State::PB,
13411 },
13412 Municipio {
13413 ibge_code: 2509503,
13414 name: "Montadas",
13415 state: State::PB,
13416 },
13417 Municipio {
13418 ibge_code: 2509602,
13419 name: "Monte Horebe",
13420 state: State::PB,
13421 },
13422 Municipio {
13423 ibge_code: 2509701,
13424 name: "Monteiro",
13425 state: State::PB,
13426 },
13427 Municipio {
13428 ibge_code: 2509800,
13429 name: "Mulungu",
13430 state: State::PB,
13431 },
13432 Municipio {
13433 ibge_code: 2508703,
13434 name: "Mãe d'Água",
13435 state: State::PB,
13436 },
13437 Municipio {
13438 ibge_code: 2509909,
13439 name: "Natuba",
13440 state: State::PB,
13441 },
13442 Municipio {
13443 ibge_code: 2510006,
13444 name: "Nazarezinho",
13445 state: State::PB,
13446 },
13447 Municipio {
13448 ibge_code: 2510105,
13449 name: "Nova Floresta",
13450 state: State::PB,
13451 },
13452 Municipio {
13453 ibge_code: 2510204,
13454 name: "Nova Olinda",
13455 state: State::PB,
13456 },
13457 Municipio {
13458 ibge_code: 2510303,
13459 name: "Nova Palmeira",
13460 state: State::PB,
13461 },
13462 Municipio {
13463 ibge_code: 2510402,
13464 name: "Olho d'Água",
13465 state: State::PB,
13466 },
13467 Municipio {
13468 ibge_code: 2510501,
13469 name: "Olivedos",
13470 state: State::PB,
13471 },
13472 Municipio {
13473 ibge_code: 2510600,
13474 name: "Ouro Velho",
13475 state: State::PB,
13476 },
13477 Municipio {
13478 ibge_code: 2510659,
13479 name: "Parari",
13480 state: State::PB,
13481 },
13482 Municipio {
13483 ibge_code: 2510709,
13484 name: "Passagem",
13485 state: State::PB,
13486 },
13487 Municipio {
13488 ibge_code: 2510808,
13489 name: "Patos",
13490 state: State::PB,
13491 },
13492 Municipio {
13493 ibge_code: 2510907,
13494 name: "Paulista",
13495 state: State::PB,
13496 },
13497 Municipio {
13498 ibge_code: 2511004,
13499 name: "Pedra Branca",
13500 state: State::PB,
13501 },
13502 Municipio {
13503 ibge_code: 2511103,
13504 name: "Pedra Lavrada",
13505 state: State::PB,
13506 },
13507 Municipio {
13508 ibge_code: 2511202,
13509 name: "Pedras de Fogo",
13510 state: State::PB,
13511 },
13512 Municipio {
13513 ibge_code: 2512721,
13514 name: "Pedro Régis",
13515 state: State::PB,
13516 },
13517 Municipio {
13518 ibge_code: 2511301,
13519 name: "Piancó",
13520 state: State::PB,
13521 },
13522 Municipio {
13523 ibge_code: 2511400,
13524 name: "Picuí",
13525 state: State::PB,
13526 },
13527 Municipio {
13528 ibge_code: 2511509,
13529 name: "Pilar",
13530 state: State::PB,
13531 },
13532 Municipio {
13533 ibge_code: 2511608,
13534 name: "Pilões",
13535 state: State::PB,
13536 },
13537 Municipio {
13538 ibge_code: 2511707,
13539 name: "Pilõezinhos",
13540 state: State::PB,
13541 },
13542 Municipio {
13543 ibge_code: 2511806,
13544 name: "Pirpirituba",
13545 state: State::PB,
13546 },
13547 Municipio {
13548 ibge_code: 2511905,
13549 name: "Pitimbu",
13550 state: State::PB,
13551 },
13552 Municipio {
13553 ibge_code: 2512002,
13554 name: "Pocinhos",
13555 state: State::PB,
13556 },
13557 Municipio {
13558 ibge_code: 2512101,
13559 name: "Pombal",
13560 state: State::PB,
13561 },
13562 Municipio {
13563 ibge_code: 2512036,
13564 name: "Poço Dantas",
13565 state: State::PB,
13566 },
13567 Municipio {
13568 ibge_code: 2512077,
13569 name: "Poço de José de Moura",
13570 state: State::PB,
13571 },
13572 Municipio {
13573 ibge_code: 2512200,
13574 name: "Prata",
13575 state: State::PB,
13576 },
13577 Municipio {
13578 ibge_code: 2512309,
13579 name: "Princesa Isabel",
13580 state: State::PB,
13581 },
13582 Municipio {
13583 ibge_code: 2512408,
13584 name: "Puxinanã",
13585 state: State::PB,
13586 },
13587 Municipio {
13588 ibge_code: 2512507,
13589 name: "Queimadas",
13590 state: State::PB,
13591 },
13592 Municipio {
13593 ibge_code: 2512606,
13594 name: "Quixaba",
13595 state: State::PB,
13596 },
13597 Municipio {
13598 ibge_code: 2512705,
13599 name: "Remígio",
13600 state: State::PB,
13601 },
13602 Municipio {
13603 ibge_code: 2512788,
13604 name: "Riacho de Santo Antônio",
13605 state: State::PB,
13606 },
13607 Municipio {
13608 ibge_code: 2512804,
13609 name: "Riacho dos Cavalos",
13610 state: State::PB,
13611 },
13612 Municipio {
13613 ibge_code: 2512747,
13614 name: "Riachão",
13615 state: State::PB,
13616 },
13617 Municipio {
13618 ibge_code: 2512754,
13619 name: "Riachão do Bacamarte",
13620 state: State::PB,
13621 },
13622 Municipio {
13623 ibge_code: 2512762,
13624 name: "Riachão do Poço",
13625 state: State::PB,
13626 },
13627 Municipio {
13628 ibge_code: 2512903,
13629 name: "Rio Tinto",
13630 state: State::PB,
13631 },
13632 Municipio {
13633 ibge_code: 2513000,
13634 name: "Salgadinho",
13635 state: State::PB,
13636 },
13637 Municipio {
13638 ibge_code: 2513109,
13639 name: "Salgado de São Félix",
13640 state: State::PB,
13641 },
13642 Municipio {
13643 ibge_code: 2513158,
13644 name: "Santa Cecília",
13645 state: State::PB,
13646 },
13647 Municipio {
13648 ibge_code: 2513208,
13649 name: "Santa Cruz",
13650 state: State::PB,
13651 },
13652 Municipio {
13653 ibge_code: 2513307,
13654 name: "Santa Helena",
13655 state: State::PB,
13656 },
13657 Municipio {
13658 ibge_code: 2513356,
13659 name: "Santa Inês",
13660 state: State::PB,
13661 },
13662 Municipio {
13663 ibge_code: 2513406,
13664 name: "Santa Luzia",
13665 state: State::PB,
13666 },
13667 Municipio {
13668 ibge_code: 2513703,
13669 name: "Santa Rita",
13670 state: State::PB,
13671 },
13672 Municipio {
13673 ibge_code: 2513802,
13674 name: "Santa Teresinha",
13675 state: State::PB,
13676 },
13677 Municipio {
13678 ibge_code: 2513505,
13679 name: "Santana de Mangueira",
13680 state: State::PB,
13681 },
13682 Municipio {
13683 ibge_code: 2513604,
13684 name: "Santana dos Garrotes",
13685 state: State::PB,
13686 },
13687 Municipio {
13688 ibge_code: 2513851,
13689 name: "Santo André",
13690 state: State::PB,
13691 },
13692 Municipio {
13693 ibge_code: 2515302,
13694 name: "Sapé",
13695 state: State::PB,
13696 },
13697 Municipio {
13698 ibge_code: 2515500,
13699 name: "Serra Branca",
13700 state: State::PB,
13701 },
13702 Municipio {
13703 ibge_code: 2515708,
13704 name: "Serra Grande",
13705 state: State::PB,
13706 },
13707 Municipio {
13708 ibge_code: 2515807,
13709 name: "Serra Redonda",
13710 state: State::PB,
13711 },
13712 Municipio {
13713 ibge_code: 2515609,
13714 name: "Serra da Raiz",
13715 state: State::PB,
13716 },
13717 Municipio {
13718 ibge_code: 2515906,
13719 name: "Serraria",
13720 state: State::PB,
13721 },
13722 Municipio {
13723 ibge_code: 2515930,
13724 name: "Sertãozinho",
13725 state: State::PB,
13726 },
13727 Municipio {
13728 ibge_code: 2515971,
13729 name: "Sobrado",
13730 state: State::PB,
13731 },
13732 Municipio {
13733 ibge_code: 2516102,
13734 name: "Soledade",
13735 state: State::PB,
13736 },
13737 Municipio {
13738 ibge_code: 2516003,
13739 name: "Solânea",
13740 state: State::PB,
13741 },
13742 Municipio {
13743 ibge_code: 2516151,
13744 name: "Sossêgo",
13745 state: State::PB,
13746 },
13747 Municipio {
13748 ibge_code: 2516201,
13749 name: "Sousa",
13750 state: State::PB,
13751 },
13752 Municipio {
13753 ibge_code: 2516300,
13754 name: "Sumé",
13755 state: State::PB,
13756 },
13757 Municipio {
13758 ibge_code: 2513927,
13759 name: "São Bentinho",
13760 state: State::PB,
13761 },
13762 Municipio {
13763 ibge_code: 2513901,
13764 name: "São Bento",
13765 state: State::PB,
13766 },
13767 Municipio {
13768 ibge_code: 2513968,
13769 name: "São Domingos",
13770 state: State::PB,
13771 },
13772 Municipio {
13773 ibge_code: 2513943,
13774 name: "São Domingos do Cariri",
13775 state: State::PB,
13776 },
13777 Municipio {
13778 ibge_code: 2513984,
13779 name: "São Francisco",
13780 state: State::PB,
13781 },
13782 Municipio {
13783 ibge_code: 2514206,
13784 name: "São José da Lagoa Tapada",
13785 state: State::PB,
13786 },
13787 Municipio {
13788 ibge_code: 2514305,
13789 name: "São José de Caiana",
13790 state: State::PB,
13791 },
13792 Municipio {
13793 ibge_code: 2514404,
13794 name: "São José de Espinharas",
13795 state: State::PB,
13796 },
13797 Municipio {
13798 ibge_code: 2514503,
13799 name: "São José de Piranhas",
13800 state: State::PB,
13801 },
13802 Municipio {
13803 ibge_code: 2514552,
13804 name: "São José de Princesa",
13805 state: State::PB,
13806 },
13807 Municipio {
13808 ibge_code: 2514602,
13809 name: "São José do Bonfim",
13810 state: State::PB,
13811 },
13812 Municipio {
13813 ibge_code: 2514651,
13814 name: "São José do Brejo do Cruz",
13815 state: State::PB,
13816 },
13817 Municipio {
13818 ibge_code: 2514701,
13819 name: "São José do Sabugi",
13820 state: State::PB,
13821 },
13822 Municipio {
13823 ibge_code: 2514800,
13824 name: "São José dos Cordeiros",
13825 state: State::PB,
13826 },
13827 Municipio {
13828 ibge_code: 2514453,
13829 name: "São José dos Ramos",
13830 state: State::PB,
13831 },
13832 Municipio {
13833 ibge_code: 2514008,
13834 name: "São João do Cariri",
13835 state: State::PB,
13836 },
13837 Municipio {
13838 ibge_code: 2500700,
13839 name: "São João do Rio do Peixe",
13840 state: State::PB,
13841 },
13842 Municipio {
13843 ibge_code: 2514107,
13844 name: "São João do Tigre",
13845 state: State::PB,
13846 },
13847 Municipio {
13848 ibge_code: 2514909,
13849 name: "São Mamede",
13850 state: State::PB,
13851 },
13852 Municipio {
13853 ibge_code: 2515005,
13854 name: "São Miguel de Taipu",
13855 state: State::PB,
13856 },
13857 Municipio {
13858 ibge_code: 2515104,
13859 name: "São Sebastião de Lagoa de Roça",
13860 state: State::PB,
13861 },
13862 Municipio {
13863 ibge_code: 2515203,
13864 name: "São Sebastião do Umbuzeiro",
13865 state: State::PB,
13866 },
13867 Municipio {
13868 ibge_code: 2515401,
13869 name: "São Vicente do Seridó",
13870 state: State::PB,
13871 },
13872 Municipio {
13873 ibge_code: 2516409,
13874 name: "Tacima",
13875 state: State::PB,
13876 },
13877 Municipio {
13878 ibge_code: 2516508,
13879 name: "Taperoá",
13880 state: State::PB,
13881 },
13882 Municipio {
13883 ibge_code: 2516607,
13884 name: "Tavares",
13885 state: State::PB,
13886 },
13887 Municipio {
13888 ibge_code: 2516706,
13889 name: "Teixeira",
13890 state: State::PB,
13891 },
13892 Municipio {
13893 ibge_code: 2516755,
13894 name: "Tenório",
13895 state: State::PB,
13896 },
13897 Municipio {
13898 ibge_code: 2516805,
13899 name: "Triunfo",
13900 state: State::PB,
13901 },
13902 Municipio {
13903 ibge_code: 2516904,
13904 name: "Uiraúna",
13905 state: State::PB,
13906 },
13907 Municipio {
13908 ibge_code: 2517001,
13909 name: "Umbuzeiro",
13910 state: State::PB,
13911 },
13912 Municipio {
13913 ibge_code: 2517209,
13914 name: "Vieirópolis",
13915 state: State::PB,
13916 },
13917 Municipio {
13918 ibge_code: 2505501,
13919 name: "Vista Serrana",
13920 state: State::PB,
13921 },
13922 Municipio {
13923 ibge_code: 2517100,
13924 name: "Várzea",
13925 state: State::PB,
13926 },
13927 Municipio {
13928 ibge_code: 2517407,
13929 name: "Zabelê",
13930 state: State::PB,
13931 },
13932 Municipio {
13933 ibge_code: 2500106,
13934 name: "Água Branca",
13935 state: State::PB,
13936 },
13937 Municipio {
13938 ibge_code: 2600054,
13939 name: "Abreu e Lima",
13940 state: State::PE,
13941 },
13942 Municipio {
13943 ibge_code: 2600104,
13944 name: "Afogados da Ingazeira",
13945 state: State::PE,
13946 },
13947 Municipio {
13948 ibge_code: 2600203,
13949 name: "Afrânio",
13950 state: State::PE,
13951 },
13952 Municipio {
13953 ibge_code: 2600302,
13954 name: "Agrestina",
13955 state: State::PE,
13956 },
13957 Municipio {
13958 ibge_code: 2600609,
13959 name: "Alagoinha",
13960 state: State::PE,
13961 },
13962 Municipio {
13963 ibge_code: 2600708,
13964 name: "Aliança",
13965 state: State::PE,
13966 },
13967 Municipio {
13968 ibge_code: 2600807,
13969 name: "Altinho",
13970 state: State::PE,
13971 },
13972 Municipio {
13973 ibge_code: 2600906,
13974 name: "Amaraji",
13975 state: State::PE,
13976 },
13977 Municipio {
13978 ibge_code: 2601003,
13979 name: "Angelim",
13980 state: State::PE,
13981 },
13982 Municipio {
13983 ibge_code: 2601102,
13984 name: "Araripina",
13985 state: State::PE,
13986 },
13987 Municipio {
13988 ibge_code: 2601052,
13989 name: "Araçoiaba",
13990 state: State::PE,
13991 },
13992 Municipio {
13993 ibge_code: 2601201,
13994 name: "Arcoverde",
13995 state: State::PE,
13996 },
13997 Municipio {
13998 ibge_code: 2601300,
13999 name: "Barra de Guabiraba",
14000 state: State::PE,
14001 },
14002 Municipio {
14003 ibge_code: 2601409,
14004 name: "Barreiros",
14005 state: State::PE,
14006 },
14007 Municipio {
14008 ibge_code: 2601706,
14009 name: "Belo Jardim",
14010 state: State::PE,
14011 },
14012 Municipio {
14013 ibge_code: 2601508,
14014 name: "Belém de Maria",
14015 state: State::PE,
14016 },
14017 Municipio {
14018 ibge_code: 2601607,
14019 name: "Belém do São Francisco",
14020 state: State::PE,
14021 },
14022 Municipio {
14023 ibge_code: 2601805,
14024 name: "Betânia",
14025 state: State::PE,
14026 },
14027 Municipio {
14028 ibge_code: 2601904,
14029 name: "Bezerros",
14030 state: State::PE,
14031 },
14032 Municipio {
14033 ibge_code: 2602001,
14034 name: "Bodocó",
14035 state: State::PE,
14036 },
14037 Municipio {
14038 ibge_code: 2602100,
14039 name: "Bom Conselho",
14040 state: State::PE,
14041 },
14042 Municipio {
14043 ibge_code: 2602209,
14044 name: "Bom Jardim",
14045 state: State::PE,
14046 },
14047 Municipio {
14048 ibge_code: 2602308,
14049 name: "Bonito",
14050 state: State::PE,
14051 },
14052 Municipio {
14053 ibge_code: 2602506,
14054 name: "Brejinho",
14055 state: State::PE,
14056 },
14057 Municipio {
14058 ibge_code: 2602605,
14059 name: "Brejo da Madre de Deus",
14060 state: State::PE,
14061 },
14062 Municipio {
14063 ibge_code: 2602407,
14064 name: "Brejão",
14065 state: State::PE,
14066 },
14067 Municipio {
14068 ibge_code: 2602704,
14069 name: "Buenos Aires",
14070 state: State::PE,
14071 },
14072 Municipio {
14073 ibge_code: 2602803,
14074 name: "Buíque",
14075 state: State::PE,
14076 },
14077 Municipio {
14078 ibge_code: 2602902,
14079 name: "Cabo de Santo Agostinho",
14080 state: State::PE,
14081 },
14082 Municipio {
14083 ibge_code: 2603009,
14084 name: "Cabrobó",
14085 state: State::PE,
14086 },
14087 Municipio {
14088 ibge_code: 2603108,
14089 name: "Cachoeirinha",
14090 state: State::PE,
14091 },
14092 Municipio {
14093 ibge_code: 2603207,
14094 name: "Caetés",
14095 state: State::PE,
14096 },
14097 Municipio {
14098 ibge_code: 2603405,
14099 name: "Calumbi",
14100 state: State::PE,
14101 },
14102 Municipio {
14103 ibge_code: 2603306,
14104 name: "Calçado",
14105 state: State::PE,
14106 },
14107 Municipio {
14108 ibge_code: 2603454,
14109 name: "Camaragibe",
14110 state: State::PE,
14111 },
14112 Municipio {
14113 ibge_code: 2603504,
14114 name: "Camocim de São Félix",
14115 state: State::PE,
14116 },
14117 Municipio {
14118 ibge_code: 2603603,
14119 name: "Camutanga",
14120 state: State::PE,
14121 },
14122 Municipio {
14123 ibge_code: 2603702,
14124 name: "Canhotinho",
14125 state: State::PE,
14126 },
14127 Municipio {
14128 ibge_code: 2603801,
14129 name: "Capoeiras",
14130 state: State::PE,
14131 },
14132 Municipio {
14133 ibge_code: 2603926,
14134 name: "Carnaubeira da Penha",
14135 state: State::PE,
14136 },
14137 Municipio {
14138 ibge_code: 2603900,
14139 name: "Carnaíba",
14140 state: State::PE,
14141 },
14142 Municipio {
14143 ibge_code: 2604007,
14144 name: "Carpina",
14145 state: State::PE,
14146 },
14147 Municipio {
14148 ibge_code: 2604106,
14149 name: "Caruaru",
14150 state: State::PE,
14151 },
14152 Municipio {
14153 ibge_code: 2604155,
14154 name: "Casinhas",
14155 state: State::PE,
14156 },
14157 Municipio {
14158 ibge_code: 2604205,
14159 name: "Catende",
14160 state: State::PE,
14161 },
14162 Municipio {
14163 ibge_code: 2604304,
14164 name: "Cedro",
14165 state: State::PE,
14166 },
14167 Municipio {
14168 ibge_code: 2604502,
14169 name: "Chã Grande",
14170 state: State::PE,
14171 },
14172 Municipio {
14173 ibge_code: 2604403,
14174 name: "Chã de Alegria",
14175 state: State::PE,
14176 },
14177 Municipio {
14178 ibge_code: 2604601,
14179 name: "Condado",
14180 state: State::PE,
14181 },
14182 Municipio {
14183 ibge_code: 2604700,
14184 name: "Correntes",
14185 state: State::PE,
14186 },
14187 Municipio {
14188 ibge_code: 2604809,
14189 name: "Cortês",
14190 state: State::PE,
14191 },
14192 Municipio {
14193 ibge_code: 2604908,
14194 name: "Cumaru",
14195 state: State::PE,
14196 },
14197 Municipio {
14198 ibge_code: 2605004,
14199 name: "Cupira",
14200 state: State::PE,
14201 },
14202 Municipio {
14203 ibge_code: 2605103,
14204 name: "Custódia",
14205 state: State::PE,
14206 },
14207 Municipio {
14208 ibge_code: 2605152,
14209 name: "Dormentes",
14210 state: State::PE,
14211 },
14212 Municipio {
14213 ibge_code: 2605202,
14214 name: "Escada",
14215 state: State::PE,
14216 },
14217 Municipio {
14218 ibge_code: 2605301,
14219 name: "Exu",
14220 state: State::PE,
14221 },
14222 Municipio {
14223 ibge_code: 2605400,
14224 name: "Feira Nova",
14225 state: State::PE,
14226 },
14227 Municipio {
14228 ibge_code: 2605459,
14229 name: "Fernando de Noronha",
14230 state: State::PE,
14231 },
14232 Municipio {
14233 ibge_code: 2605509,
14234 name: "Ferreiros",
14235 state: State::PE,
14236 },
14237 Municipio {
14238 ibge_code: 2605608,
14239 name: "Flores",
14240 state: State::PE,
14241 },
14242 Municipio {
14243 ibge_code: 2605707,
14244 name: "Floresta",
14245 state: State::PE,
14246 },
14247 Municipio {
14248 ibge_code: 2605806,
14249 name: "Frei Miguelinho",
14250 state: State::PE,
14251 },
14252 Municipio {
14253 ibge_code: 2605905,
14254 name: "Gameleira",
14255 state: State::PE,
14256 },
14257 Municipio {
14258 ibge_code: 2606002,
14259 name: "Garanhuns",
14260 state: State::PE,
14261 },
14262 Municipio {
14263 ibge_code: 2606101,
14264 name: "Glória do Goitá",
14265 state: State::PE,
14266 },
14267 Municipio {
14268 ibge_code: 2606200,
14269 name: "Goiana",
14270 state: State::PE,
14271 },
14272 Municipio {
14273 ibge_code: 2606309,
14274 name: "Granito",
14275 state: State::PE,
14276 },
14277 Municipio {
14278 ibge_code: 2606408,
14279 name: "Gravatá",
14280 state: State::PE,
14281 },
14282 Municipio {
14283 ibge_code: 2606507,
14284 name: "Iati",
14285 state: State::PE,
14286 },
14287 Municipio {
14288 ibge_code: 2606606,
14289 name: "Ibimirim",
14290 state: State::PE,
14291 },
14292 Municipio {
14293 ibge_code: 2606705,
14294 name: "Ibirajuba",
14295 state: State::PE,
14296 },
14297 Municipio {
14298 ibge_code: 2606804,
14299 name: "Igarassu",
14300 state: State::PE,
14301 },
14302 Municipio {
14303 ibge_code: 2606903,
14304 name: "Iguaracy",
14305 state: State::PE,
14306 },
14307 Municipio {
14308 ibge_code: 2607604,
14309 name: "Ilha de Itamaracá",
14310 state: State::PE,
14311 },
14312 Municipio {
14313 ibge_code: 2607000,
14314 name: "Inajá",
14315 state: State::PE,
14316 },
14317 Municipio {
14318 ibge_code: 2607109,
14319 name: "Ingazeira",
14320 state: State::PE,
14321 },
14322 Municipio {
14323 ibge_code: 2607208,
14324 name: "Ipojuca",
14325 state: State::PE,
14326 },
14327 Municipio {
14328 ibge_code: 2607307,
14329 name: "Ipubi",
14330 state: State::PE,
14331 },
14332 Municipio {
14333 ibge_code: 2607406,
14334 name: "Itacuruba",
14335 state: State::PE,
14336 },
14337 Municipio {
14338 ibge_code: 2607653,
14339 name: "Itambé",
14340 state: State::PE,
14341 },
14342 Municipio {
14343 ibge_code: 2607703,
14344 name: "Itapetim",
14345 state: State::PE,
14346 },
14347 Municipio {
14348 ibge_code: 2607752,
14349 name: "Itapissuma",
14350 state: State::PE,
14351 },
14352 Municipio {
14353 ibge_code: 2607802,
14354 name: "Itaquitinga",
14355 state: State::PE,
14356 },
14357 Municipio {
14358 ibge_code: 2607505,
14359 name: "Itaíba",
14360 state: State::PE,
14361 },
14362 Municipio {
14363 ibge_code: 2607901,
14364 name: "Jaboatão dos Guararapes",
14365 state: State::PE,
14366 },
14367 Municipio {
14368 ibge_code: 2607950,
14369 name: "Jaqueira",
14370 state: State::PE,
14371 },
14372 Municipio {
14373 ibge_code: 2608008,
14374 name: "Jataúba",
14375 state: State::PE,
14376 },
14377 Municipio {
14378 ibge_code: 2608057,
14379 name: "Jatobá",
14380 state: State::PE,
14381 },
14382 Municipio {
14383 ibge_code: 2608206,
14384 name: "Joaquim Nabuco",
14385 state: State::PE,
14386 },
14387 Municipio {
14388 ibge_code: 2608107,
14389 name: "João Alfredo",
14390 state: State::PE,
14391 },
14392 Municipio {
14393 ibge_code: 2608255,
14394 name: "Jucati",
14395 state: State::PE,
14396 },
14397 Municipio {
14398 ibge_code: 2608305,
14399 name: "Jupi",
14400 state: State::PE,
14401 },
14402 Municipio {
14403 ibge_code: 2608404,
14404 name: "Jurema",
14405 state: State::PE,
14406 },
14407 Municipio {
14408 ibge_code: 2608750,
14409 name: "Lagoa Grande",
14410 state: State::PE,
14411 },
14412 Municipio {
14413 ibge_code: 2608503,
14414 name: "Lagoa de Itaenga",
14415 state: State::PE,
14416 },
14417 Municipio {
14418 ibge_code: 2608453,
14419 name: "Lagoa do Carro",
14420 state: State::PE,
14421 },
14422 Municipio {
14423 ibge_code: 2608602,
14424 name: "Lagoa do Ouro",
14425 state: State::PE,
14426 },
14427 Municipio {
14428 ibge_code: 2608701,
14429 name: "Lagoa dos Gatos",
14430 state: State::PE,
14431 },
14432 Municipio {
14433 ibge_code: 2608800,
14434 name: "Lajedo",
14435 state: State::PE,
14436 },
14437 Municipio {
14438 ibge_code: 2608909,
14439 name: "Limoeiro",
14440 state: State::PE,
14441 },
14442 Municipio {
14443 ibge_code: 2609006,
14444 name: "Macaparana",
14445 state: State::PE,
14446 },
14447 Municipio {
14448 ibge_code: 2609105,
14449 name: "Machados",
14450 state: State::PE,
14451 },
14452 Municipio {
14453 ibge_code: 2609154,
14454 name: "Manari",
14455 state: State::PE,
14456 },
14457 Municipio {
14458 ibge_code: 2609204,
14459 name: "Maraial",
14460 state: State::PE,
14461 },
14462 Municipio {
14463 ibge_code: 2609303,
14464 name: "Mirandiba",
14465 state: State::PE,
14466 },
14467 Municipio {
14468 ibge_code: 2614303,
14469 name: "Moreilândia",
14470 state: State::PE,
14471 },
14472 Municipio {
14473 ibge_code: 2609402,
14474 name: "Moreno",
14475 state: State::PE,
14476 },
14477 Municipio {
14478 ibge_code: 2609501,
14479 name: "Nazaré da Mata",
14480 state: State::PE,
14481 },
14482 Municipio {
14483 ibge_code: 2609600,
14484 name: "Olinda",
14485 state: State::PE,
14486 },
14487 Municipio {
14488 ibge_code: 2609709,
14489 name: "Orobó",
14490 state: State::PE,
14491 },
14492 Municipio {
14493 ibge_code: 2609808,
14494 name: "Orocó",
14495 state: State::PE,
14496 },
14497 Municipio {
14498 ibge_code: 2609907,
14499 name: "Ouricuri",
14500 state: State::PE,
14501 },
14502 Municipio {
14503 ibge_code: 2610004,
14504 name: "Palmares",
14505 state: State::PE,
14506 },
14507 Municipio {
14508 ibge_code: 2610103,
14509 name: "Palmeirina",
14510 state: State::PE,
14511 },
14512 Municipio {
14513 ibge_code: 2610202,
14514 name: "Panelas",
14515 state: State::PE,
14516 },
14517 Municipio {
14518 ibge_code: 2610301,
14519 name: "Paranatama",
14520 state: State::PE,
14521 },
14522 Municipio {
14523 ibge_code: 2610400,
14524 name: "Parnamirim",
14525 state: State::PE,
14526 },
14527 Municipio {
14528 ibge_code: 2610509,
14529 name: "Passira",
14530 state: State::PE,
14531 },
14532 Municipio {
14533 ibge_code: 2610608,
14534 name: "Paudalho",
14535 state: State::PE,
14536 },
14537 Municipio {
14538 ibge_code: 2610707,
14539 name: "Paulista",
14540 state: State::PE,
14541 },
14542 Municipio {
14543 ibge_code: 2610806,
14544 name: "Pedra",
14545 state: State::PE,
14546 },
14547 Municipio {
14548 ibge_code: 2610905,
14549 name: "Pesqueira",
14550 state: State::PE,
14551 },
14552 Municipio {
14553 ibge_code: 2611101,
14554 name: "Petrolina",
14555 state: State::PE,
14556 },
14557 Municipio {
14558 ibge_code: 2611002,
14559 name: "Petrolândia",
14560 state: State::PE,
14561 },
14562 Municipio {
14563 ibge_code: 2611309,
14564 name: "Pombos",
14565 state: State::PE,
14566 },
14567 Municipio {
14568 ibge_code: 2611200,
14569 name: "Poção",
14570 state: State::PE,
14571 },
14572 Municipio {
14573 ibge_code: 2611408,
14574 name: "Primavera",
14575 state: State::PE,
14576 },
14577 Municipio {
14578 ibge_code: 2611507,
14579 name: "Quipapá",
14580 state: State::PE,
14581 },
14582 Municipio {
14583 ibge_code: 2611533,
14584 name: "Quixaba",
14585 state: State::PE,
14586 },
14587 Municipio {
14588 ibge_code: 2611606,
14589 name: "Recife",
14590 state: State::PE,
14591 },
14592 Municipio {
14593 ibge_code: 2611705,
14594 name: "Riacho das Almas",
14595 state: State::PE,
14596 },
14597 Municipio {
14598 ibge_code: 2611804,
14599 name: "Ribeirão",
14600 state: State::PE,
14601 },
14602 Municipio {
14603 ibge_code: 2611903,
14604 name: "Rio Formoso",
14605 state: State::PE,
14606 },
14607 Municipio {
14608 ibge_code: 2612000,
14609 name: "Sairé",
14610 state: State::PE,
14611 },
14612 Municipio {
14613 ibge_code: 2612109,
14614 name: "Salgadinho",
14615 state: State::PE,
14616 },
14617 Municipio {
14618 ibge_code: 2612208,
14619 name: "Salgueiro",
14620 state: State::PE,
14621 },
14622 Municipio {
14623 ibge_code: 2612307,
14624 name: "Saloá",
14625 state: State::PE,
14626 },
14627 Municipio {
14628 ibge_code: 2612406,
14629 name: "Sanharó",
14630 state: State::PE,
14631 },
14632 Municipio {
14633 ibge_code: 2612455,
14634 name: "Santa Cruz",
14635 state: State::PE,
14636 },
14637 Municipio {
14638 ibge_code: 2612471,
14639 name: "Santa Cruz da Baixa Verde",
14640 state: State::PE,
14641 },
14642 Municipio {
14643 ibge_code: 2612505,
14644 name: "Santa Cruz do Capibaribe",
14645 state: State::PE,
14646 },
14647 Municipio {
14648 ibge_code: 2612554,
14649 name: "Santa Filomena",
14650 state: State::PE,
14651 },
14652 Municipio {
14653 ibge_code: 2612604,
14654 name: "Santa Maria da Boa Vista",
14655 state: State::PE,
14656 },
14657 Municipio {
14658 ibge_code: 2612703,
14659 name: "Santa Maria do Cambucá",
14660 state: State::PE,
14661 },
14662 Municipio {
14663 ibge_code: 2612802,
14664 name: "Santa Terezinha",
14665 state: State::PE,
14666 },
14667 Municipio {
14668 ibge_code: 2613909,
14669 name: "Serra Talhada",
14670 state: State::PE,
14671 },
14672 Municipio {
14673 ibge_code: 2614006,
14674 name: "Serrita",
14675 state: State::PE,
14676 },
14677 Municipio {
14678 ibge_code: 2614105,
14679 name: "Sertânia",
14680 state: State::PE,
14681 },
14682 Municipio {
14683 ibge_code: 2614204,
14684 name: "Sirinhaém",
14685 state: State::PE,
14686 },
14687 Municipio {
14688 ibge_code: 2614402,
14689 name: "Solidão",
14690 state: State::PE,
14691 },
14692 Municipio {
14693 ibge_code: 2614501,
14694 name: "Surubim",
14695 state: State::PE,
14696 },
14697 Municipio {
14698 ibge_code: 2612901,
14699 name: "São Benedito do Sul",
14700 state: State::PE,
14701 },
14702 Municipio {
14703 ibge_code: 2613008,
14704 name: "São Bento do Una",
14705 state: State::PE,
14706 },
14707 Municipio {
14708 ibge_code: 2613107,
14709 name: "São Caitano",
14710 state: State::PE,
14711 },
14712 Municipio {
14713 ibge_code: 2613305,
14714 name: "São Joaquim do Monte",
14715 state: State::PE,
14716 },
14717 Municipio {
14718 ibge_code: 2613404,
14719 name: "São José da Coroa Grande",
14720 state: State::PE,
14721 },
14722 Municipio {
14723 ibge_code: 2613503,
14724 name: "São José do Belmonte",
14725 state: State::PE,
14726 },
14727 Municipio {
14728 ibge_code: 2613602,
14729 name: "São José do Egito",
14730 state: State::PE,
14731 },
14732 Municipio {
14733 ibge_code: 2613206,
14734 name: "São João",
14735 state: State::PE,
14736 },
14737 Municipio {
14738 ibge_code: 2613701,
14739 name: "São Lourenço da Mata",
14740 state: State::PE,
14741 },
14742 Municipio {
14743 ibge_code: 2613800,
14744 name: "São Vicente Férrer",
14745 state: State::PE,
14746 },
14747 Municipio {
14748 ibge_code: 2614600,
14749 name: "Tabira",
14750 state: State::PE,
14751 },
14752 Municipio {
14753 ibge_code: 2614709,
14754 name: "Tacaimbó",
14755 state: State::PE,
14756 },
14757 Municipio {
14758 ibge_code: 2614808,
14759 name: "Tacaratu",
14760 state: State::PE,
14761 },
14762 Municipio {
14763 ibge_code: 2614857,
14764 name: "Tamandaré",
14765 state: State::PE,
14766 },
14767 Municipio {
14768 ibge_code: 2615003,
14769 name: "Taquaritinga do Norte",
14770 state: State::PE,
14771 },
14772 Municipio {
14773 ibge_code: 2615102,
14774 name: "Terezinha",
14775 state: State::PE,
14776 },
14777 Municipio {
14778 ibge_code: 2615201,
14779 name: "Terra Nova",
14780 state: State::PE,
14781 },
14782 Municipio {
14783 ibge_code: 2615300,
14784 name: "Timbaúba",
14785 state: State::PE,
14786 },
14787 Municipio {
14788 ibge_code: 2615409,
14789 name: "Toritama",
14790 state: State::PE,
14791 },
14792 Municipio {
14793 ibge_code: 2615508,
14794 name: "Tracunhaém",
14795 state: State::PE,
14796 },
14797 Municipio {
14798 ibge_code: 2615607,
14799 name: "Trindade",
14800 state: State::PE,
14801 },
14802 Municipio {
14803 ibge_code: 2615706,
14804 name: "Triunfo",
14805 state: State::PE,
14806 },
14807 Municipio {
14808 ibge_code: 2615805,
14809 name: "Tupanatinga",
14810 state: State::PE,
14811 },
14812 Municipio {
14813 ibge_code: 2615904,
14814 name: "Tuparetama",
14815 state: State::PE,
14816 },
14817 Municipio {
14818 ibge_code: 2616001,
14819 name: "Venturosa",
14820 state: State::PE,
14821 },
14822 Municipio {
14823 ibge_code: 2616100,
14824 name: "Verdejante",
14825 state: State::PE,
14826 },
14827 Municipio {
14828 ibge_code: 2616183,
14829 name: "Vertente do Lério",
14830 state: State::PE,
14831 },
14832 Municipio {
14833 ibge_code: 2616209,
14834 name: "Vertentes",
14835 state: State::PE,
14836 },
14837 Municipio {
14838 ibge_code: 2616308,
14839 name: "Vicência",
14840 state: State::PE,
14841 },
14842 Municipio {
14843 ibge_code: 2616407,
14844 name: "Vitória de Santo Antão",
14845 state: State::PE,
14846 },
14847 Municipio {
14848 ibge_code: 2616506,
14849 name: "Xexéu",
14850 state: State::PE,
14851 },
14852 Municipio {
14853 ibge_code: 2600401,
14854 name: "Água Preta",
14855 state: State::PE,
14856 },
14857 Municipio {
14858 ibge_code: 2600500,
14859 name: "Águas Belas",
14860 state: State::PE,
14861 },
14862 Municipio {
14863 ibge_code: 2200053,
14864 name: "Acauã",
14865 state: State::PI,
14866 },
14867 Municipio {
14868 ibge_code: 2200103,
14869 name: "Agricolândia",
14870 state: State::PI,
14871 },
14872 Municipio {
14873 ibge_code: 2200251,
14874 name: "Alagoinha do Piauí",
14875 state: State::PI,
14876 },
14877 Municipio {
14878 ibge_code: 2200277,
14879 name: "Alegrete do Piauí",
14880 state: State::PI,
14881 },
14882 Municipio {
14883 ibge_code: 2200301,
14884 name: "Alto Longá",
14885 state: State::PI,
14886 },
14887 Municipio {
14888 ibge_code: 2200400,
14889 name: "Altos",
14890 state: State::PI,
14891 },
14892 Municipio {
14893 ibge_code: 2200459,
14894 name: "Alvorada do Gurguéia",
14895 state: State::PI,
14896 },
14897 Municipio {
14898 ibge_code: 2200509,
14899 name: "Amarante",
14900 state: State::PI,
14901 },
14902 Municipio {
14903 ibge_code: 2200608,
14904 name: "Angical do Piauí",
14905 state: State::PI,
14906 },
14907 Municipio {
14908 ibge_code: 2200806,
14909 name: "Antônio Almeida",
14910 state: State::PI,
14911 },
14912 Municipio {
14913 ibge_code: 2200707,
14914 name: "Anísio de Abreu",
14915 state: State::PI,
14916 },
14917 Municipio {
14918 ibge_code: 2200905,
14919 name: "Aroazes",
14920 state: State::PI,
14921 },
14922 Municipio {
14923 ibge_code: 2200954,
14924 name: "Aroeiras do Itaim",
14925 state: State::PI,
14926 },
14927 Municipio {
14928 ibge_code: 2201002,
14929 name: "Arraial",
14930 state: State::PI,
14931 },
14932 Municipio {
14933 ibge_code: 2201051,
14934 name: "Assunção do Piauí",
14935 state: State::PI,
14936 },
14937 Municipio {
14938 ibge_code: 2201101,
14939 name: "Avelino Lopes",
14940 state: State::PI,
14941 },
14942 Municipio {
14943 ibge_code: 2201150,
14944 name: "Baixa Grande do Ribeiro",
14945 state: State::PI,
14946 },
14947 Municipio {
14948 ibge_code: 2201176,
14949 name: "Barra D'Alcântara",
14950 state: State::PI,
14951 },
14952 Municipio {
14953 ibge_code: 2201200,
14954 name: "Barras",
14955 state: State::PI,
14956 },
14957 Municipio {
14958 ibge_code: 2201309,
14959 name: "Barreiras do Piauí",
14960 state: State::PI,
14961 },
14962 Municipio {
14963 ibge_code: 2201408,
14964 name: "Barro Duro",
14965 state: State::PI,
14966 },
14967 Municipio {
14968 ibge_code: 2201507,
14969 name: "Batalha",
14970 state: State::PI,
14971 },
14972 Municipio {
14973 ibge_code: 2201556,
14974 name: "Bela Vista do Piauí",
14975 state: State::PI,
14976 },
14977 Municipio {
14978 ibge_code: 2201572,
14979 name: "Belém do Piauí",
14980 state: State::PI,
14981 },
14982 Municipio {
14983 ibge_code: 2201606,
14984 name: "Beneditinos",
14985 state: State::PI,
14986 },
14987 Municipio {
14988 ibge_code: 2201705,
14989 name: "Bertolínia",
14990 state: State::PI,
14991 },
14992 Municipio {
14993 ibge_code: 2201739,
14994 name: "Betânia do Piauí",
14995 state: State::PI,
14996 },
14997 Municipio {
14998 ibge_code: 2201770,
14999 name: "Boa Hora",
15000 state: State::PI,
15001 },
15002 Municipio {
15003 ibge_code: 2201804,
15004 name: "Bocaina",
15005 state: State::PI,
15006 },
15007 Municipio {
15008 ibge_code: 2201903,
15009 name: "Bom Jesus",
15010 state: State::PI,
15011 },
15012 Municipio {
15013 ibge_code: 2201919,
15014 name: "Bom Princípio do Piauí",
15015 state: State::PI,
15016 },
15017 Municipio {
15018 ibge_code: 2201929,
15019 name: "Bonfim do Piauí",
15020 state: State::PI,
15021 },
15022 Municipio {
15023 ibge_code: 2201945,
15024 name: "Boqueirão do Piauí",
15025 state: State::PI,
15026 },
15027 Municipio {
15028 ibge_code: 2201960,
15029 name: "Brasileira",
15030 state: State::PI,
15031 },
15032 Municipio {
15033 ibge_code: 2201988,
15034 name: "Brejo do Piauí",
15035 state: State::PI,
15036 },
15037 Municipio {
15038 ibge_code: 2202000,
15039 name: "Buriti dos Lopes",
15040 state: State::PI,
15041 },
15042 Municipio {
15043 ibge_code: 2202026,
15044 name: "Buriti dos Montes",
15045 state: State::PI,
15046 },
15047 Municipio {
15048 ibge_code: 2202059,
15049 name: "Cabeceiras do Piauí",
15050 state: State::PI,
15051 },
15052 Municipio {
15053 ibge_code: 2202075,
15054 name: "Cajazeiras do Piauí",
15055 state: State::PI,
15056 },
15057 Municipio {
15058 ibge_code: 2202083,
15059 name: "Cajueiro da Praia",
15060 state: State::PI,
15061 },
15062 Municipio {
15063 ibge_code: 2202091,
15064 name: "Caldeirão Grande do Piauí",
15065 state: State::PI,
15066 },
15067 Municipio {
15068 ibge_code: 2202109,
15069 name: "Campinas do Piauí",
15070 state: State::PI,
15071 },
15072 Municipio {
15073 ibge_code: 2202117,
15074 name: "Campo Alegre do Fidalgo",
15075 state: State::PI,
15076 },
15077 Municipio {
15078 ibge_code: 2202133,
15079 name: "Campo Grande do Piauí",
15080 state: State::PI,
15081 },
15082 Municipio {
15083 ibge_code: 2202174,
15084 name: "Campo Largo do Piauí",
15085 state: State::PI,
15086 },
15087 Municipio {
15088 ibge_code: 2202208,
15089 name: "Campo Maior",
15090 state: State::PI,
15091 },
15092 Municipio {
15093 ibge_code: 2202251,
15094 name: "Canavieira",
15095 state: State::PI,
15096 },
15097 Municipio {
15098 ibge_code: 2202307,
15099 name: "Canto do Buriti",
15100 state: State::PI,
15101 },
15102 Municipio {
15103 ibge_code: 2202455,
15104 name: "Capitão Gervásio Oliveira",
15105 state: State::PI,
15106 },
15107 Municipio {
15108 ibge_code: 2202406,
15109 name: "Capitão de Campos",
15110 state: State::PI,
15111 },
15112 Municipio {
15113 ibge_code: 2202505,
15114 name: "Caracol",
15115 state: State::PI,
15116 },
15117 Municipio {
15118 ibge_code: 2202539,
15119 name: "Caraúbas do Piauí",
15120 state: State::PI,
15121 },
15122 Municipio {
15123 ibge_code: 2202554,
15124 name: "Caridade do Piauí",
15125 state: State::PI,
15126 },
15127 Municipio {
15128 ibge_code: 2202604,
15129 name: "Castelo do Piauí",
15130 state: State::PI,
15131 },
15132 Municipio {
15133 ibge_code: 2202653,
15134 name: "Caxingó",
15135 state: State::PI,
15136 },
15137 Municipio {
15138 ibge_code: 2202703,
15139 name: "Cocal",
15140 state: State::PI,
15141 },
15142 Municipio {
15143 ibge_code: 2202711,
15144 name: "Cocal de Telha",
15145 state: State::PI,
15146 },
15147 Municipio {
15148 ibge_code: 2202729,
15149 name: "Cocal dos Alves",
15150 state: State::PI,
15151 },
15152 Municipio {
15153 ibge_code: 2202737,
15154 name: "Coivaras",
15155 state: State::PI,
15156 },
15157 Municipio {
15158 ibge_code: 2202752,
15159 name: "Colônia do Gurguéia",
15160 state: State::PI,
15161 },
15162 Municipio {
15163 ibge_code: 2202778,
15164 name: "Colônia do Piauí",
15165 state: State::PI,
15166 },
15167 Municipio {
15168 ibge_code: 2202802,
15169 name: "Conceição do Canindé",
15170 state: State::PI,
15171 },
15172 Municipio {
15173 ibge_code: 2202851,
15174 name: "Coronel José Dias",
15175 state: State::PI,
15176 },
15177 Municipio {
15178 ibge_code: 2202901,
15179 name: "Corrente",
15180 state: State::PI,
15181 },
15182 Municipio {
15183 ibge_code: 2203008,
15184 name: "Cristalândia do Piauí",
15185 state: State::PI,
15186 },
15187 Municipio {
15188 ibge_code: 2203107,
15189 name: "Cristino Castro",
15190 state: State::PI,
15191 },
15192 Municipio {
15193 ibge_code: 2203206,
15194 name: "Curimatá",
15195 state: State::PI,
15196 },
15197 Municipio {
15198 ibge_code: 2203230,
15199 name: "Currais",
15200 state: State::PI,
15201 },
15202 Municipio {
15203 ibge_code: 2203271,
15204 name: "Curral Novo do Piauí",
15205 state: State::PI,
15206 },
15207 Municipio {
15208 ibge_code: 2203255,
15209 name: "Curralinhos",
15210 state: State::PI,
15211 },
15212 Municipio {
15213 ibge_code: 2203305,
15214 name: "Demerval Lobão",
15215 state: State::PI,
15216 },
15217 Municipio {
15218 ibge_code: 2203354,
15219 name: "Dirceu Arcoverde",
15220 state: State::PI,
15221 },
15222 Municipio {
15223 ibge_code: 2203404,
15224 name: "Dom Expedito Lopes",
15225 state: State::PI,
15226 },
15227 Municipio {
15228 ibge_code: 2203453,
15229 name: "Dom Inocêncio",
15230 state: State::PI,
15231 },
15232 Municipio {
15233 ibge_code: 2203420,
15234 name: "Domingos Mourão",
15235 state: State::PI,
15236 },
15237 Municipio {
15238 ibge_code: 2203503,
15239 name: "Elesbão Veloso",
15240 state: State::PI,
15241 },
15242 Municipio {
15243 ibge_code: 2203602,
15244 name: "Eliseu Martins",
15245 state: State::PI,
15246 },
15247 Municipio {
15248 ibge_code: 2203701,
15249 name: "Esperantina",
15250 state: State::PI,
15251 },
15252 Municipio {
15253 ibge_code: 2203750,
15254 name: "Fartura do Piauí",
15255 state: State::PI,
15256 },
15257 Municipio {
15258 ibge_code: 2203800,
15259 name: "Flores do Piauí",
15260 state: State::PI,
15261 },
15262 Municipio {
15263 ibge_code: 2203859,
15264 name: "Floresta do Piauí",
15265 state: State::PI,
15266 },
15267 Municipio {
15268 ibge_code: 2203909,
15269 name: "Floriano",
15270 state: State::PI,
15271 },
15272 Municipio {
15273 ibge_code: 2204006,
15274 name: "Francinópolis",
15275 state: State::PI,
15276 },
15277 Municipio {
15278 ibge_code: 2204105,
15279 name: "Francisco Ayres",
15280 state: State::PI,
15281 },
15282 Municipio {
15283 ibge_code: 2204154,
15284 name: "Francisco Macedo",
15285 state: State::PI,
15286 },
15287 Municipio {
15288 ibge_code: 2204204,
15289 name: "Francisco Santos",
15290 state: State::PI,
15291 },
15292 Municipio {
15293 ibge_code: 2204303,
15294 name: "Fronteiras",
15295 state: State::PI,
15296 },
15297 Municipio {
15298 ibge_code: 2204352,
15299 name: "Geminiano",
15300 state: State::PI,
15301 },
15302 Municipio {
15303 ibge_code: 2204402,
15304 name: "Gilbués",
15305 state: State::PI,
15306 },
15307 Municipio {
15308 ibge_code: 2204501,
15309 name: "Guadalupe",
15310 state: State::PI,
15311 },
15312 Municipio {
15313 ibge_code: 2204550,
15314 name: "Guaribas",
15315 state: State::PI,
15316 },
15317 Municipio {
15318 ibge_code: 2204600,
15319 name: "Hugo Napoleão",
15320 state: State::PI,
15321 },
15322 Municipio {
15323 ibge_code: 2204659,
15324 name: "Ilha Grande",
15325 state: State::PI,
15326 },
15327 Municipio {
15328 ibge_code: 2204709,
15329 name: "Inhuma",
15330 state: State::PI,
15331 },
15332 Municipio {
15333 ibge_code: 2204808,
15334 name: "Ipiranga do Piauí",
15335 state: State::PI,
15336 },
15337 Municipio {
15338 ibge_code: 2204907,
15339 name: "Isaías Coelho",
15340 state: State::PI,
15341 },
15342 Municipio {
15343 ibge_code: 2205003,
15344 name: "Itainópolis",
15345 state: State::PI,
15346 },
15347 Municipio {
15348 ibge_code: 2205102,
15349 name: "Itaueira",
15350 state: State::PI,
15351 },
15352 Municipio {
15353 ibge_code: 2205151,
15354 name: "Jacobina do Piauí",
15355 state: State::PI,
15356 },
15357 Municipio {
15358 ibge_code: 2205201,
15359 name: "Jaicós",
15360 state: State::PI,
15361 },
15362 Municipio {
15363 ibge_code: 2205250,
15364 name: "Jardim do Mulato",
15365 state: State::PI,
15366 },
15367 Municipio {
15368 ibge_code: 2205276,
15369 name: "Jatobá do Piauí",
15370 state: State::PI,
15371 },
15372 Municipio {
15373 ibge_code: 2205300,
15374 name: "Jerumenha",
15375 state: State::PI,
15376 },
15377 Municipio {
15378 ibge_code: 2205409,
15379 name: "Joaquim Pires",
15380 state: State::PI,
15381 },
15382 Municipio {
15383 ibge_code: 2205458,
15384 name: "Joca Marques",
15385 state: State::PI,
15386 },
15387 Municipio {
15388 ibge_code: 2205508,
15389 name: "José de Freitas",
15390 state: State::PI,
15391 },
15392 Municipio {
15393 ibge_code: 2205359,
15394 name: "João Costa",
15395 state: State::PI,
15396 },
15397 Municipio {
15398 ibge_code: 2205516,
15399 name: "Juazeiro do Piauí",
15400 state: State::PI,
15401 },
15402 Municipio {
15403 ibge_code: 2205532,
15404 name: "Jurema",
15405 state: State::PI,
15406 },
15407 Municipio {
15408 ibge_code: 2205524,
15409 name: "Júlio Borges",
15410 state: State::PI,
15411 },
15412 Municipio {
15413 ibge_code: 2205557,
15414 name: "Lagoa Alegre",
15415 state: State::PI,
15416 },
15417 Municipio {
15418 ibge_code: 2205573,
15419 name: "Lagoa de São Francisco",
15420 state: State::PI,
15421 },
15422 Municipio {
15423 ibge_code: 2205565,
15424 name: "Lagoa do Barro do Piauí",
15425 state: State::PI,
15426 },
15427 Municipio {
15428 ibge_code: 2205581,
15429 name: "Lagoa do Piauí",
15430 state: State::PI,
15431 },
15432 Municipio {
15433 ibge_code: 2205599,
15434 name: "Lagoa do Sítio",
15435 state: State::PI,
15436 },
15437 Municipio {
15438 ibge_code: 2205540,
15439 name: "Lagoinha do Piauí",
15440 state: State::PI,
15441 },
15442 Municipio {
15443 ibge_code: 2205607,
15444 name: "Landri Sales",
15445 state: State::PI,
15446 },
15447 Municipio {
15448 ibge_code: 2205805,
15449 name: "Luzilândia",
15450 state: State::PI,
15451 },
15452 Municipio {
15453 ibge_code: 2205706,
15454 name: "Luís Correia",
15455 state: State::PI,
15456 },
15457 Municipio {
15458 ibge_code: 2205854,
15459 name: "Madeiro",
15460 state: State::PI,
15461 },
15462 Municipio {
15463 ibge_code: 2205904,
15464 name: "Manoel Emídio",
15465 state: State::PI,
15466 },
15467 Municipio {
15468 ibge_code: 2205953,
15469 name: "Marcolândia",
15470 state: State::PI,
15471 },
15472 Municipio {
15473 ibge_code: 2206001,
15474 name: "Marcos Parente",
15475 state: State::PI,
15476 },
15477 Municipio {
15478 ibge_code: 2206050,
15479 name: "Massapê do Piauí",
15480 state: State::PI,
15481 },
15482 Municipio {
15483 ibge_code: 2206100,
15484 name: "Matias Olímpio",
15485 state: State::PI,
15486 },
15487 Municipio {
15488 ibge_code: 2206209,
15489 name: "Miguel Alves",
15490 state: State::PI,
15491 },
15492 Municipio {
15493 ibge_code: 2206308,
15494 name: "Miguel Leão",
15495 state: State::PI,
15496 },
15497 Municipio {
15498 ibge_code: 2206357,
15499 name: "Milton Brandão",
15500 state: State::PI,
15501 },
15502 Municipio {
15503 ibge_code: 2206407,
15504 name: "Monsenhor Gil",
15505 state: State::PI,
15506 },
15507 Municipio {
15508 ibge_code: 2206506,
15509 name: "Monsenhor Hipólito",
15510 state: State::PI,
15511 },
15512 Municipio {
15513 ibge_code: 2206605,
15514 name: "Monte Alegre do Piauí",
15515 state: State::PI,
15516 },
15517 Municipio {
15518 ibge_code: 2206654,
15519 name: "Morro Cabeça no Tempo",
15520 state: State::PI,
15521 },
15522 Municipio {
15523 ibge_code: 2206670,
15524 name: "Morro do Chapéu do Piauí",
15525 state: State::PI,
15526 },
15527 Municipio {
15528 ibge_code: 2206696,
15529 name: "Murici dos Portelas",
15530 state: State::PI,
15531 },
15532 Municipio {
15533 ibge_code: 2206704,
15534 name: "Nazaré do Piauí",
15535 state: State::PI,
15536 },
15537 Municipio {
15538 ibge_code: 2206720,
15539 name: "Nazária",
15540 state: State::PI,
15541 },
15542 Municipio {
15543 ibge_code: 2206753,
15544 name: "Nossa Senhora de Nazaré",
15545 state: State::PI,
15546 },
15547 Municipio {
15548 ibge_code: 2206803,
15549 name: "Nossa Senhora dos Remédios",
15550 state: State::PI,
15551 },
15552 Municipio {
15553 ibge_code: 2207959,
15554 name: "Nova Santa Rita",
15555 state: State::PI,
15556 },
15557 Municipio {
15558 ibge_code: 2206902,
15559 name: "Novo Oriente do Piauí",
15560 state: State::PI,
15561 },
15562 Municipio {
15563 ibge_code: 2206951,
15564 name: "Novo Santo Antônio",
15565 state: State::PI,
15566 },
15567 Municipio {
15568 ibge_code: 2207009,
15569 name: "Oeiras",
15570 state: State::PI,
15571 },
15572 Municipio {
15573 ibge_code: 2207108,
15574 name: "Olho D'Água do Piauí",
15575 state: State::PI,
15576 },
15577 Municipio {
15578 ibge_code: 2207207,
15579 name: "Padre Marcos",
15580 state: State::PI,
15581 },
15582 Municipio {
15583 ibge_code: 2207306,
15584 name: "Paes Landim",
15585 state: State::PI,
15586 },
15587 Municipio {
15588 ibge_code: 2207355,
15589 name: "Pajeú do Piauí",
15590 state: State::PI,
15591 },
15592 Municipio {
15593 ibge_code: 2207405,
15594 name: "Palmeira do Piauí",
15595 state: State::PI,
15596 },
15597 Municipio {
15598 ibge_code: 2207504,
15599 name: "Palmeirais",
15600 state: State::PI,
15601 },
15602 Municipio {
15603 ibge_code: 2207553,
15604 name: "Paquetá",
15605 state: State::PI,
15606 },
15607 Municipio {
15608 ibge_code: 2207603,
15609 name: "Parnaguá",
15610 state: State::PI,
15611 },
15612 Municipio {
15613 ibge_code: 2207702,
15614 name: "Parnaíba",
15615 state: State::PI,
15616 },
15617 Municipio {
15618 ibge_code: 2207751,
15619 name: "Passagem Franca do Piauí",
15620 state: State::PI,
15621 },
15622 Municipio {
15623 ibge_code: 2207777,
15624 name: "Patos do Piauí",
15625 state: State::PI,
15626 },
15627 Municipio {
15628 ibge_code: 2207793,
15629 name: "Pau D'Arco do Piauí",
15630 state: State::PI,
15631 },
15632 Municipio {
15633 ibge_code: 2207801,
15634 name: "Paulistana",
15635 state: State::PI,
15636 },
15637 Municipio {
15638 ibge_code: 2207850,
15639 name: "Pavussu",
15640 state: State::PI,
15641 },
15642 Municipio {
15643 ibge_code: 2207900,
15644 name: "Pedro II",
15645 state: State::PI,
15646 },
15647 Municipio {
15648 ibge_code: 2207934,
15649 name: "Pedro Laurentino",
15650 state: State::PI,
15651 },
15652 Municipio {
15653 ibge_code: 2208007,
15654 name: "Picos",
15655 state: State::PI,
15656 },
15657 Municipio {
15658 ibge_code: 2208106,
15659 name: "Pimenteiras",
15660 state: State::PI,
15661 },
15662 Municipio {
15663 ibge_code: 2208205,
15664 name: "Pio IX",
15665 state: State::PI,
15666 },
15667 Municipio {
15668 ibge_code: 2208304,
15669 name: "Piracuruca",
15670 state: State::PI,
15671 },
15672 Municipio {
15673 ibge_code: 2208403,
15674 name: "Piripiri",
15675 state: State::PI,
15676 },
15677 Municipio {
15678 ibge_code: 2208502,
15679 name: "Porto",
15680 state: State::PI,
15681 },
15682 Municipio {
15683 ibge_code: 2208551,
15684 name: "Porto Alegre do Piauí",
15685 state: State::PI,
15686 },
15687 Municipio {
15688 ibge_code: 2208601,
15689 name: "Prata do Piauí",
15690 state: State::PI,
15691 },
15692 Municipio {
15693 ibge_code: 2208650,
15694 name: "Queimada Nova",
15695 state: State::PI,
15696 },
15697 Municipio {
15698 ibge_code: 2208700,
15699 name: "Redenção do Gurguéia",
15700 state: State::PI,
15701 },
15702 Municipio {
15703 ibge_code: 2208809,
15704 name: "Regeneração",
15705 state: State::PI,
15706 },
15707 Municipio {
15708 ibge_code: 2208858,
15709 name: "Riacho Frio",
15710 state: State::PI,
15711 },
15712 Municipio {
15713 ibge_code: 2208874,
15714 name: "Ribeira do Piauí",
15715 state: State::PI,
15716 },
15717 Municipio {
15718 ibge_code: 2208908,
15719 name: "Ribeiro Gonçalves",
15720 state: State::PI,
15721 },
15722 Municipio {
15723 ibge_code: 2209005,
15724 name: "Rio Grande do Piauí",
15725 state: State::PI,
15726 },
15727 Municipio {
15728 ibge_code: 2209104,
15729 name: "Santa Cruz do Piauí",
15730 state: State::PI,
15731 },
15732 Municipio {
15733 ibge_code: 2209153,
15734 name: "Santa Cruz dos Milagres",
15735 state: State::PI,
15736 },
15737 Municipio {
15738 ibge_code: 2209203,
15739 name: "Santa Filomena",
15740 state: State::PI,
15741 },
15742 Municipio {
15743 ibge_code: 2209302,
15744 name: "Santa Luz",
15745 state: State::PI,
15746 },
15747 Municipio {
15748 ibge_code: 2209377,
15749 name: "Santa Rosa do Piauí",
15750 state: State::PI,
15751 },
15752 Municipio {
15753 ibge_code: 2209351,
15754 name: "Santana do Piauí",
15755 state: State::PI,
15756 },
15757 Municipio {
15758 ibge_code: 2209401,
15759 name: "Santo Antônio de Lisboa",
15760 state: State::PI,
15761 },
15762 Municipio {
15763 ibge_code: 2209450,
15764 name: "Santo Antônio dos Milagres",
15765 state: State::PI,
15766 },
15767 Municipio {
15768 ibge_code: 2209500,
15769 name: "Santo Inácio do Piauí",
15770 state: State::PI,
15771 },
15772 Municipio {
15773 ibge_code: 2210623,
15774 name: "Sebastião Barros",
15775 state: State::PI,
15776 },
15777 Municipio {
15778 ibge_code: 2210631,
15779 name: "Sebastião Leal",
15780 state: State::PI,
15781 },
15782 Municipio {
15783 ibge_code: 2210656,
15784 name: "Sigefredo Pacheco",
15785 state: State::PI,
15786 },
15787 Municipio {
15788 ibge_code: 2210805,
15789 name: "Simplício Mendes",
15790 state: State::PI,
15791 },
15792 Municipio {
15793 ibge_code: 2210706,
15794 name: "Simões",
15795 state: State::PI,
15796 },
15797 Municipio {
15798 ibge_code: 2210904,
15799 name: "Socorro do Piauí",
15800 state: State::PI,
15801 },
15802 Municipio {
15803 ibge_code: 2210938,
15804 name: "Sussuapara",
15805 state: State::PI,
15806 },
15807 Municipio {
15808 ibge_code: 2209559,
15809 name: "São Braz do Piauí",
15810 state: State::PI,
15811 },
15812 Municipio {
15813 ibge_code: 2209658,
15814 name: "São Francisco de Assis do Piauí",
15815 state: State::PI,
15816 },
15817 Municipio {
15818 ibge_code: 2209708,
15819 name: "São Francisco do Piauí",
15820 state: State::PI,
15821 },
15822 Municipio {
15823 ibge_code: 2209609,
15824 name: "São Félix do Piauí",
15825 state: State::PI,
15826 },
15827 Municipio {
15828 ibge_code: 2209757,
15829 name: "São Gonçalo do Gurguéia",
15830 state: State::PI,
15831 },
15832 Municipio {
15833 ibge_code: 2209807,
15834 name: "São Gonçalo do Piauí",
15835 state: State::PI,
15836 },
15837 Municipio {
15838 ibge_code: 2210052,
15839 name: "São José do Divino",
15840 state: State::PI,
15841 },
15842 Municipio {
15843 ibge_code: 2210102,
15844 name: "São José do Peixe",
15845 state: State::PI,
15846 },
15847 Municipio {
15848 ibge_code: 2210201,
15849 name: "São José do Piauí",
15850 state: State::PI,
15851 },
15852 Municipio {
15853 ibge_code: 2209856,
15854 name: "São João da Canabrava",
15855 state: State::PI,
15856 },
15857 Municipio {
15858 ibge_code: 2209872,
15859 name: "São João da Fronteira",
15860 state: State::PI,
15861 },
15862 Municipio {
15863 ibge_code: 2209906,
15864 name: "São João da Serra",
15865 state: State::PI,
15866 },
15867 Municipio {
15868 ibge_code: 2209955,
15869 name: "São João da Varjota",
15870 state: State::PI,
15871 },
15872 Municipio {
15873 ibge_code: 2209971,
15874 name: "São João do Arraial",
15875 state: State::PI,
15876 },
15877 Municipio {
15878 ibge_code: 2210003,
15879 name: "São João do Piauí",
15880 state: State::PI,
15881 },
15882 Municipio {
15883 ibge_code: 2210300,
15884 name: "São Julião",
15885 state: State::PI,
15886 },
15887 Municipio {
15888 ibge_code: 2210359,
15889 name: "São Lourenço do Piauí",
15890 state: State::PI,
15891 },
15892 Municipio {
15893 ibge_code: 2210375,
15894 name: "São Luis do Piauí",
15895 state: State::PI,
15896 },
15897 Municipio {
15898 ibge_code: 2210383,
15899 name: "São Miguel da Baixa Grande",
15900 state: State::PI,
15901 },
15902 Municipio {
15903 ibge_code: 2210391,
15904 name: "São Miguel do Fidalgo",
15905 state: State::PI,
15906 },
15907 Municipio {
15908 ibge_code: 2210409,
15909 name: "São Miguel do Tapuio",
15910 state: State::PI,
15911 },
15912 Municipio {
15913 ibge_code: 2210508,
15914 name: "São Pedro do Piauí",
15915 state: State::PI,
15916 },
15917 Municipio {
15918 ibge_code: 2210607,
15919 name: "São Raimundo Nonato",
15920 state: State::PI,
15921 },
15922 Municipio {
15923 ibge_code: 2210953,
15924 name: "Tamboril do Piauí",
15925 state: State::PI,
15926 },
15927 Municipio {
15928 ibge_code: 2210979,
15929 name: "Tanque do Piauí",
15930 state: State::PI,
15931 },
15932 Municipio {
15933 ibge_code: 2211001,
15934 name: "Teresina",
15935 state: State::PI,
15936 },
15937 Municipio {
15938 ibge_code: 2211100,
15939 name: "União",
15940 state: State::PI,
15941 },
15942 Municipio {
15943 ibge_code: 2211209,
15944 name: "Uruçuí",
15945 state: State::PI,
15946 },
15947 Municipio {
15948 ibge_code: 2211308,
15949 name: "Valença do Piauí",
15950 state: State::PI,
15951 },
15952 Municipio {
15953 ibge_code: 2211506,
15954 name: "Vera Mendes",
15955 state: State::PI,
15956 },
15957 Municipio {
15958 ibge_code: 2211605,
15959 name: "Vila Nova do Piauí",
15960 state: State::PI,
15961 },
15962 Municipio {
15963 ibge_code: 2211357,
15964 name: "Várzea Branca",
15965 state: State::PI,
15966 },
15967 Municipio {
15968 ibge_code: 2211407,
15969 name: "Várzea Grande",
15970 state: State::PI,
15971 },
15972 Municipio {
15973 ibge_code: 2211704,
15974 name: "Wall Ferraz",
15975 state: State::PI,
15976 },
15977 Municipio {
15978 ibge_code: 2200202,
15979 name: "Água Branca",
15980 state: State::PI,
15981 },
15982 Municipio {
15983 ibge_code: 4100103,
15984 name: "Abatiá",
15985 state: State::PR,
15986 },
15987 Municipio {
15988 ibge_code: 4100202,
15989 name: "Adrianópolis",
15990 state: State::PR,
15991 },
15992 Municipio {
15993 ibge_code: 4100301,
15994 name: "Agudos do Sul",
15995 state: State::PR,
15996 },
15997 Municipio {
15998 ibge_code: 4100400,
15999 name: "Almirante Tamandaré",
16000 state: State::PR,
16001 },
16002 Municipio {
16003 ibge_code: 4100459,
16004 name: "Altamira do Paraná",
16005 state: State::PR,
16006 },
16007 Municipio {
16008 ibge_code: 4100608,
16009 name: "Alto Paraná",
16010 state: State::PR,
16011 },
16012 Municipio {
16013 ibge_code: 4128625,
16014 name: "Alto Paraíso",
16015 state: State::PR,
16016 },
16017 Municipio {
16018 ibge_code: 4100707,
16019 name: "Alto Piquiri",
16020 state: State::PR,
16021 },
16022 Municipio {
16023 ibge_code: 4100509,
16024 name: "Altônia",
16025 state: State::PR,
16026 },
16027 Municipio {
16028 ibge_code: 4100806,
16029 name: "Alvorada do Sul",
16030 state: State::PR,
16031 },
16032 Municipio {
16033 ibge_code: 4100905,
16034 name: "Amaporã",
16035 state: State::PR,
16036 },
16037 Municipio {
16038 ibge_code: 4101002,
16039 name: "Ampére",
16040 state: State::PR,
16041 },
16042 Municipio {
16043 ibge_code: 4101051,
16044 name: "Anahy",
16045 state: State::PR,
16046 },
16047 Municipio {
16048 ibge_code: 4101101,
16049 name: "Andirá",
16050 state: State::PR,
16051 },
16052 Municipio {
16053 ibge_code: 4101200,
16054 name: "Antonina",
16055 state: State::PR,
16056 },
16057 Municipio {
16058 ibge_code: 4101309,
16059 name: "Antônio Olinto",
16060 state: State::PR,
16061 },
16062 Municipio {
16063 ibge_code: 4101408,
16064 name: "Apucarana",
16065 state: State::PR,
16066 },
16067 Municipio {
16068 ibge_code: 4101507,
16069 name: "Arapongas",
16070 state: State::PR,
16071 },
16072 Municipio {
16073 ibge_code: 4101606,
16074 name: "Arapoti",
16075 state: State::PR,
16076 },
16077 Municipio {
16078 ibge_code: 4101655,
16079 name: "Arapuã",
16080 state: State::PR,
16081 },
16082 Municipio {
16083 ibge_code: 4101705,
16084 name: "Araruna",
16085 state: State::PR,
16086 },
16087 Municipio {
16088 ibge_code: 4101804,
16089 name: "Araucária",
16090 state: State::PR,
16091 },
16092 Municipio {
16093 ibge_code: 4101853,
16094 name: "Ariranha do Ivaí",
16095 state: State::PR,
16096 },
16097 Municipio {
16098 ibge_code: 4101903,
16099 name: "Assaí",
16100 state: State::PR,
16101 },
16102 Municipio {
16103 ibge_code: 4102000,
16104 name: "Assis Chateaubriand",
16105 state: State::PR,
16106 },
16107 Municipio {
16108 ibge_code: 4102109,
16109 name: "Astorga",
16110 state: State::PR,
16111 },
16112 Municipio {
16113 ibge_code: 4102208,
16114 name: "Atalaia",
16115 state: State::PR,
16116 },
16117 Municipio {
16118 ibge_code: 4102307,
16119 name: "Balsa Nova",
16120 state: State::PR,
16121 },
16122 Municipio {
16123 ibge_code: 4102406,
16124 name: "Bandeirantes",
16125 state: State::PR,
16126 },
16127 Municipio {
16128 ibge_code: 4102505,
16129 name: "Barbosa Ferraz",
16130 state: State::PR,
16131 },
16132 Municipio {
16133 ibge_code: 4102703,
16134 name: "Barra do Jacaré",
16135 state: State::PR,
16136 },
16137 Municipio {
16138 ibge_code: 4102604,
16139 name: "Barracão",
16140 state: State::PR,
16141 },
16142 Municipio {
16143 ibge_code: 4102752,
16144 name: "Bela Vista da Caroba",
16145 state: State::PR,
16146 },
16147 Municipio {
16148 ibge_code: 4102802,
16149 name: "Bela Vista do Paraíso",
16150 state: State::PR,
16151 },
16152 Municipio {
16153 ibge_code: 4102901,
16154 name: "Bituruna",
16155 state: State::PR,
16156 },
16157 Municipio {
16158 ibge_code: 4103008,
16159 name: "Boa Esperança",
16160 state: State::PR,
16161 },
16162 Municipio {
16163 ibge_code: 4103024,
16164 name: "Boa Esperança do Iguaçu",
16165 state: State::PR,
16166 },
16167 Municipio {
16168 ibge_code: 4103040,
16169 name: "Boa Ventura de São Roque",
16170 state: State::PR,
16171 },
16172 Municipio {
16173 ibge_code: 4103057,
16174 name: "Boa Vista da Aparecida",
16175 state: State::PR,
16176 },
16177 Municipio {
16178 ibge_code: 4103107,
16179 name: "Bocaiúva do Sul",
16180 state: State::PR,
16181 },
16182 Municipio {
16183 ibge_code: 4103156,
16184 name: "Bom Jesus do Sul",
16185 state: State::PR,
16186 },
16187 Municipio {
16188 ibge_code: 4103206,
16189 name: "Bom Sucesso",
16190 state: State::PR,
16191 },
16192 Municipio {
16193 ibge_code: 4103222,
16194 name: "Bom Sucesso do Sul",
16195 state: State::PR,
16196 },
16197 Municipio {
16198 ibge_code: 4103305,
16199 name: "Borrazópolis",
16200 state: State::PR,
16201 },
16202 Municipio {
16203 ibge_code: 4103354,
16204 name: "Braganey",
16205 state: State::PR,
16206 },
16207 Municipio {
16208 ibge_code: 4103370,
16209 name: "Brasilândia do Sul",
16210 state: State::PR,
16211 },
16212 Municipio {
16213 ibge_code: 4103404,
16214 name: "Cafeara",
16215 state: State::PR,
16216 },
16217 Municipio {
16218 ibge_code: 4103453,
16219 name: "Cafelândia",
16220 state: State::PR,
16221 },
16222 Municipio {
16223 ibge_code: 4103479,
16224 name: "Cafezal do Sul",
16225 state: State::PR,
16226 },
16227 Municipio {
16228 ibge_code: 4103503,
16229 name: "Califórnia",
16230 state: State::PR,
16231 },
16232 Municipio {
16233 ibge_code: 4103602,
16234 name: "Cambará",
16235 state: State::PR,
16236 },
16237 Municipio {
16238 ibge_code: 4103800,
16239 name: "Cambira",
16240 state: State::PR,
16241 },
16242 Municipio {
16243 ibge_code: 4103701,
16244 name: "Cambé",
16245 state: State::PR,
16246 },
16247 Municipio {
16248 ibge_code: 4104006,
16249 name: "Campina Grande do Sul",
16250 state: State::PR,
16251 },
16252 Municipio {
16253 ibge_code: 4103909,
16254 name: "Campina da Lagoa",
16255 state: State::PR,
16256 },
16257 Municipio {
16258 ibge_code: 4103958,
16259 name: "Campina do Simão",
16260 state: State::PR,
16261 },
16262 Municipio {
16263 ibge_code: 4104055,
16264 name: "Campo Bonito",
16265 state: State::PR,
16266 },
16267 Municipio {
16268 ibge_code: 4104204,
16269 name: "Campo Largo",
16270 state: State::PR,
16271 },
16272 Municipio {
16273 ibge_code: 4104253,
16274 name: "Campo Magro",
16275 state: State::PR,
16276 },
16277 Municipio {
16278 ibge_code: 4104303,
16279 name: "Campo Mourão",
16280 state: State::PR,
16281 },
16282 Municipio {
16283 ibge_code: 4104105,
16284 name: "Campo do Tenente",
16285 state: State::PR,
16286 },
16287 Municipio {
16288 ibge_code: 4104428,
16289 name: "Candói",
16290 state: State::PR,
16291 },
16292 Municipio {
16293 ibge_code: 4104451,
16294 name: "Cantagalo",
16295 state: State::PR,
16296 },
16297 Municipio {
16298 ibge_code: 4104501,
16299 name: "Capanema",
16300 state: State::PR,
16301 },
16302 Municipio {
16303 ibge_code: 4104600,
16304 name: "Capitão Leônidas Marques",
16305 state: State::PR,
16306 },
16307 Municipio {
16308 ibge_code: 4104659,
16309 name: "Carambeí",
16310 state: State::PR,
16311 },
16312 Municipio {
16313 ibge_code: 4104709,
16314 name: "Carlópolis",
16315 state: State::PR,
16316 },
16317 Municipio {
16318 ibge_code: 4104808,
16319 name: "Cascavel",
16320 state: State::PR,
16321 },
16322 Municipio {
16323 ibge_code: 4104907,
16324 name: "Castro",
16325 state: State::PR,
16326 },
16327 Municipio {
16328 ibge_code: 4105003,
16329 name: "Catanduvas",
16330 state: State::PR,
16331 },
16332 Municipio {
16333 ibge_code: 4105102,
16334 name: "Centenário do Sul",
16335 state: State::PR,
16336 },
16337 Municipio {
16338 ibge_code: 4105201,
16339 name: "Cerro Azul",
16340 state: State::PR,
16341 },
16342 Municipio {
16343 ibge_code: 4105409,
16344 name: "Chopinzinho",
16345 state: State::PR,
16346 },
16347 Municipio {
16348 ibge_code: 4105508,
16349 name: "Cianorte",
16350 state: State::PR,
16351 },
16352 Municipio {
16353 ibge_code: 4105607,
16354 name: "Cidade Gaúcha",
16355 state: State::PR,
16356 },
16357 Municipio {
16358 ibge_code: 4105706,
16359 name: "Clevelândia",
16360 state: State::PR,
16361 },
16362 Municipio {
16363 ibge_code: 4105805,
16364 name: "Colombo",
16365 state: State::PR,
16366 },
16367 Municipio {
16368 ibge_code: 4105904,
16369 name: "Colorado",
16370 state: State::PR,
16371 },
16372 Municipio {
16373 ibge_code: 4106001,
16374 name: "Congonhinhas",
16375 state: State::PR,
16376 },
16377 Municipio {
16378 ibge_code: 4106100,
16379 name: "Conselheiro Mairinck",
16380 state: State::PR,
16381 },
16382 Municipio {
16383 ibge_code: 4106209,
16384 name: "Contenda",
16385 state: State::PR,
16386 },
16387 Municipio {
16388 ibge_code: 4106308,
16389 name: "Corbélia",
16390 state: State::PR,
16391 },
16392 Municipio {
16393 ibge_code: 4106407,
16394 name: "Cornélio Procópio",
16395 state: State::PR,
16396 },
16397 Municipio {
16398 ibge_code: 4106456,
16399 name: "Coronel Domingos Soares",
16400 state: State::PR,
16401 },
16402 Municipio {
16403 ibge_code: 4106506,
16404 name: "Coronel Vivida",
16405 state: State::PR,
16406 },
16407 Municipio {
16408 ibge_code: 4106555,
16409 name: "Corumbataí do Sul",
16410 state: State::PR,
16411 },
16412 Municipio {
16413 ibge_code: 4106803,
16414 name: "Cruz Machado",
16415 state: State::PR,
16416 },
16417 Municipio {
16418 ibge_code: 4106571,
16419 name: "Cruzeiro do Iguaçu",
16420 state: State::PR,
16421 },
16422 Municipio {
16423 ibge_code: 4106605,
16424 name: "Cruzeiro do Oeste",
16425 state: State::PR,
16426 },
16427 Municipio {
16428 ibge_code: 4106704,
16429 name: "Cruzeiro do Sul",
16430 state: State::PR,
16431 },
16432 Municipio {
16433 ibge_code: 4106852,
16434 name: "Cruzmaltina",
16435 state: State::PR,
16436 },
16437 Municipio {
16438 ibge_code: 4106902,
16439 name: "Curitiba",
16440 state: State::PR,
16441 },
16442 Municipio {
16443 ibge_code: 4107009,
16444 name: "Curiúva",
16445 state: State::PR,
16446 },
16447 Municipio {
16448 ibge_code: 4104402,
16449 name: "Cândido de Abreu",
16450 state: State::PR,
16451 },
16452 Municipio {
16453 ibge_code: 4105300,
16454 name: "Céu Azul",
16455 state: State::PR,
16456 },
16457 Municipio {
16458 ibge_code: 4107157,
16459 name: "Diamante D'Oeste",
16460 state: State::PR,
16461 },
16462 Municipio {
16463 ibge_code: 4107108,
16464 name: "Diamante do Norte",
16465 state: State::PR,
16466 },
16467 Municipio {
16468 ibge_code: 4107124,
16469 name: "Diamante do Sul",
16470 state: State::PR,
16471 },
16472 Municipio {
16473 ibge_code: 4107207,
16474 name: "Dois Vizinhos",
16475 state: State::PR,
16476 },
16477 Municipio {
16478 ibge_code: 4107256,
16479 name: "Douradina",
16480 state: State::PR,
16481 },
16482 Municipio {
16483 ibge_code: 4107306,
16484 name: "Doutor Camargo",
16485 state: State::PR,
16486 },
16487 Municipio {
16488 ibge_code: 4128633,
16489 name: "Doutor Ulysses",
16490 state: State::PR,
16491 },
16492 Municipio {
16493 ibge_code: 4107504,
16494 name: "Engenheiro Beltrão",
16495 state: State::PR,
16496 },
16497 Municipio {
16498 ibge_code: 4107538,
16499 name: "Entre Rios do Oeste",
16500 state: State::PR,
16501 },
16502 Municipio {
16503 ibge_code: 4107405,
16504 name: "Enéas Marques",
16505 state: State::PR,
16506 },
16507 Municipio {
16508 ibge_code: 4107520,
16509 name: "Esperança Nova",
16510 state: State::PR,
16511 },
16512 Municipio {
16513 ibge_code: 4107546,
16514 name: "Espigão Alto do Iguaçu",
16515 state: State::PR,
16516 },
16517 Municipio {
16518 ibge_code: 4107553,
16519 name: "Farol",
16520 state: State::PR,
16521 },
16522 Municipio {
16523 ibge_code: 4107603,
16524 name: "Faxinal",
16525 state: State::PR,
16526 },
16527 Municipio {
16528 ibge_code: 4107652,
16529 name: "Fazenda Rio Grande",
16530 state: State::PR,
16531 },
16532 Municipio {
16533 ibge_code: 4107736,
16534 name: "Fernandes Pinheiro",
16535 state: State::PR,
16536 },
16537 Municipio {
16538 ibge_code: 4107751,
16539 name: "Figueira",
16540 state: State::PR,
16541 },
16542 Municipio {
16543 ibge_code: 4107850,
16544 name: "Flor da Serra do Sul",
16545 state: State::PR,
16546 },
16547 Municipio {
16548 ibge_code: 4107801,
16549 name: "Floraí",
16550 state: State::PR,
16551 },
16552 Municipio {
16553 ibge_code: 4107900,
16554 name: "Floresta",
16555 state: State::PR,
16556 },
16557 Municipio {
16558 ibge_code: 4108007,
16559 name: "Florestópolis",
16560 state: State::PR,
16561 },
16562 Municipio {
16563 ibge_code: 4108106,
16564 name: "Flórida",
16565 state: State::PR,
16566 },
16567 Municipio {
16568 ibge_code: 4108205,
16569 name: "Formosa do Oeste",
16570 state: State::PR,
16571 },
16572 Municipio {
16573 ibge_code: 4108304,
16574 name: "Foz do Iguaçu",
16575 state: State::PR,
16576 },
16577 Municipio {
16578 ibge_code: 4108452,
16579 name: "Foz do Jordão",
16580 state: State::PR,
16581 },
16582 Municipio {
16583 ibge_code: 4108320,
16584 name: "Francisco Alves",
16585 state: State::PR,
16586 },
16587 Municipio {
16588 ibge_code: 4108403,
16589 name: "Francisco Beltrão",
16590 state: State::PR,
16591 },
16592 Municipio {
16593 ibge_code: 4107702,
16594 name: "Fênix",
16595 state: State::PR,
16596 },
16597 Municipio {
16598 ibge_code: 4108502,
16599 name: "General Carneiro",
16600 state: State::PR,
16601 },
16602 Municipio {
16603 ibge_code: 4108551,
16604 name: "Godoy Moreira",
16605 state: State::PR,
16606 },
16607 Municipio {
16608 ibge_code: 4108601,
16609 name: "Goioerê",
16610 state: State::PR,
16611 },
16612 Municipio {
16613 ibge_code: 4108650,
16614 name: "Goioxim",
16615 state: State::PR,
16616 },
16617 Municipio {
16618 ibge_code: 4108700,
16619 name: "Grandes Rios",
16620 state: State::PR,
16621 },
16622 Municipio {
16623 ibge_code: 4108908,
16624 name: "Guairaçá",
16625 state: State::PR,
16626 },
16627 Municipio {
16628 ibge_code: 4108957,
16629 name: "Guamiranga",
16630 state: State::PR,
16631 },
16632 Municipio {
16633 ibge_code: 4109005,
16634 name: "Guapirama",
16635 state: State::PR,
16636 },
16637 Municipio {
16638 ibge_code: 4109104,
16639 name: "Guaporema",
16640 state: State::PR,
16641 },
16642 Municipio {
16643 ibge_code: 4109203,
16644 name: "Guaraci",
16645 state: State::PR,
16646 },
16647 Municipio {
16648 ibge_code: 4109302,
16649 name: "Guaraniaçu",
16650 state: State::PR,
16651 },
16652 Municipio {
16653 ibge_code: 4109401,
16654 name: "Guarapuava",
16655 state: State::PR,
16656 },
16657 Municipio {
16658 ibge_code: 4109500,
16659 name: "Guaraqueçaba",
16660 state: State::PR,
16661 },
16662 Municipio {
16663 ibge_code: 4109609,
16664 name: "Guaratuba",
16665 state: State::PR,
16666 },
16667 Municipio {
16668 ibge_code: 4108809,
16669 name: "Guaíra",
16670 state: State::PR,
16671 },
16672 Municipio {
16673 ibge_code: 4109658,
16674 name: "Honório Serpa",
16675 state: State::PR,
16676 },
16677 Municipio {
16678 ibge_code: 4109708,
16679 name: "Ibaiti",
16680 state: State::PR,
16681 },
16682 Municipio {
16683 ibge_code: 4109757,
16684 name: "Ibema",
16685 state: State::PR,
16686 },
16687 Municipio {
16688 ibge_code: 4109807,
16689 name: "Ibiporã",
16690 state: State::PR,
16691 },
16692 Municipio {
16693 ibge_code: 4109906,
16694 name: "Icaraíma",
16695 state: State::PR,
16696 },
16697 Municipio {
16698 ibge_code: 4110003,
16699 name: "Iguaraçu",
16700 state: State::PR,
16701 },
16702 Municipio {
16703 ibge_code: 4110052,
16704 name: "Iguatu",
16705 state: State::PR,
16706 },
16707 Municipio {
16708 ibge_code: 4110078,
16709 name: "Imbaú",
16710 state: State::PR,
16711 },
16712 Municipio {
16713 ibge_code: 4110102,
16714 name: "Imbituva",
16715 state: State::PR,
16716 },
16717 Municipio {
16718 ibge_code: 4110300,
16719 name: "Inajá",
16720 state: State::PR,
16721 },
16722 Municipio {
16723 ibge_code: 4110409,
16724 name: "Indianópolis",
16725 state: State::PR,
16726 },
16727 Municipio {
16728 ibge_code: 4110201,
16729 name: "Inácio Martins",
16730 state: State::PR,
16731 },
16732 Municipio {
16733 ibge_code: 4110508,
16734 name: "Ipiranga",
16735 state: State::PR,
16736 },
16737 Municipio {
16738 ibge_code: 4110607,
16739 name: "Iporã",
16740 state: State::PR,
16741 },
16742 Municipio {
16743 ibge_code: 4110656,
16744 name: "Iracema do Oeste",
16745 state: State::PR,
16746 },
16747 Municipio {
16748 ibge_code: 4110706,
16749 name: "Irati",
16750 state: State::PR,
16751 },
16752 Municipio {
16753 ibge_code: 4110805,
16754 name: "Iretama",
16755 state: State::PR,
16756 },
16757 Municipio {
16758 ibge_code: 4110904,
16759 name: "Itaguajé",
16760 state: State::PR,
16761 },
16762 Municipio {
16763 ibge_code: 4110953,
16764 name: "Itaipulândia",
16765 state: State::PR,
16766 },
16767 Municipio {
16768 ibge_code: 4111001,
16769 name: "Itambaracá",
16770 state: State::PR,
16771 },
16772 Municipio {
16773 ibge_code: 4111100,
16774 name: "Itambé",
16775 state: State::PR,
16776 },
16777 Municipio {
16778 ibge_code: 4111209,
16779 name: "Itapejara d'Oeste",
16780 state: State::PR,
16781 },
16782 Municipio {
16783 ibge_code: 4111258,
16784 name: "Itaperuçu",
16785 state: State::PR,
16786 },
16787 Municipio {
16788 ibge_code: 4111308,
16789 name: "Itaúna do Sul",
16790 state: State::PR,
16791 },
16792 Municipio {
16793 ibge_code: 4111506,
16794 name: "Ivaiporã",
16795 state: State::PR,
16796 },
16797 Municipio {
16798 ibge_code: 4111605,
16799 name: "Ivatuba",
16800 state: State::PR,
16801 },
16802 Municipio {
16803 ibge_code: 4111555,
16804 name: "Ivaté",
16805 state: State::PR,
16806 },
16807 Municipio {
16808 ibge_code: 4111407,
16809 name: "Ivaí",
16810 state: State::PR,
16811 },
16812 Municipio {
16813 ibge_code: 4111704,
16814 name: "Jaboti",
16815 state: State::PR,
16816 },
16817 Municipio {
16818 ibge_code: 4111803,
16819 name: "Jacarezinho",
16820 state: State::PR,
16821 },
16822 Municipio {
16823 ibge_code: 4111902,
16824 name: "Jaguapitã",
16825 state: State::PR,
16826 },
16827 Municipio {
16828 ibge_code: 4112009,
16829 name: "Jaguariaíva",
16830 state: State::PR,
16831 },
16832 Municipio {
16833 ibge_code: 4112108,
16834 name: "Jandaia do Sul",
16835 state: State::PR,
16836 },
16837 Municipio {
16838 ibge_code: 4112207,
16839 name: "Janiópolis",
16840 state: State::PR,
16841 },
16842 Municipio {
16843 ibge_code: 4112306,
16844 name: "Japira",
16845 state: State::PR,
16846 },
16847 Municipio {
16848 ibge_code: 4112405,
16849 name: "Japurá",
16850 state: State::PR,
16851 },
16852 Municipio {
16853 ibge_code: 4112504,
16854 name: "Jardim Alegre",
16855 state: State::PR,
16856 },
16857 Municipio {
16858 ibge_code: 4112603,
16859 name: "Jardim Olinda",
16860 state: State::PR,
16861 },
16862 Municipio {
16863 ibge_code: 4112702,
16864 name: "Jataizinho",
16865 state: State::PR,
16866 },
16867 Municipio {
16868 ibge_code: 4112751,
16869 name: "Jesuítas",
16870 state: State::PR,
16871 },
16872 Municipio {
16873 ibge_code: 4112801,
16874 name: "Joaquim Távora",
16875 state: State::PR,
16876 },
16877 Municipio {
16878 ibge_code: 4112900,
16879 name: "Jundiaí do Sul",
16880 state: State::PR,
16881 },
16882 Municipio {
16883 ibge_code: 4112959,
16884 name: "Juranda",
16885 state: State::PR,
16886 },
16887 Municipio {
16888 ibge_code: 4113007,
16889 name: "Jussara",
16890 state: State::PR,
16891 },
16892 Municipio {
16893 ibge_code: 4113106,
16894 name: "Kaloré",
16895 state: State::PR,
16896 },
16897 Municipio {
16898 ibge_code: 4113205,
16899 name: "Lapa",
16900 state: State::PR,
16901 },
16902 Municipio {
16903 ibge_code: 4113254,
16904 name: "Laranjal",
16905 state: State::PR,
16906 },
16907 Municipio {
16908 ibge_code: 4113304,
16909 name: "Laranjeiras do Sul",
16910 state: State::PR,
16911 },
16912 Municipio {
16913 ibge_code: 4113403,
16914 name: "Leópolis",
16915 state: State::PR,
16916 },
16917 Municipio {
16918 ibge_code: 4113429,
16919 name: "Lidianópolis",
16920 state: State::PR,
16921 },
16922 Municipio {
16923 ibge_code: 4113452,
16924 name: "Lindoeste",
16925 state: State::PR,
16926 },
16927 Municipio {
16928 ibge_code: 4113502,
16929 name: "Loanda",
16930 state: State::PR,
16931 },
16932 Municipio {
16933 ibge_code: 4113601,
16934 name: "Lobato",
16935 state: State::PR,
16936 },
16937 Municipio {
16938 ibge_code: 4113700,
16939 name: "Londrina",
16940 state: State::PR,
16941 },
16942 Municipio {
16943 ibge_code: 4113734,
16944 name: "Luiziana",
16945 state: State::PR,
16946 },
16947 Municipio {
16948 ibge_code: 4113759,
16949 name: "Lunardelli",
16950 state: State::PR,
16951 },
16952 Municipio {
16953 ibge_code: 4113809,
16954 name: "Lupionópolis",
16955 state: State::PR,
16956 },
16957 Municipio {
16958 ibge_code: 4113908,
16959 name: "Mallet",
16960 state: State::PR,
16961 },
16962 Municipio {
16963 ibge_code: 4114005,
16964 name: "Mamborê",
16965 state: State::PR,
16966 },
16967 Municipio {
16968 ibge_code: 4114203,
16969 name: "Mandaguari",
16970 state: State::PR,
16971 },
16972 Municipio {
16973 ibge_code: 4114104,
16974 name: "Mandaguaçu",
16975 state: State::PR,
16976 },
16977 Municipio {
16978 ibge_code: 4114302,
16979 name: "Mandirituba",
16980 state: State::PR,
16981 },
16982 Municipio {
16983 ibge_code: 4114351,
16984 name: "Manfrinópolis",
16985 state: State::PR,
16986 },
16987 Municipio {
16988 ibge_code: 4114401,
16989 name: "Mangueirinha",
16990 state: State::PR,
16991 },
16992 Municipio {
16993 ibge_code: 4114500,
16994 name: "Manoel Ribas",
16995 state: State::PR,
16996 },
16997 Municipio {
16998 ibge_code: 4114609,
16999 name: "Marechal Cândido Rondon",
17000 state: State::PR,
17001 },
17002 Municipio {
17003 ibge_code: 4114708,
17004 name: "Maria Helena",
17005 state: State::PR,
17006 },
17007 Municipio {
17008 ibge_code: 4114807,
17009 name: "Marialva",
17010 state: State::PR,
17011 },
17012 Municipio {
17013 ibge_code: 4115002,
17014 name: "Marilena",
17015 state: State::PR,
17016 },
17017 Municipio {
17018 ibge_code: 4115101,
17019 name: "Mariluz",
17020 state: State::PR,
17021 },
17022 Municipio {
17023 ibge_code: 4114906,
17024 name: "Marilândia do Sul",
17025 state: State::PR,
17026 },
17027 Municipio {
17028 ibge_code: 4115200,
17029 name: "Maringá",
17030 state: State::PR,
17031 },
17032 Municipio {
17033 ibge_code: 4115358,
17034 name: "Maripá",
17035 state: State::PR,
17036 },
17037 Municipio {
17038 ibge_code: 4115309,
17039 name: "Mariópolis",
17040 state: State::PR,
17041 },
17042 Municipio {
17043 ibge_code: 4115408,
17044 name: "Marmeleiro",
17045 state: State::PR,
17046 },
17047 Municipio {
17048 ibge_code: 4115457,
17049 name: "Marquinho",
17050 state: State::PR,
17051 },
17052 Municipio {
17053 ibge_code: 4115507,
17054 name: "Marumbi",
17055 state: State::PR,
17056 },
17057 Municipio {
17058 ibge_code: 4115606,
17059 name: "Matelândia",
17060 state: State::PR,
17061 },
17062 Municipio {
17063 ibge_code: 4115705,
17064 name: "Matinhos",
17065 state: State::PR,
17066 },
17067 Municipio {
17068 ibge_code: 4115739,
17069 name: "Mato Rico",
17070 state: State::PR,
17071 },
17072 Municipio {
17073 ibge_code: 4115754,
17074 name: "Mauá da Serra",
17075 state: State::PR,
17076 },
17077 Municipio {
17078 ibge_code: 4115804,
17079 name: "Medianeira",
17080 state: State::PR,
17081 },
17082 Municipio {
17083 ibge_code: 4115853,
17084 name: "Mercedes",
17085 state: State::PR,
17086 },
17087 Municipio {
17088 ibge_code: 4115903,
17089 name: "Mirador",
17090 state: State::PR,
17091 },
17092 Municipio {
17093 ibge_code: 4116000,
17094 name: "Miraselva",
17095 state: State::PR,
17096 },
17097 Municipio {
17098 ibge_code: 4116059,
17099 name: "Missal",
17100 state: State::PR,
17101 },
17102 Municipio {
17103 ibge_code: 4116109,
17104 name: "Moreira Sales",
17105 state: State::PR,
17106 },
17107 Municipio {
17108 ibge_code: 4116208,
17109 name: "Morretes",
17110 state: State::PR,
17111 },
17112 Municipio {
17113 ibge_code: 4116307,
17114 name: "Munhoz de Melo",
17115 state: State::PR,
17116 },
17117 Municipio {
17118 ibge_code: 4116406,
17119 name: "Nossa Senhora das Graças",
17120 state: State::PR,
17121 },
17122 Municipio {
17123 ibge_code: 4116505,
17124 name: "Nova Aliança do Ivaí",
17125 state: State::PR,
17126 },
17127 Municipio {
17128 ibge_code: 4116604,
17129 name: "Nova América da Colina",
17130 state: State::PR,
17131 },
17132 Municipio {
17133 ibge_code: 4116703,
17134 name: "Nova Aurora",
17135 state: State::PR,
17136 },
17137 Municipio {
17138 ibge_code: 4116802,
17139 name: "Nova Cantu",
17140 state: State::PR,
17141 },
17142 Municipio {
17143 ibge_code: 4116901,
17144 name: "Nova Esperança",
17145 state: State::PR,
17146 },
17147 Municipio {
17148 ibge_code: 4116950,
17149 name: "Nova Esperança do Sudoeste",
17150 state: State::PR,
17151 },
17152 Municipio {
17153 ibge_code: 4117008,
17154 name: "Nova Fátima",
17155 state: State::PR,
17156 },
17157 Municipio {
17158 ibge_code: 4117057,
17159 name: "Nova Laranjeiras",
17160 state: State::PR,
17161 },
17162 Municipio {
17163 ibge_code: 4117107,
17164 name: "Nova Londrina",
17165 state: State::PR,
17166 },
17167 Municipio {
17168 ibge_code: 4117206,
17169 name: "Nova Olímpia",
17170 state: State::PR,
17171 },
17172 Municipio {
17173 ibge_code: 4117255,
17174 name: "Nova Prata do Iguaçu",
17175 state: State::PR,
17176 },
17177 Municipio {
17178 ibge_code: 4117214,
17179 name: "Nova Santa Bárbara",
17180 state: State::PR,
17181 },
17182 Municipio {
17183 ibge_code: 4117222,
17184 name: "Nova Santa Rosa",
17185 state: State::PR,
17186 },
17187 Municipio {
17188 ibge_code: 4117271,
17189 name: "Nova Tebas",
17190 state: State::PR,
17191 },
17192 Municipio {
17193 ibge_code: 4117297,
17194 name: "Novo Itacolomi",
17195 state: State::PR,
17196 },
17197 Municipio {
17198 ibge_code: 4117305,
17199 name: "Ortigueira",
17200 state: State::PR,
17201 },
17202 Municipio {
17203 ibge_code: 4117404,
17204 name: "Ourizona",
17205 state: State::PR,
17206 },
17207 Municipio {
17208 ibge_code: 4117453,
17209 name: "Ouro Verde do Oeste",
17210 state: State::PR,
17211 },
17212 Municipio {
17213 ibge_code: 4117503,
17214 name: "Paiçandu",
17215 state: State::PR,
17216 },
17217 Municipio {
17218 ibge_code: 4117602,
17219 name: "Palmas",
17220 state: State::PR,
17221 },
17222 Municipio {
17223 ibge_code: 4117701,
17224 name: "Palmeira",
17225 state: State::PR,
17226 },
17227 Municipio {
17228 ibge_code: 4117800,
17229 name: "Palmital",
17230 state: State::PR,
17231 },
17232 Municipio {
17233 ibge_code: 4117909,
17234 name: "Palotina",
17235 state: State::PR,
17236 },
17237 Municipio {
17238 ibge_code: 4118105,
17239 name: "Paranacity",
17240 state: State::PR,
17241 },
17242 Municipio {
17243 ibge_code: 4118204,
17244 name: "Paranaguá",
17245 state: State::PR,
17246 },
17247 Municipio {
17248 ibge_code: 4118303,
17249 name: "Paranapoema",
17250 state: State::PR,
17251 },
17252 Municipio {
17253 ibge_code: 4118402,
17254 name: "Paranavaí",
17255 state: State::PR,
17256 },
17257 Municipio {
17258 ibge_code: 4118006,
17259 name: "Paraíso do Norte",
17260 state: State::PR,
17261 },
17262 Municipio {
17263 ibge_code: 4118451,
17264 name: "Pato Bragado",
17265 state: State::PR,
17266 },
17267 Municipio {
17268 ibge_code: 4118501,
17269 name: "Pato Branco",
17270 state: State::PR,
17271 },
17272 Municipio {
17273 ibge_code: 4118600,
17274 name: "Paula Freitas",
17275 state: State::PR,
17276 },
17277 Municipio {
17278 ibge_code: 4118709,
17279 name: "Paulo Frontin",
17280 state: State::PR,
17281 },
17282 Municipio {
17283 ibge_code: 4118808,
17284 name: "Peabiru",
17285 state: State::PR,
17286 },
17287 Municipio {
17288 ibge_code: 4118857,
17289 name: "Perobal",
17290 state: State::PR,
17291 },
17292 Municipio {
17293 ibge_code: 4119152,
17294 name: "Pinhais",
17295 state: State::PR,
17296 },
17297 Municipio {
17298 ibge_code: 4119251,
17299 name: "Pinhal de São Bento",
17300 state: State::PR,
17301 },
17302 Municipio {
17303 ibge_code: 4119202,
17304 name: "Pinhalão",
17305 state: State::PR,
17306 },
17307 Municipio {
17308 ibge_code: 4119301,
17309 name: "Pinhão",
17310 state: State::PR,
17311 },
17312 Municipio {
17313 ibge_code: 4119509,
17314 name: "Piraquara",
17315 state: State::PR,
17316 },
17317 Municipio {
17318 ibge_code: 4119400,
17319 name: "Piraí do Sul",
17320 state: State::PR,
17321 },
17322 Municipio {
17323 ibge_code: 4119608,
17324 name: "Pitanga",
17325 state: State::PR,
17326 },
17327 Municipio {
17328 ibge_code: 4119657,
17329 name: "Pitangueiras",
17330 state: State::PR,
17331 },
17332 Municipio {
17333 ibge_code: 4119103,
17334 name: "Piên",
17335 state: State::PR,
17336 },
17337 Municipio {
17338 ibge_code: 4119707,
17339 name: "Planaltina do Paraná",
17340 state: State::PR,
17341 },
17342 Municipio {
17343 ibge_code: 4119806,
17344 name: "Planalto",
17345 state: State::PR,
17346 },
17347 Municipio {
17348 ibge_code: 4119905,
17349 name: "Ponta Grossa",
17350 state: State::PR,
17351 },
17352 Municipio {
17353 ibge_code: 4119954,
17354 name: "Pontal do Paraná",
17355 state: State::PR,
17356 },
17357 Municipio {
17358 ibge_code: 4120002,
17359 name: "Porecatu",
17360 state: State::PR,
17361 },
17362 Municipio {
17363 ibge_code: 4120101,
17364 name: "Porto Amazonas",
17365 state: State::PR,
17366 },
17367 Municipio {
17368 ibge_code: 4120150,
17369 name: "Porto Barreiro",
17370 state: State::PR,
17371 },
17372 Municipio {
17373 ibge_code: 4120200,
17374 name: "Porto Rico",
17375 state: State::PR,
17376 },
17377 Municipio {
17378 ibge_code: 4120309,
17379 name: "Porto Vitória",
17380 state: State::PR,
17381 },
17382 Municipio {
17383 ibge_code: 4120333,
17384 name: "Prado Ferreira",
17385 state: State::PR,
17386 },
17387 Municipio {
17388 ibge_code: 4120358,
17389 name: "Pranchita",
17390 state: State::PR,
17391 },
17392 Municipio {
17393 ibge_code: 4120408,
17394 name: "Presidente Castelo Branco",
17395 state: State::PR,
17396 },
17397 Municipio {
17398 ibge_code: 4120507,
17399 name: "Primeiro de Maio",
17400 state: State::PR,
17401 },
17402 Municipio {
17403 ibge_code: 4120606,
17404 name: "Prudentópolis",
17405 state: State::PR,
17406 },
17407 Municipio {
17408 ibge_code: 4118907,
17409 name: "Pérola",
17410 state: State::PR,
17411 },
17412 Municipio {
17413 ibge_code: 4119004,
17414 name: "Pérola d'Oeste",
17415 state: State::PR,
17416 },
17417 Municipio {
17418 ibge_code: 4120655,
17419 name: "Quarto Centenário",
17420 state: State::PR,
17421 },
17422 Municipio {
17423 ibge_code: 4120705,
17424 name: "Quatiguá",
17425 state: State::PR,
17426 },
17427 Municipio {
17428 ibge_code: 4120804,
17429 name: "Quatro Barras",
17430 state: State::PR,
17431 },
17432 Municipio {
17433 ibge_code: 4120853,
17434 name: "Quatro Pontes",
17435 state: State::PR,
17436 },
17437 Municipio {
17438 ibge_code: 4120903,
17439 name: "Quedas do Iguaçu",
17440 state: State::PR,
17441 },
17442 Municipio {
17443 ibge_code: 4121000,
17444 name: "Querência do Norte",
17445 state: State::PR,
17446 },
17447 Municipio {
17448 ibge_code: 4121109,
17449 name: "Quinta do Sol",
17450 state: State::PR,
17451 },
17452 Municipio {
17453 ibge_code: 4121208,
17454 name: "Quitandinha",
17455 state: State::PR,
17456 },
17457 Municipio {
17458 ibge_code: 4121257,
17459 name: "Ramilândia",
17460 state: State::PR,
17461 },
17462 Municipio {
17463 ibge_code: 4121307,
17464 name: "Rancho Alegre",
17465 state: State::PR,
17466 },
17467 Municipio {
17468 ibge_code: 4121356,
17469 name: "Rancho Alegre D'Oeste",
17470 state: State::PR,
17471 },
17472 Municipio {
17473 ibge_code: 4121406,
17474 name: "Realeza",
17475 state: State::PR,
17476 },
17477 Municipio {
17478 ibge_code: 4121505,
17479 name: "Rebouças",
17480 state: State::PR,
17481 },
17482 Municipio {
17483 ibge_code: 4121604,
17484 name: "Renascença",
17485 state: State::PR,
17486 },
17487 Municipio {
17488 ibge_code: 4121703,
17489 name: "Reserva",
17490 state: State::PR,
17491 },
17492 Municipio {
17493 ibge_code: 4121752,
17494 name: "Reserva do Iguaçu",
17495 state: State::PR,
17496 },
17497 Municipio {
17498 ibge_code: 4121802,
17499 name: "Ribeirão Claro",
17500 state: State::PR,
17501 },
17502 Municipio {
17503 ibge_code: 4121901,
17504 name: "Ribeirão do Pinhal",
17505 state: State::PR,
17506 },
17507 Municipio {
17508 ibge_code: 4122008,
17509 name: "Rio Azul",
17510 state: State::PR,
17511 },
17512 Municipio {
17513 ibge_code: 4122107,
17514 name: "Rio Bom",
17515 state: State::PR,
17516 },
17517 Municipio {
17518 ibge_code: 4122156,
17519 name: "Rio Bonito do Iguaçu",
17520 state: State::PR,
17521 },
17522 Municipio {
17523 ibge_code: 4122172,
17524 name: "Rio Branco do Ivaí",
17525 state: State::PR,
17526 },
17527 Municipio {
17528 ibge_code: 4122206,
17529 name: "Rio Branco do Sul",
17530 state: State::PR,
17531 },
17532 Municipio {
17533 ibge_code: 4122305,
17534 name: "Rio Negro",
17535 state: State::PR,
17536 },
17537 Municipio {
17538 ibge_code: 4122404,
17539 name: "Rolândia",
17540 state: State::PR,
17541 },
17542 Municipio {
17543 ibge_code: 4122503,
17544 name: "Roncador",
17545 state: State::PR,
17546 },
17547 Municipio {
17548 ibge_code: 4122602,
17549 name: "Rondon",
17550 state: State::PR,
17551 },
17552 Municipio {
17553 ibge_code: 4122651,
17554 name: "Rosário do Ivaí",
17555 state: State::PR,
17556 },
17557 Municipio {
17558 ibge_code: 4122701,
17559 name: "Sabáudia",
17560 state: State::PR,
17561 },
17562 Municipio {
17563 ibge_code: 4122800,
17564 name: "Salgado Filho",
17565 state: State::PR,
17566 },
17567 Municipio {
17568 ibge_code: 4122909,
17569 name: "Salto do Itararé",
17570 state: State::PR,
17571 },
17572 Municipio {
17573 ibge_code: 4123006,
17574 name: "Salto do Lontra",
17575 state: State::PR,
17576 },
17577 Municipio {
17578 ibge_code: 4123105,
17579 name: "Santa Amélia",
17580 state: State::PR,
17581 },
17582 Municipio {
17583 ibge_code: 4123204,
17584 name: "Santa Cecília do Pavão",
17585 state: State::PR,
17586 },
17587 Municipio {
17588 ibge_code: 4123303,
17589 name: "Santa Cruz de Monte Castelo",
17590 state: State::PR,
17591 },
17592 Municipio {
17593 ibge_code: 4123402,
17594 name: "Santa Fé",
17595 state: State::PR,
17596 },
17597 Municipio {
17598 ibge_code: 4123501,
17599 name: "Santa Helena",
17600 state: State::PR,
17601 },
17602 Municipio {
17603 ibge_code: 4123600,
17604 name: "Santa Inês",
17605 state: State::PR,
17606 },
17607 Municipio {
17608 ibge_code: 4123709,
17609 name: "Santa Isabel do Ivaí",
17610 state: State::PR,
17611 },
17612 Municipio {
17613 ibge_code: 4123808,
17614 name: "Santa Izabel do Oeste",
17615 state: State::PR,
17616 },
17617 Municipio {
17618 ibge_code: 4123824,
17619 name: "Santa Lúcia",
17620 state: State::PR,
17621 },
17622 Municipio {
17623 ibge_code: 4123857,
17624 name: "Santa Maria do Oeste",
17625 state: State::PR,
17626 },
17627 Municipio {
17628 ibge_code: 4123907,
17629 name: "Santa Mariana",
17630 state: State::PR,
17631 },
17632 Municipio {
17633 ibge_code: 4123956,
17634 name: "Santa Mônica",
17635 state: State::PR,
17636 },
17637 Municipio {
17638 ibge_code: 4124020,
17639 name: "Santa Tereza do Oeste",
17640 state: State::PR,
17641 },
17642 Municipio {
17643 ibge_code: 4124053,
17644 name: "Santa Terezinha de Itaipu",
17645 state: State::PR,
17646 },
17647 Municipio {
17648 ibge_code: 4124004,
17649 name: "Santana do Itararé",
17650 state: State::PR,
17651 },
17652 Municipio {
17653 ibge_code: 4124103,
17654 name: "Santo Antônio da Platina",
17655 state: State::PR,
17656 },
17657 Municipio {
17658 ibge_code: 4124202,
17659 name: "Santo Antônio do Caiuá",
17660 state: State::PR,
17661 },
17662 Municipio {
17663 ibge_code: 4124301,
17664 name: "Santo Antônio do Paraíso",
17665 state: State::PR,
17666 },
17667 Municipio {
17668 ibge_code: 4124400,
17669 name: "Santo Antônio do Sudoeste",
17670 state: State::PR,
17671 },
17672 Municipio {
17673 ibge_code: 4124509,
17674 name: "Santo Inácio",
17675 state: State::PR,
17676 },
17677 Municipio {
17678 ibge_code: 4126207,
17679 name: "Sapopema",
17680 state: State::PR,
17681 },
17682 Municipio {
17683 ibge_code: 4126256,
17684 name: "Sarandi",
17685 state: State::PR,
17686 },
17687 Municipio {
17688 ibge_code: 4126272,
17689 name: "Saudade do Iguaçu",
17690 state: State::PR,
17691 },
17692 Municipio {
17693 ibge_code: 4126306,
17694 name: "Sengés",
17695 state: State::PR,
17696 },
17697 Municipio {
17698 ibge_code: 4126355,
17699 name: "Serranópolis do Iguaçu",
17700 state: State::PR,
17701 },
17702 Municipio {
17703 ibge_code: 4126405,
17704 name: "Sertaneja",
17705 state: State::PR,
17706 },
17707 Municipio {
17708 ibge_code: 4126504,
17709 name: "Sertanópolis",
17710 state: State::PR,
17711 },
17712 Municipio {
17713 ibge_code: 4126603,
17714 name: "Siqueira Campos",
17715 state: State::PR,
17716 },
17717 Municipio {
17718 ibge_code: 4126652,
17719 name: "Sulina",
17720 state: State::PR,
17721 },
17722 Municipio {
17723 ibge_code: 4124608,
17724 name: "São Carlos do Ivaí",
17725 state: State::PR,
17726 },
17727 Municipio {
17728 ibge_code: 4124707,
17729 name: "São Jerônimo da Serra",
17730 state: State::PR,
17731 },
17732 Municipio {
17733 ibge_code: 4125209,
17734 name: "São Jorge d'Oeste",
17735 state: State::PR,
17736 },
17737 Municipio {
17738 ibge_code: 4125308,
17739 name: "São Jorge do Ivaí",
17740 state: State::PR,
17741 },
17742 Municipio {
17743 ibge_code: 4125357,
17744 name: "São Jorge do Patrocínio",
17745 state: State::PR,
17746 },
17747 Municipio {
17748 ibge_code: 4125407,
17749 name: "São José da Boa Vista",
17750 state: State::PR,
17751 },
17752 Municipio {
17753 ibge_code: 4125456,
17754 name: "São José das Palmeiras",
17755 state: State::PR,
17756 },
17757 Municipio {
17758 ibge_code: 4125506,
17759 name: "São José dos Pinhais",
17760 state: State::PR,
17761 },
17762 Municipio {
17763 ibge_code: 4124806,
17764 name: "São João",
17765 state: State::PR,
17766 },
17767 Municipio {
17768 ibge_code: 4124905,
17769 name: "São João do Caiuá",
17770 state: State::PR,
17771 },
17772 Municipio {
17773 ibge_code: 4125001,
17774 name: "São João do Ivaí",
17775 state: State::PR,
17776 },
17777 Municipio {
17778 ibge_code: 4125100,
17779 name: "São João do Triunfo",
17780 state: State::PR,
17781 },
17782 Municipio {
17783 ibge_code: 4125555,
17784 name: "São Manoel do Paraná",
17785 state: State::PR,
17786 },
17787 Municipio {
17788 ibge_code: 4125605,
17789 name: "São Mateus do Sul",
17790 state: State::PR,
17791 },
17792 Municipio {
17793 ibge_code: 4125704,
17794 name: "São Miguel do Iguaçu",
17795 state: State::PR,
17796 },
17797 Municipio {
17798 ibge_code: 4125753,
17799 name: "São Pedro do Iguaçu",
17800 state: State::PR,
17801 },
17802 Municipio {
17803 ibge_code: 4125803,
17804 name: "São Pedro do Ivaí",
17805 state: State::PR,
17806 },
17807 Municipio {
17808 ibge_code: 4125902,
17809 name: "São Pedro do Paraná",
17810 state: State::PR,
17811 },
17812 Municipio {
17813 ibge_code: 4126009,
17814 name: "São Sebastião da Amoreira",
17815 state: State::PR,
17816 },
17817 Municipio {
17818 ibge_code: 4126108,
17819 name: "São Tomé",
17820 state: State::PR,
17821 },
17822 Municipio {
17823 ibge_code: 4126678,
17824 name: "Tamarana",
17825 state: State::PR,
17826 },
17827 Municipio {
17828 ibge_code: 4126702,
17829 name: "Tamboara",
17830 state: State::PR,
17831 },
17832 Municipio {
17833 ibge_code: 4126801,
17834 name: "Tapejara",
17835 state: State::PR,
17836 },
17837 Municipio {
17838 ibge_code: 4126900,
17839 name: "Tapira",
17840 state: State::PR,
17841 },
17842 Municipio {
17843 ibge_code: 4127007,
17844 name: "Teixeira Soares",
17845 state: State::PR,
17846 },
17847 Municipio {
17848 ibge_code: 4127106,
17849 name: "Telêmaco Borba",
17850 state: State::PR,
17851 },
17852 Municipio {
17853 ibge_code: 4127205,
17854 name: "Terra Boa",
17855 state: State::PR,
17856 },
17857 Municipio {
17858 ibge_code: 4127304,
17859 name: "Terra Rica",
17860 state: State::PR,
17861 },
17862 Municipio {
17863 ibge_code: 4127403,
17864 name: "Terra Roxa",
17865 state: State::PR,
17866 },
17867 Municipio {
17868 ibge_code: 4127502,
17869 name: "Tibagi",
17870 state: State::PR,
17871 },
17872 Municipio {
17873 ibge_code: 4127601,
17874 name: "Tijucas do Sul",
17875 state: State::PR,
17876 },
17877 Municipio {
17878 ibge_code: 4127700,
17879 name: "Toledo",
17880 state: State::PR,
17881 },
17882 Municipio {
17883 ibge_code: 4127809,
17884 name: "Tomazina",
17885 state: State::PR,
17886 },
17887 Municipio {
17888 ibge_code: 4127858,
17889 name: "Três Barras do Paraná",
17890 state: State::PR,
17891 },
17892 Municipio {
17893 ibge_code: 4127882,
17894 name: "Tunas do Paraná",
17895 state: State::PR,
17896 },
17897 Municipio {
17898 ibge_code: 4127908,
17899 name: "Tuneiras do Oeste",
17900 state: State::PR,
17901 },
17902 Municipio {
17903 ibge_code: 4127957,
17904 name: "Tupãssi",
17905 state: State::PR,
17906 },
17907 Municipio {
17908 ibge_code: 4127965,
17909 name: "Turvo",
17910 state: State::PR,
17911 },
17912 Municipio {
17913 ibge_code: 4128005,
17914 name: "Ubiratã",
17915 state: State::PR,
17916 },
17917 Municipio {
17918 ibge_code: 4128104,
17919 name: "Umuarama",
17920 state: State::PR,
17921 },
17922 Municipio {
17923 ibge_code: 4128302,
17924 name: "Uniflor",
17925 state: State::PR,
17926 },
17927 Municipio {
17928 ibge_code: 4128203,
17929 name: "União da Vitória",
17930 state: State::PR,
17931 },
17932 Municipio {
17933 ibge_code: 4128401,
17934 name: "Uraí",
17935 state: State::PR,
17936 },
17937 Municipio {
17938 ibge_code: 4128534,
17939 name: "Ventania",
17940 state: State::PR,
17941 },
17942 Municipio {
17943 ibge_code: 4128559,
17944 name: "Vera Cruz do Oeste",
17945 state: State::PR,
17946 },
17947 Municipio {
17948 ibge_code: 4128609,
17949 name: "Verê",
17950 state: State::PR,
17951 },
17952 Municipio {
17953 ibge_code: 4128658,
17954 name: "Virmond",
17955 state: State::PR,
17956 },
17957 Municipio {
17958 ibge_code: 4128708,
17959 name: "Vitorino",
17960 state: State::PR,
17961 },
17962 Municipio {
17963 ibge_code: 4128500,
17964 name: "Wenceslau Braz",
17965 state: State::PR,
17966 },
17967 Municipio {
17968 ibge_code: 4128807,
17969 name: "Xambrê",
17970 state: State::PR,
17971 },
17972 Municipio {
17973 ibge_code: 4101150,
17974 name: "Ângulo",
17975 state: State::PR,
17976 },
17977 Municipio {
17978 ibge_code: 3300100,
17979 name: "Angra dos Reis",
17980 state: State::RJ,
17981 },
17982 Municipio {
17983 ibge_code: 3300159,
17984 name: "Aperibé",
17985 state: State::RJ,
17986 },
17987 Municipio {
17988 ibge_code: 3300209,
17989 name: "Araruama",
17990 state: State::RJ,
17991 },
17992 Municipio {
17993 ibge_code: 3300225,
17994 name: "Areal",
17995 state: State::RJ,
17996 },
17997 Municipio {
17998 ibge_code: 3300233,
17999 name: "Armação dos Búzios",
18000 state: State::RJ,
18001 },
18002 Municipio {
18003 ibge_code: 3300258,
18004 name: "Arraial do Cabo",
18005 state: State::RJ,
18006 },
18007 Municipio {
18008 ibge_code: 3300407,
18009 name: "Barra Mansa",
18010 state: State::RJ,
18011 },
18012 Municipio {
18013 ibge_code: 3300308,
18014 name: "Barra do Piraí",
18015 state: State::RJ,
18016 },
18017 Municipio {
18018 ibge_code: 3300456,
18019 name: "Belford Roxo",
18020 state: State::RJ,
18021 },
18022 Municipio {
18023 ibge_code: 3300506,
18024 name: "Bom Jardim",
18025 state: State::RJ,
18026 },
18027 Municipio {
18028 ibge_code: 3300605,
18029 name: "Bom Jesus do Itabapoana",
18030 state: State::RJ,
18031 },
18032 Municipio {
18033 ibge_code: 3300704,
18034 name: "Cabo Frio",
18035 state: State::RJ,
18036 },
18037 Municipio {
18038 ibge_code: 3300803,
18039 name: "Cachoeiras de Macacu",
18040 state: State::RJ,
18041 },
18042 Municipio {
18043 ibge_code: 3300902,
18044 name: "Cambuci",
18045 state: State::RJ,
18046 },
18047 Municipio {
18048 ibge_code: 3301009,
18049 name: "Campos dos Goytacazes",
18050 state: State::RJ,
18051 },
18052 Municipio {
18053 ibge_code: 3301108,
18054 name: "Cantagalo",
18055 state: State::RJ,
18056 },
18057 Municipio {
18058 ibge_code: 3300936,
18059 name: "Carapebus",
18060 state: State::RJ,
18061 },
18062 Municipio {
18063 ibge_code: 3301157,
18064 name: "Cardoso Moreira",
18065 state: State::RJ,
18066 },
18067 Municipio {
18068 ibge_code: 3301207,
18069 name: "Carmo",
18070 state: State::RJ,
18071 },
18072 Municipio {
18073 ibge_code: 3301306,
18074 name: "Casimiro de Abreu",
18075 state: State::RJ,
18076 },
18077 Municipio {
18078 ibge_code: 3300951,
18079 name: "Comendador Levy Gasparian",
18080 state: State::RJ,
18081 },
18082 Municipio {
18083 ibge_code: 3301405,
18084 name: "Conceição de Macabu",
18085 state: State::RJ,
18086 },
18087 Municipio {
18088 ibge_code: 3301504,
18089 name: "Cordeiro",
18090 state: State::RJ,
18091 },
18092 Municipio {
18093 ibge_code: 3301603,
18094 name: "Duas Barras",
18095 state: State::RJ,
18096 },
18097 Municipio {
18098 ibge_code: 3301702,
18099 name: "Duque de Caxias",
18100 state: State::RJ,
18101 },
18102 Municipio {
18103 ibge_code: 3301801,
18104 name: "Engenheiro Paulo de Frontin",
18105 state: State::RJ,
18106 },
18107 Municipio {
18108 ibge_code: 3301850,
18109 name: "Guapimirim",
18110 state: State::RJ,
18111 },
18112 Municipio {
18113 ibge_code: 3301876,
18114 name: "Iguaba Grande",
18115 state: State::RJ,
18116 },
18117 Municipio {
18118 ibge_code: 3301900,
18119 name: "Itaboraí",
18120 state: State::RJ,
18121 },
18122 Municipio {
18123 ibge_code: 3302007,
18124 name: "Itaguaí",
18125 state: State::RJ,
18126 },
18127 Municipio {
18128 ibge_code: 3302056,
18129 name: "Italva",
18130 state: State::RJ,
18131 },
18132 Municipio {
18133 ibge_code: 3302106,
18134 name: "Itaocara",
18135 state: State::RJ,
18136 },
18137 Municipio {
18138 ibge_code: 3302205,
18139 name: "Itaperuna",
18140 state: State::RJ,
18141 },
18142 Municipio {
18143 ibge_code: 3302254,
18144 name: "Itatiaia",
18145 state: State::RJ,
18146 },
18147 Municipio {
18148 ibge_code: 3302270,
18149 name: "Japeri",
18150 state: State::RJ,
18151 },
18152 Municipio {
18153 ibge_code: 3302304,
18154 name: "Laje do Muriaé",
18155 state: State::RJ,
18156 },
18157 Municipio {
18158 ibge_code: 3302403,
18159 name: "Macaé",
18160 state: State::RJ,
18161 },
18162 Municipio {
18163 ibge_code: 3302452,
18164 name: "Macuco",
18165 state: State::RJ,
18166 },
18167 Municipio {
18168 ibge_code: 3302502,
18169 name: "Magé",
18170 state: State::RJ,
18171 },
18172 Municipio {
18173 ibge_code: 3302601,
18174 name: "Mangaratiba",
18175 state: State::RJ,
18176 },
18177 Municipio {
18178 ibge_code: 3302700,
18179 name: "Maricá",
18180 state: State::RJ,
18181 },
18182 Municipio {
18183 ibge_code: 3302809,
18184 name: "Mendes",
18185 state: State::RJ,
18186 },
18187 Municipio {
18188 ibge_code: 3302858,
18189 name: "Mesquita",
18190 state: State::RJ,
18191 },
18192 Municipio {
18193 ibge_code: 3302908,
18194 name: "Miguel Pereira",
18195 state: State::RJ,
18196 },
18197 Municipio {
18198 ibge_code: 3303005,
18199 name: "Miracema",
18200 state: State::RJ,
18201 },
18202 Municipio {
18203 ibge_code: 3303104,
18204 name: "Natividade",
18205 state: State::RJ,
18206 },
18207 Municipio {
18208 ibge_code: 3303203,
18209 name: "Nilópolis",
18210 state: State::RJ,
18211 },
18212 Municipio {
18213 ibge_code: 3303302,
18214 name: "Niterói",
18215 state: State::RJ,
18216 },
18217 Municipio {
18218 ibge_code: 3303401,
18219 name: "Nova Friburgo",
18220 state: State::RJ,
18221 },
18222 Municipio {
18223 ibge_code: 3303500,
18224 name: "Nova Iguaçu",
18225 state: State::RJ,
18226 },
18227 Municipio {
18228 ibge_code: 3303609,
18229 name: "Paracambi",
18230 state: State::RJ,
18231 },
18232 Municipio {
18233 ibge_code: 3303807,
18234 name: "Paraty",
18235 state: State::RJ,
18236 },
18237 Municipio {
18238 ibge_code: 3303708,
18239 name: "Paraíba do Sul",
18240 state: State::RJ,
18241 },
18242 Municipio {
18243 ibge_code: 3303856,
18244 name: "Paty do Alferes",
18245 state: State::RJ,
18246 },
18247 Municipio {
18248 ibge_code: 3303906,
18249 name: "Petrópolis",
18250 state: State::RJ,
18251 },
18252 Municipio {
18253 ibge_code: 3303955,
18254 name: "Pinheiral",
18255 state: State::RJ,
18256 },
18257 Municipio {
18258 ibge_code: 3304003,
18259 name: "Piraí",
18260 state: State::RJ,
18261 },
18262 Municipio {
18263 ibge_code: 3304102,
18264 name: "Porciúncula",
18265 state: State::RJ,
18266 },
18267 Municipio {
18268 ibge_code: 3304110,
18269 name: "Porto Real",
18270 state: State::RJ,
18271 },
18272 Municipio {
18273 ibge_code: 3304128,
18274 name: "Quatis",
18275 state: State::RJ,
18276 },
18277 Municipio {
18278 ibge_code: 3304144,
18279 name: "Queimados",
18280 state: State::RJ,
18281 },
18282 Municipio {
18283 ibge_code: 3304151,
18284 name: "Quissamã",
18285 state: State::RJ,
18286 },
18287 Municipio {
18288 ibge_code: 3304201,
18289 name: "Resende",
18290 state: State::RJ,
18291 },
18292 Municipio {
18293 ibge_code: 3304300,
18294 name: "Rio Bonito",
18295 state: State::RJ,
18296 },
18297 Municipio {
18298 ibge_code: 3304409,
18299 name: "Rio Claro",
18300 state: State::RJ,
18301 },
18302 Municipio {
18303 ibge_code: 3304508,
18304 name: "Rio das Flores",
18305 state: State::RJ,
18306 },
18307 Municipio {
18308 ibge_code: 3304524,
18309 name: "Rio das Ostras",
18310 state: State::RJ,
18311 },
18312 Municipio {
18313 ibge_code: 3304557,
18314 name: "Rio de Janeiro",
18315 state: State::RJ,
18316 },
18317 Municipio {
18318 ibge_code: 3304607,
18319 name: "Santa Maria Madalena",
18320 state: State::RJ,
18321 },
18322 Municipio {
18323 ibge_code: 3304706,
18324 name: "Santo Antônio de Pádua",
18325 state: State::RJ,
18326 },
18327 Municipio {
18328 ibge_code: 3305406,
18329 name: "Sapucaia",
18330 state: State::RJ,
18331 },
18332 Municipio {
18333 ibge_code: 3305505,
18334 name: "Saquarema",
18335 state: State::RJ,
18336 },
18337 Municipio {
18338 ibge_code: 3305554,
18339 name: "Seropédica",
18340 state: State::RJ,
18341 },
18342 Municipio {
18343 ibge_code: 3305604,
18344 name: "Silva Jardim",
18345 state: State::RJ,
18346 },
18347 Municipio {
18348 ibge_code: 3305703,
18349 name: "Sumidouro",
18350 state: State::RJ,
18351 },
18352 Municipio {
18353 ibge_code: 3304805,
18354 name: "São Fidélis",
18355 state: State::RJ,
18356 },
18357 Municipio {
18358 ibge_code: 3304755,
18359 name: "São Francisco de Itabapoana",
18360 state: State::RJ,
18361 },
18362 Municipio {
18363 ibge_code: 3304904,
18364 name: "São Gonçalo",
18365 state: State::RJ,
18366 },
18367 Municipio {
18368 ibge_code: 3305133,
18369 name: "São José de Ubá",
18370 state: State::RJ,
18371 },
18372 Municipio {
18373 ibge_code: 3305158,
18374 name: "São José do Vale do Rio Preto",
18375 state: State::RJ,
18376 },
18377 Municipio {
18378 ibge_code: 3305000,
18379 name: "São João da Barra",
18380 state: State::RJ,
18381 },
18382 Municipio {
18383 ibge_code: 3305109,
18384 name: "São João de Meriti",
18385 state: State::RJ,
18386 },
18387 Municipio {
18388 ibge_code: 3305208,
18389 name: "São Pedro da Aldeia",
18390 state: State::RJ,
18391 },
18392 Municipio {
18393 ibge_code: 3305307,
18394 name: "São Sebastião do Alto",
18395 state: State::RJ,
18396 },
18397 Municipio {
18398 ibge_code: 3305752,
18399 name: "Tanguá",
18400 state: State::RJ,
18401 },
18402 Municipio {
18403 ibge_code: 3305802,
18404 name: "Teresópolis",
18405 state: State::RJ,
18406 },
18407 Municipio {
18408 ibge_code: 3305901,
18409 name: "Trajano de Moraes",
18410 state: State::RJ,
18411 },
18412 Municipio {
18413 ibge_code: 3306008,
18414 name: "Três Rios",
18415 state: State::RJ,
18416 },
18417 Municipio {
18418 ibge_code: 3306107,
18419 name: "Valença",
18420 state: State::RJ,
18421 },
18422 Municipio {
18423 ibge_code: 3306156,
18424 name: "Varre-Sai",
18425 state: State::RJ,
18426 },
18427 Municipio {
18428 ibge_code: 3306206,
18429 name: "Vassouras",
18430 state: State::RJ,
18431 },
18432 Municipio {
18433 ibge_code: 3306305,
18434 name: "Volta Redonda",
18435 state: State::RJ,
18436 },
18437 Municipio {
18438 ibge_code: 2400109,
18439 name: "Acari",
18440 state: State::RN,
18441 },
18442 Municipio {
18443 ibge_code: 2400307,
18444 name: "Afonso Bezerra",
18445 state: State::RN,
18446 },
18447 Municipio {
18448 ibge_code: 2400505,
18449 name: "Alexandria",
18450 state: State::RN,
18451 },
18452 Municipio {
18453 ibge_code: 2400604,
18454 name: "Almino Afonso",
18455 state: State::RN,
18456 },
18457 Municipio {
18458 ibge_code: 2400703,
18459 name: "Alto do Rodrigues",
18460 state: State::RN,
18461 },
18462 Municipio {
18463 ibge_code: 2400802,
18464 name: "Angicos",
18465 state: State::RN,
18466 },
18467 Municipio {
18468 ibge_code: 2400901,
18469 name: "Antônio Martins",
18470 state: State::RN,
18471 },
18472 Municipio {
18473 ibge_code: 2401008,
18474 name: "Apodi",
18475 state: State::RN,
18476 },
18477 Municipio {
18478 ibge_code: 2401107,
18479 name: "Areia Branca",
18480 state: State::RN,
18481 },
18482 Municipio {
18483 ibge_code: 2401206,
18484 name: "Arez",
18485 state: State::RN,
18486 },
18487 Municipio {
18488 ibge_code: 2400208,
18489 name: "Assú",
18490 state: State::RN,
18491 },
18492 Municipio {
18493 ibge_code: 2401453,
18494 name: "Baraúna",
18495 state: State::RN,
18496 },
18497 Municipio {
18498 ibge_code: 2401503,
18499 name: "Barcelona",
18500 state: State::RN,
18501 },
18502 Municipio {
18503 ibge_code: 2401404,
18504 name: "Baía Formosa",
18505 state: State::RN,
18506 },
18507 Municipio {
18508 ibge_code: 2401602,
18509 name: "Bento Fernandes",
18510 state: State::RN,
18511 },
18512 Municipio {
18513 ibge_code: 2401651,
18514 name: "Bodó",
18515 state: State::RN,
18516 },
18517 Municipio {
18518 ibge_code: 2401701,
18519 name: "Bom Jesus",
18520 state: State::RN,
18521 },
18522 Municipio {
18523 ibge_code: 2401800,
18524 name: "Brejinho",
18525 state: State::RN,
18526 },
18527 Municipio {
18528 ibge_code: 2402006,
18529 name: "Caicó",
18530 state: State::RN,
18531 },
18532 Municipio {
18533 ibge_code: 2401859,
18534 name: "Caiçara do Norte",
18535 state: State::RN,
18536 },
18537 Municipio {
18538 ibge_code: 2401909,
18539 name: "Caiçara do Rio do Vento",
18540 state: State::RN,
18541 },
18542 Municipio {
18543 ibge_code: 2401305,
18544 name: "Campo Grande",
18545 state: State::RN,
18546 },
18547 Municipio {
18548 ibge_code: 2402105,
18549 name: "Campo Redondo",
18550 state: State::RN,
18551 },
18552 Municipio {
18553 ibge_code: 2402204,
18554 name: "Canguaretama",
18555 state: State::RN,
18556 },
18557 Municipio {
18558 ibge_code: 2402303,
18559 name: "Caraúbas",
18560 state: State::RN,
18561 },
18562 Municipio {
18563 ibge_code: 2402501,
18564 name: "Carnaubais",
18565 state: State::RN,
18566 },
18567 Municipio {
18568 ibge_code: 2402402,
18569 name: "Carnaúba dos Dantas",
18570 state: State::RN,
18571 },
18572 Municipio {
18573 ibge_code: 2402600,
18574 name: "Ceará-Mirim",
18575 state: State::RN,
18576 },
18577 Municipio {
18578 ibge_code: 2402709,
18579 name: "Cerro Corá",
18580 state: State::RN,
18581 },
18582 Municipio {
18583 ibge_code: 2402808,
18584 name: "Coronel Ezequiel",
18585 state: State::RN,
18586 },
18587 Municipio {
18588 ibge_code: 2402907,
18589 name: "Coronel João Pessoa",
18590 state: State::RN,
18591 },
18592 Municipio {
18593 ibge_code: 2403004,
18594 name: "Cruzeta",
18595 state: State::RN,
18596 },
18597 Municipio {
18598 ibge_code: 2403103,
18599 name: "Currais Novos",
18600 state: State::RN,
18601 },
18602 Municipio {
18603 ibge_code: 2403202,
18604 name: "Doutor Severiano",
18605 state: State::RN,
18606 },
18607 Municipio {
18608 ibge_code: 2403301,
18609 name: "Encanto",
18610 state: State::RN,
18611 },
18612 Municipio {
18613 ibge_code: 2403400,
18614 name: "Equador",
18615 state: State::RN,
18616 },
18617 Municipio {
18618 ibge_code: 2403509,
18619 name: "Espírito Santo",
18620 state: State::RN,
18621 },
18622 Municipio {
18623 ibge_code: 2403608,
18624 name: "Extremoz",
18625 state: State::RN,
18626 },
18627 Municipio {
18628 ibge_code: 2403707,
18629 name: "Felipe Guerra",
18630 state: State::RN,
18631 },
18632 Municipio {
18633 ibge_code: 2403756,
18634 name: "Fernando Pedroza",
18635 state: State::RN,
18636 },
18637 Municipio {
18638 ibge_code: 2403806,
18639 name: "Florânia",
18640 state: State::RN,
18641 },
18642 Municipio {
18643 ibge_code: 2403905,
18644 name: "Francisco Dantas",
18645 state: State::RN,
18646 },
18647 Municipio {
18648 ibge_code: 2404002,
18649 name: "Frutuoso Gomes",
18650 state: State::RN,
18651 },
18652 Municipio {
18653 ibge_code: 2404101,
18654 name: "Galinhos",
18655 state: State::RN,
18656 },
18657 Municipio {
18658 ibge_code: 2404200,
18659 name: "Goianinha",
18660 state: State::RN,
18661 },
18662 Municipio {
18663 ibge_code: 2404309,
18664 name: "Governador Dix-Sept Rosado",
18665 state: State::RN,
18666 },
18667 Municipio {
18668 ibge_code: 2404408,
18669 name: "Grossos",
18670 state: State::RN,
18671 },
18672 Municipio {
18673 ibge_code: 2404507,
18674 name: "Guamaré",
18675 state: State::RN,
18676 },
18677 Municipio {
18678 ibge_code: 2404606,
18679 name: "Ielmo Marinho",
18680 state: State::RN,
18681 },
18682 Municipio {
18683 ibge_code: 2404705,
18684 name: "Ipanguaçu",
18685 state: State::RN,
18686 },
18687 Municipio {
18688 ibge_code: 2404804,
18689 name: "Ipueira",
18690 state: State::RN,
18691 },
18692 Municipio {
18693 ibge_code: 2404853,
18694 name: "Itajá",
18695 state: State::RN,
18696 },
18697 Municipio {
18698 ibge_code: 2404903,
18699 name: "Itaú",
18700 state: State::RN,
18701 },
18702 Municipio {
18703 ibge_code: 2405108,
18704 name: "Jandaíra",
18705 state: State::RN,
18706 },
18707 Municipio {
18708 ibge_code: 2405207,
18709 name: "Janduís",
18710 state: State::RN,
18711 },
18712 Municipio {
18713 ibge_code: 2405306,
18714 name: "Januário Cicco",
18715 state: State::RN,
18716 },
18717 Municipio {
18718 ibge_code: 2405405,
18719 name: "Japi",
18720 state: State::RN,
18721 },
18722 Municipio {
18723 ibge_code: 2405504,
18724 name: "Jardim de Angicos",
18725 state: State::RN,
18726 },
18727 Municipio {
18728 ibge_code: 2405603,
18729 name: "Jardim de Piranhas",
18730 state: State::RN,
18731 },
18732 Municipio {
18733 ibge_code: 2405702,
18734 name: "Jardim do Seridó",
18735 state: State::RN,
18736 },
18737 Municipio {
18738 ibge_code: 2405009,
18739 name: "Jaçanã",
18740 state: State::RN,
18741 },
18742 Municipio {
18743 ibge_code: 2406007,
18744 name: "José da Penha",
18745 state: State::RN,
18746 },
18747 Municipio {
18748 ibge_code: 2405801,
18749 name: "João Câmara",
18750 state: State::RN,
18751 },
18752 Municipio {
18753 ibge_code: 2405900,
18754 name: "João Dias",
18755 state: State::RN,
18756 },
18757 Municipio {
18758 ibge_code: 2406106,
18759 name: "Jucurutu",
18760 state: State::RN,
18761 },
18762 Municipio {
18763 ibge_code: 2406155,
18764 name: "Jundiá",
18765 state: State::RN,
18766 },
18767 Municipio {
18768 ibge_code: 2406502,
18769 name: "Lagoa Nova",
18770 state: State::RN,
18771 },
18772 Municipio {
18773 ibge_code: 2406601,
18774 name: "Lagoa Salgada",
18775 state: State::RN,
18776 },
18777 Municipio {
18778 ibge_code: 2406205,
18779 name: "Lagoa d'Anta",
18780 state: State::RN,
18781 },
18782 Municipio {
18783 ibge_code: 2406304,
18784 name: "Lagoa de Pedras",
18785 state: State::RN,
18786 },
18787 Municipio {
18788 ibge_code: 2406403,
18789 name: "Lagoa de Velhos",
18790 state: State::RN,
18791 },
18792 Municipio {
18793 ibge_code: 2406700,
18794 name: "Lajes",
18795 state: State::RN,
18796 },
18797 Municipio {
18798 ibge_code: 2406809,
18799 name: "Lajes Pintadas",
18800 state: State::RN,
18801 },
18802 Municipio {
18803 ibge_code: 2406908,
18804 name: "Lucrécia",
18805 state: State::RN,
18806 },
18807 Municipio {
18808 ibge_code: 2407005,
18809 name: "Luís Gomes",
18810 state: State::RN,
18811 },
18812 Municipio {
18813 ibge_code: 2407203,
18814 name: "Macau",
18815 state: State::RN,
18816 },
18817 Municipio {
18818 ibge_code: 2407104,
18819 name: "Macaíba",
18820 state: State::RN,
18821 },
18822 Municipio {
18823 ibge_code: 2407252,
18824 name: "Major Sales",
18825 state: State::RN,
18826 },
18827 Municipio {
18828 ibge_code: 2407302,
18829 name: "Marcelino Vieira",
18830 state: State::RN,
18831 },
18832 Municipio {
18833 ibge_code: 2407401,
18834 name: "Martins",
18835 state: State::RN,
18836 },
18837 Municipio {
18838 ibge_code: 2407500,
18839 name: "Maxaranguape",
18840 state: State::RN,
18841 },
18842 Municipio {
18843 ibge_code: 2407609,
18844 name: "Messias Targino",
18845 state: State::RN,
18846 },
18847 Municipio {
18848 ibge_code: 2407708,
18849 name: "Montanhas",
18850 state: State::RN,
18851 },
18852 Municipio {
18853 ibge_code: 2407807,
18854 name: "Monte Alegre",
18855 state: State::RN,
18856 },
18857 Municipio {
18858 ibge_code: 2407906,
18859 name: "Monte das Gameleiras",
18860 state: State::RN,
18861 },
18862 Municipio {
18863 ibge_code: 2408003,
18864 name: "Mossoró",
18865 state: State::RN,
18866 },
18867 Municipio {
18868 ibge_code: 2408102,
18869 name: "Natal",
18870 state: State::RN,
18871 },
18872 Municipio {
18873 ibge_code: 2408300,
18874 name: "Nova Cruz",
18875 state: State::RN,
18876 },
18877 Municipio {
18878 ibge_code: 2408201,
18879 name: "Nísia Floresta",
18880 state: State::RN,
18881 },
18882 Municipio {
18883 ibge_code: 2408409,
18884 name: "Olho d'Água do Borges",
18885 state: State::RN,
18886 },
18887 Municipio {
18888 ibge_code: 2408508,
18889 name: "Ouro Branco",
18890 state: State::RN,
18891 },
18892 Municipio {
18893 ibge_code: 2408607,
18894 name: "Paraná",
18895 state: State::RN,
18896 },
18897 Municipio {
18898 ibge_code: 2408805,
18899 name: "Parazinho",
18900 state: State::RN,
18901 },
18902 Municipio {
18903 ibge_code: 2408706,
18904 name: "Paraú",
18905 state: State::RN,
18906 },
18907 Municipio {
18908 ibge_code: 2408904,
18909 name: "Parelhas",
18910 state: State::RN,
18911 },
18912 Municipio {
18913 ibge_code: 2403251,
18914 name: "Parnamirim",
18915 state: State::RN,
18916 },
18917 Municipio {
18918 ibge_code: 2409100,
18919 name: "Passa e Fica",
18920 state: State::RN,
18921 },
18922 Municipio {
18923 ibge_code: 2409209,
18924 name: "Passagem",
18925 state: State::RN,
18926 },
18927 Municipio {
18928 ibge_code: 2409308,
18929 name: "Patu",
18930 state: State::RN,
18931 },
18932 Municipio {
18933 ibge_code: 2409407,
18934 name: "Pau dos Ferros",
18935 state: State::RN,
18936 },
18937 Municipio {
18938 ibge_code: 2409506,
18939 name: "Pedra Grande",
18940 state: State::RN,
18941 },
18942 Municipio {
18943 ibge_code: 2409605,
18944 name: "Pedra Preta",
18945 state: State::RN,
18946 },
18947 Municipio {
18948 ibge_code: 2409704,
18949 name: "Pedro Avelino",
18950 state: State::RN,
18951 },
18952 Municipio {
18953 ibge_code: 2409803,
18954 name: "Pedro Velho",
18955 state: State::RN,
18956 },
18957 Municipio {
18958 ibge_code: 2409902,
18959 name: "Pendências",
18960 state: State::RN,
18961 },
18962 Municipio {
18963 ibge_code: 2410009,
18964 name: "Pilões",
18965 state: State::RN,
18966 },
18967 Municipio {
18968 ibge_code: 2410207,
18969 name: "Portalegre",
18970 state: State::RN,
18971 },
18972 Municipio {
18973 ibge_code: 2410256,
18974 name: "Porto do Mangue",
18975 state: State::RN,
18976 },
18977 Municipio {
18978 ibge_code: 2410108,
18979 name: "Poço Branco",
18980 state: State::RN,
18981 },
18982 Municipio {
18983 ibge_code: 2410405,
18984 name: "Pureza",
18985 state: State::RN,
18986 },
18987 Municipio {
18988 ibge_code: 2410504,
18989 name: "Rafael Fernandes",
18990 state: State::RN,
18991 },
18992 Municipio {
18993 ibge_code: 2410603,
18994 name: "Rafael Godeiro",
18995 state: State::RN,
18996 },
18997 Municipio {
18998 ibge_code: 2410702,
18999 name: "Riacho da Cruz",
19000 state: State::RN,
19001 },
19002 Municipio {
19003 ibge_code: 2410801,
19004 name: "Riacho de Santana",
19005 state: State::RN,
19006 },
19007 Municipio {
19008 ibge_code: 2410900,
19009 name: "Riachuelo",
19010 state: State::RN,
19011 },
19012 Municipio {
19013 ibge_code: 2408953,
19014 name: "Rio do Fogo",
19015 state: State::RN,
19016 },
19017 Municipio {
19018 ibge_code: 2411007,
19019 name: "Rodolfo Fernandes",
19020 state: State::RN,
19021 },
19022 Municipio {
19023 ibge_code: 2411106,
19024 name: "Ruy Barbosa",
19025 state: State::RN,
19026 },
19027 Municipio {
19028 ibge_code: 2411205,
19029 name: "Santa Cruz",
19030 state: State::RN,
19031 },
19032 Municipio {
19033 ibge_code: 2409332,
19034 name: "Santa Maria",
19035 state: State::RN,
19036 },
19037 Municipio {
19038 ibge_code: 2411403,
19039 name: "Santana do Matos",
19040 state: State::RN,
19041 },
19042 Municipio {
19043 ibge_code: 2411429,
19044 name: "Santana do Seridó",
19045 state: State::RN,
19046 },
19047 Municipio {
19048 ibge_code: 2411502,
19049 name: "Santo Antônio",
19050 state: State::RN,
19051 },
19052 Municipio {
19053 ibge_code: 2413102,
19054 name: "Senador Elói de Souza",
19055 state: State::RN,
19056 },
19057 Municipio {
19058 ibge_code: 2413201,
19059 name: "Senador Georgino Avelino",
19060 state: State::RN,
19061 },
19062 Municipio {
19063 ibge_code: 2410306,
19064 name: "Serra Caiada",
19065 state: State::RN,
19066 },
19067 Municipio {
19068 ibge_code: 2413409,
19069 name: "Serra Negra do Norte",
19070 state: State::RN,
19071 },
19072 Municipio {
19073 ibge_code: 2413300,
19074 name: "Serra de São Bento",
19075 state: State::RN,
19076 },
19077 Municipio {
19078 ibge_code: 2413359,
19079 name: "Serra do Mel",
19080 state: State::RN,
19081 },
19082 Municipio {
19083 ibge_code: 2413508,
19084 name: "Serrinha",
19085 state: State::RN,
19086 },
19087 Municipio {
19088 ibge_code: 2413557,
19089 name: "Serrinha dos Pintos",
19090 state: State::RN,
19091 },
19092 Municipio {
19093 ibge_code: 2413607,
19094 name: "Severiano Melo",
19095 state: State::RN,
19096 },
19097 Municipio {
19098 ibge_code: 2411601,
19099 name: "São Bento do Norte",
19100 state: State::RN,
19101 },
19102 Municipio {
19103 ibge_code: 2411700,
19104 name: "São Bento do Trairí",
19105 state: State::RN,
19106 },
19107 Municipio {
19108 ibge_code: 2411809,
19109 name: "São Fernando",
19110 state: State::RN,
19111 },
19112 Municipio {
19113 ibge_code: 2411908,
19114 name: "São Francisco do Oeste",
19115 state: State::RN,
19116 },
19117 Municipio {
19118 ibge_code: 2412005,
19119 name: "São Gonçalo do Amarante",
19120 state: State::RN,
19121 },
19122 Municipio {
19123 ibge_code: 2412203,
19124 name: "São José de Mipibu",
19125 state: State::RN,
19126 },
19127 Municipio {
19128 ibge_code: 2412302,
19129 name: "São José do Campestre",
19130 state: State::RN,
19131 },
19132 Municipio {
19133 ibge_code: 2412401,
19134 name: "São José do Seridó",
19135 state: State::RN,
19136 },
19137 Municipio {
19138 ibge_code: 2412104,
19139 name: "São João do Sabugi",
19140 state: State::RN,
19141 },
19142 Municipio {
19143 ibge_code: 2412500,
19144 name: "São Miguel",
19145 state: State::RN,
19146 },
19147 Municipio {
19148 ibge_code: 2412559,
19149 name: "São Miguel do Gostoso",
19150 state: State::RN,
19151 },
19152 Municipio {
19153 ibge_code: 2412609,
19154 name: "São Paulo do Potengi",
19155 state: State::RN,
19156 },
19157 Municipio {
19158 ibge_code: 2412708,
19159 name: "São Pedro",
19160 state: State::RN,
19161 },
19162 Municipio {
19163 ibge_code: 2412807,
19164 name: "São Rafael",
19165 state: State::RN,
19166 },
19167 Municipio {
19168 ibge_code: 2412906,
19169 name: "São Tomé",
19170 state: State::RN,
19171 },
19172 Municipio {
19173 ibge_code: 2413003,
19174 name: "São Vicente",
19175 state: State::RN,
19176 },
19177 Municipio {
19178 ibge_code: 2413706,
19179 name: "Sítio Novo",
19180 state: State::RN,
19181 },
19182 Municipio {
19183 ibge_code: 2413805,
19184 name: "Taboleiro Grande",
19185 state: State::RN,
19186 },
19187 Municipio {
19188 ibge_code: 2413904,
19189 name: "Taipu",
19190 state: State::RN,
19191 },
19192 Municipio {
19193 ibge_code: 2414001,
19194 name: "Tangará",
19195 state: State::RN,
19196 },
19197 Municipio {
19198 ibge_code: 2414100,
19199 name: "Tenente Ananias",
19200 state: State::RN,
19201 },
19202 Municipio {
19203 ibge_code: 2414159,
19204 name: "Tenente Laurentino Cruz",
19205 state: State::RN,
19206 },
19207 Municipio {
19208 ibge_code: 2411056,
19209 name: "Tibau",
19210 state: State::RN,
19211 },
19212 Municipio {
19213 ibge_code: 2414209,
19214 name: "Tibau do Sul",
19215 state: State::RN,
19216 },
19217 Municipio {
19218 ibge_code: 2414308,
19219 name: "Timbaúba dos Batistas",
19220 state: State::RN,
19221 },
19222 Municipio {
19223 ibge_code: 2414407,
19224 name: "Touros",
19225 state: State::RN,
19226 },
19227 Municipio {
19228 ibge_code: 2414456,
19229 name: "Triunfo Potiguar",
19230 state: State::RN,
19231 },
19232 Municipio {
19233 ibge_code: 2414506,
19234 name: "Umarizal",
19235 state: State::RN,
19236 },
19237 Municipio {
19238 ibge_code: 2414605,
19239 name: "Upanema",
19240 state: State::RN,
19241 },
19242 Municipio {
19243 ibge_code: 2414753,
19244 name: "Venha-Ver",
19245 state: State::RN,
19246 },
19247 Municipio {
19248 ibge_code: 2414803,
19249 name: "Vera Cruz",
19250 state: State::RN,
19251 },
19252 Municipio {
19253 ibge_code: 2415008,
19254 name: "Vila Flor",
19255 state: State::RN,
19256 },
19257 Municipio {
19258 ibge_code: 2414902,
19259 name: "Viçosa",
19260 state: State::RN,
19261 },
19262 Municipio {
19263 ibge_code: 2414704,
19264 name: "Várzea",
19265 state: State::RN,
19266 },
19267 Municipio {
19268 ibge_code: 2400406,
19269 name: "Água Nova",
19270 state: State::RN,
19271 },
19272 Municipio {
19273 ibge_code: 1100015,
19274 name: "Alta Floresta D'Oeste",
19275 state: State::RO,
19276 },
19277 Municipio {
19278 ibge_code: 1100379,
19279 name: "Alto Alegre dos Parecis",
19280 state: State::RO,
19281 },
19282 Municipio {
19283 ibge_code: 1100403,
19284 name: "Alto Paraíso",
19285 state: State::RO,
19286 },
19287 Municipio {
19288 ibge_code: 1100346,
19289 name: "Alvorada D'Oeste",
19290 state: State::RO,
19291 },
19292 Municipio {
19293 ibge_code: 1100023,
19294 name: "Ariquemes",
19295 state: State::RO,
19296 },
19297 Municipio {
19298 ibge_code: 1100452,
19299 name: "Buritis",
19300 state: State::RO,
19301 },
19302 Municipio {
19303 ibge_code: 1100031,
19304 name: "Cabixi",
19305 state: State::RO,
19306 },
19307 Municipio {
19308 ibge_code: 1100601,
19309 name: "Cacaulândia",
19310 state: State::RO,
19311 },
19312 Municipio {
19313 ibge_code: 1100049,
19314 name: "Cacoal",
19315 state: State::RO,
19316 },
19317 Municipio {
19318 ibge_code: 1100700,
19319 name: "Campo Novo de Rondônia",
19320 state: State::RO,
19321 },
19322 Municipio {
19323 ibge_code: 1100809,
19324 name: "Candeias do Jamari",
19325 state: State::RO,
19326 },
19327 Municipio {
19328 ibge_code: 1100908,
19329 name: "Castanheiras",
19330 state: State::RO,
19331 },
19332 Municipio {
19333 ibge_code: 1100056,
19334 name: "Cerejeiras",
19335 state: State::RO,
19336 },
19337 Municipio {
19338 ibge_code: 1100924,
19339 name: "Chupinguaia",
19340 state: State::RO,
19341 },
19342 Municipio {
19343 ibge_code: 1100064,
19344 name: "Colorado do Oeste",
19345 state: State::RO,
19346 },
19347 Municipio {
19348 ibge_code: 1100072,
19349 name: "Corumbiara",
19350 state: State::RO,
19351 },
19352 Municipio {
19353 ibge_code: 1100080,
19354 name: "Costa Marques",
19355 state: State::RO,
19356 },
19357 Municipio {
19358 ibge_code: 1100940,
19359 name: "Cujubim",
19360 state: State::RO,
19361 },
19362 Municipio {
19363 ibge_code: 1100098,
19364 name: "Espigão D'Oeste",
19365 state: State::RO,
19366 },
19367 Municipio {
19368 ibge_code: 1101005,
19369 name: "Governador Jorge Teixeira",
19370 state: State::RO,
19371 },
19372 Municipio {
19373 ibge_code: 1100106,
19374 name: "Guajará-Mirim",
19375 state: State::RO,
19376 },
19377 Municipio {
19378 ibge_code: 1101104,
19379 name: "Itapuã do Oeste",
19380 state: State::RO,
19381 },
19382 Municipio {
19383 ibge_code: 1100114,
19384 name: "Jaru",
19385 state: State::RO,
19386 },
19387 Municipio {
19388 ibge_code: 1100122,
19389 name: "Ji-Paraná",
19390 state: State::RO,
19391 },
19392 Municipio {
19393 ibge_code: 1100130,
19394 name: "Machadinho D'Oeste",
19395 state: State::RO,
19396 },
19397 Municipio {
19398 ibge_code: 1101203,
19399 name: "Ministro Andreazza",
19400 state: State::RO,
19401 },
19402 Municipio {
19403 ibge_code: 1101302,
19404 name: "Mirante da Serra",
19405 state: State::RO,
19406 },
19407 Municipio {
19408 ibge_code: 1101401,
19409 name: "Monte Negro",
19410 state: State::RO,
19411 },
19412 Municipio {
19413 ibge_code: 1100148,
19414 name: "Nova Brasilândia D'Oeste",
19415 state: State::RO,
19416 },
19417 Municipio {
19418 ibge_code: 1100338,
19419 name: "Nova Mamoré",
19420 state: State::RO,
19421 },
19422 Municipio {
19423 ibge_code: 1101435,
19424 name: "Nova União",
19425 state: State::RO,
19426 },
19427 Municipio {
19428 ibge_code: 1100502,
19429 name: "Novo Horizonte do Oeste",
19430 state: State::RO,
19431 },
19432 Municipio {
19433 ibge_code: 1100155,
19434 name: "Ouro Preto do Oeste",
19435 state: State::RO,
19436 },
19437 Municipio {
19438 ibge_code: 1101450,
19439 name: "Parecis",
19440 state: State::RO,
19441 },
19442 Municipio {
19443 ibge_code: 1100189,
19444 name: "Pimenta Bueno",
19445 state: State::RO,
19446 },
19447 Municipio {
19448 ibge_code: 1101468,
19449 name: "Pimenteiras do Oeste",
19450 state: State::RO,
19451 },
19452 Municipio {
19453 ibge_code: 1100205,
19454 name: "Porto Velho",
19455 state: State::RO,
19456 },
19457 Municipio {
19458 ibge_code: 1100254,
19459 name: "Presidente Médici",
19460 state: State::RO,
19461 },
19462 Municipio {
19463 ibge_code: 1101476,
19464 name: "Primavera de Rondônia",
19465 state: State::RO,
19466 },
19467 Municipio {
19468 ibge_code: 1100262,
19469 name: "Rio Crespo",
19470 state: State::RO,
19471 },
19472 Municipio {
19473 ibge_code: 1100288,
19474 name: "Rolim de Moura",
19475 state: State::RO,
19476 },
19477 Municipio {
19478 ibge_code: 1100296,
19479 name: "Santa Luzia D'Oeste",
19480 state: State::RO,
19481 },
19482 Municipio {
19483 ibge_code: 1101500,
19484 name: "Seringueiras",
19485 state: State::RO,
19486 },
19487 Municipio {
19488 ibge_code: 1101484,
19489 name: "São Felipe D'Oeste",
19490 state: State::RO,
19491 },
19492 Municipio {
19493 ibge_code: 1101492,
19494 name: "São Francisco do Guaporé",
19495 state: State::RO,
19496 },
19497 Municipio {
19498 ibge_code: 1100320,
19499 name: "São Miguel do Guaporé",
19500 state: State::RO,
19501 },
19502 Municipio {
19503 ibge_code: 1101559,
19504 name: "Teixeirópolis",
19505 state: State::RO,
19506 },
19507 Municipio {
19508 ibge_code: 1101609,
19509 name: "Theobroma",
19510 state: State::RO,
19511 },
19512 Municipio {
19513 ibge_code: 1101708,
19514 name: "Urupá",
19515 state: State::RO,
19516 },
19517 Municipio {
19518 ibge_code: 1101757,
19519 name: "Vale do Anari",
19520 state: State::RO,
19521 },
19522 Municipio {
19523 ibge_code: 1101807,
19524 name: "Vale do Paraíso",
19525 state: State::RO,
19526 },
19527 Municipio {
19528 ibge_code: 1100304,
19529 name: "Vilhena",
19530 state: State::RO,
19531 },
19532 Municipio {
19533 ibge_code: 1400050,
19534 name: "Alto Alegre",
19535 state: State::RR,
19536 },
19537 Municipio {
19538 ibge_code: 1400027,
19539 name: "Amajari",
19540 state: State::RR,
19541 },
19542 Municipio {
19543 ibge_code: 1400100,
19544 name: "Boa Vista",
19545 state: State::RR,
19546 },
19547 Municipio {
19548 ibge_code: 1400159,
19549 name: "Bonfim",
19550 state: State::RR,
19551 },
19552 Municipio {
19553 ibge_code: 1400175,
19554 name: "Cantá",
19555 state: State::RR,
19556 },
19557 Municipio {
19558 ibge_code: 1400209,
19559 name: "Caracaraí",
19560 state: State::RR,
19561 },
19562 Municipio {
19563 ibge_code: 1400233,
19564 name: "Caroebe",
19565 state: State::RR,
19566 },
19567 Municipio {
19568 ibge_code: 1400282,
19569 name: "Iracema",
19570 state: State::RR,
19571 },
19572 Municipio {
19573 ibge_code: 1400308,
19574 name: "Mucajaí",
19575 state: State::RR,
19576 },
19577 Municipio {
19578 ibge_code: 1400407,
19579 name: "Normandia",
19580 state: State::RR,
19581 },
19582 Municipio {
19583 ibge_code: 1400456,
19584 name: "Pacaraima",
19585 state: State::RR,
19586 },
19587 Municipio {
19588 ibge_code: 1400472,
19589 name: "Rorainópolis",
19590 state: State::RR,
19591 },
19592 Municipio {
19593 ibge_code: 1400506,
19594 name: "São João da Baliza",
19595 state: State::RR,
19596 },
19597 Municipio {
19598 ibge_code: 1400605,
19599 name: "São Luiz do Anauá",
19600 state: State::RR,
19601 },
19602 Municipio {
19603 ibge_code: 1400704,
19604 name: "Uiramutã",
19605 state: State::RR,
19606 },
19607 Municipio {
19608 ibge_code: 4300034,
19609 name: "Aceguá",
19610 state: State::RS,
19611 },
19612 Municipio {
19613 ibge_code: 4300109,
19614 name: "Agudo",
19615 state: State::RS,
19616 },
19617 Municipio {
19618 ibge_code: 4300208,
19619 name: "Ajuricaba",
19620 state: State::RS,
19621 },
19622 Municipio {
19623 ibge_code: 4300307,
19624 name: "Alecrim",
19625 state: State::RS,
19626 },
19627 Municipio {
19628 ibge_code: 4300406,
19629 name: "Alegrete",
19630 state: State::RS,
19631 },
19632 Municipio {
19633 ibge_code: 4300455,
19634 name: "Alegria",
19635 state: State::RS,
19636 },
19637 Municipio {
19638 ibge_code: 4300471,
19639 name: "Almirante Tamandaré do Sul",
19640 state: State::RS,
19641 },
19642 Municipio {
19643 ibge_code: 4300505,
19644 name: "Alpestre",
19645 state: State::RS,
19646 },
19647 Municipio {
19648 ibge_code: 4300554,
19649 name: "Alto Alegre",
19650 state: State::RS,
19651 },
19652 Municipio {
19653 ibge_code: 4300570,
19654 name: "Alto Feliz",
19655 state: State::RS,
19656 },
19657 Municipio {
19658 ibge_code: 4300604,
19659 name: "Alvorada",
19660 state: State::RS,
19661 },
19662 Municipio {
19663 ibge_code: 4300638,
19664 name: "Amaral Ferrador",
19665 state: State::RS,
19666 },
19667 Municipio {
19668 ibge_code: 4300646,
19669 name: "Ametista do Sul",
19670 state: State::RS,
19671 },
19672 Municipio {
19673 ibge_code: 4300661,
19674 name: "André da Rocha",
19675 state: State::RS,
19676 },
19677 Municipio {
19678 ibge_code: 4300703,
19679 name: "Anta Gorda",
19680 state: State::RS,
19681 },
19682 Municipio {
19683 ibge_code: 4300802,
19684 name: "Antônio Prado",
19685 state: State::RS,
19686 },
19687 Municipio {
19688 ibge_code: 4300851,
19689 name: "Arambaré",
19690 state: State::RS,
19691 },
19692 Municipio {
19693 ibge_code: 4300877,
19694 name: "Araricá",
19695 state: State::RS,
19696 },
19697 Municipio {
19698 ibge_code: 4300901,
19699 name: "Aratiba",
19700 state: State::RS,
19701 },
19702 Municipio {
19703 ibge_code: 4301305,
19704 name: "Arroio Grande",
19705 state: State::RS,
19706 },
19707 Municipio {
19708 ibge_code: 4301008,
19709 name: "Arroio do Meio",
19710 state: State::RS,
19711 },
19712 Municipio {
19713 ibge_code: 4301073,
19714 name: "Arroio do Padre",
19715 state: State::RS,
19716 },
19717 Municipio {
19718 ibge_code: 4301057,
19719 name: "Arroio do Sal",
19720 state: State::RS,
19721 },
19722 Municipio {
19723 ibge_code: 4301206,
19724 name: "Arroio do Tigre",
19725 state: State::RS,
19726 },
19727 Municipio {
19728 ibge_code: 4301107,
19729 name: "Arroio dos Ratos",
19730 state: State::RS,
19731 },
19732 Municipio {
19733 ibge_code: 4301404,
19734 name: "Arvorezinha",
19735 state: State::RS,
19736 },
19737 Municipio {
19738 ibge_code: 4301503,
19739 name: "Augusto Pestana",
19740 state: State::RS,
19741 },
19742 Municipio {
19743 ibge_code: 4301602,
19744 name: "Bagé",
19745 state: State::RS,
19746 },
19747 Municipio {
19748 ibge_code: 4301636,
19749 name: "Balneário Pinhal",
19750 state: State::RS,
19751 },
19752 Municipio {
19753 ibge_code: 4301958,
19754 name: "Barra Funda",
19755 state: State::RS,
19756 },
19757 Municipio {
19758 ibge_code: 4301859,
19759 name: "Barra do Guarita",
19760 state: State::RS,
19761 },
19762 Municipio {
19763 ibge_code: 4301875,
19764 name: "Barra do Quaraí",
19765 state: State::RS,
19766 },
19767 Municipio {
19768 ibge_code: 4301909,
19769 name: "Barra do Ribeiro",
19770 state: State::RS,
19771 },
19772 Municipio {
19773 ibge_code: 4301925,
19774 name: "Barra do Rio Azul",
19775 state: State::RS,
19776 },
19777 Municipio {
19778 ibge_code: 4301800,
19779 name: "Barracão",
19780 state: State::RS,
19781 },
19782 Municipio {
19783 ibge_code: 4302006,
19784 name: "Barros Cassal",
19785 state: State::RS,
19786 },
19787 Municipio {
19788 ibge_code: 4301651,
19789 name: "Barão",
19790 state: State::RS,
19791 },
19792 Municipio {
19793 ibge_code: 4301701,
19794 name: "Barão de Cotegipe",
19795 state: State::RS,
19796 },
19797 Municipio {
19798 ibge_code: 4301750,
19799 name: "Barão do Triunfo",
19800 state: State::RS,
19801 },
19802 Municipio {
19803 ibge_code: 4302055,
19804 name: "Benjamin Constant do Sul",
19805 state: State::RS,
19806 },
19807 Municipio {
19808 ibge_code: 4302105,
19809 name: "Bento Gonçalves",
19810 state: State::RS,
19811 },
19812 Municipio {
19813 ibge_code: 4302154,
19814 name: "Boa Vista das Missões",
19815 state: State::RS,
19816 },
19817 Municipio {
19818 ibge_code: 4302204,
19819 name: "Boa Vista do Buricá",
19820 state: State::RS,
19821 },
19822 Municipio {
19823 ibge_code: 4302220,
19824 name: "Boa Vista do Cadeado",
19825 state: State::RS,
19826 },
19827 Municipio {
19828 ibge_code: 4302238,
19829 name: "Boa Vista do Incra",
19830 state: State::RS,
19831 },
19832 Municipio {
19833 ibge_code: 4302253,
19834 name: "Boa Vista do Sul",
19835 state: State::RS,
19836 },
19837 Municipio {
19838 ibge_code: 4302303,
19839 name: "Bom Jesus",
19840 state: State::RS,
19841 },
19842 Municipio {
19843 ibge_code: 4302352,
19844 name: "Bom Princípio",
19845 state: State::RS,
19846 },
19847 Municipio {
19848 ibge_code: 4302378,
19849 name: "Bom Progresso",
19850 state: State::RS,
19851 },
19852 Municipio {
19853 ibge_code: 4302402,
19854 name: "Bom Retiro do Sul",
19855 state: State::RS,
19856 },
19857 Municipio {
19858 ibge_code: 4302451,
19859 name: "Boqueirão do Leão",
19860 state: State::RS,
19861 },
19862 Municipio {
19863 ibge_code: 4302501,
19864 name: "Bossoroca",
19865 state: State::RS,
19866 },
19867 Municipio {
19868 ibge_code: 4302584,
19869 name: "Bozano",
19870 state: State::RS,
19871 },
19872 Municipio {
19873 ibge_code: 4302600,
19874 name: "Braga",
19875 state: State::RS,
19876 },
19877 Municipio {
19878 ibge_code: 4302659,
19879 name: "Brochier",
19880 state: State::RS,
19881 },
19882 Municipio {
19883 ibge_code: 4302709,
19884 name: "Butiá",
19885 state: State::RS,
19886 },
19887 Municipio {
19888 ibge_code: 4302907,
19889 name: "Cacequi",
19890 state: State::RS,
19891 },
19892 Municipio {
19893 ibge_code: 4303004,
19894 name: "Cachoeira do Sul",
19895 state: State::RS,
19896 },
19897 Municipio {
19898 ibge_code: 4303103,
19899 name: "Cachoeirinha",
19900 state: State::RS,
19901 },
19902 Municipio {
19903 ibge_code: 4303202,
19904 name: "Cacique Doble",
19905 state: State::RS,
19906 },
19907 Municipio {
19908 ibge_code: 4303301,
19909 name: "Caibaté",
19910 state: State::RS,
19911 },
19912 Municipio {
19913 ibge_code: 4303400,
19914 name: "Caiçara",
19915 state: State::RS,
19916 },
19917 Municipio {
19918 ibge_code: 4303509,
19919 name: "Camaquã",
19920 state: State::RS,
19921 },
19922 Municipio {
19923 ibge_code: 4303558,
19924 name: "Camargo",
19925 state: State::RS,
19926 },
19927 Municipio {
19928 ibge_code: 4303608,
19929 name: "Cambará do Sul",
19930 state: State::RS,
19931 },
19932 Municipio {
19933 ibge_code: 4303673,
19934 name: "Campestre da Serra",
19935 state: State::RS,
19936 },
19937 Municipio {
19938 ibge_code: 4303707,
19939 name: "Campina das Missões",
19940 state: State::RS,
19941 },
19942 Municipio {
19943 ibge_code: 4303806,
19944 name: "Campinas do Sul",
19945 state: State::RS,
19946 },
19947 Municipio {
19948 ibge_code: 4303905,
19949 name: "Campo Bom",
19950 state: State::RS,
19951 },
19952 Municipio {
19953 ibge_code: 4304002,
19954 name: "Campo Novo",
19955 state: State::RS,
19956 },
19957 Municipio {
19958 ibge_code: 4304101,
19959 name: "Campos Borges",
19960 state: State::RS,
19961 },
19962 Municipio {
19963 ibge_code: 4304200,
19964 name: "Candelária",
19965 state: State::RS,
19966 },
19967 Municipio {
19968 ibge_code: 4304358,
19969 name: "Candiota",
19970 state: State::RS,
19971 },
19972 Municipio {
19973 ibge_code: 4304408,
19974 name: "Canela",
19975 state: State::RS,
19976 },
19977 Municipio {
19978 ibge_code: 4304507,
19979 name: "Canguçu",
19980 state: State::RS,
19981 },
19982 Municipio {
19983 ibge_code: 4304606,
19984 name: "Canoas",
19985 state: State::RS,
19986 },
19987 Municipio {
19988 ibge_code: 4304614,
19989 name: "Canudos do Vale",
19990 state: State::RS,
19991 },
19992 Municipio {
19993 ibge_code: 4304689,
19994 name: "Capela de Santana",
19995 state: State::RS,
19996 },
19997 Municipio {
19998 ibge_code: 4304697,
19999 name: "Capitão",
20000 state: State::RS,
20001 },
20002 Municipio {
20003 ibge_code: 4304671,
20004 name: "Capivari do Sul",
20005 state: State::RS,
20006 },
20007 Municipio {
20008 ibge_code: 4304622,
20009 name: "Capão Bonito do Sul",
20010 state: State::RS,
20011 },
20012 Municipio {
20013 ibge_code: 4304630,
20014 name: "Capão da Canoa",
20015 state: State::RS,
20016 },
20017 Municipio {
20018 ibge_code: 4304655,
20019 name: "Capão do Cipó",
20020 state: State::RS,
20021 },
20022 Municipio {
20023 ibge_code: 4304663,
20024 name: "Capão do Leão",
20025 state: State::RS,
20026 },
20027 Municipio {
20028 ibge_code: 4304705,
20029 name: "Carazinho",
20030 state: State::RS,
20031 },
20032 Municipio {
20033 ibge_code: 4304713,
20034 name: "Caraá",
20035 state: State::RS,
20036 },
20037 Municipio {
20038 ibge_code: 4304804,
20039 name: "Carlos Barbosa",
20040 state: State::RS,
20041 },
20042 Municipio {
20043 ibge_code: 4304853,
20044 name: "Carlos Gomes",
20045 state: State::RS,
20046 },
20047 Municipio {
20048 ibge_code: 4304903,
20049 name: "Casca",
20050 state: State::RS,
20051 },
20052 Municipio {
20053 ibge_code: 4304952,
20054 name: "Caseiros",
20055 state: State::RS,
20056 },
20057 Municipio {
20058 ibge_code: 4305009,
20059 name: "Catuípe",
20060 state: State::RS,
20061 },
20062 Municipio {
20063 ibge_code: 4305108,
20064 name: "Caxias do Sul",
20065 state: State::RS,
20066 },
20067 Municipio {
20068 ibge_code: 4302808,
20069 name: "Caçapava do Sul",
20070 state: State::RS,
20071 },
20072 Municipio {
20073 ibge_code: 4305116,
20074 name: "Centenário",
20075 state: State::RS,
20076 },
20077 Municipio {
20078 ibge_code: 4305124,
20079 name: "Cerrito",
20080 state: State::RS,
20081 },
20082 Municipio {
20083 ibge_code: 4305132,
20084 name: "Cerro Branco",
20085 state: State::RS,
20086 },
20087 Municipio {
20088 ibge_code: 4305157,
20089 name: "Cerro Grande",
20090 state: State::RS,
20091 },
20092 Municipio {
20093 ibge_code: 4305173,
20094 name: "Cerro Grande do Sul",
20095 state: State::RS,
20096 },
20097 Municipio {
20098 ibge_code: 4305207,
20099 name: "Cerro Largo",
20100 state: State::RS,
20101 },
20102 Municipio {
20103 ibge_code: 4305306,
20104 name: "Chapada",
20105 state: State::RS,
20106 },
20107 Municipio {
20108 ibge_code: 4305355,
20109 name: "Charqueadas",
20110 state: State::RS,
20111 },
20112 Municipio {
20113 ibge_code: 4305371,
20114 name: "Charrua",
20115 state: State::RS,
20116 },
20117 Municipio {
20118 ibge_code: 4305405,
20119 name: "Chiapetta",
20120 state: State::RS,
20121 },
20122 Municipio {
20123 ibge_code: 4305447,
20124 name: "Chuvisca",
20125 state: State::RS,
20126 },
20127 Municipio {
20128 ibge_code: 4305439,
20129 name: "Chuí",
20130 state: State::RS,
20131 },
20132 Municipio {
20133 ibge_code: 4305454,
20134 name: "Cidreira",
20135 state: State::RS,
20136 },
20137 Municipio {
20138 ibge_code: 4305504,
20139 name: "Ciríaco",
20140 state: State::RS,
20141 },
20142 Municipio {
20143 ibge_code: 4305587,
20144 name: "Colinas",
20145 state: State::RS,
20146 },
20147 Municipio {
20148 ibge_code: 4305603,
20149 name: "Colorado",
20150 state: State::RS,
20151 },
20152 Municipio {
20153 ibge_code: 4305702,
20154 name: "Condor",
20155 state: State::RS,
20156 },
20157 Municipio {
20158 ibge_code: 4305801,
20159 name: "Constantina",
20160 state: State::RS,
20161 },
20162 Municipio {
20163 ibge_code: 4305835,
20164 name: "Coqueiro Baixo",
20165 state: State::RS,
20166 },
20167 Municipio {
20168 ibge_code: 4305850,
20169 name: "Coqueiros do Sul",
20170 state: State::RS,
20171 },
20172 Municipio {
20173 ibge_code: 4305871,
20174 name: "Coronel Barros",
20175 state: State::RS,
20176 },
20177 Municipio {
20178 ibge_code: 4305900,
20179 name: "Coronel Bicaco",
20180 state: State::RS,
20181 },
20182 Municipio {
20183 ibge_code: 4305934,
20184 name: "Coronel Pilar",
20185 state: State::RS,
20186 },
20187 Municipio {
20188 ibge_code: 4305959,
20189 name: "Cotiporã",
20190 state: State::RS,
20191 },
20192 Municipio {
20193 ibge_code: 4305975,
20194 name: "Coxilha",
20195 state: State::RS,
20196 },
20197 Municipio {
20198 ibge_code: 4306007,
20199 name: "Crissiumal",
20200 state: State::RS,
20201 },
20202 Municipio {
20203 ibge_code: 4306056,
20204 name: "Cristal",
20205 state: State::RS,
20206 },
20207 Municipio {
20208 ibge_code: 4306072,
20209 name: "Cristal do Sul",
20210 state: State::RS,
20211 },
20212 Municipio {
20213 ibge_code: 4306106,
20214 name: "Cruz Alta",
20215 state: State::RS,
20216 },
20217 Municipio {
20218 ibge_code: 4306130,
20219 name: "Cruzaltense",
20220 state: State::RS,
20221 },
20222 Municipio {
20223 ibge_code: 4306205,
20224 name: "Cruzeiro do Sul",
20225 state: State::RS,
20226 },
20227 Municipio {
20228 ibge_code: 4304309,
20229 name: "Cândido Godói",
20230 state: State::RS,
20231 },
20232 Municipio {
20233 ibge_code: 4306304,
20234 name: "David Canabarro",
20235 state: State::RS,
20236 },
20237 Municipio {
20238 ibge_code: 4306320,
20239 name: "Derrubadas",
20240 state: State::RS,
20241 },
20242 Municipio {
20243 ibge_code: 4306353,
20244 name: "Dezesseis de Novembro",
20245 state: State::RS,
20246 },
20247 Municipio {
20248 ibge_code: 4306379,
20249 name: "Dilermando de Aguiar",
20250 state: State::RS,
20251 },
20252 Municipio {
20253 ibge_code: 4306403,
20254 name: "Dois Irmãos",
20255 state: State::RS,
20256 },
20257 Municipio {
20258 ibge_code: 4306429,
20259 name: "Dois Irmãos das Missões",
20260 state: State::RS,
20261 },
20262 Municipio {
20263 ibge_code: 4306452,
20264 name: "Dois Lajeados",
20265 state: State::RS,
20266 },
20267 Municipio {
20268 ibge_code: 4306502,
20269 name: "Dom Feliciano",
20270 state: State::RS,
20271 },
20272 Municipio {
20273 ibge_code: 4306601,
20274 name: "Dom Pedrito",
20275 state: State::RS,
20276 },
20277 Municipio {
20278 ibge_code: 4306551,
20279 name: "Dom Pedro de Alcântara",
20280 state: State::RS,
20281 },
20282 Municipio {
20283 ibge_code: 4306700,
20284 name: "Dona Francisca",
20285 state: State::RS,
20286 },
20287 Municipio {
20288 ibge_code: 4306734,
20289 name: "Doutor Maurício Cardoso",
20290 state: State::RS,
20291 },
20292 Municipio {
20293 ibge_code: 4306759,
20294 name: "Doutor Ricardo",
20295 state: State::RS,
20296 },
20297 Municipio {
20298 ibge_code: 4306767,
20299 name: "Eldorado do Sul",
20300 state: State::RS,
20301 },
20302 Municipio {
20303 ibge_code: 4306809,
20304 name: "Encantado",
20305 state: State::RS,
20306 },
20307 Municipio {
20308 ibge_code: 4306908,
20309 name: "Encruzilhada do Sul",
20310 state: State::RS,
20311 },
20312 Municipio {
20313 ibge_code: 4306924,
20314 name: "Engenho Velho",
20315 state: State::RS,
20316 },
20317 Municipio {
20318 ibge_code: 4306957,
20319 name: "Entre Rios do Sul",
20320 state: State::RS,
20321 },
20322 Municipio {
20323 ibge_code: 4306932,
20324 name: "Entre-Ijuís",
20325 state: State::RS,
20326 },
20327 Municipio {
20328 ibge_code: 4306973,
20329 name: "Erebango",
20330 state: State::RS,
20331 },
20332 Municipio {
20333 ibge_code: 4307005,
20334 name: "Erechim",
20335 state: State::RS,
20336 },
20337 Municipio {
20338 ibge_code: 4307054,
20339 name: "Ernestina",
20340 state: State::RS,
20341 },
20342 Municipio {
20343 ibge_code: 4307203,
20344 name: "Erval Grande",
20345 state: State::RS,
20346 },
20347 Municipio {
20348 ibge_code: 4307302,
20349 name: "Erval Seco",
20350 state: State::RS,
20351 },
20352 Municipio {
20353 ibge_code: 4307401,
20354 name: "Esmeralda",
20355 state: State::RS,
20356 },
20357 Municipio {
20358 ibge_code: 4307450,
20359 name: "Esperança do Sul",
20360 state: State::RS,
20361 },
20362 Municipio {
20363 ibge_code: 4307500,
20364 name: "Espumoso",
20365 state: State::RS,
20366 },
20367 Municipio {
20368 ibge_code: 4307559,
20369 name: "Estação",
20370 state: State::RS,
20371 },
20372 Municipio {
20373 ibge_code: 4307708,
20374 name: "Esteio",
20375 state: State::RS,
20376 },
20377 Municipio {
20378 ibge_code: 4307807,
20379 name: "Estrela",
20380 state: State::RS,
20381 },
20382 Municipio {
20383 ibge_code: 4307815,
20384 name: "Estrela Velha",
20385 state: State::RS,
20386 },
20387 Municipio {
20388 ibge_code: 4307609,
20389 name: "Estância Velha",
20390 state: State::RS,
20391 },
20392 Municipio {
20393 ibge_code: 4307831,
20394 name: "Eugênio de Castro",
20395 state: State::RS,
20396 },
20397 Municipio {
20398 ibge_code: 4307864,
20399 name: "Fagundes Varela",
20400 state: State::RS,
20401 },
20402 Municipio {
20403 ibge_code: 4307906,
20404 name: "Farroupilha",
20405 state: State::RS,
20406 },
20407 Municipio {
20408 ibge_code: 4308003,
20409 name: "Faxinal do Soturno",
20410 state: State::RS,
20411 },
20412 Municipio {
20413 ibge_code: 4308052,
20414 name: "Faxinalzinho",
20415 state: State::RS,
20416 },
20417 Municipio {
20418 ibge_code: 4308078,
20419 name: "Fazenda Vilanova",
20420 state: State::RS,
20421 },
20422 Municipio {
20423 ibge_code: 4308102,
20424 name: "Feliz",
20425 state: State::RS,
20426 },
20427 Municipio {
20428 ibge_code: 4308201,
20429 name: "Flores da Cunha",
20430 state: State::RS,
20431 },
20432 Municipio {
20433 ibge_code: 4308250,
20434 name: "Floriano Peixoto",
20435 state: State::RS,
20436 },
20437 Municipio {
20438 ibge_code: 4308300,
20439 name: "Fontoura Xavier",
20440 state: State::RS,
20441 },
20442 Municipio {
20443 ibge_code: 4308409,
20444 name: "Formigueiro",
20445 state: State::RS,
20446 },
20447 Municipio {
20448 ibge_code: 4308433,
20449 name: "Forquetinha",
20450 state: State::RS,
20451 },
20452 Municipio {
20453 ibge_code: 4308458,
20454 name: "Fortaleza dos Valos",
20455 state: State::RS,
20456 },
20457 Municipio {
20458 ibge_code: 4308508,
20459 name: "Frederico Westphalen",
20460 state: State::RS,
20461 },
20462 Municipio {
20463 ibge_code: 4308607,
20464 name: "Garibaldi",
20465 state: State::RS,
20466 },
20467 Municipio {
20468 ibge_code: 4308656,
20469 name: "Garruchos",
20470 state: State::RS,
20471 },
20472 Municipio {
20473 ibge_code: 4308706,
20474 name: "Gaurama",
20475 state: State::RS,
20476 },
20477 Municipio {
20478 ibge_code: 4308805,
20479 name: "General Câmara",
20480 state: State::RS,
20481 },
20482 Municipio {
20483 ibge_code: 4308854,
20484 name: "Gentil",
20485 state: State::RS,
20486 },
20487 Municipio {
20488 ibge_code: 4308904,
20489 name: "Getúlio Vargas",
20490 state: State::RS,
20491 },
20492 Municipio {
20493 ibge_code: 4309001,
20494 name: "Giruá",
20495 state: State::RS,
20496 },
20497 Municipio {
20498 ibge_code: 4309050,
20499 name: "Glorinha",
20500 state: State::RS,
20501 },
20502 Municipio {
20503 ibge_code: 4309100,
20504 name: "Gramado",
20505 state: State::RS,
20506 },
20507 Municipio {
20508 ibge_code: 4309159,
20509 name: "Gramado Xavier",
20510 state: State::RS,
20511 },
20512 Municipio {
20513 ibge_code: 4309126,
20514 name: "Gramado dos Loureiros",
20515 state: State::RS,
20516 },
20517 Municipio {
20518 ibge_code: 4309209,
20519 name: "Gravataí",
20520 state: State::RS,
20521 },
20522 Municipio {
20523 ibge_code: 4309258,
20524 name: "Guabiju",
20525 state: State::RS,
20526 },
20527 Municipio {
20528 ibge_code: 4309407,
20529 name: "Guaporé",
20530 state: State::RS,
20531 },
20532 Municipio {
20533 ibge_code: 4309506,
20534 name: "Guarani das Missões",
20535 state: State::RS,
20536 },
20537 Municipio {
20538 ibge_code: 4309308,
20539 name: "Guaíba",
20540 state: State::RS,
20541 },
20542 Municipio {
20543 ibge_code: 4309555,
20544 name: "Harmonia",
20545 state: State::RS,
20546 },
20547 Municipio {
20548 ibge_code: 4307104,
20549 name: "Herval",
20550 state: State::RS,
20551 },
20552 Municipio {
20553 ibge_code: 4309571,
20554 name: "Herveiras",
20555 state: State::RS,
20556 },
20557 Municipio {
20558 ibge_code: 4309605,
20559 name: "Horizontina",
20560 state: State::RS,
20561 },
20562 Municipio {
20563 ibge_code: 4309654,
20564 name: "Hulha Negra",
20565 state: State::RS,
20566 },
20567 Municipio {
20568 ibge_code: 4309704,
20569 name: "Humaitá",
20570 state: State::RS,
20571 },
20572 Municipio {
20573 ibge_code: 4309753,
20574 name: "Ibarama",
20575 state: State::RS,
20576 },
20577 Municipio {
20578 ibge_code: 4309803,
20579 name: "Ibiaçá",
20580 state: State::RS,
20581 },
20582 Municipio {
20583 ibge_code: 4309902,
20584 name: "Ibiraiaras",
20585 state: State::RS,
20586 },
20587 Municipio {
20588 ibge_code: 4309951,
20589 name: "Ibirapuitã",
20590 state: State::RS,
20591 },
20592 Municipio {
20593 ibge_code: 4310009,
20594 name: "Ibirubá",
20595 state: State::RS,
20596 },
20597 Municipio {
20598 ibge_code: 4310108,
20599 name: "Igrejinha",
20600 state: State::RS,
20601 },
20602 Municipio {
20603 ibge_code: 4310207,
20604 name: "Ijuí",
20605 state: State::RS,
20606 },
20607 Municipio {
20608 ibge_code: 4310306,
20609 name: "Ilópolis",
20610 state: State::RS,
20611 },
20612 Municipio {
20613 ibge_code: 4310330,
20614 name: "Imbé",
20615 state: State::RS,
20616 },
20617 Municipio {
20618 ibge_code: 4310363,
20619 name: "Imigrante",
20620 state: State::RS,
20621 },
20622 Municipio {
20623 ibge_code: 4310405,
20624 name: "Independência",
20625 state: State::RS,
20626 },
20627 Municipio {
20628 ibge_code: 4310413,
20629 name: "Inhacorá",
20630 state: State::RS,
20631 },
20632 Municipio {
20633 ibge_code: 4310462,
20634 name: "Ipiranga do Sul",
20635 state: State::RS,
20636 },
20637 Municipio {
20638 ibge_code: 4310439,
20639 name: "Ipê",
20640 state: State::RS,
20641 },
20642 Municipio {
20643 ibge_code: 4310504,
20644 name: "Iraí",
20645 state: State::RS,
20646 },
20647 Municipio {
20648 ibge_code: 4310538,
20649 name: "Itaara",
20650 state: State::RS,
20651 },
20652 Municipio {
20653 ibge_code: 4310553,
20654 name: "Itacurubi",
20655 state: State::RS,
20656 },
20657 Municipio {
20658 ibge_code: 4310579,
20659 name: "Itapuca",
20660 state: State::RS,
20661 },
20662 Municipio {
20663 ibge_code: 4310603,
20664 name: "Itaqui",
20665 state: State::RS,
20666 },
20667 Municipio {
20668 ibge_code: 4310652,
20669 name: "Itati",
20670 state: State::RS,
20671 },
20672 Municipio {
20673 ibge_code: 4310702,
20674 name: "Itatiba do Sul",
20675 state: State::RS,
20676 },
20677 Municipio {
20678 ibge_code: 4310751,
20679 name: "Ivorá",
20680 state: State::RS,
20681 },
20682 Municipio {
20683 ibge_code: 4310801,
20684 name: "Ivoti",
20685 state: State::RS,
20686 },
20687 Municipio {
20688 ibge_code: 4310850,
20689 name: "Jaboticaba",
20690 state: State::RS,
20691 },
20692 Municipio {
20693 ibge_code: 4310876,
20694 name: "Jacuizinho",
20695 state: State::RS,
20696 },
20697 Municipio {
20698 ibge_code: 4310900,
20699 name: "Jacutinga",
20700 state: State::RS,
20701 },
20702 Municipio {
20703 ibge_code: 4311106,
20704 name: "Jaguari",
20705 state: State::RS,
20706 },
20707 Municipio {
20708 ibge_code: 4311007,
20709 name: "Jaguarão",
20710 state: State::RS,
20711 },
20712 Municipio {
20713 ibge_code: 4311122,
20714 name: "Jaquirana",
20715 state: State::RS,
20716 },
20717 Municipio {
20718 ibge_code: 4311130,
20719 name: "Jari",
20720 state: State::RS,
20721 },
20722 Municipio {
20723 ibge_code: 4311155,
20724 name: "Jóia",
20725 state: State::RS,
20726 },
20727 Municipio {
20728 ibge_code: 4311205,
20729 name: "Júlio de Castilhos",
20730 state: State::RS,
20731 },
20732 Municipio {
20733 ibge_code: 4311239,
20734 name: "Lagoa Bonita do Sul",
20735 state: State::RS,
20736 },
20737 Municipio {
20738 ibge_code: 4311304,
20739 name: "Lagoa Vermelha",
20740 state: State::RS,
20741 },
20742 Municipio {
20743 ibge_code: 4311270,
20744 name: "Lagoa dos Três Cantos",
20745 state: State::RS,
20746 },
20747 Municipio {
20748 ibge_code: 4311254,
20749 name: "Lagoão",
20750 state: State::RS,
20751 },
20752 Municipio {
20753 ibge_code: 4311403,
20754 name: "Lajeado",
20755 state: State::RS,
20756 },
20757 Municipio {
20758 ibge_code: 4311429,
20759 name: "Lajeado do Bugre",
20760 state: State::RS,
20761 },
20762 Municipio {
20763 ibge_code: 4311502,
20764 name: "Lavras do Sul",
20765 state: State::RS,
20766 },
20767 Municipio {
20768 ibge_code: 4311601,
20769 name: "Liberato Salzano",
20770 state: State::RS,
20771 },
20772 Municipio {
20773 ibge_code: 4311627,
20774 name: "Lindolfo Collor",
20775 state: State::RS,
20776 },
20777 Municipio {
20778 ibge_code: 4311643,
20779 name: "Linha Nova",
20780 state: State::RS,
20781 },
20782 Municipio {
20783 ibge_code: 4311700,
20784 name: "Machadinho",
20785 state: State::RS,
20786 },
20787 Municipio {
20788 ibge_code: 4311734,
20789 name: "Mampituba",
20790 state: State::RS,
20791 },
20792 Municipio {
20793 ibge_code: 4311759,
20794 name: "Manoel Viana",
20795 state: State::RS,
20796 },
20797 Municipio {
20798 ibge_code: 4311775,
20799 name: "Maquiné",
20800 state: State::RS,
20801 },
20802 Municipio {
20803 ibge_code: 4311791,
20804 name: "Maratá",
20805 state: State::RS,
20806 },
20807 Municipio {
20808 ibge_code: 4311809,
20809 name: "Marau",
20810 state: State::RS,
20811 },
20812 Municipio {
20813 ibge_code: 4311908,
20814 name: "Marcelino Ramos",
20815 state: State::RS,
20816 },
20817 Municipio {
20818 ibge_code: 4311981,
20819 name: "Mariana Pimentel",
20820 state: State::RS,
20821 },
20822 Municipio {
20823 ibge_code: 4312005,
20824 name: "Mariano Moro",
20825 state: State::RS,
20826 },
20827 Municipio {
20828 ibge_code: 4312054,
20829 name: "Marques de Souza",
20830 state: State::RS,
20831 },
20832 Municipio {
20833 ibge_code: 4312104,
20834 name: "Mata",
20835 state: State::RS,
20836 },
20837 Municipio {
20838 ibge_code: 4312138,
20839 name: "Mato Castelhano",
20840 state: State::RS,
20841 },
20842 Municipio {
20843 ibge_code: 4312153,
20844 name: "Mato Leitão",
20845 state: State::RS,
20846 },
20847 Municipio {
20848 ibge_code: 4312179,
20849 name: "Mato Queimado",
20850 state: State::RS,
20851 },
20852 Municipio {
20853 ibge_code: 4312203,
20854 name: "Maximiliano de Almeida",
20855 state: State::RS,
20856 },
20857 Municipio {
20858 ibge_code: 4311718,
20859 name: "Maçambará",
20860 state: State::RS,
20861 },
20862 Municipio {
20863 ibge_code: 4312252,
20864 name: "Minas do Leão",
20865 state: State::RS,
20866 },
20867 Municipio {
20868 ibge_code: 4312302,
20869 name: "Miraguaí",
20870 state: State::RS,
20871 },
20872 Municipio {
20873 ibge_code: 4312351,
20874 name: "Montauri",
20875 state: State::RS,
20876 },
20877 Municipio {
20878 ibge_code: 4312377,
20879 name: "Monte Alegre dos Campos",
20880 state: State::RS,
20881 },
20882 Municipio {
20883 ibge_code: 4312385,
20884 name: "Monte Belo do Sul",
20885 state: State::RS,
20886 },
20887 Municipio {
20888 ibge_code: 4312401,
20889 name: "Montenegro",
20890 state: State::RS,
20891 },
20892 Municipio {
20893 ibge_code: 4312427,
20894 name: "Mormaço",
20895 state: State::RS,
20896 },
20897 Municipio {
20898 ibge_code: 4312443,
20899 name: "Morrinhos do Sul",
20900 state: State::RS,
20901 },
20902 Municipio {
20903 ibge_code: 4312450,
20904 name: "Morro Redondo",
20905 state: State::RS,
20906 },
20907 Municipio {
20908 ibge_code: 4312476,
20909 name: "Morro Reuter",
20910 state: State::RS,
20911 },
20912 Municipio {
20913 ibge_code: 4312500,
20914 name: "Mostardas",
20915 state: State::RS,
20916 },
20917 Municipio {
20918 ibge_code: 4312617,
20919 name: "Muitos Capões",
20920 state: State::RS,
20921 },
20922 Municipio {
20923 ibge_code: 4312625,
20924 name: "Muliterno",
20925 state: State::RS,
20926 },
20927 Municipio {
20928 ibge_code: 4312609,
20929 name: "Muçum",
20930 state: State::RS,
20931 },
20932 Municipio {
20933 ibge_code: 4312674,
20934 name: "Nicolau Vergueiro",
20935 state: State::RS,
20936 },
20937 Municipio {
20938 ibge_code: 4312708,
20939 name: "Nonoai",
20940 state: State::RS,
20941 },
20942 Municipio {
20943 ibge_code: 4312757,
20944 name: "Nova Alvorada",
20945 state: State::RS,
20946 },
20947 Municipio {
20948 ibge_code: 4312807,
20949 name: "Nova Araçá",
20950 state: State::RS,
20951 },
20952 Municipio {
20953 ibge_code: 4312906,
20954 name: "Nova Bassano",
20955 state: State::RS,
20956 },
20957 Municipio {
20958 ibge_code: 4312955,
20959 name: "Nova Boa Vista",
20960 state: State::RS,
20961 },
20962 Municipio {
20963 ibge_code: 4313003,
20964 name: "Nova Bréscia",
20965 state: State::RS,
20966 },
20967 Municipio {
20968 ibge_code: 4313011,
20969 name: "Nova Candelária",
20970 state: State::RS,
20971 },
20972 Municipio {
20973 ibge_code: 4313037,
20974 name: "Nova Esperança do Sul",
20975 state: State::RS,
20976 },
20977 Municipio {
20978 ibge_code: 4313060,
20979 name: "Nova Hartz",
20980 state: State::RS,
20981 },
20982 Municipio {
20983 ibge_code: 4313102,
20984 name: "Nova Palma",
20985 state: State::RS,
20986 },
20987 Municipio {
20988 ibge_code: 4313201,
20989 name: "Nova Petrópolis",
20990 state: State::RS,
20991 },
20992 Municipio {
20993 ibge_code: 4313300,
20994 name: "Nova Prata",
20995 state: State::RS,
20996 },
20997 Municipio {
20998 ibge_code: 4313086,
20999 name: "Nova Pádua",
21000 state: State::RS,
21001 },
21002 Municipio {
21003 ibge_code: 4313334,
21004 name: "Nova Ramada",
21005 state: State::RS,
21006 },
21007 Municipio {
21008 ibge_code: 4313359,
21009 name: "Nova Roma do Sul",
21010 state: State::RS,
21011 },
21012 Municipio {
21013 ibge_code: 4313375,
21014 name: "Nova Santa Rita",
21015 state: State::RS,
21016 },
21017 Municipio {
21018 ibge_code: 4313490,
21019 name: "Novo Barreiro",
21020 state: State::RS,
21021 },
21022 Municipio {
21023 ibge_code: 4313391,
21024 name: "Novo Cabrais",
21025 state: State::RS,
21026 },
21027 Municipio {
21028 ibge_code: 4313409,
21029 name: "Novo Hamburgo",
21030 state: State::RS,
21031 },
21032 Municipio {
21033 ibge_code: 4313425,
21034 name: "Novo Machado",
21035 state: State::RS,
21036 },
21037 Municipio {
21038 ibge_code: 4313441,
21039 name: "Novo Tiradentes",
21040 state: State::RS,
21041 },
21042 Municipio {
21043 ibge_code: 4313466,
21044 name: "Novo Xingu",
21045 state: State::RS,
21046 },
21047 Municipio {
21048 ibge_code: 4312658,
21049 name: "Não-Me-Toque",
21050 state: State::RS,
21051 },
21052 Municipio {
21053 ibge_code: 4313508,
21054 name: "Osório",
21055 state: State::RS,
21056 },
21057 Municipio {
21058 ibge_code: 4313607,
21059 name: "Paim Filho",
21060 state: State::RS,
21061 },
21062 Municipio {
21063 ibge_code: 4313656,
21064 name: "Palmares do Sul",
21065 state: State::RS,
21066 },
21067 Municipio {
21068 ibge_code: 4313706,
21069 name: "Palmeira das Missões",
21070 state: State::RS,
21071 },
21072 Municipio {
21073 ibge_code: 4313805,
21074 name: "Palmitinho",
21075 state: State::RS,
21076 },
21077 Municipio {
21078 ibge_code: 4313904,
21079 name: "Panambi",
21080 state: State::RS,
21081 },
21082 Municipio {
21083 ibge_code: 4313953,
21084 name: "Pantano Grande",
21085 state: State::RS,
21086 },
21087 Municipio {
21088 ibge_code: 4314001,
21089 name: "Paraí",
21090 state: State::RS,
21091 },
21092 Municipio {
21093 ibge_code: 4314027,
21094 name: "Paraíso do Sul",
21095 state: State::RS,
21096 },
21097 Municipio {
21098 ibge_code: 4314035,
21099 name: "Pareci Novo",
21100 state: State::RS,
21101 },
21102 Municipio {
21103 ibge_code: 4314050,
21104 name: "Parobé",
21105 state: State::RS,
21106 },
21107 Municipio {
21108 ibge_code: 4314068,
21109 name: "Passa Sete",
21110 state: State::RS,
21111 },
21112 Municipio {
21113 ibge_code: 4314100,
21114 name: "Passo Fundo",
21115 state: State::RS,
21116 },
21117 Municipio {
21118 ibge_code: 4314076,
21119 name: "Passo do Sobrado",
21120 state: State::RS,
21121 },
21122 Municipio {
21123 ibge_code: 4314134,
21124 name: "Paulo Bento",
21125 state: State::RS,
21126 },
21127 Municipio {
21128 ibge_code: 4314159,
21129 name: "Paverama",
21130 state: State::RS,
21131 },
21132 Municipio {
21133 ibge_code: 4314175,
21134 name: "Pedras Altas",
21135 state: State::RS,
21136 },
21137 Municipio {
21138 ibge_code: 4314209,
21139 name: "Pedro Osório",
21140 state: State::RS,
21141 },
21142 Municipio {
21143 ibge_code: 4314308,
21144 name: "Pejuçara",
21145 state: State::RS,
21146 },
21147 Municipio {
21148 ibge_code: 4314407,
21149 name: "Pelotas",
21150 state: State::RS,
21151 },
21152 Municipio {
21153 ibge_code: 4314423,
21154 name: "Picada Café",
21155 state: State::RS,
21156 },
21157 Municipio {
21158 ibge_code: 4314456,
21159 name: "Pinhal",
21160 state: State::RS,
21161 },
21162 Municipio {
21163 ibge_code: 4314472,
21164 name: "Pinhal Grande",
21165 state: State::RS,
21166 },
21167 Municipio {
21168 ibge_code: 4314464,
21169 name: "Pinhal da Serra",
21170 state: State::RS,
21171 },
21172 Municipio {
21173 ibge_code: 4314498,
21174 name: "Pinheirinho do Vale",
21175 state: State::RS,
21176 },
21177 Municipio {
21178 ibge_code: 4314506,
21179 name: "Pinheiro Machado",
21180 state: State::RS,
21181 },
21182 Municipio {
21183 ibge_code: 4314548,
21184 name: "Pinto Bandeira",
21185 state: State::RS,
21186 },
21187 Municipio {
21188 ibge_code: 4314555,
21189 name: "Pirapó",
21190 state: State::RS,
21191 },
21192 Municipio {
21193 ibge_code: 4314605,
21194 name: "Piratini",
21195 state: State::RS,
21196 },
21197 Municipio {
21198 ibge_code: 4314704,
21199 name: "Planalto",
21200 state: State::RS,
21201 },
21202 Municipio {
21203 ibge_code: 4314787,
21204 name: "Ponte Preta",
21205 state: State::RS,
21206 },
21207 Municipio {
21208 ibge_code: 4314779,
21209 name: "Pontão",
21210 state: State::RS,
21211 },
21212 Municipio {
21213 ibge_code: 4314902,
21214 name: "Porto Alegre",
21215 state: State::RS,
21216 },
21217 Municipio {
21218 ibge_code: 4315008,
21219 name: "Porto Lucena",
21220 state: State::RS,
21221 },
21222 Municipio {
21223 ibge_code: 4315057,
21224 name: "Porto Mauá",
21225 state: State::RS,
21226 },
21227 Municipio {
21228 ibge_code: 4315073,
21229 name: "Porto Vera Cruz",
21230 state: State::RS,
21231 },
21232 Municipio {
21233 ibge_code: 4315107,
21234 name: "Porto Xavier",
21235 state: State::RS,
21236 },
21237 Municipio {
21238 ibge_code: 4314803,
21239 name: "Portão",
21240 state: State::RS,
21241 },
21242 Municipio {
21243 ibge_code: 4315131,
21244 name: "Pouso Novo",
21245 state: State::RS,
21246 },
21247 Municipio {
21248 ibge_code: 4314753,
21249 name: "Poço das Antas",
21250 state: State::RS,
21251 },
21252 Municipio {
21253 ibge_code: 4315149,
21254 name: "Presidente Lucena",
21255 state: State::RS,
21256 },
21257 Municipio {
21258 ibge_code: 4315156,
21259 name: "Progresso",
21260 state: State::RS,
21261 },
21262 Municipio {
21263 ibge_code: 4315172,
21264 name: "Protásio Alves",
21265 state: State::RS,
21266 },
21267 Municipio {
21268 ibge_code: 4315206,
21269 name: "Putinga",
21270 state: State::RS,
21271 },
21272 Municipio {
21273 ibge_code: 4315305,
21274 name: "Quaraí",
21275 state: State::RS,
21276 },
21277 Municipio {
21278 ibge_code: 4315313,
21279 name: "Quatro Irmãos",
21280 state: State::RS,
21281 },
21282 Municipio {
21283 ibge_code: 4315321,
21284 name: "Quevedos",
21285 state: State::RS,
21286 },
21287 Municipio {
21288 ibge_code: 4315354,
21289 name: "Quinze de Novembro",
21290 state: State::RS,
21291 },
21292 Municipio {
21293 ibge_code: 4315404,
21294 name: "Redentora",
21295 state: State::RS,
21296 },
21297 Municipio {
21298 ibge_code: 4315453,
21299 name: "Relvado",
21300 state: State::RS,
21301 },
21302 Municipio {
21303 ibge_code: 4315503,
21304 name: "Restinga Sêca",
21305 state: State::RS,
21306 },
21307 Municipio {
21308 ibge_code: 4315602,
21309 name: "Rio Grande",
21310 state: State::RS,
21311 },
21312 Municipio {
21313 ibge_code: 4315701,
21314 name: "Rio Pardo",
21315 state: State::RS,
21316 },
21317 Municipio {
21318 ibge_code: 4315552,
21319 name: "Rio dos Índios",
21320 state: State::RS,
21321 },
21322 Municipio {
21323 ibge_code: 4315750,
21324 name: "Riozinho",
21325 state: State::RS,
21326 },
21327 Municipio {
21328 ibge_code: 4315800,
21329 name: "Roca Sales",
21330 state: State::RS,
21331 },
21332 Municipio {
21333 ibge_code: 4315909,
21334 name: "Rodeio Bonito",
21335 state: State::RS,
21336 },
21337 Municipio {
21338 ibge_code: 4315958,
21339 name: "Rolador",
21340 state: State::RS,
21341 },
21342 Municipio {
21343 ibge_code: 4316006,
21344 name: "Rolante",
21345 state: State::RS,
21346 },
21347 Municipio {
21348 ibge_code: 4316105,
21349 name: "Ronda Alta",
21350 state: State::RS,
21351 },
21352 Municipio {
21353 ibge_code: 4316204,
21354 name: "Rondinha",
21355 state: State::RS,
21356 },
21357 Municipio {
21358 ibge_code: 4316303,
21359 name: "Roque Gonzales",
21360 state: State::RS,
21361 },
21362 Municipio {
21363 ibge_code: 4316402,
21364 name: "Rosário do Sul",
21365 state: State::RS,
21366 },
21367 Municipio {
21368 ibge_code: 4316428,
21369 name: "Sagrada Família",
21370 state: State::RS,
21371 },
21372 Municipio {
21373 ibge_code: 4316436,
21374 name: "Saldanha Marinho",
21375 state: State::RS,
21376 },
21377 Municipio {
21378 ibge_code: 4316451,
21379 name: "Salto do Jacuí",
21380 state: State::RS,
21381 },
21382 Municipio {
21383 ibge_code: 4316477,
21384 name: "Salvador das Missões",
21385 state: State::RS,
21386 },
21387 Municipio {
21388 ibge_code: 4316501,
21389 name: "Salvador do Sul",
21390 state: State::RS,
21391 },
21392 Municipio {
21393 ibge_code: 4316600,
21394 name: "Sananduva",
21395 state: State::RS,
21396 },
21397 Municipio {
21398 ibge_code: 4317103,
21399 name: "Sant'Ana do Livramento",
21400 state: State::RS,
21401 },
21402 Municipio {
21403 ibge_code: 4316709,
21404 name: "Santa Bárbara do Sul",
21405 state: State::RS,
21406 },
21407 Municipio {
21408 ibge_code: 4316733,
21409 name: "Santa Cecília do Sul",
21410 state: State::RS,
21411 },
21412 Municipio {
21413 ibge_code: 4316758,
21414 name: "Santa Clara do Sul",
21415 state: State::RS,
21416 },
21417 Municipio {
21418 ibge_code: 4316808,
21419 name: "Santa Cruz do Sul",
21420 state: State::RS,
21421 },
21422 Municipio {
21423 ibge_code: 4316972,
21424 name: "Santa Margarida do Sul",
21425 state: State::RS,
21426 },
21427 Municipio {
21428 ibge_code: 4316907,
21429 name: "Santa Maria",
21430 state: State::RS,
21431 },
21432 Municipio {
21433 ibge_code: 4316956,
21434 name: "Santa Maria do Herval",
21435 state: State::RS,
21436 },
21437 Municipio {
21438 ibge_code: 4317202,
21439 name: "Santa Rosa",
21440 state: State::RS,
21441 },
21442 Municipio {
21443 ibge_code: 4317251,
21444 name: "Santa Tereza",
21445 state: State::RS,
21446 },
21447 Municipio {
21448 ibge_code: 4317301,
21449 name: "Santa Vitória do Palmar",
21450 state: State::RS,
21451 },
21452 Municipio {
21453 ibge_code: 4317004,
21454 name: "Santana da Boa Vista",
21455 state: State::RS,
21456 },
21457 Municipio {
21458 ibge_code: 4317400,
21459 name: "Santiago",
21460 state: State::RS,
21461 },
21462 Municipio {
21463 ibge_code: 4317608,
21464 name: "Santo Antônio da Patrulha",
21465 state: State::RS,
21466 },
21467 Municipio {
21468 ibge_code: 4317707,
21469 name: "Santo Antônio das Missões",
21470 state: State::RS,
21471 },
21472 Municipio {
21473 ibge_code: 4317558,
21474 name: "Santo Antônio do Palma",
21475 state: State::RS,
21476 },
21477 Municipio {
21478 ibge_code: 4317756,
21479 name: "Santo Antônio do Planalto",
21480 state: State::RS,
21481 },
21482 Municipio {
21483 ibge_code: 4317806,
21484 name: "Santo Augusto",
21485 state: State::RS,
21486 },
21487 Municipio {
21488 ibge_code: 4317905,
21489 name: "Santo Cristo",
21490 state: State::RS,
21491 },
21492 Municipio {
21493 ibge_code: 4317954,
21494 name: "Santo Expedito do Sul",
21495 state: State::RS,
21496 },
21497 Municipio {
21498 ibge_code: 4317509,
21499 name: "Santo Ângelo",
21500 state: State::RS,
21501 },
21502 Municipio {
21503 ibge_code: 4319901,
21504 name: "Sapiranga",
21505 state: State::RS,
21506 },
21507 Municipio {
21508 ibge_code: 4320008,
21509 name: "Sapucaia do Sul",
21510 state: State::RS,
21511 },
21512 Municipio {
21513 ibge_code: 4320107,
21514 name: "Sarandi",
21515 state: State::RS,
21516 },
21517 Municipio {
21518 ibge_code: 4320206,
21519 name: "Seberi",
21520 state: State::RS,
21521 },
21522 Municipio {
21523 ibge_code: 4320230,
21524 name: "Sede Nova",
21525 state: State::RS,
21526 },
21527 Municipio {
21528 ibge_code: 4320263,
21529 name: "Segredo",
21530 state: State::RS,
21531 },
21532 Municipio {
21533 ibge_code: 4320305,
21534 name: "Selbach",
21535 state: State::RS,
21536 },
21537 Municipio {
21538 ibge_code: 4320321,
21539 name: "Senador Salgado Filho",
21540 state: State::RS,
21541 },
21542 Municipio {
21543 ibge_code: 4320354,
21544 name: "Sentinela do Sul",
21545 state: State::RS,
21546 },
21547 Municipio {
21548 ibge_code: 4320404,
21549 name: "Serafina Corrêa",
21550 state: State::RS,
21551 },
21552 Municipio {
21553 ibge_code: 4320503,
21554 name: "Sertão",
21555 state: State::RS,
21556 },
21557 Municipio {
21558 ibge_code: 4320552,
21559 name: "Sertão Santana",
21560 state: State::RS,
21561 },
21562 Municipio {
21563 ibge_code: 4320578,
21564 name: "Sete de Setembro",
21565 state: State::RS,
21566 },
21567 Municipio {
21568 ibge_code: 4320602,
21569 name: "Severiano de Almeida",
21570 state: State::RS,
21571 },
21572 Municipio {
21573 ibge_code: 4320651,
21574 name: "Silveira Martins",
21575 state: State::RS,
21576 },
21577 Municipio {
21578 ibge_code: 4320677,
21579 name: "Sinimbu",
21580 state: State::RS,
21581 },
21582 Municipio {
21583 ibge_code: 4320701,
21584 name: "Sobradinho",
21585 state: State::RS,
21586 },
21587 Municipio {
21588 ibge_code: 4320800,
21589 name: "Soledade",
21590 state: State::RS,
21591 },
21592 Municipio {
21593 ibge_code: 4318002,
21594 name: "São Borja",
21595 state: State::RS,
21596 },
21597 Municipio {
21598 ibge_code: 4318051,
21599 name: "São Domingos do Sul",
21600 state: State::RS,
21601 },
21602 Municipio {
21603 ibge_code: 4318101,
21604 name: "São Francisco de Assis",
21605 state: State::RS,
21606 },
21607 Municipio {
21608 ibge_code: 4318200,
21609 name: "São Francisco de Paula",
21610 state: State::RS,
21611 },
21612 Municipio {
21613 ibge_code: 4318309,
21614 name: "São Gabriel",
21615 state: State::RS,
21616 },
21617 Municipio {
21618 ibge_code: 4318408,
21619 name: "São Jerônimo",
21620 state: State::RS,
21621 },
21622 Municipio {
21623 ibge_code: 4318440,
21624 name: "São Jorge",
21625 state: State::RS,
21626 },
21627 Municipio {
21628 ibge_code: 4318457,
21629 name: "São José das Missões",
21630 state: State::RS,
21631 },
21632 Municipio {
21633 ibge_code: 4318465,
21634 name: "São José do Herval",
21635 state: State::RS,
21636 },
21637 Municipio {
21638 ibge_code: 4318481,
21639 name: "São José do Hortêncio",
21640 state: State::RS,
21641 },
21642 Municipio {
21643 ibge_code: 4318499,
21644 name: "São José do Inhacorá",
21645 state: State::RS,
21646 },
21647 Municipio {
21648 ibge_code: 4318507,
21649 name: "São José do Norte",
21650 state: State::RS,
21651 },
21652 Municipio {
21653 ibge_code: 4318606,
21654 name: "São José do Ouro",
21655 state: State::RS,
21656 },
21657 Municipio {
21658 ibge_code: 4318614,
21659 name: "São José do Sul",
21660 state: State::RS,
21661 },
21662 Municipio {
21663 ibge_code: 4318622,
21664 name: "São José dos Ausentes",
21665 state: State::RS,
21666 },
21667 Municipio {
21668 ibge_code: 4318424,
21669 name: "São João da Urtiga",
21670 state: State::RS,
21671 },
21672 Municipio {
21673 ibge_code: 4318432,
21674 name: "São João do Polêsine",
21675 state: State::RS,
21676 },
21677 Municipio {
21678 ibge_code: 4318705,
21679 name: "São Leopoldo",
21680 state: State::RS,
21681 },
21682 Municipio {
21683 ibge_code: 4318804,
21684 name: "São Lourenço do Sul",
21685 state: State::RS,
21686 },
21687 Municipio {
21688 ibge_code: 4318903,
21689 name: "São Luiz Gonzaga",
21690 state: State::RS,
21691 },
21692 Municipio {
21693 ibge_code: 4319000,
21694 name: "São Marcos",
21695 state: State::RS,
21696 },
21697 Municipio {
21698 ibge_code: 4319109,
21699 name: "São Martinho",
21700 state: State::RS,
21701 },
21702 Municipio {
21703 ibge_code: 4319125,
21704 name: "São Martinho da Serra",
21705 state: State::RS,
21706 },
21707 Municipio {
21708 ibge_code: 4319158,
21709 name: "São Miguel das Missões",
21710 state: State::RS,
21711 },
21712 Municipio {
21713 ibge_code: 4319208,
21714 name: "São Nicolau",
21715 state: State::RS,
21716 },
21717 Municipio {
21718 ibge_code: 4319307,
21719 name: "São Paulo das Missões",
21720 state: State::RS,
21721 },
21722 Municipio {
21723 ibge_code: 4319356,
21724 name: "São Pedro da Serra",
21725 state: State::RS,
21726 },
21727 Municipio {
21728 ibge_code: 4319364,
21729 name: "São Pedro das Missões",
21730 state: State::RS,
21731 },
21732 Municipio {
21733 ibge_code: 4319372,
21734 name: "São Pedro do Butiá",
21735 state: State::RS,
21736 },
21737 Municipio {
21738 ibge_code: 4319406,
21739 name: "São Pedro do Sul",
21740 state: State::RS,
21741 },
21742 Municipio {
21743 ibge_code: 4319505,
21744 name: "São Sebastião do Caí",
21745 state: State::RS,
21746 },
21747 Municipio {
21748 ibge_code: 4319604,
21749 name: "São Sepé",
21750 state: State::RS,
21751 },
21752 Municipio {
21753 ibge_code: 4319703,
21754 name: "São Valentim",
21755 state: State::RS,
21756 },
21757 Municipio {
21758 ibge_code: 4319711,
21759 name: "São Valentim do Sul",
21760 state: State::RS,
21761 },
21762 Municipio {
21763 ibge_code: 4319737,
21764 name: "São Valério do Sul",
21765 state: State::RS,
21766 },
21767 Municipio {
21768 ibge_code: 4319752,
21769 name: "São Vendelino",
21770 state: State::RS,
21771 },
21772 Municipio {
21773 ibge_code: 4319802,
21774 name: "São Vicente do Sul",
21775 state: State::RS,
21776 },
21777 Municipio {
21778 ibge_code: 4320453,
21779 name: "Sério",
21780 state: State::RS,
21781 },
21782 Municipio {
21783 ibge_code: 4320859,
21784 name: "Tabaí",
21785 state: State::RS,
21786 },
21787 Municipio {
21788 ibge_code: 4320909,
21789 name: "Tapejara",
21790 state: State::RS,
21791 },
21792 Municipio {
21793 ibge_code: 4321006,
21794 name: "Tapera",
21795 state: State::RS,
21796 },
21797 Municipio {
21798 ibge_code: 4321105,
21799 name: "Tapes",
21800 state: State::RS,
21801 },
21802 Municipio {
21803 ibge_code: 4321204,
21804 name: "Taquara",
21805 state: State::RS,
21806 },
21807 Municipio {
21808 ibge_code: 4321303,
21809 name: "Taquari",
21810 state: State::RS,
21811 },
21812 Municipio {
21813 ibge_code: 4321329,
21814 name: "Taquaruçu do Sul",
21815 state: State::RS,
21816 },
21817 Municipio {
21818 ibge_code: 4321352,
21819 name: "Tavares",
21820 state: State::RS,
21821 },
21822 Municipio {
21823 ibge_code: 4321402,
21824 name: "Tenente Portela",
21825 state: State::RS,
21826 },
21827 Municipio {
21828 ibge_code: 4321436,
21829 name: "Terra de Areia",
21830 state: State::RS,
21831 },
21832 Municipio {
21833 ibge_code: 4321451,
21834 name: "Teutônia",
21835 state: State::RS,
21836 },
21837 Municipio {
21838 ibge_code: 4321469,
21839 name: "Tio Hugo",
21840 state: State::RS,
21841 },
21842 Municipio {
21843 ibge_code: 4321477,
21844 name: "Tiradentes do Sul",
21845 state: State::RS,
21846 },
21847 Municipio {
21848 ibge_code: 4321493,
21849 name: "Toropi",
21850 state: State::RS,
21851 },
21852 Municipio {
21853 ibge_code: 4321501,
21854 name: "Torres",
21855 state: State::RS,
21856 },
21857 Municipio {
21858 ibge_code: 4321600,
21859 name: "Tramandaí",
21860 state: State::RS,
21861 },
21862 Municipio {
21863 ibge_code: 4321626,
21864 name: "Travesseiro",
21865 state: State::RS,
21866 },
21867 Municipio {
21868 ibge_code: 4321956,
21869 name: "Trindade do Sul",
21870 state: State::RS,
21871 },
21872 Municipio {
21873 ibge_code: 4322004,
21874 name: "Triunfo",
21875 state: State::RS,
21876 },
21877 Municipio {
21878 ibge_code: 4321634,
21879 name: "Três Arroios",
21880 state: State::RS,
21881 },
21882 Municipio {
21883 ibge_code: 4321667,
21884 name: "Três Cachoeiras",
21885 state: State::RS,
21886 },
21887 Municipio {
21888 ibge_code: 4321709,
21889 name: "Três Coroas",
21890 state: State::RS,
21891 },
21892 Municipio {
21893 ibge_code: 4321832,
21894 name: "Três Forquilhas",
21895 state: State::RS,
21896 },
21897 Municipio {
21898 ibge_code: 4321857,
21899 name: "Três Palmeiras",
21900 state: State::RS,
21901 },
21902 Municipio {
21903 ibge_code: 4321907,
21904 name: "Três Passos",
21905 state: State::RS,
21906 },
21907 Municipio {
21908 ibge_code: 4321808,
21909 name: "Três de Maio",
21910 state: State::RS,
21911 },
21912 Municipio {
21913 ibge_code: 4322103,
21914 name: "Tucunduva",
21915 state: State::RS,
21916 },
21917 Municipio {
21918 ibge_code: 4322152,
21919 name: "Tunas",
21920 state: State::RS,
21921 },
21922 Municipio {
21923 ibge_code: 4322186,
21924 name: "Tupanci do Sul",
21925 state: State::RS,
21926 },
21927 Municipio {
21928 ibge_code: 4322202,
21929 name: "Tupanciretã",
21930 state: State::RS,
21931 },
21932 Municipio {
21933 ibge_code: 4322251,
21934 name: "Tupandi",
21935 state: State::RS,
21936 },
21937 Municipio {
21938 ibge_code: 4322301,
21939 name: "Tuparendi",
21940 state: State::RS,
21941 },
21942 Municipio {
21943 ibge_code: 4322327,
21944 name: "Turuçu",
21945 state: State::RS,
21946 },
21947 Municipio {
21948 ibge_code: 4322343,
21949 name: "Ubiretama",
21950 state: State::RS,
21951 },
21952 Municipio {
21953 ibge_code: 4322376,
21954 name: "Unistalda",
21955 state: State::RS,
21956 },
21957 Municipio {
21958 ibge_code: 4322350,
21959 name: "União da Serra",
21960 state: State::RS,
21961 },
21962 Municipio {
21963 ibge_code: 4322400,
21964 name: "Uruguaiana",
21965 state: State::RS,
21966 },
21967 Municipio {
21968 ibge_code: 4322509,
21969 name: "Vacaria",
21970 state: State::RS,
21971 },
21972 Municipio {
21973 ibge_code: 4322541,
21974 name: "Vale Real",
21975 state: State::RS,
21976 },
21977 Municipio {
21978 ibge_code: 4322525,
21979 name: "Vale Verde",
21980 state: State::RS,
21981 },
21982 Municipio {
21983 ibge_code: 4322533,
21984 name: "Vale do Sol",
21985 state: State::RS,
21986 },
21987 Municipio {
21988 ibge_code: 4322558,
21989 name: "Vanini",
21990 state: State::RS,
21991 },
21992 Municipio {
21993 ibge_code: 4322608,
21994 name: "Venâncio Aires",
21995 state: State::RS,
21996 },
21997 Municipio {
21998 ibge_code: 4322707,
21999 name: "Vera Cruz",
22000 state: State::RS,
22001 },
22002 Municipio {
22003 ibge_code: 4322806,
22004 name: "Veranópolis",
22005 state: State::RS,
22006 },
22007 Municipio {
22008 ibge_code: 4322855,
22009 name: "Vespasiano Corrêa",
22010 state: State::RS,
22011 },
22012 Municipio {
22013 ibge_code: 4322905,
22014 name: "Viadutos",
22015 state: State::RS,
22016 },
22017 Municipio {
22018 ibge_code: 4323002,
22019 name: "Viamão",
22020 state: State::RS,
22021 },
22022 Municipio {
22023 ibge_code: 4323101,
22024 name: "Vicente Dutra",
22025 state: State::RS,
22026 },
22027 Municipio {
22028 ibge_code: 4323200,
22029 name: "Victor Graeff",
22030 state: State::RS,
22031 },
22032 Municipio {
22033 ibge_code: 4323309,
22034 name: "Vila Flores",
22035 state: State::RS,
22036 },
22037 Municipio {
22038 ibge_code: 4323358,
22039 name: "Vila Lângaro",
22040 state: State::RS,
22041 },
22042 Municipio {
22043 ibge_code: 4323408,
22044 name: "Vila Maria",
22045 state: State::RS,
22046 },
22047 Municipio {
22048 ibge_code: 4323457,
22049 name: "Vila Nova do Sul",
22050 state: State::RS,
22051 },
22052 Municipio {
22053 ibge_code: 4323507,
22054 name: "Vista Alegre",
22055 state: State::RS,
22056 },
22057 Municipio {
22058 ibge_code: 4323606,
22059 name: "Vista Alegre do Prata",
22060 state: State::RS,
22061 },
22062 Municipio {
22063 ibge_code: 4323705,
22064 name: "Vista Gaúcha",
22065 state: State::RS,
22066 },
22067 Municipio {
22068 ibge_code: 4323754,
22069 name: "Vitória das Missões",
22070 state: State::RS,
22071 },
22072 Municipio {
22073 ibge_code: 4323770,
22074 name: "Westfália",
22075 state: State::RS,
22076 },
22077 Municipio {
22078 ibge_code: 4323804,
22079 name: "Xangri-lá",
22080 state: State::RS,
22081 },
22082 Municipio {
22083 ibge_code: 4300059,
22084 name: "Água Santa",
22085 state: State::RS,
22086 },
22087 Municipio {
22088 ibge_code: 4301552,
22089 name: "Áurea",
22090 state: State::RS,
22091 },
22092 Municipio {
22093 ibge_code: 4200051,
22094 name: "Abdon Batista",
22095 state: State::SC,
22096 },
22097 Municipio {
22098 ibge_code: 4200101,
22099 name: "Abelardo Luz",
22100 state: State::SC,
22101 },
22102 Municipio {
22103 ibge_code: 4200200,
22104 name: "Agrolândia",
22105 state: State::SC,
22106 },
22107 Municipio {
22108 ibge_code: 4200309,
22109 name: "Agronômica",
22110 state: State::SC,
22111 },
22112 Municipio {
22113 ibge_code: 4200705,
22114 name: "Alfredo Wagner",
22115 state: State::SC,
22116 },
22117 Municipio {
22118 ibge_code: 4200754,
22119 name: "Alto Bela Vista",
22120 state: State::SC,
22121 },
22122 Municipio {
22123 ibge_code: 4200804,
22124 name: "Anchieta",
22125 state: State::SC,
22126 },
22127 Municipio {
22128 ibge_code: 4200903,
22129 name: "Angelina",
22130 state: State::SC,
22131 },
22132 Municipio {
22133 ibge_code: 4201000,
22134 name: "Anita Garibaldi",
22135 state: State::SC,
22136 },
22137 Municipio {
22138 ibge_code: 4201109,
22139 name: "Anitápolis",
22140 state: State::SC,
22141 },
22142 Municipio {
22143 ibge_code: 4201208,
22144 name: "Antônio Carlos",
22145 state: State::SC,
22146 },
22147 Municipio {
22148 ibge_code: 4201257,
22149 name: "Apiúna",
22150 state: State::SC,
22151 },
22152 Municipio {
22153 ibge_code: 4201273,
22154 name: "Arabutã",
22155 state: State::SC,
22156 },
22157 Municipio {
22158 ibge_code: 4201307,
22159 name: "Araquari",
22160 state: State::SC,
22161 },
22162 Municipio {
22163 ibge_code: 4201406,
22164 name: "Araranguá",
22165 state: State::SC,
22166 },
22167 Municipio {
22168 ibge_code: 4201505,
22169 name: "Armazém",
22170 state: State::SC,
22171 },
22172 Municipio {
22173 ibge_code: 4201604,
22174 name: "Arroio Trinta",
22175 state: State::SC,
22176 },
22177 Municipio {
22178 ibge_code: 4201653,
22179 name: "Arvoredo",
22180 state: State::SC,
22181 },
22182 Municipio {
22183 ibge_code: 4201703,
22184 name: "Ascurra",
22185 state: State::SC,
22186 },
22187 Municipio {
22188 ibge_code: 4201802,
22189 name: "Atalanta",
22190 state: State::SC,
22191 },
22192 Municipio {
22193 ibge_code: 4201901,
22194 name: "Aurora",
22195 state: State::SC,
22196 },
22197 Municipio {
22198 ibge_code: 4201950,
22199 name: "Balneário Arroio do Silva",
22200 state: State::SC,
22201 },
22202 Municipio {
22203 ibge_code: 4202057,
22204 name: "Balneário Barra do Sul",
22205 state: State::SC,
22206 },
22207 Municipio {
22208 ibge_code: 4202008,
22209 name: "Balneário Camboriú",
22210 state: State::SC,
22211 },
22212 Municipio {
22213 ibge_code: 4202073,
22214 name: "Balneário Gaivota",
22215 state: State::SC,
22216 },
22217 Municipio {
22218 ibge_code: 4212809,
22219 name: "Balneário Piçarras",
22220 state: State::SC,
22221 },
22222 Municipio {
22223 ibge_code: 4220000,
22224 name: "Balneário Rincão",
22225 state: State::SC,
22226 },
22227 Municipio {
22228 ibge_code: 4202081,
22229 name: "Bandeirante",
22230 state: State::SC,
22231 },
22232 Municipio {
22233 ibge_code: 4202099,
22234 name: "Barra Bonita",
22235 state: State::SC,
22236 },
22237 Municipio {
22238 ibge_code: 4202107,
22239 name: "Barra Velha",
22240 state: State::SC,
22241 },
22242 Municipio {
22243 ibge_code: 4202131,
22244 name: "Bela Vista do Toldo",
22245 state: State::SC,
22246 },
22247 Municipio {
22248 ibge_code: 4202156,
22249 name: "Belmonte",
22250 state: State::SC,
22251 },
22252 Municipio {
22253 ibge_code: 4202206,
22254 name: "Benedito Novo",
22255 state: State::SC,
22256 },
22257 Municipio {
22258 ibge_code: 4202305,
22259 name: "Biguaçu",
22260 state: State::SC,
22261 },
22262 Municipio {
22263 ibge_code: 4202404,
22264 name: "Blumenau",
22265 state: State::SC,
22266 },
22267 Municipio {
22268 ibge_code: 4202438,
22269 name: "Bocaina do Sul",
22270 state: State::SC,
22271 },
22272 Municipio {
22273 ibge_code: 4202503,
22274 name: "Bom Jardim da Serra",
22275 state: State::SC,
22276 },
22277 Municipio {
22278 ibge_code: 4202537,
22279 name: "Bom Jesus",
22280 state: State::SC,
22281 },
22282 Municipio {
22283 ibge_code: 4202578,
22284 name: "Bom Jesus do Oeste",
22285 state: State::SC,
22286 },
22287 Municipio {
22288 ibge_code: 4202602,
22289 name: "Bom Retiro",
22290 state: State::SC,
22291 },
22292 Municipio {
22293 ibge_code: 4202453,
22294 name: "Bombinhas",
22295 state: State::SC,
22296 },
22297 Municipio {
22298 ibge_code: 4202701,
22299 name: "Botuverá",
22300 state: State::SC,
22301 },
22302 Municipio {
22303 ibge_code: 4202800,
22304 name: "Braço do Norte",
22305 state: State::SC,
22306 },
22307 Municipio {
22308 ibge_code: 4202859,
22309 name: "Braço do Trombudo",
22310 state: State::SC,
22311 },
22312 Municipio {
22313 ibge_code: 4202875,
22314 name: "Brunópolis",
22315 state: State::SC,
22316 },
22317 Municipio {
22318 ibge_code: 4202909,
22319 name: "Brusque",
22320 state: State::SC,
22321 },
22322 Municipio {
22323 ibge_code: 4203105,
22324 name: "Caibi",
22325 state: State::SC,
22326 },
22327 Municipio {
22328 ibge_code: 4203154,
22329 name: "Calmon",
22330 state: State::SC,
22331 },
22332 Municipio {
22333 ibge_code: 4203204,
22334 name: "Camboriú",
22335 state: State::SC,
22336 },
22337 Municipio {
22338 ibge_code: 4203303,
22339 name: "Campo Alegre",
22340 state: State::SC,
22341 },
22342 Municipio {
22343 ibge_code: 4203402,
22344 name: "Campo Belo do Sul",
22345 state: State::SC,
22346 },
22347 Municipio {
22348 ibge_code: 4203501,
22349 name: "Campo Erê",
22350 state: State::SC,
22351 },
22352 Municipio {
22353 ibge_code: 4203600,
22354 name: "Campos Novos",
22355 state: State::SC,
22356 },
22357 Municipio {
22358 ibge_code: 4203709,
22359 name: "Canelinha",
22360 state: State::SC,
22361 },
22362 Municipio {
22363 ibge_code: 4203808,
22364 name: "Canoinhas",
22365 state: State::SC,
22366 },
22367 Municipio {
22368 ibge_code: 4203907,
22369 name: "Capinzal",
22370 state: State::SC,
22371 },
22372 Municipio {
22373 ibge_code: 4203956,
22374 name: "Capivari de Baixo",
22375 state: State::SC,
22376 },
22377 Municipio {
22378 ibge_code: 4203253,
22379 name: "Capão Alto",
22380 state: State::SC,
22381 },
22382 Municipio {
22383 ibge_code: 4204004,
22384 name: "Catanduvas",
22385 state: State::SC,
22386 },
22387 Municipio {
22388 ibge_code: 4204103,
22389 name: "Caxambu do Sul",
22390 state: State::SC,
22391 },
22392 Municipio {
22393 ibge_code: 4203006,
22394 name: "Caçador",
22395 state: State::SC,
22396 },
22397 Municipio {
22398 ibge_code: 4204152,
22399 name: "Celso Ramos",
22400 state: State::SC,
22401 },
22402 Municipio {
22403 ibge_code: 4204178,
22404 name: "Cerro Negro",
22405 state: State::SC,
22406 },
22407 Municipio {
22408 ibge_code: 4204194,
22409 name: "Chapadão do Lageado",
22410 state: State::SC,
22411 },
22412 Municipio {
22413 ibge_code: 4204202,
22414 name: "Chapecó",
22415 state: State::SC,
22416 },
22417 Municipio {
22418 ibge_code: 4204251,
22419 name: "Cocal do Sul",
22420 state: State::SC,
22421 },
22422 Municipio {
22423 ibge_code: 4204301,
22424 name: "Concórdia",
22425 state: State::SC,
22426 },
22427 Municipio {
22428 ibge_code: 4204350,
22429 name: "Cordilheira Alta",
22430 state: State::SC,
22431 },
22432 Municipio {
22433 ibge_code: 4204400,
22434 name: "Coronel Freitas",
22435 state: State::SC,
22436 },
22437 Municipio {
22438 ibge_code: 4204459,
22439 name: "Coronel Martins",
22440 state: State::SC,
22441 },
22442 Municipio {
22443 ibge_code: 4204558,
22444 name: "Correia Pinto",
22445 state: State::SC,
22446 },
22447 Municipio {
22448 ibge_code: 4204509,
22449 name: "Corupá",
22450 state: State::SC,
22451 },
22452 Municipio {
22453 ibge_code: 4204608,
22454 name: "Criciúma",
22455 state: State::SC,
22456 },
22457 Municipio {
22458 ibge_code: 4204707,
22459 name: "Cunha Porã",
22460 state: State::SC,
22461 },
22462 Municipio {
22463 ibge_code: 4204756,
22464 name: "Cunhataí",
22465 state: State::SC,
22466 },
22467 Municipio {
22468 ibge_code: 4204806,
22469 name: "Curitibanos",
22470 state: State::SC,
22471 },
22472 Municipio {
22473 ibge_code: 4204905,
22474 name: "Descanso",
22475 state: State::SC,
22476 },
22477 Municipio {
22478 ibge_code: 4205001,
22479 name: "Dionísio Cerqueira",
22480 state: State::SC,
22481 },
22482 Municipio {
22483 ibge_code: 4205100,
22484 name: "Dona Emma",
22485 state: State::SC,
22486 },
22487 Municipio {
22488 ibge_code: 4205159,
22489 name: "Doutor Pedrinho",
22490 state: State::SC,
22491 },
22492 Municipio {
22493 ibge_code: 4205175,
22494 name: "Entre Rios",
22495 state: State::SC,
22496 },
22497 Municipio {
22498 ibge_code: 4205191,
22499 name: "Ermo",
22500 state: State::SC,
22501 },
22502 Municipio {
22503 ibge_code: 4205209,
22504 name: "Erval Velho",
22505 state: State::SC,
22506 },
22507 Municipio {
22508 ibge_code: 4205308,
22509 name: "Faxinal dos Guedes",
22510 state: State::SC,
22511 },
22512 Municipio {
22513 ibge_code: 4205357,
22514 name: "Flor do Sertão",
22515 state: State::SC,
22516 },
22517 Municipio {
22518 ibge_code: 4205407,
22519 name: "Florianópolis",
22520 state: State::SC,
22521 },
22522 Municipio {
22523 ibge_code: 4205431,
22524 name: "Formosa do Sul",
22525 state: State::SC,
22526 },
22527 Municipio {
22528 ibge_code: 4205456,
22529 name: "Forquilhinha",
22530 state: State::SC,
22531 },
22532 Municipio {
22533 ibge_code: 4205506,
22534 name: "Fraiburgo",
22535 state: State::SC,
22536 },
22537 Municipio {
22538 ibge_code: 4205555,
22539 name: "Frei Rogério",
22540 state: State::SC,
22541 },
22542 Municipio {
22543 ibge_code: 4205605,
22544 name: "Galvão",
22545 state: State::SC,
22546 },
22547 Municipio {
22548 ibge_code: 4205704,
22549 name: "Garopaba",
22550 state: State::SC,
22551 },
22552 Municipio {
22553 ibge_code: 4205803,
22554 name: "Garuva",
22555 state: State::SC,
22556 },
22557 Municipio {
22558 ibge_code: 4205902,
22559 name: "Gaspar",
22560 state: State::SC,
22561 },
22562 Municipio {
22563 ibge_code: 4206009,
22564 name: "Governador Celso Ramos",
22565 state: State::SC,
22566 },
22567 Municipio {
22568 ibge_code: 4206207,
22569 name: "Gravatal",
22570 state: State::SC,
22571 },
22572 Municipio {
22573 ibge_code: 4206108,
22574 name: "Grão-Pará",
22575 state: State::SC,
22576 },
22577 Municipio {
22578 ibge_code: 4206306,
22579 name: "Guabiruba",
22580 state: State::SC,
22581 },
22582 Municipio {
22583 ibge_code: 4206405,
22584 name: "Guaraciaba",
22585 state: State::SC,
22586 },
22587 Municipio {
22588 ibge_code: 4206504,
22589 name: "Guaramirim",
22590 state: State::SC,
22591 },
22592 Municipio {
22593 ibge_code: 4206603,
22594 name: "Guarujá do Sul",
22595 state: State::SC,
22596 },
22597 Municipio {
22598 ibge_code: 4206652,
22599 name: "Guatambú",
22600 state: State::SC,
22601 },
22602 Municipio {
22603 ibge_code: 4206702,
22604 name: "Herval d'Oeste",
22605 state: State::SC,
22606 },
22607 Municipio {
22608 ibge_code: 4206751,
22609 name: "Ibiam",
22610 state: State::SC,
22611 },
22612 Municipio {
22613 ibge_code: 4206801,
22614 name: "Ibicaré",
22615 state: State::SC,
22616 },
22617 Municipio {
22618 ibge_code: 4206900,
22619 name: "Ibirama",
22620 state: State::SC,
22621 },
22622 Municipio {
22623 ibge_code: 4207106,
22624 name: "Ilhota",
22625 state: State::SC,
22626 },
22627 Municipio {
22628 ibge_code: 4207205,
22629 name: "Imaruí",
22630 state: State::SC,
22631 },
22632 Municipio {
22633 ibge_code: 4207304,
22634 name: "Imbituba",
22635 state: State::SC,
22636 },
22637 Municipio {
22638 ibge_code: 4207403,
22639 name: "Imbuia",
22640 state: State::SC,
22641 },
22642 Municipio {
22643 ibge_code: 4207502,
22644 name: "Indaial",
22645 state: State::SC,
22646 },
22647 Municipio {
22648 ibge_code: 4207577,
22649 name: "Iomerê",
22650 state: State::SC,
22651 },
22652 Municipio {
22653 ibge_code: 4207601,
22654 name: "Ipira",
22655 state: State::SC,
22656 },
22657 Municipio {
22658 ibge_code: 4207650,
22659 name: "Iporã do Oeste",
22660 state: State::SC,
22661 },
22662 Municipio {
22663 ibge_code: 4207684,
22664 name: "Ipuaçu",
22665 state: State::SC,
22666 },
22667 Municipio {
22668 ibge_code: 4207700,
22669 name: "Ipumirim",
22670 state: State::SC,
22671 },
22672 Municipio {
22673 ibge_code: 4207759,
22674 name: "Iraceminha",
22675 state: State::SC,
22676 },
22677 Municipio {
22678 ibge_code: 4207809,
22679 name: "Irani",
22680 state: State::SC,
22681 },
22682 Municipio {
22683 ibge_code: 4207858,
22684 name: "Irati",
22685 state: State::SC,
22686 },
22687 Municipio {
22688 ibge_code: 4207908,
22689 name: "Irineópolis",
22690 state: State::SC,
22691 },
22692 Municipio {
22693 ibge_code: 4208104,
22694 name: "Itaiópolis",
22695 state: State::SC,
22696 },
22697 Municipio {
22698 ibge_code: 4208203,
22699 name: "Itajaí",
22700 state: State::SC,
22701 },
22702 Municipio {
22703 ibge_code: 4208302,
22704 name: "Itapema",
22705 state: State::SC,
22706 },
22707 Municipio {
22708 ibge_code: 4208401,
22709 name: "Itapiranga",
22710 state: State::SC,
22711 },
22712 Municipio {
22713 ibge_code: 4208450,
22714 name: "Itapoá",
22715 state: State::SC,
22716 },
22717 Municipio {
22718 ibge_code: 4208500,
22719 name: "Ituporanga",
22720 state: State::SC,
22721 },
22722 Municipio {
22723 ibge_code: 4208005,
22724 name: "Itá",
22725 state: State::SC,
22726 },
22727 Municipio {
22728 ibge_code: 4207007,
22729 name: "Içara",
22730 state: State::SC,
22731 },
22732 Municipio {
22733 ibge_code: 4208609,
22734 name: "Jaborá",
22735 state: State::SC,
22736 },
22737 Municipio {
22738 ibge_code: 4208708,
22739 name: "Jacinto Machado",
22740 state: State::SC,
22741 },
22742 Municipio {
22743 ibge_code: 4208807,
22744 name: "Jaguaruna",
22745 state: State::SC,
22746 },
22747 Municipio {
22748 ibge_code: 4208906,
22749 name: "Jaraguá do Sul",
22750 state: State::SC,
22751 },
22752 Municipio {
22753 ibge_code: 4208955,
22754 name: "Jardinópolis",
22755 state: State::SC,
22756 },
22757 Municipio {
22758 ibge_code: 4209003,
22759 name: "Joaçaba",
22760 state: State::SC,
22761 },
22762 Municipio {
22763 ibge_code: 4209102,
22764 name: "Joinville",
22765 state: State::SC,
22766 },
22767 Municipio {
22768 ibge_code: 4209151,
22769 name: "José Boiteux",
22770 state: State::SC,
22771 },
22772 Municipio {
22773 ibge_code: 4209177,
22774 name: "Jupiá",
22775 state: State::SC,
22776 },
22777 Municipio {
22778 ibge_code: 4209201,
22779 name: "Lacerdópolis",
22780 state: State::SC,
22781 },
22782 Municipio {
22783 ibge_code: 4209300,
22784 name: "Lages",
22785 state: State::SC,
22786 },
22787 Municipio {
22788 ibge_code: 4209409,
22789 name: "Laguna",
22790 state: State::SC,
22791 },
22792 Municipio {
22793 ibge_code: 4209458,
22794 name: "Lajeado Grande",
22795 state: State::SC,
22796 },
22797 Municipio {
22798 ibge_code: 4209508,
22799 name: "Laurentino",
22800 state: State::SC,
22801 },
22802 Municipio {
22803 ibge_code: 4209607,
22804 name: "Lauro Müller",
22805 state: State::SC,
22806 },
22807 Municipio {
22808 ibge_code: 4209706,
22809 name: "Lebon Régis",
22810 state: State::SC,
22811 },
22812 Municipio {
22813 ibge_code: 4209805,
22814 name: "Leoberto Leal",
22815 state: State::SC,
22816 },
22817 Municipio {
22818 ibge_code: 4209854,
22819 name: "Lindóia do Sul",
22820 state: State::SC,
22821 },
22822 Municipio {
22823 ibge_code: 4209904,
22824 name: "Lontras",
22825 state: State::SC,
22826 },
22827 Municipio {
22828 ibge_code: 4210001,
22829 name: "Luiz Alves",
22830 state: State::SC,
22831 },
22832 Municipio {
22833 ibge_code: 4210035,
22834 name: "Luzerna",
22835 state: State::SC,
22836 },
22837 Municipio {
22838 ibge_code: 4210050,
22839 name: "Macieira",
22840 state: State::SC,
22841 },
22842 Municipio {
22843 ibge_code: 4210100,
22844 name: "Mafra",
22845 state: State::SC,
22846 },
22847 Municipio {
22848 ibge_code: 4210209,
22849 name: "Major Gercino",
22850 state: State::SC,
22851 },
22852 Municipio {
22853 ibge_code: 4210308,
22854 name: "Major Vieira",
22855 state: State::SC,
22856 },
22857 Municipio {
22858 ibge_code: 4210407,
22859 name: "Maracajá",
22860 state: State::SC,
22861 },
22862 Municipio {
22863 ibge_code: 4210506,
22864 name: "Maravilha",
22865 state: State::SC,
22866 },
22867 Municipio {
22868 ibge_code: 4210555,
22869 name: "Marema",
22870 state: State::SC,
22871 },
22872 Municipio {
22873 ibge_code: 4210605,
22874 name: "Massaranduba",
22875 state: State::SC,
22876 },
22877 Municipio {
22878 ibge_code: 4210704,
22879 name: "Matos Costa",
22880 state: State::SC,
22881 },
22882 Municipio {
22883 ibge_code: 4210803,
22884 name: "Meleiro",
22885 state: State::SC,
22886 },
22887 Municipio {
22888 ibge_code: 4210852,
22889 name: "Mirim Doce",
22890 state: State::SC,
22891 },
22892 Municipio {
22893 ibge_code: 4210902,
22894 name: "Modelo",
22895 state: State::SC,
22896 },
22897 Municipio {
22898 ibge_code: 4211009,
22899 name: "Mondaí",
22900 state: State::SC,
22901 },
22902 Municipio {
22903 ibge_code: 4211058,
22904 name: "Monte Carlo",
22905 state: State::SC,
22906 },
22907 Municipio {
22908 ibge_code: 4211108,
22909 name: "Monte Castelo",
22910 state: State::SC,
22911 },
22912 Municipio {
22913 ibge_code: 4211256,
22914 name: "Morro Grande",
22915 state: State::SC,
22916 },
22917 Municipio {
22918 ibge_code: 4211207,
22919 name: "Morro da Fumaça",
22920 state: State::SC,
22921 },
22922 Municipio {
22923 ibge_code: 4211306,
22924 name: "Navegantes",
22925 state: State::SC,
22926 },
22927 Municipio {
22928 ibge_code: 4211405,
22929 name: "Nova Erechim",
22930 state: State::SC,
22931 },
22932 Municipio {
22933 ibge_code: 4211454,
22934 name: "Nova Itaberaba",
22935 state: State::SC,
22936 },
22937 Municipio {
22938 ibge_code: 4211504,
22939 name: "Nova Trento",
22940 state: State::SC,
22941 },
22942 Municipio {
22943 ibge_code: 4211603,
22944 name: "Nova Veneza",
22945 state: State::SC,
22946 },
22947 Municipio {
22948 ibge_code: 4211652,
22949 name: "Novo Horizonte",
22950 state: State::SC,
22951 },
22952 Municipio {
22953 ibge_code: 4211702,
22954 name: "Orleans",
22955 state: State::SC,
22956 },
22957 Municipio {
22958 ibge_code: 4211751,
22959 name: "Otacílio Costa",
22960 state: State::SC,
22961 },
22962 Municipio {
22963 ibge_code: 4211801,
22964 name: "Ouro",
22965 state: State::SC,
22966 },
22967 Municipio {
22968 ibge_code: 4211850,
22969 name: "Ouro Verde",
22970 state: State::SC,
22971 },
22972 Municipio {
22973 ibge_code: 4211876,
22974 name: "Paial",
22975 state: State::SC,
22976 },
22977 Municipio {
22978 ibge_code: 4211892,
22979 name: "Painel",
22980 state: State::SC,
22981 },
22982 Municipio {
22983 ibge_code: 4211900,
22984 name: "Palhoça",
22985 state: State::SC,
22986 },
22987 Municipio {
22988 ibge_code: 4212007,
22989 name: "Palma Sola",
22990 state: State::SC,
22991 },
22992 Municipio {
22993 ibge_code: 4212056,
22994 name: "Palmeira",
22995 state: State::SC,
22996 },
22997 Municipio {
22998 ibge_code: 4212106,
22999 name: "Palmitos",
23000 state: State::SC,
23001 },
23002 Municipio {
23003 ibge_code: 4212205,
23004 name: "Papanduva",
23005 state: State::SC,
23006 },
23007 Municipio {
23008 ibge_code: 4212239,
23009 name: "Paraíso",
23010 state: State::SC,
23011 },
23012 Municipio {
23013 ibge_code: 4212254,
23014 name: "Passo de Torres",
23015 state: State::SC,
23016 },
23017 Municipio {
23018 ibge_code: 4212270,
23019 name: "Passos Maia",
23020 state: State::SC,
23021 },
23022 Municipio {
23023 ibge_code: 4212304,
23024 name: "Paulo Lopes",
23025 state: State::SC,
23026 },
23027 Municipio {
23028 ibge_code: 4212403,
23029 name: "Pedras Grandes",
23030 state: State::SC,
23031 },
23032 Municipio {
23033 ibge_code: 4212502,
23034 name: "Penha",
23035 state: State::SC,
23036 },
23037 Municipio {
23038 ibge_code: 4212601,
23039 name: "Peritiba",
23040 state: State::SC,
23041 },
23042 Municipio {
23043 ibge_code: 4212650,
23044 name: "Pescaria Brava",
23045 state: State::SC,
23046 },
23047 Municipio {
23048 ibge_code: 4212700,
23049 name: "Petrolândia",
23050 state: State::SC,
23051 },
23052 Municipio {
23053 ibge_code: 4212908,
23054 name: "Pinhalzinho",
23055 state: State::SC,
23056 },
23057 Municipio {
23058 ibge_code: 4213005,
23059 name: "Pinheiro Preto",
23060 state: State::SC,
23061 },
23062 Municipio {
23063 ibge_code: 4213104,
23064 name: "Piratuba",
23065 state: State::SC,
23066 },
23067 Municipio {
23068 ibge_code: 4213153,
23069 name: "Planalto Alegre",
23070 state: State::SC,
23071 },
23072 Municipio {
23073 ibge_code: 4213203,
23074 name: "Pomerode",
23075 state: State::SC,
23076 },
23077 Municipio {
23078 ibge_code: 4213302,
23079 name: "Ponte Alta",
23080 state: State::SC,
23081 },
23082 Municipio {
23083 ibge_code: 4213351,
23084 name: "Ponte Alta do Norte",
23085 state: State::SC,
23086 },
23087 Municipio {
23088 ibge_code: 4213401,
23089 name: "Ponte Serrada",
23090 state: State::SC,
23091 },
23092 Municipio {
23093 ibge_code: 4213500,
23094 name: "Porto Belo",
23095 state: State::SC,
23096 },
23097 Municipio {
23098 ibge_code: 4213609,
23099 name: "Porto União",
23100 state: State::SC,
23101 },
23102 Municipio {
23103 ibge_code: 4213708,
23104 name: "Pouso Redondo",
23105 state: State::SC,
23106 },
23107 Municipio {
23108 ibge_code: 4213807,
23109 name: "Praia Grande",
23110 state: State::SC,
23111 },
23112 Municipio {
23113 ibge_code: 4213906,
23114 name: "Presidente Castello Branco",
23115 state: State::SC,
23116 },
23117 Municipio {
23118 ibge_code: 4214003,
23119 name: "Presidente Getúlio",
23120 state: State::SC,
23121 },
23122 Municipio {
23123 ibge_code: 4214102,
23124 name: "Presidente Nereu",
23125 state: State::SC,
23126 },
23127 Municipio {
23128 ibge_code: 4214151,
23129 name: "Princesa",
23130 state: State::SC,
23131 },
23132 Municipio {
23133 ibge_code: 4214201,
23134 name: "Quilombo",
23135 state: State::SC,
23136 },
23137 Municipio {
23138 ibge_code: 4214300,
23139 name: "Rancho Queimado",
23140 state: State::SC,
23141 },
23142 Municipio {
23143 ibge_code: 4214904,
23144 name: "Rio Fortuna",
23145 state: State::SC,
23146 },
23147 Municipio {
23148 ibge_code: 4215000,
23149 name: "Rio Negrinho",
23150 state: State::SC,
23151 },
23152 Municipio {
23153 ibge_code: 4215059,
23154 name: "Rio Rufino",
23155 state: State::SC,
23156 },
23157 Municipio {
23158 ibge_code: 4214409,
23159 name: "Rio das Antas",
23160 state: State::SC,
23161 },
23162 Municipio {
23163 ibge_code: 4214508,
23164 name: "Rio do Campo",
23165 state: State::SC,
23166 },
23167 Municipio {
23168 ibge_code: 4214607,
23169 name: "Rio do Oeste",
23170 state: State::SC,
23171 },
23172 Municipio {
23173 ibge_code: 4214805,
23174 name: "Rio do Sul",
23175 state: State::SC,
23176 },
23177 Municipio {
23178 ibge_code: 4214706,
23179 name: "Rio dos Cedros",
23180 state: State::SC,
23181 },
23182 Municipio {
23183 ibge_code: 4215075,
23184 name: "Riqueza",
23185 state: State::SC,
23186 },
23187 Municipio {
23188 ibge_code: 4215109,
23189 name: "Rodeio",
23190 state: State::SC,
23191 },
23192 Municipio {
23193 ibge_code: 4215208,
23194 name: "Romelândia",
23195 state: State::SC,
23196 },
23197 Municipio {
23198 ibge_code: 4215307,
23199 name: "Salete",
23200 state: State::SC,
23201 },
23202 Municipio {
23203 ibge_code: 4215356,
23204 name: "Saltinho",
23205 state: State::SC,
23206 },
23207 Municipio {
23208 ibge_code: 4215406,
23209 name: "Salto Veloso",
23210 state: State::SC,
23211 },
23212 Municipio {
23213 ibge_code: 4215455,
23214 name: "Sangão",
23215 state: State::SC,
23216 },
23217 Municipio {
23218 ibge_code: 4215505,
23219 name: "Santa Cecília",
23220 state: State::SC,
23221 },
23222 Municipio {
23223 ibge_code: 4215554,
23224 name: "Santa Helena",
23225 state: State::SC,
23226 },
23227 Municipio {
23228 ibge_code: 4215604,
23229 name: "Santa Rosa de Lima",
23230 state: State::SC,
23231 },
23232 Municipio {
23233 ibge_code: 4215653,
23234 name: "Santa Rosa do Sul",
23235 state: State::SC,
23236 },
23237 Municipio {
23238 ibge_code: 4215679,
23239 name: "Santa Terezinha",
23240 state: State::SC,
23241 },
23242 Municipio {
23243 ibge_code: 4215687,
23244 name: "Santa Terezinha do Progresso",
23245 state: State::SC,
23246 },
23247 Municipio {
23248 ibge_code: 4215695,
23249 name: "Santiago do Sul",
23250 state: State::SC,
23251 },
23252 Municipio {
23253 ibge_code: 4215703,
23254 name: "Santo Amaro da Imperatriz",
23255 state: State::SC,
23256 },
23257 Municipio {
23258 ibge_code: 4217303,
23259 name: "Saudades",
23260 state: State::SC,
23261 },
23262 Municipio {
23263 ibge_code: 4217402,
23264 name: "Schroeder",
23265 state: State::SC,
23266 },
23267 Municipio {
23268 ibge_code: 4217501,
23269 name: "Seara",
23270 state: State::SC,
23271 },
23272 Municipio {
23273 ibge_code: 4217550,
23274 name: "Serra Alta",
23275 state: State::SC,
23276 },
23277 Municipio {
23278 ibge_code: 4217600,
23279 name: "Siderópolis",
23280 state: State::SC,
23281 },
23282 Municipio {
23283 ibge_code: 4217709,
23284 name: "Sombrio",
23285 state: State::SC,
23286 },
23287 Municipio {
23288 ibge_code: 4217758,
23289 name: "Sul Brasil",
23290 state: State::SC,
23291 },
23292 Municipio {
23293 ibge_code: 4215802,
23294 name: "São Bento do Sul",
23295 state: State::SC,
23296 },
23297 Municipio {
23298 ibge_code: 4215752,
23299 name: "São Bernardino",
23300 state: State::SC,
23301 },
23302 Municipio {
23303 ibge_code: 4215901,
23304 name: "São Bonifácio",
23305 state: State::SC,
23306 },
23307 Municipio {
23308 ibge_code: 4216008,
23309 name: "São Carlos",
23310 state: State::SC,
23311 },
23312 Municipio {
23313 ibge_code: 4216057,
23314 name: "São Cristóvão do Sul",
23315 state: State::SC,
23316 },
23317 Municipio {
23318 ibge_code: 4216107,
23319 name: "São Domingos",
23320 state: State::SC,
23321 },
23322 Municipio {
23323 ibge_code: 4216206,
23324 name: "São Francisco do Sul",
23325 state: State::SC,
23326 },
23327 Municipio {
23328 ibge_code: 4216503,
23329 name: "São Joaquim",
23330 state: State::SC,
23331 },
23332 Municipio {
23333 ibge_code: 4216602,
23334 name: "São José",
23335 state: State::SC,
23336 },
23337 Municipio {
23338 ibge_code: 4216701,
23339 name: "São José do Cedro",
23340 state: State::SC,
23341 },
23342 Municipio {
23343 ibge_code: 4216800,
23344 name: "São José do Cerrito",
23345 state: State::SC,
23346 },
23347 Municipio {
23348 ibge_code: 4216305,
23349 name: "São João Batista",
23350 state: State::SC,
23351 },
23352 Municipio {
23353 ibge_code: 4216354,
23354 name: "São João do Itaperiú",
23355 state: State::SC,
23356 },
23357 Municipio {
23358 ibge_code: 4216255,
23359 name: "São João do Oeste",
23360 state: State::SC,
23361 },
23362 Municipio {
23363 ibge_code: 4216404,
23364 name: "São João do Sul",
23365 state: State::SC,
23366 },
23367 Municipio {
23368 ibge_code: 4216909,
23369 name: "São Lourenço do Oeste",
23370 state: State::SC,
23371 },
23372 Municipio {
23373 ibge_code: 4217006,
23374 name: "São Ludgero",
23375 state: State::SC,
23376 },
23377 Municipio {
23378 ibge_code: 4217105,
23379 name: "São Martinho",
23380 state: State::SC,
23381 },
23382 Municipio {
23383 ibge_code: 4217154,
23384 name: "São Miguel da Boa Vista",
23385 state: State::SC,
23386 },
23387 Municipio {
23388 ibge_code: 4217204,
23389 name: "São Miguel do Oeste",
23390 state: State::SC,
23391 },
23392 Municipio {
23393 ibge_code: 4217253,
23394 name: "São Pedro de Alcântara",
23395 state: State::SC,
23396 },
23397 Municipio {
23398 ibge_code: 4217808,
23399 name: "Taió",
23400 state: State::SC,
23401 },
23402 Municipio {
23403 ibge_code: 4217907,
23404 name: "Tangará",
23405 state: State::SC,
23406 },
23407 Municipio {
23408 ibge_code: 4217956,
23409 name: "Tigrinhos",
23410 state: State::SC,
23411 },
23412 Municipio {
23413 ibge_code: 4218004,
23414 name: "Tijucas",
23415 state: State::SC,
23416 },
23417 Municipio {
23418 ibge_code: 4218103,
23419 name: "Timbé do Sul",
23420 state: State::SC,
23421 },
23422 Municipio {
23423 ibge_code: 4218202,
23424 name: "Timbó",
23425 state: State::SC,
23426 },
23427 Municipio {
23428 ibge_code: 4218251,
23429 name: "Timbó Grande",
23430 state: State::SC,
23431 },
23432 Municipio {
23433 ibge_code: 4218350,
23434 name: "Treviso",
23435 state: State::SC,
23436 },
23437 Municipio {
23438 ibge_code: 4218509,
23439 name: "Treze Tílias",
23440 state: State::SC,
23441 },
23442 Municipio {
23443 ibge_code: 4218400,
23444 name: "Treze de Maio",
23445 state: State::SC,
23446 },
23447 Municipio {
23448 ibge_code: 4218608,
23449 name: "Trombudo Central",
23450 state: State::SC,
23451 },
23452 Municipio {
23453 ibge_code: 4218301,
23454 name: "Três Barras",
23455 state: State::SC,
23456 },
23457 Municipio {
23458 ibge_code: 4218707,
23459 name: "Tubarão",
23460 state: State::SC,
23461 },
23462 Municipio {
23463 ibge_code: 4218756,
23464 name: "Tunápolis",
23465 state: State::SC,
23466 },
23467 Municipio {
23468 ibge_code: 4218806,
23469 name: "Turvo",
23470 state: State::SC,
23471 },
23472 Municipio {
23473 ibge_code: 4218855,
23474 name: "União do Oeste",
23475 state: State::SC,
23476 },
23477 Municipio {
23478 ibge_code: 4218905,
23479 name: "Urubici",
23480 state: State::SC,
23481 },
23482 Municipio {
23483 ibge_code: 4218954,
23484 name: "Urupema",
23485 state: State::SC,
23486 },
23487 Municipio {
23488 ibge_code: 4219002,
23489 name: "Urussanga",
23490 state: State::SC,
23491 },
23492 Municipio {
23493 ibge_code: 4219150,
23494 name: "Vargem",
23495 state: State::SC,
23496 },
23497 Municipio {
23498 ibge_code: 4219176,
23499 name: "Vargem Bonita",
23500 state: State::SC,
23501 },
23502 Municipio {
23503 ibge_code: 4219101,
23504 name: "Vargeão",
23505 state: State::SC,
23506 },
23507 Municipio {
23508 ibge_code: 4219200,
23509 name: "Vidal Ramos",
23510 state: State::SC,
23511 },
23512 Municipio {
23513 ibge_code: 4219309,
23514 name: "Videira",
23515 state: State::SC,
23516 },
23517 Municipio {
23518 ibge_code: 4219358,
23519 name: "Vitor Meireles",
23520 state: State::SC,
23521 },
23522 Municipio {
23523 ibge_code: 4219408,
23524 name: "Witmarsum",
23525 state: State::SC,
23526 },
23527 Municipio {
23528 ibge_code: 4219507,
23529 name: "Xanxerê",
23530 state: State::SC,
23531 },
23532 Municipio {
23533 ibge_code: 4219606,
23534 name: "Xavantina",
23535 state: State::SC,
23536 },
23537 Municipio {
23538 ibge_code: 4219705,
23539 name: "Xaxim",
23540 state: State::SC,
23541 },
23542 Municipio {
23543 ibge_code: 4219853,
23544 name: "Zortéa",
23545 state: State::SC,
23546 },
23547 Municipio {
23548 ibge_code: 4200408,
23549 name: "Água Doce",
23550 state: State::SC,
23551 },
23552 Municipio {
23553 ibge_code: 4200556,
23554 name: "Águas Frias",
23555 state: State::SC,
23556 },
23557 Municipio {
23558 ibge_code: 4200606,
23559 name: "Águas Mornas",
23560 state: State::SC,
23561 },
23562 Municipio {
23563 ibge_code: 4200507,
23564 name: "Águas de Chapecó",
23565 state: State::SC,
23566 },
23567 Municipio {
23568 ibge_code: 2800100,
23569 name: "Amparo do São Francisco",
23570 state: State::SE,
23571 },
23572 Municipio {
23573 ibge_code: 2800209,
23574 name: "Aquidabã",
23575 state: State::SE,
23576 },
23577 Municipio {
23578 ibge_code: 2800308,
23579 name: "Aracaju",
23580 state: State::SE,
23581 },
23582 Municipio {
23583 ibge_code: 2800407,
23584 name: "Arauá",
23585 state: State::SE,
23586 },
23587 Municipio {
23588 ibge_code: 2800506,
23589 name: "Areia Branca",
23590 state: State::SE,
23591 },
23592 Municipio {
23593 ibge_code: 2800605,
23594 name: "Barra dos Coqueiros",
23595 state: State::SE,
23596 },
23597 Municipio {
23598 ibge_code: 2800670,
23599 name: "Boquim",
23600 state: State::SE,
23601 },
23602 Municipio {
23603 ibge_code: 2800704,
23604 name: "Brejo Grande",
23605 state: State::SE,
23606 },
23607 Municipio {
23608 ibge_code: 2801009,
23609 name: "Campo do Brito",
23610 state: State::SE,
23611 },
23612 Municipio {
23613 ibge_code: 2801108,
23614 name: "Canhoba",
23615 state: State::SE,
23616 },
23617 Municipio {
23618 ibge_code: 2801207,
23619 name: "Canindé de São Francisco",
23620 state: State::SE,
23621 },
23622 Municipio {
23623 ibge_code: 2801306,
23624 name: "Capela",
23625 state: State::SE,
23626 },
23627 Municipio {
23628 ibge_code: 2801405,
23629 name: "Carira",
23630 state: State::SE,
23631 },
23632 Municipio {
23633 ibge_code: 2801504,
23634 name: "Carmópolis",
23635 state: State::SE,
23636 },
23637 Municipio {
23638 ibge_code: 2801603,
23639 name: "Cedro de São João",
23640 state: State::SE,
23641 },
23642 Municipio {
23643 ibge_code: 2801702,
23644 name: "Cristinápolis",
23645 state: State::SE,
23646 },
23647 Municipio {
23648 ibge_code: 2801900,
23649 name: "Cumbe",
23650 state: State::SE,
23651 },
23652 Municipio {
23653 ibge_code: 2802007,
23654 name: "Divina Pastora",
23655 state: State::SE,
23656 },
23657 Municipio {
23658 ibge_code: 2802106,
23659 name: "Estância",
23660 state: State::SE,
23661 },
23662 Municipio {
23663 ibge_code: 2802205,
23664 name: "Feira Nova",
23665 state: State::SE,
23666 },
23667 Municipio {
23668 ibge_code: 2802304,
23669 name: "Frei Paulo",
23670 state: State::SE,
23671 },
23672 Municipio {
23673 ibge_code: 2802403,
23674 name: "Gararu",
23675 state: State::SE,
23676 },
23677 Municipio {
23678 ibge_code: 2802502,
23679 name: "General Maynard",
23680 state: State::SE,
23681 },
23682 Municipio {
23683 ibge_code: 2802601,
23684 name: "Graccho Cardoso",
23685 state: State::SE,
23686 },
23687 Municipio {
23688 ibge_code: 2802700,
23689 name: "Ilha das Flores",
23690 state: State::SE,
23691 },
23692 Municipio {
23693 ibge_code: 2802809,
23694 name: "Indiaroba",
23695 state: State::SE,
23696 },
23697 Municipio {
23698 ibge_code: 2802908,
23699 name: "Itabaiana",
23700 state: State::SE,
23701 },
23702 Municipio {
23703 ibge_code: 2803005,
23704 name: "Itabaianinha",
23705 state: State::SE,
23706 },
23707 Municipio {
23708 ibge_code: 2803104,
23709 name: "Itabi",
23710 state: State::SE,
23711 },
23712 Municipio {
23713 ibge_code: 2803203,
23714 name: "Itaporanga d'Ajuda",
23715 state: State::SE,
23716 },
23717 Municipio {
23718 ibge_code: 2803302,
23719 name: "Japaratuba",
23720 state: State::SE,
23721 },
23722 Municipio {
23723 ibge_code: 2803401,
23724 name: "Japoatã",
23725 state: State::SE,
23726 },
23727 Municipio {
23728 ibge_code: 2803500,
23729 name: "Lagarto",
23730 state: State::SE,
23731 },
23732 Municipio {
23733 ibge_code: 2803609,
23734 name: "Laranjeiras",
23735 state: State::SE,
23736 },
23737 Municipio {
23738 ibge_code: 2803708,
23739 name: "Macambira",
23740 state: State::SE,
23741 },
23742 Municipio {
23743 ibge_code: 2803807,
23744 name: "Malhada dos Bois",
23745 state: State::SE,
23746 },
23747 Municipio {
23748 ibge_code: 2803906,
23749 name: "Malhador",
23750 state: State::SE,
23751 },
23752 Municipio {
23753 ibge_code: 2804003,
23754 name: "Maruim",
23755 state: State::SE,
23756 },
23757 Municipio {
23758 ibge_code: 2804102,
23759 name: "Moita Bonita",
23760 state: State::SE,
23761 },
23762 Municipio {
23763 ibge_code: 2804201,
23764 name: "Monte Alegre de Sergipe",
23765 state: State::SE,
23766 },
23767 Municipio {
23768 ibge_code: 2804300,
23769 name: "Muribeca",
23770 state: State::SE,
23771 },
23772 Municipio {
23773 ibge_code: 2804409,
23774 name: "Neópolis",
23775 state: State::SE,
23776 },
23777 Municipio {
23778 ibge_code: 2804458,
23779 name: "Nossa Senhora Aparecida",
23780 state: State::SE,
23781 },
23782 Municipio {
23783 ibge_code: 2804508,
23784 name: "Nossa Senhora da Glória",
23785 state: State::SE,
23786 },
23787 Municipio {
23788 ibge_code: 2804607,
23789 name: "Nossa Senhora das Dores",
23790 state: State::SE,
23791 },
23792 Municipio {
23793 ibge_code: 2804706,
23794 name: "Nossa Senhora de Lourdes",
23795 state: State::SE,
23796 },
23797 Municipio {
23798 ibge_code: 2804805,
23799 name: "Nossa Senhora do Socorro",
23800 state: State::SE,
23801 },
23802 Municipio {
23803 ibge_code: 2804904,
23804 name: "Pacatuba",
23805 state: State::SE,
23806 },
23807 Municipio {
23808 ibge_code: 2805000,
23809 name: "Pedra Mole",
23810 state: State::SE,
23811 },
23812 Municipio {
23813 ibge_code: 2805109,
23814 name: "Pedrinhas",
23815 state: State::SE,
23816 },
23817 Municipio {
23818 ibge_code: 2805208,
23819 name: "Pinhão",
23820 state: State::SE,
23821 },
23822 Municipio {
23823 ibge_code: 2805307,
23824 name: "Pirambu",
23825 state: State::SE,
23826 },
23827 Municipio {
23828 ibge_code: 2805604,
23829 name: "Porto da Folha",
23830 state: State::SE,
23831 },
23832 Municipio {
23833 ibge_code: 2805406,
23834 name: "Poço Redondo",
23835 state: State::SE,
23836 },
23837 Municipio {
23838 ibge_code: 2805505,
23839 name: "Poço Verde",
23840 state: State::SE,
23841 },
23842 Municipio {
23843 ibge_code: 2805703,
23844 name: "Propriá",
23845 state: State::SE,
23846 },
23847 Municipio {
23848 ibge_code: 2805901,
23849 name: "Riachuelo",
23850 state: State::SE,
23851 },
23852 Municipio {
23853 ibge_code: 2805802,
23854 name: "Riachão do Dantas",
23855 state: State::SE,
23856 },
23857 Municipio {
23858 ibge_code: 2806008,
23859 name: "Ribeirópolis",
23860 state: State::SE,
23861 },
23862 Municipio {
23863 ibge_code: 2806107,
23864 name: "Rosário do Catete",
23865 state: State::SE,
23866 },
23867 Municipio {
23868 ibge_code: 2806206,
23869 name: "Salgado",
23870 state: State::SE,
23871 },
23872 Municipio {
23873 ibge_code: 2806305,
23874 name: "Santa Luzia do Itanhy",
23875 state: State::SE,
23876 },
23877 Municipio {
23878 ibge_code: 2806503,
23879 name: "Santa Rosa de Lima",
23880 state: State::SE,
23881 },
23882 Municipio {
23883 ibge_code: 2806404,
23884 name: "Santana do São Francisco",
23885 state: State::SE,
23886 },
23887 Municipio {
23888 ibge_code: 2806602,
23889 name: "Santo Amaro das Brotas",
23890 state: State::SE,
23891 },
23892 Municipio {
23893 ibge_code: 2807105,
23894 name: "Simão Dias",
23895 state: State::SE,
23896 },
23897 Municipio {
23898 ibge_code: 2807204,
23899 name: "Siriri",
23900 state: State::SE,
23901 },
23902 Municipio {
23903 ibge_code: 2806701,
23904 name: "São Cristóvão",
23905 state: State::SE,
23906 },
23907 Municipio {
23908 ibge_code: 2806800,
23909 name: "São Domingos",
23910 state: State::SE,
23911 },
23912 Municipio {
23913 ibge_code: 2806909,
23914 name: "São Francisco",
23915 state: State::SE,
23916 },
23917 Municipio {
23918 ibge_code: 2807006,
23919 name: "São Miguel do Aleixo",
23920 state: State::SE,
23921 },
23922 Municipio {
23923 ibge_code: 2807303,
23924 name: "Telha",
23925 state: State::SE,
23926 },
23927 Municipio {
23928 ibge_code: 2807402,
23929 name: "Tobias Barreto",
23930 state: State::SE,
23931 },
23932 Municipio {
23933 ibge_code: 2807501,
23934 name: "Tomar do Geru",
23935 state: State::SE,
23936 },
23937 Municipio {
23938 ibge_code: 2807600,
23939 name: "Umbaúba",
23940 state: State::SE,
23941 },
23942 Municipio {
23943 ibge_code: 3500105,
23944 name: "Adamantina",
23945 state: State::SP,
23946 },
23947 Municipio {
23948 ibge_code: 3500204,
23949 name: "Adolfo",
23950 state: State::SP,
23951 },
23952 Municipio {
23953 ibge_code: 3500303,
23954 name: "Aguaí",
23955 state: State::SP,
23956 },
23957 Municipio {
23958 ibge_code: 3500709,
23959 name: "Agudos",
23960 state: State::SP,
23961 },
23962 Municipio {
23963 ibge_code: 3500758,
23964 name: "Alambari",
23965 state: State::SP,
23966 },
23967 Municipio {
23968 ibge_code: 3500808,
23969 name: "Alfredo Marcondes",
23970 state: State::SP,
23971 },
23972 Municipio {
23973 ibge_code: 3500907,
23974 name: "Altair",
23975 state: State::SP,
23976 },
23977 Municipio {
23978 ibge_code: 3501004,
23979 name: "Altinópolis",
23980 state: State::SP,
23981 },
23982 Municipio {
23983 ibge_code: 3501103,
23984 name: "Alto Alegre",
23985 state: State::SP,
23986 },
23987 Municipio {
23988 ibge_code: 3501152,
23989 name: "Alumínio",
23990 state: State::SP,
23991 },
23992 Municipio {
23993 ibge_code: 3501509,
23994 name: "Alvinlândia",
23995 state: State::SP,
23996 },
23997 Municipio {
23998 ibge_code: 3501608,
23999 name: "Americana",
24000 state: State::SP,
24001 },
24002 Municipio {
24003 ibge_code: 3501905,
24004 name: "Amparo",
24005 state: State::SP,
24006 },
24007 Municipio {
24008 ibge_code: 3501707,
24009 name: "Américo Brasiliense",
24010 state: State::SP,
24011 },
24012 Municipio {
24013 ibge_code: 3501806,
24014 name: "Américo de Campos",
24015 state: State::SP,
24016 },
24017 Municipio {
24018 ibge_code: 3502002,
24019 name: "Analândia",
24020 state: State::SP,
24021 },
24022 Municipio {
24023 ibge_code: 3502101,
24024 name: "Andradina",
24025 state: State::SP,
24026 },
24027 Municipio {
24028 ibge_code: 3502200,
24029 name: "Angatuba",
24030 state: State::SP,
24031 },
24032 Municipio {
24033 ibge_code: 3502309,
24034 name: "Anhembi",
24035 state: State::SP,
24036 },
24037 Municipio {
24038 ibge_code: 3502408,
24039 name: "Anhumas",
24040 state: State::SP,
24041 },
24042 Municipio {
24043 ibge_code: 3502507,
24044 name: "Aparecida",
24045 state: State::SP,
24046 },
24047 Municipio {
24048 ibge_code: 3502606,
24049 name: "Aparecida d'Oeste",
24050 state: State::SP,
24051 },
24052 Municipio {
24053 ibge_code: 3502705,
24054 name: "Apiaí",
24055 state: State::SP,
24056 },
24057 Municipio {
24058 ibge_code: 3503000,
24059 name: "Aramina",
24060 state: State::SP,
24061 },
24062 Municipio {
24063 ibge_code: 3503109,
24064 name: "Arandu",
24065 state: State::SP,
24066 },
24067 Municipio {
24068 ibge_code: 3503158,
24069 name: "Arapeí",
24070 state: State::SP,
24071 },
24072 Municipio {
24073 ibge_code: 3503208,
24074 name: "Araraquara",
24075 state: State::SP,
24076 },
24077 Municipio {
24078 ibge_code: 3503307,
24079 name: "Araras",
24080 state: State::SP,
24081 },
24082 Municipio {
24083 ibge_code: 3502754,
24084 name: "Araçariguama",
24085 state: State::SP,
24086 },
24087 Municipio {
24088 ibge_code: 3502804,
24089 name: "Araçatuba",
24090 state: State::SP,
24091 },
24092 Municipio {
24093 ibge_code: 3502903,
24094 name: "Araçoiaba da Serra",
24095 state: State::SP,
24096 },
24097 Municipio {
24098 ibge_code: 3503356,
24099 name: "Arco-Íris",
24100 state: State::SP,
24101 },
24102 Municipio {
24103 ibge_code: 3503406,
24104 name: "Arealva",
24105 state: State::SP,
24106 },
24107 Municipio {
24108 ibge_code: 3503505,
24109 name: "Areias",
24110 state: State::SP,
24111 },
24112 Municipio {
24113 ibge_code: 3503604,
24114 name: "Areiópolis",
24115 state: State::SP,
24116 },
24117 Municipio {
24118 ibge_code: 3503703,
24119 name: "Ariranha",
24120 state: State::SP,
24121 },
24122 Municipio {
24123 ibge_code: 3503802,
24124 name: "Artur Nogueira",
24125 state: State::SP,
24126 },
24127 Municipio {
24128 ibge_code: 3503901,
24129 name: "Arujá",
24130 state: State::SP,
24131 },
24132 Municipio {
24133 ibge_code: 3503950,
24134 name: "Aspásia",
24135 state: State::SP,
24136 },
24137 Municipio {
24138 ibge_code: 3504008,
24139 name: "Assis",
24140 state: State::SP,
24141 },
24142 Municipio {
24143 ibge_code: 3504107,
24144 name: "Atibaia",
24145 state: State::SP,
24146 },
24147 Municipio {
24148 ibge_code: 3504206,
24149 name: "Auriflama",
24150 state: State::SP,
24151 },
24152 Municipio {
24153 ibge_code: 3504404,
24154 name: "Avanhandava",
24155 state: State::SP,
24156 },
24157 Municipio {
24158 ibge_code: 3504503,
24159 name: "Avaré",
24160 state: State::SP,
24161 },
24162 Municipio {
24163 ibge_code: 3504305,
24164 name: "Avaí",
24165 state: State::SP,
24166 },
24167 Municipio {
24168 ibge_code: 3504602,
24169 name: "Bady Bassitt",
24170 state: State::SP,
24171 },
24172 Municipio {
24173 ibge_code: 3504701,
24174 name: "Balbinos",
24175 state: State::SP,
24176 },
24177 Municipio {
24178 ibge_code: 3504909,
24179 name: "Bananal",
24180 state: State::SP,
24181 },
24182 Municipio {
24183 ibge_code: 3505104,
24184 name: "Barbosa",
24185 state: State::SP,
24186 },
24187 Municipio {
24188 ibge_code: 3505203,
24189 name: "Bariri",
24190 state: State::SP,
24191 },
24192 Municipio {
24193 ibge_code: 3505302,
24194 name: "Barra Bonita",
24195 state: State::SP,
24196 },
24197 Municipio {
24198 ibge_code: 3505351,
24199 name: "Barra do Chapéu",
24200 state: State::SP,
24201 },
24202 Municipio {
24203 ibge_code: 3505401,
24204 name: "Barra do Turvo",
24205 state: State::SP,
24206 },
24207 Municipio {
24208 ibge_code: 3505500,
24209 name: "Barretos",
24210 state: State::SP,
24211 },
24212 Municipio {
24213 ibge_code: 3505609,
24214 name: "Barrinha",
24215 state: State::SP,
24216 },
24217 Municipio {
24218 ibge_code: 3505708,
24219 name: "Barueri",
24220 state: State::SP,
24221 },
24222 Municipio {
24223 ibge_code: 3505005,
24224 name: "Barão de Antonina",
24225 state: State::SP,
24226 },
24227 Municipio {
24228 ibge_code: 3505807,
24229 name: "Bastos",
24230 state: State::SP,
24231 },
24232 Municipio {
24233 ibge_code: 3505906,
24234 name: "Batatais",
24235 state: State::SP,
24236 },
24237 Municipio {
24238 ibge_code: 3506003,
24239 name: "Bauru",
24240 state: State::SP,
24241 },
24242 Municipio {
24243 ibge_code: 3506102,
24244 name: "Bebedouro",
24245 state: State::SP,
24246 },
24247 Municipio {
24248 ibge_code: 3506201,
24249 name: "Bento de Abreu",
24250 state: State::SP,
24251 },
24252 Municipio {
24253 ibge_code: 3506300,
24254 name: "Bernardino de Campos",
24255 state: State::SP,
24256 },
24257 Municipio {
24258 ibge_code: 3506359,
24259 name: "Bertioga",
24260 state: State::SP,
24261 },
24262 Municipio {
24263 ibge_code: 3506409,
24264 name: "Bilac",
24265 state: State::SP,
24266 },
24267 Municipio {
24268 ibge_code: 3506508,
24269 name: "Birigui",
24270 state: State::SP,
24271 },
24272 Municipio {
24273 ibge_code: 3506607,
24274 name: "Biritiba Mirim",
24275 state: State::SP,
24276 },
24277 Municipio {
24278 ibge_code: 3506706,
24279 name: "Boa Esperança do Sul",
24280 state: State::SP,
24281 },
24282 Municipio {
24283 ibge_code: 3506805,
24284 name: "Bocaina",
24285 state: State::SP,
24286 },
24287 Municipio {
24288 ibge_code: 3506904,
24289 name: "Bofete",
24290 state: State::SP,
24291 },
24292 Municipio {
24293 ibge_code: 3507001,
24294 name: "Boituva",
24295 state: State::SP,
24296 },
24297 Municipio {
24298 ibge_code: 3507100,
24299 name: "Bom Jesus dos Perdões",
24300 state: State::SP,
24301 },
24302 Municipio {
24303 ibge_code: 3507159,
24304 name: "Bom Sucesso de Itararé",
24305 state: State::SP,
24306 },
24307 Municipio {
24308 ibge_code: 3507308,
24309 name: "Boracéia",
24310 state: State::SP,
24311 },
24312 Municipio {
24313 ibge_code: 3507407,
24314 name: "Borborema",
24315 state: State::SP,
24316 },
24317 Municipio {
24318 ibge_code: 3507456,
24319 name: "Borebi",
24320 state: State::SP,
24321 },
24322 Municipio {
24323 ibge_code: 3507209,
24324 name: "Borá",
24325 state: State::SP,
24326 },
24327 Municipio {
24328 ibge_code: 3507506,
24329 name: "Botucatu",
24330 state: State::SP,
24331 },
24332 Municipio {
24333 ibge_code: 3507605,
24334 name: "Bragança Paulista",
24335 state: State::SP,
24336 },
24337 Municipio {
24338 ibge_code: 3507704,
24339 name: "Braúna",
24340 state: State::SP,
24341 },
24342 Municipio {
24343 ibge_code: 3507753,
24344 name: "Brejo Alegre",
24345 state: State::SP,
24346 },
24347 Municipio {
24348 ibge_code: 3507803,
24349 name: "Brodowski",
24350 state: State::SP,
24351 },
24352 Municipio {
24353 ibge_code: 3507902,
24354 name: "Brotas",
24355 state: State::SP,
24356 },
24357 Municipio {
24358 ibge_code: 3508009,
24359 name: "Buri",
24360 state: State::SP,
24361 },
24362 Municipio {
24363 ibge_code: 3508108,
24364 name: "Buritama",
24365 state: State::SP,
24366 },
24367 Municipio {
24368 ibge_code: 3508207,
24369 name: "Buritizal",
24370 state: State::SP,
24371 },
24372 Municipio {
24373 ibge_code: 3504800,
24374 name: "Bálsamo",
24375 state: State::SP,
24376 },
24377 Municipio {
24378 ibge_code: 3508405,
24379 name: "Cabreúva",
24380 state: State::SP,
24381 },
24382 Municipio {
24383 ibge_code: 3508306,
24384 name: "Cabrália Paulista",
24385 state: State::SP,
24386 },
24387 Municipio {
24388 ibge_code: 3508603,
24389 name: "Cachoeira Paulista",
24390 state: State::SP,
24391 },
24392 Municipio {
24393 ibge_code: 3508702,
24394 name: "Caconde",
24395 state: State::SP,
24396 },
24397 Municipio {
24398 ibge_code: 3508801,
24399 name: "Cafelândia",
24400 state: State::SP,
24401 },
24402 Municipio {
24403 ibge_code: 3508900,
24404 name: "Caiabu",
24405 state: State::SP,
24406 },
24407 Municipio {
24408 ibge_code: 3509007,
24409 name: "Caieiras",
24410 state: State::SP,
24411 },
24412 Municipio {
24413 ibge_code: 3509106,
24414 name: "Caiuá",
24415 state: State::SP,
24416 },
24417 Municipio {
24418 ibge_code: 3509205,
24419 name: "Cajamar",
24420 state: State::SP,
24421 },
24422 Municipio {
24423 ibge_code: 3509254,
24424 name: "Cajati",
24425 state: State::SP,
24426 },
24427 Municipio {
24428 ibge_code: 3509304,
24429 name: "Cajobi",
24430 state: State::SP,
24431 },
24432 Municipio {
24433 ibge_code: 3509403,
24434 name: "Cajuru",
24435 state: State::SP,
24436 },
24437 Municipio {
24438 ibge_code: 3509452,
24439 name: "Campina do Monte Alegre",
24440 state: State::SP,
24441 },
24442 Municipio {
24443 ibge_code: 3509502,
24444 name: "Campinas",
24445 state: State::SP,
24446 },
24447 Municipio {
24448 ibge_code: 3509601,
24449 name: "Campo Limpo Paulista",
24450 state: State::SP,
24451 },
24452 Municipio {
24453 ibge_code: 3509809,
24454 name: "Campos Novos Paulista",
24455 state: State::SP,
24456 },
24457 Municipio {
24458 ibge_code: 3509700,
24459 name: "Campos do Jordão",
24460 state: State::SP,
24461 },
24462 Municipio {
24463 ibge_code: 3509908,
24464 name: "Cananéia",
24465 state: State::SP,
24466 },
24467 Municipio {
24468 ibge_code: 3509957,
24469 name: "Canas",
24470 state: State::SP,
24471 },
24472 Municipio {
24473 ibge_code: 3510153,
24474 name: "Canitar",
24475 state: State::SP,
24476 },
24477 Municipio {
24478 ibge_code: 3510302,
24479 name: "Capela do Alto",
24480 state: State::SP,
24481 },
24482 Municipio {
24483 ibge_code: 3510401,
24484 name: "Capivari",
24485 state: State::SP,
24486 },
24487 Municipio {
24488 ibge_code: 3510203,
24489 name: "Capão Bonito",
24490 state: State::SP,
24491 },
24492 Municipio {
24493 ibge_code: 3510500,
24494 name: "Caraguatatuba",
24495 state: State::SP,
24496 },
24497 Municipio {
24498 ibge_code: 3510609,
24499 name: "Carapicuíba",
24500 state: State::SP,
24501 },
24502 Municipio {
24503 ibge_code: 3510708,
24504 name: "Cardoso",
24505 state: State::SP,
24506 },
24507 Municipio {
24508 ibge_code: 3510807,
24509 name: "Casa Branca",
24510 state: State::SP,
24511 },
24512 Municipio {
24513 ibge_code: 3511003,
24514 name: "Castilho",
24515 state: State::SP,
24516 },
24517 Municipio {
24518 ibge_code: 3511102,
24519 name: "Catanduva",
24520 state: State::SP,
24521 },
24522 Municipio {
24523 ibge_code: 3511201,
24524 name: "Catiguá",
24525 state: State::SP,
24526 },
24527 Municipio {
24528 ibge_code: 3508504,
24529 name: "Caçapava",
24530 state: State::SP,
24531 },
24532 Municipio {
24533 ibge_code: 3511300,
24534 name: "Cedral",
24535 state: State::SP,
24536 },
24537 Municipio {
24538 ibge_code: 3511409,
24539 name: "Cerqueira César",
24540 state: State::SP,
24541 },
24542 Municipio {
24543 ibge_code: 3511508,
24544 name: "Cerquilho",
24545 state: State::SP,
24546 },
24547 Municipio {
24548 ibge_code: 3511607,
24549 name: "Cesário Lange",
24550 state: State::SP,
24551 },
24552 Municipio {
24553 ibge_code: 3511706,
24554 name: "Charqueada",
24555 state: State::SP,
24556 },
24557 Municipio {
24558 ibge_code: 3557204,
24559 name: "Chavantes",
24560 state: State::SP,
24561 },
24562 Municipio {
24563 ibge_code: 3511904,
24564 name: "Clementina",
24565 state: State::SP,
24566 },
24567 Municipio {
24568 ibge_code: 3512001,
24569 name: "Colina",
24570 state: State::SP,
24571 },
24572 Municipio {
24573 ibge_code: 3512100,
24574 name: "Colômbia",
24575 state: State::SP,
24576 },
24577 Municipio {
24578 ibge_code: 3512209,
24579 name: "Conchal",
24580 state: State::SP,
24581 },
24582 Municipio {
24583 ibge_code: 3512308,
24584 name: "Conchas",
24585 state: State::SP,
24586 },
24587 Municipio {
24588 ibge_code: 3512407,
24589 name: "Cordeirópolis",
24590 state: State::SP,
24591 },
24592 Municipio {
24593 ibge_code: 3512506,
24594 name: "Coroados",
24595 state: State::SP,
24596 },
24597 Municipio {
24598 ibge_code: 3512605,
24599 name: "Coronel Macedo",
24600 state: State::SP,
24601 },
24602 Municipio {
24603 ibge_code: 3512704,
24604 name: "Corumbataí",
24605 state: State::SP,
24606 },
24607 Municipio {
24608 ibge_code: 3512902,
24609 name: "Cosmorama",
24610 state: State::SP,
24611 },
24612 Municipio {
24613 ibge_code: 3512803,
24614 name: "Cosmópolis",
24615 state: State::SP,
24616 },
24617 Municipio {
24618 ibge_code: 3513009,
24619 name: "Cotia",
24620 state: State::SP,
24621 },
24622 Municipio {
24623 ibge_code: 3513108,
24624 name: "Cravinhos",
24625 state: State::SP,
24626 },
24627 Municipio {
24628 ibge_code: 3513207,
24629 name: "Cristais Paulista",
24630 state: State::SP,
24631 },
24632 Municipio {
24633 ibge_code: 3513405,
24634 name: "Cruzeiro",
24635 state: State::SP,
24636 },
24637 Municipio {
24638 ibge_code: 3513306,
24639 name: "Cruzália",
24640 state: State::SP,
24641 },
24642 Municipio {
24643 ibge_code: 3513504,
24644 name: "Cubatão",
24645 state: State::SP,
24646 },
24647 Municipio {
24648 ibge_code: 3513603,
24649 name: "Cunha",
24650 state: State::SP,
24651 },
24652 Municipio {
24653 ibge_code: 3510906,
24654 name: "Cássia dos Coqueiros",
24655 state: State::SP,
24656 },
24657 Municipio {
24658 ibge_code: 3510005,
24659 name: "Cândido Mota",
24660 state: State::SP,
24661 },
24662 Municipio {
24663 ibge_code: 3510104,
24664 name: "Cândido Rodrigues",
24665 state: State::SP,
24666 },
24667 Municipio {
24668 ibge_code: 3513702,
24669 name: "Descalvado",
24670 state: State::SP,
24671 },
24672 Municipio {
24673 ibge_code: 3513801,
24674 name: "Diadema",
24675 state: State::SP,
24676 },
24677 Municipio {
24678 ibge_code: 3513850,
24679 name: "Dirce Reis",
24680 state: State::SP,
24681 },
24682 Municipio {
24683 ibge_code: 3513900,
24684 name: "Divinolândia",
24685 state: State::SP,
24686 },
24687 Municipio {
24688 ibge_code: 3514007,
24689 name: "Dobrada",
24690 state: State::SP,
24691 },
24692 Municipio {
24693 ibge_code: 3514106,
24694 name: "Dois Córregos",
24695 state: State::SP,
24696 },
24697 Municipio {
24698 ibge_code: 3514205,
24699 name: "Dolcinópolis",
24700 state: State::SP,
24701 },
24702 Municipio {
24703 ibge_code: 3514304,
24704 name: "Dourado",
24705 state: State::SP,
24706 },
24707 Municipio {
24708 ibge_code: 3514403,
24709 name: "Dracena",
24710 state: State::SP,
24711 },
24712 Municipio {
24713 ibge_code: 3514502,
24714 name: "Duartina",
24715 state: State::SP,
24716 },
24717 Municipio {
24718 ibge_code: 3514601,
24719 name: "Dumont",
24720 state: State::SP,
24721 },
24722 Municipio {
24723 ibge_code: 3514700,
24724 name: "Echaporã",
24725 state: State::SP,
24726 },
24727 Municipio {
24728 ibge_code: 3514809,
24729 name: "Eldorado",
24730 state: State::SP,
24731 },
24732 Municipio {
24733 ibge_code: 3514908,
24734 name: "Elias Fausto",
24735 state: State::SP,
24736 },
24737 Municipio {
24738 ibge_code: 3514924,
24739 name: "Elisiário",
24740 state: State::SP,
24741 },
24742 Municipio {
24743 ibge_code: 3514957,
24744 name: "Embaúba",
24745 state: State::SP,
24746 },
24747 Municipio {
24748 ibge_code: 3515004,
24749 name: "Embu das Artes",
24750 state: State::SP,
24751 },
24752 Municipio {
24753 ibge_code: 3515103,
24754 name: "Embu-Guaçu",
24755 state: State::SP,
24756 },
24757 Municipio {
24758 ibge_code: 3515129,
24759 name: "Emilianópolis",
24760 state: State::SP,
24761 },
24762 Municipio {
24763 ibge_code: 3515152,
24764 name: "Engenheiro Coelho",
24765 state: State::SP,
24766 },
24767 Municipio {
24768 ibge_code: 3515186,
24769 name: "Espírito Santo do Pinhal",
24770 state: State::SP,
24771 },
24772 Municipio {
24773 ibge_code: 3515194,
24774 name: "Espírito Santo do Turvo",
24775 state: State::SP,
24776 },
24777 Municipio {
24778 ibge_code: 3557303,
24779 name: "Estiva Gerbi",
24780 state: State::SP,
24781 },
24782 Municipio {
24783 ibge_code: 3515202,
24784 name: "Estrela d'Oeste",
24785 state: State::SP,
24786 },
24787 Municipio {
24788 ibge_code: 3515301,
24789 name: "Estrela do Norte",
24790 state: State::SP,
24791 },
24792 Municipio {
24793 ibge_code: 3515350,
24794 name: "Euclides da Cunha Paulista",
24795 state: State::SP,
24796 },
24797 Municipio {
24798 ibge_code: 3515400,
24799 name: "Fartura",
24800 state: State::SP,
24801 },
24802 Municipio {
24803 ibge_code: 3515608,
24804 name: "Fernando Prestes",
24805 state: State::SP,
24806 },
24807 Municipio {
24808 ibge_code: 3515509,
24809 name: "Fernandópolis",
24810 state: State::SP,
24811 },
24812 Municipio {
24813 ibge_code: 3515657,
24814 name: "Fernão",
24815 state: State::SP,
24816 },
24817 Municipio {
24818 ibge_code: 3515707,
24819 name: "Ferraz de Vasconcelos",
24820 state: State::SP,
24821 },
24822 Municipio {
24823 ibge_code: 3515806,
24824 name: "Flora Rica",
24825 state: State::SP,
24826 },
24827 Municipio {
24828 ibge_code: 3515905,
24829 name: "Floreal",
24830 state: State::SP,
24831 },
24832 Municipio {
24833 ibge_code: 3516101,
24834 name: "Florínea",
24835 state: State::SP,
24836 },
24837 Municipio {
24838 ibge_code: 3516002,
24839 name: "Flórida Paulista",
24840 state: State::SP,
24841 },
24842 Municipio {
24843 ibge_code: 3516200,
24844 name: "Franca",
24845 state: State::SP,
24846 },
24847 Municipio {
24848 ibge_code: 3516309,
24849 name: "Francisco Morato",
24850 state: State::SP,
24851 },
24852 Municipio {
24853 ibge_code: 3516408,
24854 name: "Franco da Rocha",
24855 state: State::SP,
24856 },
24857 Municipio {
24858 ibge_code: 3516507,
24859 name: "Gabriel Monteiro",
24860 state: State::SP,
24861 },
24862 Municipio {
24863 ibge_code: 3516705,
24864 name: "Garça",
24865 state: State::SP,
24866 },
24867 Municipio {
24868 ibge_code: 3516804,
24869 name: "Gastão Vidigal",
24870 state: State::SP,
24871 },
24872 Municipio {
24873 ibge_code: 3516853,
24874 name: "Gavião Peixoto",
24875 state: State::SP,
24876 },
24877 Municipio {
24878 ibge_code: 3516903,
24879 name: "General Salgado",
24880 state: State::SP,
24881 },
24882 Municipio {
24883 ibge_code: 3517000,
24884 name: "Getulina",
24885 state: State::SP,
24886 },
24887 Municipio {
24888 ibge_code: 3517109,
24889 name: "Glicério",
24890 state: State::SP,
24891 },
24892 Municipio {
24893 ibge_code: 3517307,
24894 name: "Guaimbê",
24895 state: State::SP,
24896 },
24897 Municipio {
24898 ibge_code: 3517208,
24899 name: "Guaiçara",
24900 state: State::SP,
24901 },
24902 Municipio {
24903 ibge_code: 3517604,
24904 name: "Guapiara",
24905 state: State::SP,
24906 },
24907 Municipio {
24908 ibge_code: 3517505,
24909 name: "Guapiaçu",
24910 state: State::SP,
24911 },
24912 Municipio {
24913 ibge_code: 3517901,
24914 name: "Guaraci",
24915 state: State::SP,
24916 },
24917 Municipio {
24918 ibge_code: 3518008,
24919 name: "Guarani d'Oeste",
24920 state: State::SP,
24921 },
24922 Municipio {
24923 ibge_code: 3518107,
24924 name: "Guarantã",
24925 state: State::SP,
24926 },
24927 Municipio {
24928 ibge_code: 3518206,
24929 name: "Guararapes",
24930 state: State::SP,
24931 },
24932 Municipio {
24933 ibge_code: 3518305,
24934 name: "Guararema",
24935 state: State::SP,
24936 },
24937 Municipio {
24938 ibge_code: 3518404,
24939 name: "Guaratinguetá",
24940 state: State::SP,
24941 },
24942 Municipio {
24943 ibge_code: 3517802,
24944 name: "Guaraçaí",
24945 state: State::SP,
24946 },
24947 Municipio {
24948 ibge_code: 3518503,
24949 name: "Guareí",
24950 state: State::SP,
24951 },
24952 Municipio {
24953 ibge_code: 3518602,
24954 name: "Guariba",
24955 state: State::SP,
24956 },
24957 Municipio {
24958 ibge_code: 3518701,
24959 name: "Guarujá",
24960 state: State::SP,
24961 },
24962 Municipio {
24963 ibge_code: 3518800,
24964 name: "Guarulhos",
24965 state: State::SP,
24966 },
24967 Municipio {
24968 ibge_code: 3517703,
24969 name: "Guará",
24970 state: State::SP,
24971 },
24972 Municipio {
24973 ibge_code: 3518859,
24974 name: "Guatapará",
24975 state: State::SP,
24976 },
24977 Municipio {
24978 ibge_code: 3517406,
24979 name: "Guaíra",
24980 state: State::SP,
24981 },
24982 Municipio {
24983 ibge_code: 3518909,
24984 name: "Guzolândia",
24985 state: State::SP,
24986 },
24987 Municipio {
24988 ibge_code: 3516606,
24989 name: "Gália",
24990 state: State::SP,
24991 },
24992 Municipio {
24993 ibge_code: 3519006,
24994 name: "Herculândia",
24995 state: State::SP,
24996 },
24997 Municipio {
24998 ibge_code: 3519055,
24999 name: "Holambra",
25000 state: State::SP,
25001 },
25002 Municipio {
25003 ibge_code: 3519071,
25004 name: "Hortolândia",
25005 state: State::SP,
25006 },
25007 Municipio {
25008 ibge_code: 3519105,
25009 name: "Iacanga",
25010 state: State::SP,
25011 },
25012 Municipio {
25013 ibge_code: 3519204,
25014 name: "Iacri",
25015 state: State::SP,
25016 },
25017 Municipio {
25018 ibge_code: 3519253,
25019 name: "Iaras",
25020 state: State::SP,
25021 },
25022 Municipio {
25023 ibge_code: 3519303,
25024 name: "Ibaté",
25025 state: State::SP,
25026 },
25027 Municipio {
25028 ibge_code: 3519501,
25029 name: "Ibirarema",
25030 state: State::SP,
25031 },
25032 Municipio {
25033 ibge_code: 3519402,
25034 name: "Ibirá",
25035 state: State::SP,
25036 },
25037 Municipio {
25038 ibge_code: 3519600,
25039 name: "Ibitinga",
25040 state: State::SP,
25041 },
25042 Municipio {
25043 ibge_code: 3519709,
25044 name: "Ibiúna",
25045 state: State::SP,
25046 },
25047 Municipio {
25048 ibge_code: 3519808,
25049 name: "Icém",
25050 state: State::SP,
25051 },
25052 Municipio {
25053 ibge_code: 3519907,
25054 name: "Iepê",
25055 state: State::SP,
25056 },
25057 Municipio {
25058 ibge_code: 3520103,
25059 name: "Igarapava",
25060 state: State::SP,
25061 },
25062 Municipio {
25063 ibge_code: 3520202,
25064 name: "Igaratá",
25065 state: State::SP,
25066 },
25067 Municipio {
25068 ibge_code: 3520004,
25069 name: "Igaraçu do Tietê",
25070 state: State::SP,
25071 },
25072 Municipio {
25073 ibge_code: 3520301,
25074 name: "Iguape",
25075 state: State::SP,
25076 },
25077 Municipio {
25078 ibge_code: 3520426,
25079 name: "Ilha Comprida",
25080 state: State::SP,
25081 },
25082 Municipio {
25083 ibge_code: 3520442,
25084 name: "Ilha Solteira",
25085 state: State::SP,
25086 },
25087 Municipio {
25088 ibge_code: 3520400,
25089 name: "Ilhabela",
25090 state: State::SP,
25091 },
25092 Municipio {
25093 ibge_code: 3520509,
25094 name: "Indaiatuba",
25095 state: State::SP,
25096 },
25097 Municipio {
25098 ibge_code: 3520608,
25099 name: "Indiana",
25100 state: State::SP,
25101 },
25102 Municipio {
25103 ibge_code: 3520707,
25104 name: "Indiaporã",
25105 state: State::SP,
25106 },
25107 Municipio {
25108 ibge_code: 3520806,
25109 name: "Inúbia Paulista",
25110 state: State::SP,
25111 },
25112 Municipio {
25113 ibge_code: 3520905,
25114 name: "Ipaussu",
25115 state: State::SP,
25116 },
25117 Municipio {
25118 ibge_code: 3521002,
25119 name: "Iperó",
25120 state: State::SP,
25121 },
25122 Municipio {
25123 ibge_code: 3521101,
25124 name: "Ipeúna",
25125 state: State::SP,
25126 },
25127 Municipio {
25128 ibge_code: 3521150,
25129 name: "Ipiguá",
25130 state: State::SP,
25131 },
25132 Municipio {
25133 ibge_code: 3521200,
25134 name: "Iporanga",
25135 state: State::SP,
25136 },
25137 Municipio {
25138 ibge_code: 3521309,
25139 name: "Ipuã",
25140 state: State::SP,
25141 },
25142 Municipio {
25143 ibge_code: 3521408,
25144 name: "Iracemápolis",
25145 state: State::SP,
25146 },
25147 Municipio {
25148 ibge_code: 3521606,
25149 name: "Irapuru",
25150 state: State::SP,
25151 },
25152 Municipio {
25153 ibge_code: 3521507,
25154 name: "Irapuã",
25155 state: State::SP,
25156 },
25157 Municipio {
25158 ibge_code: 3521705,
25159 name: "Itaberá",
25160 state: State::SP,
25161 },
25162 Municipio {
25163 ibge_code: 3521903,
25164 name: "Itajobi",
25165 state: State::SP,
25166 },
25167 Municipio {
25168 ibge_code: 3522000,
25169 name: "Itaju",
25170 state: State::SP,
25171 },
25172 Municipio {
25173 ibge_code: 3522109,
25174 name: "Itanhaém",
25175 state: State::SP,
25176 },
25177 Municipio {
25178 ibge_code: 3522158,
25179 name: "Itaoca",
25180 state: State::SP,
25181 },
25182 Municipio {
25183 ibge_code: 3522208,
25184 name: "Itapecerica da Serra",
25185 state: State::SP,
25186 },
25187 Municipio {
25188 ibge_code: 3522307,
25189 name: "Itapetininga",
25190 state: State::SP,
25191 },
25192 Municipio {
25193 ibge_code: 3522406,
25194 name: "Itapeva",
25195 state: State::SP,
25196 },
25197 Municipio {
25198 ibge_code: 3522505,
25199 name: "Itapevi",
25200 state: State::SP,
25201 },
25202 Municipio {
25203 ibge_code: 3522604,
25204 name: "Itapira",
25205 state: State::SP,
25206 },
25207 Municipio {
25208 ibge_code: 3522653,
25209 name: "Itapirapuã Paulista",
25210 state: State::SP,
25211 },
25212 Municipio {
25213 ibge_code: 3522802,
25214 name: "Itaporanga",
25215 state: State::SP,
25216 },
25217 Municipio {
25218 ibge_code: 3523008,
25219 name: "Itapura",
25220 state: State::SP,
25221 },
25222 Municipio {
25223 ibge_code: 3522901,
25224 name: "Itapuí",
25225 state: State::SP,
25226 },
25227 Municipio {
25228 ibge_code: 3523107,
25229 name: "Itaquaquecetuba",
25230 state: State::SP,
25231 },
25232 Municipio {
25233 ibge_code: 3523206,
25234 name: "Itararé",
25235 state: State::SP,
25236 },
25237 Municipio {
25238 ibge_code: 3523305,
25239 name: "Itariri",
25240 state: State::SP,
25241 },
25242 Municipio {
25243 ibge_code: 3523404,
25244 name: "Itatiba",
25245 state: State::SP,
25246 },
25247 Municipio {
25248 ibge_code: 3523503,
25249 name: "Itatinga",
25250 state: State::SP,
25251 },
25252 Municipio {
25253 ibge_code: 3521804,
25254 name: "Itaí",
25255 state: State::SP,
25256 },
25257 Municipio {
25258 ibge_code: 3523602,
25259 name: "Itirapina",
25260 state: State::SP,
25261 },
25262 Municipio {
25263 ibge_code: 3523701,
25264 name: "Itirapuã",
25265 state: State::SP,
25266 },
25267 Municipio {
25268 ibge_code: 3523800,
25269 name: "Itobi",
25270 state: State::SP,
25271 },
25272 Municipio {
25273 ibge_code: 3523909,
25274 name: "Itu",
25275 state: State::SP,
25276 },
25277 Municipio {
25278 ibge_code: 3524006,
25279 name: "Itupeva",
25280 state: State::SP,
25281 },
25282 Municipio {
25283 ibge_code: 3524105,
25284 name: "Ituverava",
25285 state: State::SP,
25286 },
25287 Municipio {
25288 ibge_code: 3522703,
25289 name: "Itápolis",
25290 state: State::SP,
25291 },
25292 Municipio {
25293 ibge_code: 3524204,
25294 name: "Jaborandi",
25295 state: State::SP,
25296 },
25297 Municipio {
25298 ibge_code: 3524303,
25299 name: "Jaboticabal",
25300 state: State::SP,
25301 },
25302 Municipio {
25303 ibge_code: 3524402,
25304 name: "Jacareí",
25305 state: State::SP,
25306 },
25307 Municipio {
25308 ibge_code: 3524501,
25309 name: "Jaci",
25310 state: State::SP,
25311 },
25312 Municipio {
25313 ibge_code: 3524600,
25314 name: "Jacupiranga",
25315 state: State::SP,
25316 },
25317 Municipio {
25318 ibge_code: 3524709,
25319 name: "Jaguariúna",
25320 state: State::SP,
25321 },
25322 Municipio {
25323 ibge_code: 3524808,
25324 name: "Jales",
25325 state: State::SP,
25326 },
25327 Municipio {
25328 ibge_code: 3524907,
25329 name: "Jambeiro",
25330 state: State::SP,
25331 },
25332 Municipio {
25333 ibge_code: 3525003,
25334 name: "Jandira",
25335 state: State::SP,
25336 },
25337 Municipio {
25338 ibge_code: 3525102,
25339 name: "Jardinópolis",
25340 state: State::SP,
25341 },
25342 Municipio {
25343 ibge_code: 3525201,
25344 name: "Jarinu",
25345 state: State::SP,
25346 },
25347 Municipio {
25348 ibge_code: 3525300,
25349 name: "Jaú",
25350 state: State::SP,
25351 },
25352 Municipio {
25353 ibge_code: 3525409,
25354 name: "Jeriquara",
25355 state: State::SP,
25356 },
25357 Municipio {
25358 ibge_code: 3525508,
25359 name: "Joanópolis",
25360 state: State::SP,
25361 },
25362 Municipio {
25363 ibge_code: 3525706,
25364 name: "José Bonifácio",
25365 state: State::SP,
25366 },
25367 Municipio {
25368 ibge_code: 3525607,
25369 name: "João Ramalho",
25370 state: State::SP,
25371 },
25372 Municipio {
25373 ibge_code: 3525854,
25374 name: "Jumirim",
25375 state: State::SP,
25376 },
25377 Municipio {
25378 ibge_code: 3525904,
25379 name: "Jundiaí",
25380 state: State::SP,
25381 },
25382 Municipio {
25383 ibge_code: 3526001,
25384 name: "Junqueirópolis",
25385 state: State::SP,
25386 },
25387 Municipio {
25388 ibge_code: 3526209,
25389 name: "Juquitiba",
25390 state: State::SP,
25391 },
25392 Municipio {
25393 ibge_code: 3526100,
25394 name: "Juquiá",
25395 state: State::SP,
25396 },
25397 Municipio {
25398 ibge_code: 3525805,
25399 name: "Júlio Mesquita",
25400 state: State::SP,
25401 },
25402 Municipio {
25403 ibge_code: 3526308,
25404 name: "Lagoinha",
25405 state: State::SP,
25406 },
25407 Municipio {
25408 ibge_code: 3526407,
25409 name: "Laranjal Paulista",
25410 state: State::SP,
25411 },
25412 Municipio {
25413 ibge_code: 3526605,
25414 name: "Lavrinhas",
25415 state: State::SP,
25416 },
25417 Municipio {
25418 ibge_code: 3526506,
25419 name: "Lavínia",
25420 state: State::SP,
25421 },
25422 Municipio {
25423 ibge_code: 3526704,
25424 name: "Leme",
25425 state: State::SP,
25426 },
25427 Municipio {
25428 ibge_code: 3526803,
25429 name: "Lençóis Paulista",
25430 state: State::SP,
25431 },
25432 Municipio {
25433 ibge_code: 3526902,
25434 name: "Limeira",
25435 state: State::SP,
25436 },
25437 Municipio {
25438 ibge_code: 3527009,
25439 name: "Lindóia",
25440 state: State::SP,
25441 },
25442 Municipio {
25443 ibge_code: 3527108,
25444 name: "Lins",
25445 state: State::SP,
25446 },
25447 Municipio {
25448 ibge_code: 3527207,
25449 name: "Lorena",
25450 state: State::SP,
25451 },
25452 Municipio {
25453 ibge_code: 3527256,
25454 name: "Lourdes",
25455 state: State::SP,
25456 },
25457 Municipio {
25458 ibge_code: 3527306,
25459 name: "Louveira",
25460 state: State::SP,
25461 },
25462 Municipio {
25463 ibge_code: 3527504,
25464 name: "Lucianópolis",
25465 state: State::SP,
25466 },
25467 Municipio {
25468 ibge_code: 3527405,
25469 name: "Lucélia",
25470 state: State::SP,
25471 },
25472 Municipio {
25473 ibge_code: 3527702,
25474 name: "Luiziânia",
25475 state: State::SP,
25476 },
25477 Municipio {
25478 ibge_code: 3527801,
25479 name: "Lupércio",
25480 state: State::SP,
25481 },
25482 Municipio {
25483 ibge_code: 3527900,
25484 name: "Lutécia",
25485 state: State::SP,
25486 },
25487 Municipio {
25488 ibge_code: 3527603,
25489 name: "Luís Antônio",
25490 state: State::SP,
25491 },
25492 Municipio {
25493 ibge_code: 3528007,
25494 name: "Macatuba",
25495 state: State::SP,
25496 },
25497 Municipio {
25498 ibge_code: 3528106,
25499 name: "Macaubal",
25500 state: State::SP,
25501 },
25502 Municipio {
25503 ibge_code: 3528205,
25504 name: "Macedônia",
25505 state: State::SP,
25506 },
25507 Municipio {
25508 ibge_code: 3528304,
25509 name: "Magda",
25510 state: State::SP,
25511 },
25512 Municipio {
25513 ibge_code: 3528403,
25514 name: "Mairinque",
25515 state: State::SP,
25516 },
25517 Municipio {
25518 ibge_code: 3528502,
25519 name: "Mairiporã",
25520 state: State::SP,
25521 },
25522 Municipio {
25523 ibge_code: 3528601,
25524 name: "Manduri",
25525 state: State::SP,
25526 },
25527 Municipio {
25528 ibge_code: 3528700,
25529 name: "Marabá Paulista",
25530 state: State::SP,
25531 },
25532 Municipio {
25533 ibge_code: 3528809,
25534 name: "Maracaí",
25535 state: State::SP,
25536 },
25537 Municipio {
25538 ibge_code: 3528858,
25539 name: "Marapoama",
25540 state: State::SP,
25541 },
25542 Municipio {
25543 ibge_code: 3529104,
25544 name: "Marinópolis",
25545 state: State::SP,
25546 },
25547 Municipio {
25548 ibge_code: 3528908,
25549 name: "Mariápolis",
25550 state: State::SP,
25551 },
25552 Municipio {
25553 ibge_code: 3529203,
25554 name: "Martinópolis",
25555 state: State::SP,
25556 },
25557 Municipio {
25558 ibge_code: 3529005,
25559 name: "Marília",
25560 state: State::SP,
25561 },
25562 Municipio {
25563 ibge_code: 3529302,
25564 name: "Matão",
25565 state: State::SP,
25566 },
25567 Municipio {
25568 ibge_code: 3529401,
25569 name: "Mauá",
25570 state: State::SP,
25571 },
25572 Municipio {
25573 ibge_code: 3529500,
25574 name: "Mendonça",
25575 state: State::SP,
25576 },
25577 Municipio {
25578 ibge_code: 3529609,
25579 name: "Meridiano",
25580 state: State::SP,
25581 },
25582 Municipio {
25583 ibge_code: 3529658,
25584 name: "Mesópolis",
25585 state: State::SP,
25586 },
25587 Municipio {
25588 ibge_code: 3529708,
25589 name: "Miguelópolis",
25590 state: State::SP,
25591 },
25592 Municipio {
25593 ibge_code: 3529807,
25594 name: "Mineiros do Tietê",
25595 state: State::SP,
25596 },
25597 Municipio {
25598 ibge_code: 3530003,
25599 name: "Mira Estrela",
25600 state: State::SP,
25601 },
25602 Municipio {
25603 ibge_code: 3529906,
25604 name: "Miracatu",
25605 state: State::SP,
25606 },
25607 Municipio {
25608 ibge_code: 3530102,
25609 name: "Mirandópolis",
25610 state: State::SP,
25611 },
25612 Municipio {
25613 ibge_code: 3530201,
25614 name: "Mirante do Paranapanema",
25615 state: State::SP,
25616 },
25617 Municipio {
25618 ibge_code: 3530300,
25619 name: "Mirassol",
25620 state: State::SP,
25621 },
25622 Municipio {
25623 ibge_code: 3530409,
25624 name: "Mirassolândia",
25625 state: State::SP,
25626 },
25627 Municipio {
25628 ibge_code: 3530508,
25629 name: "Mococa",
25630 state: State::SP,
25631 },
25632 Municipio {
25633 ibge_code: 3530706,
25634 name: "Mogi Guaçu",
25635 state: State::SP,
25636 },
25637 Municipio {
25638 ibge_code: 3530805,
25639 name: "Mogi Mirim",
25640 state: State::SP,
25641 },
25642 Municipio {
25643 ibge_code: 3530607,
25644 name: "Mogi das Cruzes",
25645 state: State::SP,
25646 },
25647 Municipio {
25648 ibge_code: 3530904,
25649 name: "Mombuca",
25650 state: State::SP,
25651 },
25652 Municipio {
25653 ibge_code: 3531100,
25654 name: "Mongaguá",
25655 state: State::SP,
25656 },
25657 Municipio {
25658 ibge_code: 3531209,
25659 name: "Monte Alegre do Sul",
25660 state: State::SP,
25661 },
25662 Municipio {
25663 ibge_code: 3531308,
25664 name: "Monte Alto",
25665 state: State::SP,
25666 },
25667 Municipio {
25668 ibge_code: 3531407,
25669 name: "Monte Aprazível",
25670 state: State::SP,
25671 },
25672 Municipio {
25673 ibge_code: 3531506,
25674 name: "Monte Azul Paulista",
25675 state: State::SP,
25676 },
25677 Municipio {
25678 ibge_code: 3531605,
25679 name: "Monte Castelo",
25680 state: State::SP,
25681 },
25682 Municipio {
25683 ibge_code: 3531803,
25684 name: "Monte Mor",
25685 state: State::SP,
25686 },
25687 Municipio {
25688 ibge_code: 3531704,
25689 name: "Monteiro Lobato",
25690 state: State::SP,
25691 },
25692 Municipio {
25693 ibge_code: 3531001,
25694 name: "Monções",
25695 state: State::SP,
25696 },
25697 Municipio {
25698 ibge_code: 3531902,
25699 name: "Morro Agudo",
25700 state: State::SP,
25701 },
25702 Municipio {
25703 ibge_code: 3532009,
25704 name: "Morungaba",
25705 state: State::SP,
25706 },
25707 Municipio {
25708 ibge_code: 3532058,
25709 name: "Motuca",
25710 state: State::SP,
25711 },
25712 Municipio {
25713 ibge_code: 3532108,
25714 name: "Murutinga do Sul",
25715 state: State::SP,
25716 },
25717 Municipio {
25718 ibge_code: 3532157,
25719 name: "Nantes",
25720 state: State::SP,
25721 },
25722 Municipio {
25723 ibge_code: 3532207,
25724 name: "Narandiba",
25725 state: State::SP,
25726 },
25727 Municipio {
25728 ibge_code: 3532306,
25729 name: "Natividade da Serra",
25730 state: State::SP,
25731 },
25732 Municipio {
25733 ibge_code: 3532405,
25734 name: "Nazaré Paulista",
25735 state: State::SP,
25736 },
25737 Municipio {
25738 ibge_code: 3532504,
25739 name: "Neves Paulista",
25740 state: State::SP,
25741 },
25742 Municipio {
25743 ibge_code: 3532603,
25744 name: "Nhandeara",
25745 state: State::SP,
25746 },
25747 Municipio {
25748 ibge_code: 3532702,
25749 name: "Nipoã",
25750 state: State::SP,
25751 },
25752 Municipio {
25753 ibge_code: 3532801,
25754 name: "Nova Aliança",
25755 state: State::SP,
25756 },
25757 Municipio {
25758 ibge_code: 3532827,
25759 name: "Nova Campina",
25760 state: State::SP,
25761 },
25762 Municipio {
25763 ibge_code: 3532843,
25764 name: "Nova Canaã Paulista",
25765 state: State::SP,
25766 },
25767 Municipio {
25768 ibge_code: 3532868,
25769 name: "Nova Castilho",
25770 state: State::SP,
25771 },
25772 Municipio {
25773 ibge_code: 3532900,
25774 name: "Nova Europa",
25775 state: State::SP,
25776 },
25777 Municipio {
25778 ibge_code: 3533007,
25779 name: "Nova Granada",
25780 state: State::SP,
25781 },
25782 Municipio {
25783 ibge_code: 3533106,
25784 name: "Nova Guataporanga",
25785 state: State::SP,
25786 },
25787 Municipio {
25788 ibge_code: 3533205,
25789 name: "Nova Independência",
25790 state: State::SP,
25791 },
25792 Municipio {
25793 ibge_code: 3533304,
25794 name: "Nova Luzitânia",
25795 state: State::SP,
25796 },
25797 Municipio {
25798 ibge_code: 3533403,
25799 name: "Nova Odessa",
25800 state: State::SP,
25801 },
25802 Municipio {
25803 ibge_code: 3533254,
25804 name: "Novais",
25805 state: State::SP,
25806 },
25807 Municipio {
25808 ibge_code: 3533502,
25809 name: "Novo Horizonte",
25810 state: State::SP,
25811 },
25812 Municipio {
25813 ibge_code: 3533601,
25814 name: "Nuporanga",
25815 state: State::SP,
25816 },
25817 Municipio {
25818 ibge_code: 3533700,
25819 name: "Ocauçu",
25820 state: State::SP,
25821 },
25822 Municipio {
25823 ibge_code: 3533908,
25824 name: "Olímpia",
25825 state: State::SP,
25826 },
25827 Municipio {
25828 ibge_code: 3534005,
25829 name: "Onda Verde",
25830 state: State::SP,
25831 },
25832 Municipio {
25833 ibge_code: 3534104,
25834 name: "Oriente",
25835 state: State::SP,
25836 },
25837 Municipio {
25838 ibge_code: 3534203,
25839 name: "Orindiúva",
25840 state: State::SP,
25841 },
25842 Municipio {
25843 ibge_code: 3534302,
25844 name: "Orlândia",
25845 state: State::SP,
25846 },
25847 Municipio {
25848 ibge_code: 3534401,
25849 name: "Osasco",
25850 state: State::SP,
25851 },
25852 Municipio {
25853 ibge_code: 3534500,
25854 name: "Oscar Bressane",
25855 state: State::SP,
25856 },
25857 Municipio {
25858 ibge_code: 3534609,
25859 name: "Osvaldo Cruz",
25860 state: State::SP,
25861 },
25862 Municipio {
25863 ibge_code: 3534708,
25864 name: "Ourinhos",
25865 state: State::SP,
25866 },
25867 Municipio {
25868 ibge_code: 3534807,
25869 name: "Ouro Verde",
25870 state: State::SP,
25871 },
25872 Municipio {
25873 ibge_code: 3534757,
25874 name: "Ouroeste",
25875 state: State::SP,
25876 },
25877 Municipio {
25878 ibge_code: 3534906,
25879 name: "Pacaembu",
25880 state: State::SP,
25881 },
25882 Municipio {
25883 ibge_code: 3535002,
25884 name: "Palestina",
25885 state: State::SP,
25886 },
25887 Municipio {
25888 ibge_code: 3535101,
25889 name: "Palmares Paulista",
25890 state: State::SP,
25891 },
25892 Municipio {
25893 ibge_code: 3535200,
25894 name: "Palmeira d'Oeste",
25895 state: State::SP,
25896 },
25897 Municipio {
25898 ibge_code: 3535309,
25899 name: "Palmital",
25900 state: State::SP,
25901 },
25902 Municipio {
25903 ibge_code: 3535408,
25904 name: "Panorama",
25905 state: State::SP,
25906 },
25907 Municipio {
25908 ibge_code: 3535507,
25909 name: "Paraguaçu Paulista",
25910 state: State::SP,
25911 },
25912 Municipio {
25913 ibge_code: 3535606,
25914 name: "Paraibuna",
25915 state: State::SP,
25916 },
25917 Municipio {
25918 ibge_code: 3535804,
25919 name: "Paranapanema",
25920 state: State::SP,
25921 },
25922 Municipio {
25923 ibge_code: 3535903,
25924 name: "Paranapuã",
25925 state: State::SP,
25926 },
25927 Municipio {
25928 ibge_code: 3536000,
25929 name: "Parapuã",
25930 state: State::SP,
25931 },
25932 Municipio {
25933 ibge_code: 3535705,
25934 name: "Paraíso",
25935 state: State::SP,
25936 },
25937 Municipio {
25938 ibge_code: 3536109,
25939 name: "Pardinho",
25940 state: State::SP,
25941 },
25942 Municipio {
25943 ibge_code: 3536208,
25944 name: "Pariquera-Açu",
25945 state: State::SP,
25946 },
25947 Municipio {
25948 ibge_code: 3536257,
25949 name: "Parisi",
25950 state: State::SP,
25951 },
25952 Municipio {
25953 ibge_code: 3536307,
25954 name: "Patrocínio Paulista",
25955 state: State::SP,
25956 },
25957 Municipio {
25958 ibge_code: 3536406,
25959 name: "Paulicéia",
25960 state: State::SP,
25961 },
25962 Municipio {
25963 ibge_code: 3536570,
25964 name: "Paulistânia",
25965 state: State::SP,
25966 },
25967 Municipio {
25968 ibge_code: 3536604,
25969 name: "Paulo de Faria",
25970 state: State::SP,
25971 },
25972 Municipio {
25973 ibge_code: 3536505,
25974 name: "Paulínia",
25975 state: State::SP,
25976 },
25977 Municipio {
25978 ibge_code: 3536703,
25979 name: "Pederneiras",
25980 state: State::SP,
25981 },
25982 Municipio {
25983 ibge_code: 3536802,
25984 name: "Pedra Bela",
25985 state: State::SP,
25986 },
25987 Municipio {
25988 ibge_code: 3536901,
25989 name: "Pedranópolis",
25990 state: State::SP,
25991 },
25992 Municipio {
25993 ibge_code: 3537008,
25994 name: "Pedregulho",
25995 state: State::SP,
25996 },
25997 Municipio {
25998 ibge_code: 3537107,
25999 name: "Pedreira",
26000 state: State::SP,
26001 },
26002 Municipio {
26003 ibge_code: 3537156,
26004 name: "Pedrinhas Paulista",
26005 state: State::SP,
26006 },
26007 Municipio {
26008 ibge_code: 3537206,
26009 name: "Pedro de Toledo",
26010 state: State::SP,
26011 },
26012 Municipio {
26013 ibge_code: 3537305,
26014 name: "Penápolis",
26015 state: State::SP,
26016 },
26017 Municipio {
26018 ibge_code: 3537404,
26019 name: "Pereira Barreto",
26020 state: State::SP,
26021 },
26022 Municipio {
26023 ibge_code: 3537503,
26024 name: "Pereiras",
26025 state: State::SP,
26026 },
26027 Municipio {
26028 ibge_code: 3537602,
26029 name: "Peruíbe",
26030 state: State::SP,
26031 },
26032 Municipio {
26033 ibge_code: 3537701,
26034 name: "Piacatu",
26035 state: State::SP,
26036 },
26037 Municipio {
26038 ibge_code: 3537800,
26039 name: "Piedade",
26040 state: State::SP,
26041 },
26042 Municipio {
26043 ibge_code: 3537909,
26044 name: "Pilar do Sul",
26045 state: State::SP,
26046 },
26047 Municipio {
26048 ibge_code: 3538006,
26049 name: "Pindamonhangaba",
26050 state: State::SP,
26051 },
26052 Municipio {
26053 ibge_code: 3538105,
26054 name: "Pindorama",
26055 state: State::SP,
26056 },
26057 Municipio {
26058 ibge_code: 3538204,
26059 name: "Pinhalzinho",
26060 state: State::SP,
26061 },
26062 Municipio {
26063 ibge_code: 3538303,
26064 name: "Piquerobi",
26065 state: State::SP,
26066 },
26067 Municipio {
26068 ibge_code: 3538501,
26069 name: "Piquete",
26070 state: State::SP,
26071 },
26072 Municipio {
26073 ibge_code: 3538600,
26074 name: "Piracaia",
26075 state: State::SP,
26076 },
26077 Municipio {
26078 ibge_code: 3538709,
26079 name: "Piracicaba",
26080 state: State::SP,
26081 },
26082 Municipio {
26083 ibge_code: 3538808,
26084 name: "Piraju",
26085 state: State::SP,
26086 },
26087 Municipio {
26088 ibge_code: 3538907,
26089 name: "Pirajuí",
26090 state: State::SP,
26091 },
26092 Municipio {
26093 ibge_code: 3539004,
26094 name: "Pirangi",
26095 state: State::SP,
26096 },
26097 Municipio {
26098 ibge_code: 3539103,
26099 name: "Pirapora do Bom Jesus",
26100 state: State::SP,
26101 },
26102 Municipio {
26103 ibge_code: 3539202,
26104 name: "Pirapozinho",
26105 state: State::SP,
26106 },
26107 Municipio {
26108 ibge_code: 3539301,
26109 name: "Pirassununga",
26110 state: State::SP,
26111 },
26112 Municipio {
26113 ibge_code: 3539400,
26114 name: "Piratininga",
26115 state: State::SP,
26116 },
26117 Municipio {
26118 ibge_code: 3539509,
26119 name: "Pitangueiras",
26120 state: State::SP,
26121 },
26122 Municipio {
26123 ibge_code: 3539608,
26124 name: "Planalto",
26125 state: State::SP,
26126 },
26127 Municipio {
26128 ibge_code: 3539707,
26129 name: "Platina",
26130 state: State::SP,
26131 },
26132 Municipio {
26133 ibge_code: 3539905,
26134 name: "Poloni",
26135 state: State::SP,
26136 },
26137 Municipio {
26138 ibge_code: 3540002,
26139 name: "Pompéia",
26140 state: State::SP,
26141 },
26142 Municipio {
26143 ibge_code: 3540101,
26144 name: "Pongaí",
26145 state: State::SP,
26146 },
26147 Municipio {
26148 ibge_code: 3540200,
26149 name: "Pontal",
26150 state: State::SP,
26151 },
26152 Municipio {
26153 ibge_code: 3540259,
26154 name: "Pontalinda",
26155 state: State::SP,
26156 },
26157 Municipio {
26158 ibge_code: 3540309,
26159 name: "Pontes Gestal",
26160 state: State::SP,
26161 },
26162 Municipio {
26163 ibge_code: 3540408,
26164 name: "Populina",
26165 state: State::SP,
26166 },
26167 Municipio {
26168 ibge_code: 3540507,
26169 name: "Porangaba",
26170 state: State::SP,
26171 },
26172 Municipio {
26173 ibge_code: 3540606,
26174 name: "Porto Feliz",
26175 state: State::SP,
26176 },
26177 Municipio {
26178 ibge_code: 3540705,
26179 name: "Porto Ferreira",
26180 state: State::SP,
26181 },
26182 Municipio {
26183 ibge_code: 3540754,
26184 name: "Potim",
26185 state: State::SP,
26186 },
26187 Municipio {
26188 ibge_code: 3540804,
26189 name: "Potirendaba",
26190 state: State::SP,
26191 },
26192 Municipio {
26193 ibge_code: 3539806,
26194 name: "Poá",
26195 state: State::SP,
26196 },
26197 Municipio {
26198 ibge_code: 3540853,
26199 name: "Pracinha",
26200 state: State::SP,
26201 },
26202 Municipio {
26203 ibge_code: 3540903,
26204 name: "Pradópolis",
26205 state: State::SP,
26206 },
26207 Municipio {
26208 ibge_code: 3541000,
26209 name: "Praia Grande",
26210 state: State::SP,
26211 },
26212 Municipio {
26213 ibge_code: 3541059,
26214 name: "Pratânia",
26215 state: State::SP,
26216 },
26217 Municipio {
26218 ibge_code: 3541109,
26219 name: "Presidente Alves",
26220 state: State::SP,
26221 },
26222 Municipio {
26223 ibge_code: 3541208,
26224 name: "Presidente Bernardes",
26225 state: State::SP,
26226 },
26227 Municipio {
26228 ibge_code: 3541307,
26229 name: "Presidente Epitácio",
26230 state: State::SP,
26231 },
26232 Municipio {
26233 ibge_code: 3541406,
26234 name: "Presidente Prudente",
26235 state: State::SP,
26236 },
26237 Municipio {
26238 ibge_code: 3541505,
26239 name: "Presidente Venceslau",
26240 state: State::SP,
26241 },
26242 Municipio {
26243 ibge_code: 3541604,
26244 name: "Promissão",
26245 state: State::SP,
26246 },
26247 Municipio {
26248 ibge_code: 3541653,
26249 name: "Quadra",
26250 state: State::SP,
26251 },
26252 Municipio {
26253 ibge_code: 3541703,
26254 name: "Quatá",
26255 state: State::SP,
26256 },
26257 Municipio {
26258 ibge_code: 3541802,
26259 name: "Queiroz",
26260 state: State::SP,
26261 },
26262 Municipio {
26263 ibge_code: 3541901,
26264 name: "Queluz",
26265 state: State::SP,
26266 },
26267 Municipio {
26268 ibge_code: 3542008,
26269 name: "Quintana",
26270 state: State::SP,
26271 },
26272 Municipio {
26273 ibge_code: 3542107,
26274 name: "Rafard",
26275 state: State::SP,
26276 },
26277 Municipio {
26278 ibge_code: 3542206,
26279 name: "Rancharia",
26280 state: State::SP,
26281 },
26282 Municipio {
26283 ibge_code: 3542305,
26284 name: "Redenção da Serra",
26285 state: State::SP,
26286 },
26287 Municipio {
26288 ibge_code: 3542404,
26289 name: "Regente Feijó",
26290 state: State::SP,
26291 },
26292 Municipio {
26293 ibge_code: 3542503,
26294 name: "Reginópolis",
26295 state: State::SP,
26296 },
26297 Municipio {
26298 ibge_code: 3542602,
26299 name: "Registro",
26300 state: State::SP,
26301 },
26302 Municipio {
26303 ibge_code: 3542701,
26304 name: "Restinga",
26305 state: State::SP,
26306 },
26307 Municipio {
26308 ibge_code: 3542800,
26309 name: "Ribeira",
26310 state: State::SP,
26311 },
26312 Municipio {
26313 ibge_code: 3542909,
26314 name: "Ribeirão Bonito",
26315 state: State::SP,
26316 },
26317 Municipio {
26318 ibge_code: 3543006,
26319 name: "Ribeirão Branco",
26320 state: State::SP,
26321 },
26322 Municipio {
26323 ibge_code: 3543105,
26324 name: "Ribeirão Corrente",
26325 state: State::SP,
26326 },
26327 Municipio {
26328 ibge_code: 3543253,
26329 name: "Ribeirão Grande",
26330 state: State::SP,
26331 },
26332 Municipio {
26333 ibge_code: 3543303,
26334 name: "Ribeirão Pires",
26335 state: State::SP,
26336 },
26337 Municipio {
26338 ibge_code: 3543402,
26339 name: "Ribeirão Preto",
26340 state: State::SP,
26341 },
26342 Municipio {
26343 ibge_code: 3543204,
26344 name: "Ribeirão do Sul",
26345 state: State::SP,
26346 },
26347 Municipio {
26348 ibge_code: 3543238,
26349 name: "Ribeirão dos Índios",
26350 state: State::SP,
26351 },
26352 Municipio {
26353 ibge_code: 3543600,
26354 name: "Rifaina",
26355 state: State::SP,
26356 },
26357 Municipio {
26358 ibge_code: 3543709,
26359 name: "Rincão",
26360 state: State::SP,
26361 },
26362 Municipio {
26363 ibge_code: 3543808,
26364 name: "Rinópolis",
26365 state: State::SP,
26366 },
26367 Municipio {
26368 ibge_code: 3543907,
26369 name: "Rio Claro",
26370 state: State::SP,
26371 },
26372 Municipio {
26373 ibge_code: 3544103,
26374 name: "Rio Grande da Serra",
26375 state: State::SP,
26376 },
26377 Municipio {
26378 ibge_code: 3544004,
26379 name: "Rio das Pedras",
26380 state: State::SP,
26381 },
26382 Municipio {
26383 ibge_code: 3544202,
26384 name: "Riolândia",
26385 state: State::SP,
26386 },
26387 Municipio {
26388 ibge_code: 3543501,
26389 name: "Riversul",
26390 state: State::SP,
26391 },
26392 Municipio {
26393 ibge_code: 3544251,
26394 name: "Rosana",
26395 state: State::SP,
26396 },
26397 Municipio {
26398 ibge_code: 3544301,
26399 name: "Roseira",
26400 state: State::SP,
26401 },
26402 Municipio {
26403 ibge_code: 3544509,
26404 name: "Rubinéia",
26405 state: State::SP,
26406 },
26407 Municipio {
26408 ibge_code: 3544400,
26409 name: "Rubiácea",
26410 state: State::SP,
26411 },
26412 Municipio {
26413 ibge_code: 3544608,
26414 name: "Sabino",
26415 state: State::SP,
26416 },
26417 Municipio {
26418 ibge_code: 3544707,
26419 name: "Sagres",
26420 state: State::SP,
26421 },
26422 Municipio {
26423 ibge_code: 3544806,
26424 name: "Sales",
26425 state: State::SP,
26426 },
26427 Municipio {
26428 ibge_code: 3544905,
26429 name: "Sales Oliveira",
26430 state: State::SP,
26431 },
26432 Municipio {
26433 ibge_code: 3545001,
26434 name: "Salesópolis",
26435 state: State::SP,
26436 },
26437 Municipio {
26438 ibge_code: 3545100,
26439 name: "Salmourão",
26440 state: State::SP,
26441 },
26442 Municipio {
26443 ibge_code: 3545159,
26444 name: "Saltinho",
26445 state: State::SP,
26446 },
26447 Municipio {
26448 ibge_code: 3545209,
26449 name: "Salto",
26450 state: State::SP,
26451 },
26452 Municipio {
26453 ibge_code: 3545407,
26454 name: "Salto Grande",
26455 state: State::SP,
26456 },
26457 Municipio {
26458 ibge_code: 3545308,
26459 name: "Salto de Pirapora",
26460 state: State::SP,
26461 },
26462 Municipio {
26463 ibge_code: 3545506,
26464 name: "Sandovalina",
26465 state: State::SP,
26466 },
26467 Municipio {
26468 ibge_code: 3545605,
26469 name: "Santa Adélia",
26470 state: State::SP,
26471 },
26472 Municipio {
26473 ibge_code: 3545704,
26474 name: "Santa Albertina",
26475 state: State::SP,
26476 },
26477 Municipio {
26478 ibge_code: 3546009,
26479 name: "Santa Branca",
26480 state: State::SP,
26481 },
26482 Municipio {
26483 ibge_code: 3545803,
26484 name: "Santa Bárbara d'Oeste",
26485 state: State::SP,
26486 },
26487 Municipio {
26488 ibge_code: 3546108,
26489 name: "Santa Clara d'Oeste",
26490 state: State::SP,
26491 },
26492 Municipio {
26493 ibge_code: 3546207,
26494 name: "Santa Cruz da Conceição",
26495 state: State::SP,
26496 },
26497 Municipio {
26498 ibge_code: 3546256,
26499 name: "Santa Cruz da Esperança",
26500 state: State::SP,
26501 },
26502 Municipio {
26503 ibge_code: 3546306,
26504 name: "Santa Cruz das Palmeiras",
26505 state: State::SP,
26506 },
26507 Municipio {
26508 ibge_code: 3546405,
26509 name: "Santa Cruz do Rio Pardo",
26510 state: State::SP,
26511 },
26512 Municipio {
26513 ibge_code: 3546504,
26514 name: "Santa Ernestina",
26515 state: State::SP,
26516 },
26517 Municipio {
26518 ibge_code: 3546603,
26519 name: "Santa Fé do Sul",
26520 state: State::SP,
26521 },
26522 Municipio {
26523 ibge_code: 3546702,
26524 name: "Santa Gertrudes",
26525 state: State::SP,
26526 },
26527 Municipio {
26528 ibge_code: 3546801,
26529 name: "Santa Isabel",
26530 state: State::SP,
26531 },
26532 Municipio {
26533 ibge_code: 3546900,
26534 name: "Santa Lúcia",
26535 state: State::SP,
26536 },
26537 Municipio {
26538 ibge_code: 3547007,
26539 name: "Santa Maria da Serra",
26540 state: State::SP,
26541 },
26542 Municipio {
26543 ibge_code: 3547106,
26544 name: "Santa Mercedes",
26545 state: State::SP,
26546 },
26547 Municipio {
26548 ibge_code: 3547403,
26549 name: "Santa Rita d'Oeste",
26550 state: State::SP,
26551 },
26552 Municipio {
26553 ibge_code: 3547502,
26554 name: "Santa Rita do Passa Quatro",
26555 state: State::SP,
26556 },
26557 Municipio {
26558 ibge_code: 3547601,
26559 name: "Santa Rosa de Viterbo",
26560 state: State::SP,
26561 },
26562 Municipio {
26563 ibge_code: 3547650,
26564 name: "Santa Salete",
26565 state: State::SP,
26566 },
26567 Municipio {
26568 ibge_code: 3547205,
26569 name: "Santana da Ponte Pensa",
26570 state: State::SP,
26571 },
26572 Municipio {
26573 ibge_code: 3547304,
26574 name: "Santana de Parnaíba",
26575 state: State::SP,
26576 },
26577 Municipio {
26578 ibge_code: 3547700,
26579 name: "Santo Anastácio",
26580 state: State::SP,
26581 },
26582 Municipio {
26583 ibge_code: 3547809,
26584 name: "Santo André",
26585 state: State::SP,
26586 },
26587 Municipio {
26588 ibge_code: 3547908,
26589 name: "Santo Antônio da Alegria",
26590 state: State::SP,
26591 },
26592 Municipio {
26593 ibge_code: 3548005,
26594 name: "Santo Antônio de Posse",
26595 state: State::SP,
26596 },
26597 Municipio {
26598 ibge_code: 3548054,
26599 name: "Santo Antônio do Aracanguá",
26600 state: State::SP,
26601 },
26602 Municipio {
26603 ibge_code: 3548104,
26604 name: "Santo Antônio do Jardim",
26605 state: State::SP,
26606 },
26607 Municipio {
26608 ibge_code: 3548203,
26609 name: "Santo Antônio do Pinhal",
26610 state: State::SP,
26611 },
26612 Municipio {
26613 ibge_code: 3548302,
26614 name: "Santo Expedito",
26615 state: State::SP,
26616 },
26617 Municipio {
26618 ibge_code: 3548500,
26619 name: "Santos",
26620 state: State::SP,
26621 },
26622 Municipio {
26623 ibge_code: 3548401,
26624 name: "Santópolis do Aguapeí",
26625 state: State::SP,
26626 },
26627 Municipio {
26628 ibge_code: 3551108,
26629 name: "Sarapuí",
26630 state: State::SP,
26631 },
26632 Municipio {
26633 ibge_code: 3551207,
26634 name: "Sarutaiá",
26635 state: State::SP,
26636 },
26637 Municipio {
26638 ibge_code: 3551306,
26639 name: "Sebastianópolis do Sul",
26640 state: State::SP,
26641 },
26642 Municipio {
26643 ibge_code: 3551405,
26644 name: "Serra Azul",
26645 state: State::SP,
26646 },
26647 Municipio {
26648 ibge_code: 3551603,
26649 name: "Serra Negra",
26650 state: State::SP,
26651 },
26652 Municipio {
26653 ibge_code: 3551504,
26654 name: "Serrana",
26655 state: State::SP,
26656 },
26657 Municipio {
26658 ibge_code: 3551702,
26659 name: "Sertãozinho",
26660 state: State::SP,
26661 },
26662 Municipio {
26663 ibge_code: 3551801,
26664 name: "Sete Barras",
26665 state: State::SP,
26666 },
26667 Municipio {
26668 ibge_code: 3551900,
26669 name: "Severínia",
26670 state: State::SP,
26671 },
26672 Municipio {
26673 ibge_code: 3552007,
26674 name: "Silveiras",
26675 state: State::SP,
26676 },
26677 Municipio {
26678 ibge_code: 3552106,
26679 name: "Socorro",
26680 state: State::SP,
26681 },
26682 Municipio {
26683 ibge_code: 3552205,
26684 name: "Sorocaba",
26685 state: State::SP,
26686 },
26687 Municipio {
26688 ibge_code: 3552304,
26689 name: "Sud Mennucci",
26690 state: State::SP,
26691 },
26692 Municipio {
26693 ibge_code: 3552403,
26694 name: "Sumaré",
26695 state: State::SP,
26696 },
26697 Municipio {
26698 ibge_code: 3552502,
26699 name: "Suzano",
26700 state: State::SP,
26701 },
26702 Municipio {
26703 ibge_code: 3552551,
26704 name: "Suzanápolis",
26705 state: State::SP,
26706 },
26707 Municipio {
26708 ibge_code: 3548609,
26709 name: "São Bento do Sapucaí",
26710 state: State::SP,
26711 },
26712 Municipio {
26713 ibge_code: 3548708,
26714 name: "São Bernardo do Campo",
26715 state: State::SP,
26716 },
26717 Municipio {
26718 ibge_code: 3548807,
26719 name: "São Caetano do Sul",
26720 state: State::SP,
26721 },
26722 Municipio {
26723 ibge_code: 3548906,
26724 name: "São Carlos",
26725 state: State::SP,
26726 },
26727 Municipio {
26728 ibge_code: 3549003,
26729 name: "São Francisco",
26730 state: State::SP,
26731 },
26732 Municipio {
26733 ibge_code: 3549409,
26734 name: "São Joaquim da Barra",
26735 state: State::SP,
26736 },
26737 Municipio {
26738 ibge_code: 3549508,
26739 name: "São José da Bela Vista",
26740 state: State::SP,
26741 },
26742 Municipio {
26743 ibge_code: 3549607,
26744 name: "São José do Barreiro",
26745 state: State::SP,
26746 },
26747 Municipio {
26748 ibge_code: 3549706,
26749 name: "São José do Rio Pardo",
26750 state: State::SP,
26751 },
26752 Municipio {
26753 ibge_code: 3549805,
26754 name: "São José do Rio Preto",
26755 state: State::SP,
26756 },
26757 Municipio {
26758 ibge_code: 3549904,
26759 name: "São José dos Campos",
26760 state: State::SP,
26761 },
26762 Municipio {
26763 ibge_code: 3549102,
26764 name: "São João da Boa Vista",
26765 state: State::SP,
26766 },
26767 Municipio {
26768 ibge_code: 3549201,
26769 name: "São João das Duas Pontes",
26770 state: State::SP,
26771 },
26772 Municipio {
26773 ibge_code: 3549250,
26774 name: "São João de Iracema",
26775 state: State::SP,
26776 },
26777 Municipio {
26778 ibge_code: 3549300,
26779 name: "São João do Pau d'Alho",
26780 state: State::SP,
26781 },
26782 Municipio {
26783 ibge_code: 3549953,
26784 name: "São Lourenço da Serra",
26785 state: State::SP,
26786 },
26787 Municipio {
26788 ibge_code: 3550001,
26789 name: "São Luiz do Paraitinga",
26790 state: State::SP,
26791 },
26792 Municipio {
26793 ibge_code: 3550100,
26794 name: "São Manuel",
26795 state: State::SP,
26796 },
26797 Municipio {
26798 ibge_code: 3550209,
26799 name: "São Miguel Arcanjo",
26800 state: State::SP,
26801 },
26802 Municipio {
26803 ibge_code: 3550308,
26804 name: "São Paulo",
26805 state: State::SP,
26806 },
26807 Municipio {
26808 ibge_code: 3550407,
26809 name: "São Pedro",
26810 state: State::SP,
26811 },
26812 Municipio {
26813 ibge_code: 3550506,
26814 name: "São Pedro do Turvo",
26815 state: State::SP,
26816 },
26817 Municipio {
26818 ibge_code: 3550605,
26819 name: "São Roque",
26820 state: State::SP,
26821 },
26822 Municipio {
26823 ibge_code: 3550704,
26824 name: "São Sebastião",
26825 state: State::SP,
26826 },
26827 Municipio {
26828 ibge_code: 3550803,
26829 name: "São Sebastião da Grama",
26830 state: State::SP,
26831 },
26832 Municipio {
26833 ibge_code: 3550902,
26834 name: "São Simão",
26835 state: State::SP,
26836 },
26837 Municipio {
26838 ibge_code: 3551009,
26839 name: "São Vicente",
26840 state: State::SP,
26841 },
26842 Municipio {
26843 ibge_code: 3552601,
26844 name: "Tabapuã",
26845 state: State::SP,
26846 },
26847 Municipio {
26848 ibge_code: 3552700,
26849 name: "Tabatinga",
26850 state: State::SP,
26851 },
26852 Municipio {
26853 ibge_code: 3552809,
26854 name: "Taboão da Serra",
26855 state: State::SP,
26856 },
26857 Municipio {
26858 ibge_code: 3552908,
26859 name: "Taciba",
26860 state: State::SP,
26861 },
26862 Municipio {
26863 ibge_code: 3553005,
26864 name: "Taguaí",
26865 state: State::SP,
26866 },
26867 Municipio {
26868 ibge_code: 3553104,
26869 name: "Taiaçu",
26870 state: State::SP,
26871 },
26872 Municipio {
26873 ibge_code: 3553203,
26874 name: "Taiúva",
26875 state: State::SP,
26876 },
26877 Municipio {
26878 ibge_code: 3553302,
26879 name: "Tambaú",
26880 state: State::SP,
26881 },
26882 Municipio {
26883 ibge_code: 3553401,
26884 name: "Tanabi",
26885 state: State::SP,
26886 },
26887 Municipio {
26888 ibge_code: 3553609,
26889 name: "Tapiratiba",
26890 state: State::SP,
26891 },
26892 Municipio {
26893 ibge_code: 3553500,
26894 name: "Tapiraí",
26895 state: State::SP,
26896 },
26897 Municipio {
26898 ibge_code: 3553658,
26899 name: "Taquaral",
26900 state: State::SP,
26901 },
26902 Municipio {
26903 ibge_code: 3553708,
26904 name: "Taquaritinga",
26905 state: State::SP,
26906 },
26907 Municipio {
26908 ibge_code: 3553807,
26909 name: "Taquarituba",
26910 state: State::SP,
26911 },
26912 Municipio {
26913 ibge_code: 3553856,
26914 name: "Taquarivaí",
26915 state: State::SP,
26916 },
26917 Municipio {
26918 ibge_code: 3553906,
26919 name: "Tarabai",
26920 state: State::SP,
26921 },
26922 Municipio {
26923 ibge_code: 3553955,
26924 name: "Tarumã",
26925 state: State::SP,
26926 },
26927 Municipio {
26928 ibge_code: 3554003,
26929 name: "Tatuí",
26930 state: State::SP,
26931 },
26932 Municipio {
26933 ibge_code: 3554102,
26934 name: "Taubaté",
26935 state: State::SP,
26936 },
26937 Municipio {
26938 ibge_code: 3554201,
26939 name: "Tejupá",
26940 state: State::SP,
26941 },
26942 Municipio {
26943 ibge_code: 3554300,
26944 name: "Teodoro Sampaio",
26945 state: State::SP,
26946 },
26947 Municipio {
26948 ibge_code: 3554409,
26949 name: "Terra Roxa",
26950 state: State::SP,
26951 },
26952 Municipio {
26953 ibge_code: 3554508,
26954 name: "Tietê",
26955 state: State::SP,
26956 },
26957 Municipio {
26958 ibge_code: 3554607,
26959 name: "Timburi",
26960 state: State::SP,
26961 },
26962 Municipio {
26963 ibge_code: 3554656,
26964 name: "Torre de Pedra",
26965 state: State::SP,
26966 },
26967 Municipio {
26968 ibge_code: 3554706,
26969 name: "Torrinha",
26970 state: State::SP,
26971 },
26972 Municipio {
26973 ibge_code: 3554755,
26974 name: "Trabiju",
26975 state: State::SP,
26976 },
26977 Municipio {
26978 ibge_code: 3554805,
26979 name: "Tremembé",
26980 state: State::SP,
26981 },
26982 Municipio {
26983 ibge_code: 3554904,
26984 name: "Três Fronteiras",
26985 state: State::SP,
26986 },
26987 Municipio {
26988 ibge_code: 3554953,
26989 name: "Tuiuti",
26990 state: State::SP,
26991 },
26992 Municipio {
26993 ibge_code: 3555109,
26994 name: "Tupi Paulista",
26995 state: State::SP,
26996 },
26997 Municipio {
26998 ibge_code: 3555000,
26999 name: "Tupã",
27000 state: State::SP,
27001 },
27002 Municipio {
27003 ibge_code: 3555208,
27004 name: "Turiúba",
27005 state: State::SP,
27006 },
27007 Municipio {
27008 ibge_code: 3555307,
27009 name: "Turmalina",
27010 state: State::SP,
27011 },
27012 Municipio {
27013 ibge_code: 3555356,
27014 name: "Ubarana",
27015 state: State::SP,
27016 },
27017 Municipio {
27018 ibge_code: 3555406,
27019 name: "Ubatuba",
27020 state: State::SP,
27021 },
27022 Municipio {
27023 ibge_code: 3555505,
27024 name: "Ubirajara",
27025 state: State::SP,
27026 },
27027 Municipio {
27028 ibge_code: 3555604,
27029 name: "Uchoa",
27030 state: State::SP,
27031 },
27032 Municipio {
27033 ibge_code: 3555703,
27034 name: "União Paulista",
27035 state: State::SP,
27036 },
27037 Municipio {
27038 ibge_code: 3555901,
27039 name: "Uru",
27040 state: State::SP,
27041 },
27042 Municipio {
27043 ibge_code: 3556008,
27044 name: "Urupês",
27045 state: State::SP,
27046 },
27047 Municipio {
27048 ibge_code: 3555802,
27049 name: "Urânia",
27050 state: State::SP,
27051 },
27052 Municipio {
27053 ibge_code: 3556107,
27054 name: "Valentim Gentil",
27055 state: State::SP,
27056 },
27057 Municipio {
27058 ibge_code: 3556206,
27059 name: "Valinhos",
27060 state: State::SP,
27061 },
27062 Municipio {
27063 ibge_code: 3556305,
27064 name: "Valparaíso",
27065 state: State::SP,
27066 },
27067 Municipio {
27068 ibge_code: 3556354,
27069 name: "Vargem",
27070 state: State::SP,
27071 },
27072 Municipio {
27073 ibge_code: 3556453,
27074 name: "Vargem Grande Paulista",
27075 state: State::SP,
27076 },
27077 Municipio {
27078 ibge_code: 3556404,
27079 name: "Vargem Grande do Sul",
27080 state: State::SP,
27081 },
27082 Municipio {
27083 ibge_code: 3556602,
27084 name: "Vera Cruz",
27085 state: State::SP,
27086 },
27087 Municipio {
27088 ibge_code: 3556701,
27089 name: "Vinhedo",
27090 state: State::SP,
27091 },
27092 Municipio {
27093 ibge_code: 3556800,
27094 name: "Viradouro",
27095 state: State::SP,
27096 },
27097 Municipio {
27098 ibge_code: 3556909,
27099 name: "Vista Alegre do Alto",
27100 state: State::SP,
27101 },
27102 Municipio {
27103 ibge_code: 3556958,
27104 name: "Vitória Brasil",
27105 state: State::SP,
27106 },
27107 Municipio {
27108 ibge_code: 3557006,
27109 name: "Votorantim",
27110 state: State::SP,
27111 },
27112 Municipio {
27113 ibge_code: 3557105,
27114 name: "Votuporanga",
27115 state: State::SP,
27116 },
27117 Municipio {
27118 ibge_code: 3556503,
27119 name: "Várzea Paulista",
27120 state: State::SP,
27121 },
27122 Municipio {
27123 ibge_code: 3557154,
27124 name: "Zacarias",
27125 state: State::SP,
27126 },
27127 Municipio {
27128 ibge_code: 3500402,
27129 name: "Águas da Prata",
27130 state: State::SP,
27131 },
27132 Municipio {
27133 ibge_code: 3500501,
27134 name: "Águas de Lindóia",
27135 state: State::SP,
27136 },
27137 Municipio {
27138 ibge_code: 3500550,
27139 name: "Águas de Santa Bárbara",
27140 state: State::SP,
27141 },
27142 Municipio {
27143 ibge_code: 3500600,
27144 name: "Águas de São Pedro",
27145 state: State::SP,
27146 },
27147 Municipio {
27148 ibge_code: 3501202,
27149 name: "Álvares Florence",
27150 state: State::SP,
27151 },
27152 Municipio {
27153 ibge_code: 3501301,
27154 name: "Álvares Machado",
27155 state: State::SP,
27156 },
27157 Municipio {
27158 ibge_code: 3501400,
27159 name: "Álvaro de Carvalho",
27160 state: State::SP,
27161 },
27162 Municipio {
27163 ibge_code: 3533809,
27164 name: "Óleo",
27165 state: State::SP,
27166 },
27167 Municipio {
27168 ibge_code: 1700251,
27169 name: "Abreulândia",
27170 state: State::TO,
27171 },
27172 Municipio {
27173 ibge_code: 1700301,
27174 name: "Aguiarnópolis",
27175 state: State::TO,
27176 },
27177 Municipio {
27178 ibge_code: 1700350,
27179 name: "Aliança do Tocantins",
27180 state: State::TO,
27181 },
27182 Municipio {
27183 ibge_code: 1700400,
27184 name: "Almas",
27185 state: State::TO,
27186 },
27187 Municipio {
27188 ibge_code: 1700707,
27189 name: "Alvorada",
27190 state: State::TO,
27191 },
27192 Municipio {
27193 ibge_code: 1701002,
27194 name: "Ananás",
27195 state: State::TO,
27196 },
27197 Municipio {
27198 ibge_code: 1701051,
27199 name: "Angico",
27200 state: State::TO,
27201 },
27202 Municipio {
27203 ibge_code: 1701101,
27204 name: "Aparecida do Rio Negro",
27205 state: State::TO,
27206 },
27207 Municipio {
27208 ibge_code: 1701309,
27209 name: "Aragominas",
27210 state: State::TO,
27211 },
27212 Municipio {
27213 ibge_code: 1701903,
27214 name: "Araguacema",
27215 state: State::TO,
27216 },
27217 Municipio {
27218 ibge_code: 1702158,
27219 name: "Araguanã",
27220 state: State::TO,
27221 },
27222 Municipio {
27223 ibge_code: 1702208,
27224 name: "Araguatins",
27225 state: State::TO,
27226 },
27227 Municipio {
27228 ibge_code: 1702000,
27229 name: "Araguaçu",
27230 state: State::TO,
27231 },
27232 Municipio {
27233 ibge_code: 1702109,
27234 name: "Araguaína",
27235 state: State::TO,
27236 },
27237 Municipio {
27238 ibge_code: 1702307,
27239 name: "Arapoema",
27240 state: State::TO,
27241 },
27242 Municipio {
27243 ibge_code: 1702406,
27244 name: "Arraias",
27245 state: State::TO,
27246 },
27247 Municipio {
27248 ibge_code: 1702554,
27249 name: "Augustinópolis",
27250 state: State::TO,
27251 },
27252 Municipio {
27253 ibge_code: 1702703,
27254 name: "Aurora do Tocantins",
27255 state: State::TO,
27256 },
27257 Municipio {
27258 ibge_code: 1702901,
27259 name: "Axixá do Tocantins",
27260 state: State::TO,
27261 },
27262 Municipio {
27263 ibge_code: 1703008,
27264 name: "Babaçulândia",
27265 state: State::TO,
27266 },
27267 Municipio {
27268 ibge_code: 1703057,
27269 name: "Bandeirantes do Tocantins",
27270 state: State::TO,
27271 },
27272 Municipio {
27273 ibge_code: 1703073,
27274 name: "Barra do Ouro",
27275 state: State::TO,
27276 },
27277 Municipio {
27278 ibge_code: 1703107,
27279 name: "Barrolândia",
27280 state: State::TO,
27281 },
27282 Municipio {
27283 ibge_code: 1703206,
27284 name: "Bernardo Sayão",
27285 state: State::TO,
27286 },
27287 Municipio {
27288 ibge_code: 1703305,
27289 name: "Bom Jesus do Tocantins",
27290 state: State::TO,
27291 },
27292 Municipio {
27293 ibge_code: 1703602,
27294 name: "Brasilândia do Tocantins",
27295 state: State::TO,
27296 },
27297 Municipio {
27298 ibge_code: 1703701,
27299 name: "Brejinho de Nazaré",
27300 state: State::TO,
27301 },
27302 Municipio {
27303 ibge_code: 1703800,
27304 name: "Buriti do Tocantins",
27305 state: State::TO,
27306 },
27307 Municipio {
27308 ibge_code: 1703826,
27309 name: "Cachoeirinha",
27310 state: State::TO,
27311 },
27312 Municipio {
27313 ibge_code: 1703842,
27314 name: "Campos Lindos",
27315 state: State::TO,
27316 },
27317 Municipio {
27318 ibge_code: 1703867,
27319 name: "Cariri do Tocantins",
27320 state: State::TO,
27321 },
27322 Municipio {
27323 ibge_code: 1703883,
27324 name: "Carmolândia",
27325 state: State::TO,
27326 },
27327 Municipio {
27328 ibge_code: 1703891,
27329 name: "Carrasco Bonito",
27330 state: State::TO,
27331 },
27332 Municipio {
27333 ibge_code: 1703909,
27334 name: "Caseara",
27335 state: State::TO,
27336 },
27337 Municipio {
27338 ibge_code: 1704105,
27339 name: "Centenário",
27340 state: State::TO,
27341 },
27342 Municipio {
27343 ibge_code: 1705102,
27344 name: "Chapada da Natividade",
27345 state: State::TO,
27346 },
27347 Municipio {
27348 ibge_code: 1704600,
27349 name: "Chapada de Areia",
27350 state: State::TO,
27351 },
27352 Municipio {
27353 ibge_code: 1705508,
27354 name: "Colinas do Tocantins",
27355 state: State::TO,
27356 },
27357 Municipio {
27358 ibge_code: 1716703,
27359 name: "Colméia",
27360 state: State::TO,
27361 },
27362 Municipio {
27363 ibge_code: 1705557,
27364 name: "Combinado",
27365 state: State::TO,
27366 },
27367 Municipio {
27368 ibge_code: 1705607,
27369 name: "Conceição do Tocantins",
27370 state: State::TO,
27371 },
27372 Municipio {
27373 ibge_code: 1706001,
27374 name: "Couto Magalhães",
27375 state: State::TO,
27376 },
27377 Municipio {
27378 ibge_code: 1706100,
27379 name: "Cristalândia",
27380 state: State::TO,
27381 },
27382 Municipio {
27383 ibge_code: 1706258,
27384 name: "Crixás do Tocantins",
27385 state: State::TO,
27386 },
27387 Municipio {
27388 ibge_code: 1706506,
27389 name: "Darcinópolis",
27390 state: State::TO,
27391 },
27392 Municipio {
27393 ibge_code: 1707009,
27394 name: "Dianópolis",
27395 state: State::TO,
27396 },
27397 Municipio {
27398 ibge_code: 1707108,
27399 name: "Divinópolis do Tocantins",
27400 state: State::TO,
27401 },
27402 Municipio {
27403 ibge_code: 1707207,
27404 name: "Dois Irmãos do Tocantins",
27405 state: State::TO,
27406 },
27407 Municipio {
27408 ibge_code: 1707306,
27409 name: "Dueré",
27410 state: State::TO,
27411 },
27412 Municipio {
27413 ibge_code: 1707405,
27414 name: "Esperantina",
27415 state: State::TO,
27416 },
27417 Municipio {
27418 ibge_code: 1707652,
27419 name: "Figueirópolis",
27420 state: State::TO,
27421 },
27422 Municipio {
27423 ibge_code: 1707702,
27424 name: "Filadélfia",
27425 state: State::TO,
27426 },
27427 Municipio {
27428 ibge_code: 1708205,
27429 name: "Formoso do Araguaia",
27430 state: State::TO,
27431 },
27432 Municipio {
27433 ibge_code: 1707553,
27434 name: "Fátima",
27435 state: State::TO,
27436 },
27437 Municipio {
27438 ibge_code: 1708304,
27439 name: "Goianorte",
27440 state: State::TO,
27441 },
27442 Municipio {
27443 ibge_code: 1709005,
27444 name: "Goiatins",
27445 state: State::TO,
27446 },
27447 Municipio {
27448 ibge_code: 1709302,
27449 name: "Guaraí",
27450 state: State::TO,
27451 },
27452 Municipio {
27453 ibge_code: 1709500,
27454 name: "Gurupi",
27455 state: State::TO,
27456 },
27457 Municipio {
27458 ibge_code: 1709807,
27459 name: "Ipueiras",
27460 state: State::TO,
27461 },
27462 Municipio {
27463 ibge_code: 1710508,
27464 name: "Itacajá",
27465 state: State::TO,
27466 },
27467 Municipio {
27468 ibge_code: 1710706,
27469 name: "Itaguatins",
27470 state: State::TO,
27471 },
27472 Municipio {
27473 ibge_code: 1710904,
27474 name: "Itapiratins",
27475 state: State::TO,
27476 },
27477 Municipio {
27478 ibge_code: 1711100,
27479 name: "Itaporã do Tocantins",
27480 state: State::TO,
27481 },
27482 Municipio {
27483 ibge_code: 1711506,
27484 name: "Jaú do Tocantins",
27485 state: State::TO,
27486 },
27487 Municipio {
27488 ibge_code: 1711803,
27489 name: "Juarina",
27490 state: State::TO,
27491 },
27492 Municipio {
27493 ibge_code: 1711902,
27494 name: "Lagoa da Confusão",
27495 state: State::TO,
27496 },
27497 Municipio {
27498 ibge_code: 1711951,
27499 name: "Lagoa do Tocantins",
27500 state: State::TO,
27501 },
27502 Municipio {
27503 ibge_code: 1712009,
27504 name: "Lajeado",
27505 state: State::TO,
27506 },
27507 Municipio {
27508 ibge_code: 1712157,
27509 name: "Lavandeira",
27510 state: State::TO,
27511 },
27512 Municipio {
27513 ibge_code: 1712405,
27514 name: "Lizarda",
27515 state: State::TO,
27516 },
27517 Municipio {
27518 ibge_code: 1712454,
27519 name: "Luzinópolis",
27520 state: State::TO,
27521 },
27522 Municipio {
27523 ibge_code: 1712504,
27524 name: "Marianópolis do Tocantins",
27525 state: State::TO,
27526 },
27527 Municipio {
27528 ibge_code: 1712702,
27529 name: "Mateiros",
27530 state: State::TO,
27531 },
27532 Municipio {
27533 ibge_code: 1712801,
27534 name: "Maurilândia do Tocantins",
27535 state: State::TO,
27536 },
27537 Municipio {
27538 ibge_code: 1713205,
27539 name: "Miracema do Tocantins",
27540 state: State::TO,
27541 },
27542 Municipio {
27543 ibge_code: 1713304,
27544 name: "Miranorte",
27545 state: State::TO,
27546 },
27547 Municipio {
27548 ibge_code: 1713700,
27549 name: "Monte Santo do Tocantins",
27550 state: State::TO,
27551 },
27552 Municipio {
27553 ibge_code: 1713601,
27554 name: "Monte do Carmo",
27555 state: State::TO,
27556 },
27557 Municipio {
27558 ibge_code: 1713957,
27559 name: "Muricilândia",
27560 state: State::TO,
27561 },
27562 Municipio {
27563 ibge_code: 1714203,
27564 name: "Natividade",
27565 state: State::TO,
27566 },
27567 Municipio {
27568 ibge_code: 1714302,
27569 name: "Nazaré",
27570 state: State::TO,
27571 },
27572 Municipio {
27573 ibge_code: 1714880,
27574 name: "Nova Olinda",
27575 state: State::TO,
27576 },
27577 Municipio {
27578 ibge_code: 1715002,
27579 name: "Nova Rosalândia",
27580 state: State::TO,
27581 },
27582 Municipio {
27583 ibge_code: 1715101,
27584 name: "Novo Acordo",
27585 state: State::TO,
27586 },
27587 Municipio {
27588 ibge_code: 1715150,
27589 name: "Novo Alegre",
27590 state: State::TO,
27591 },
27592 Municipio {
27593 ibge_code: 1715259,
27594 name: "Novo Jardim",
27595 state: State::TO,
27596 },
27597 Municipio {
27598 ibge_code: 1715507,
27599 name: "Oliveira de Fátima",
27600 state: State::TO,
27601 },
27602 Municipio {
27603 ibge_code: 1721000,
27604 name: "Palmas",
27605 state: State::TO,
27606 },
27607 Municipio {
27608 ibge_code: 1715705,
27609 name: "Palmeirante",
27610 state: State::TO,
27611 },
27612 Municipio {
27613 ibge_code: 1713809,
27614 name: "Palmeiras do Tocantins",
27615 state: State::TO,
27616 },
27617 Municipio {
27618 ibge_code: 1715754,
27619 name: "Palmeirópolis",
27620 state: State::TO,
27621 },
27622 Municipio {
27623 ibge_code: 1716208,
27624 name: "Paranã",
27625 state: State::TO,
27626 },
27627 Municipio {
27628 ibge_code: 1716109,
27629 name: "Paraíso do Tocantins",
27630 state: State::TO,
27631 },
27632 Municipio {
27633 ibge_code: 1716307,
27634 name: "Pau D'Arco",
27635 state: State::TO,
27636 },
27637 Municipio {
27638 ibge_code: 1716505,
27639 name: "Pedro Afonso",
27640 state: State::TO,
27641 },
27642 Municipio {
27643 ibge_code: 1716604,
27644 name: "Peixe",
27645 state: State::TO,
27646 },
27647 Municipio {
27648 ibge_code: 1716653,
27649 name: "Pequizeiro",
27650 state: State::TO,
27651 },
27652 Municipio {
27653 ibge_code: 1717008,
27654 name: "Pindorama do Tocantins",
27655 state: State::TO,
27656 },
27657 Municipio {
27658 ibge_code: 1717206,
27659 name: "Piraquê",
27660 state: State::TO,
27661 },
27662 Municipio {
27663 ibge_code: 1717503,
27664 name: "Pium",
27665 state: State::TO,
27666 },
27667 Municipio {
27668 ibge_code: 1717800,
27669 name: "Ponte Alta do Bom Jesus",
27670 state: State::TO,
27671 },
27672 Municipio {
27673 ibge_code: 1717909,
27674 name: "Ponte Alta do Tocantins",
27675 state: State::TO,
27676 },
27677 Municipio {
27678 ibge_code: 1718006,
27679 name: "Porto Alegre do Tocantins",
27680 state: State::TO,
27681 },
27682 Municipio {
27683 ibge_code: 1718204,
27684 name: "Porto Nacional",
27685 state: State::TO,
27686 },
27687 Municipio {
27688 ibge_code: 1718303,
27689 name: "Praia Norte",
27690 state: State::TO,
27691 },
27692 Municipio {
27693 ibge_code: 1718402,
27694 name: "Presidente Kennedy",
27695 state: State::TO,
27696 },
27697 Municipio {
27698 ibge_code: 1718451,
27699 name: "Pugmil",
27700 state: State::TO,
27701 },
27702 Municipio {
27703 ibge_code: 1718501,
27704 name: "Recursolândia",
27705 state: State::TO,
27706 },
27707 Municipio {
27708 ibge_code: 1718550,
27709 name: "Riachinho",
27710 state: State::TO,
27711 },
27712 Municipio {
27713 ibge_code: 1718758,
27714 name: "Rio Sono",
27715 state: State::TO,
27716 },
27717 Municipio {
27718 ibge_code: 1718659,
27719 name: "Rio da Conceição",
27720 state: State::TO,
27721 },
27722 Municipio {
27723 ibge_code: 1718709,
27724 name: "Rio dos Bois",
27725 state: State::TO,
27726 },
27727 Municipio {
27728 ibge_code: 1718808,
27729 name: "Sampaio",
27730 state: State::TO,
27731 },
27732 Municipio {
27733 ibge_code: 1718840,
27734 name: "Sandolândia",
27735 state: State::TO,
27736 },
27737 Municipio {
27738 ibge_code: 1718865,
27739 name: "Santa Fé do Araguaia",
27740 state: State::TO,
27741 },
27742 Municipio {
27743 ibge_code: 1718881,
27744 name: "Santa Maria do Tocantins",
27745 state: State::TO,
27746 },
27747 Municipio {
27748 ibge_code: 1718899,
27749 name: "Santa Rita do Tocantins",
27750 state: State::TO,
27751 },
27752 Municipio {
27753 ibge_code: 1718907,
27754 name: "Santa Rosa do Tocantins",
27755 state: State::TO,
27756 },
27757 Municipio {
27758 ibge_code: 1719004,
27759 name: "Santa Tereza do Tocantins",
27760 state: State::TO,
27761 },
27762 Municipio {
27763 ibge_code: 1720002,
27764 name: "Santa Terezinha do Tocantins",
27765 state: State::TO,
27766 },
27767 Municipio {
27768 ibge_code: 1720655,
27769 name: "Silvanópolis",
27770 state: State::TO,
27771 },
27772 Municipio {
27773 ibge_code: 1720853,
27774 name: "Sucupira",
27775 state: State::TO,
27776 },
27777 Municipio {
27778 ibge_code: 1720101,
27779 name: "São Bento do Tocantins",
27780 state: State::TO,
27781 },
27782 Municipio {
27783 ibge_code: 1720150,
27784 name: "São Félix do Tocantins",
27785 state: State::TO,
27786 },
27787 Municipio {
27788 ibge_code: 1720200,
27789 name: "São Miguel do Tocantins",
27790 state: State::TO,
27791 },
27792 Municipio {
27793 ibge_code: 1720259,
27794 name: "São Salvador do Tocantins",
27795 state: State::TO,
27796 },
27797 Municipio {
27798 ibge_code: 1720309,
27799 name: "São Sebastião do Tocantins",
27800 state: State::TO,
27801 },
27802 Municipio {
27803 ibge_code: 1720499,
27804 name: "São Valério",
27805 state: State::TO,
27806 },
27807 Municipio {
27808 ibge_code: 1720804,
27809 name: "Sítio Novo do Tocantins",
27810 state: State::TO,
27811 },
27812 Municipio {
27813 ibge_code: 1708254,
27814 name: "Tabocão",
27815 state: State::TO,
27816 },
27817 Municipio {
27818 ibge_code: 1720903,
27819 name: "Taguatinga",
27820 state: State::TO,
27821 },
27822 Municipio {
27823 ibge_code: 1720937,
27824 name: "Taipas do Tocantins",
27825 state: State::TO,
27826 },
27827 Municipio {
27828 ibge_code: 1720978,
27829 name: "Talismã",
27830 state: State::TO,
27831 },
27832 Municipio {
27833 ibge_code: 1721208,
27834 name: "Tocantinópolis",
27835 state: State::TO,
27836 },
27837 Municipio {
27838 ibge_code: 1721109,
27839 name: "Tocantínia",
27840 state: State::TO,
27841 },
27842 Municipio {
27843 ibge_code: 1721257,
27844 name: "Tupirama",
27845 state: State::TO,
27846 },
27847 Municipio {
27848 ibge_code: 1721307,
27849 name: "Tupiratins",
27850 state: State::TO,
27851 },
27852 Municipio {
27853 ibge_code: 1722081,
27854 name: "Wanderlândia",
27855 state: State::TO,
27856 },
27857 Municipio {
27858 ibge_code: 1722107,
27859 name: "Xambioá",
27860 state: State::TO,
27861 },
27862];