Skip to main content

stdbr_core/
municipio.rs

1//! Municípios brasileiros.
2//!
3//! Dados extraídos da API de Localidades do IBGE:
4//! <https://servicodados.ibge.gov.br/api/v1/localidades/municipios>
5//!
6//! Referência oficial dos códigos:
7//! <https://www.ibge.gov.br/explica/codigos-dos-municipios.php>
8
9use crate::uf::State;
10use core::fmt;
11
12#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
13pub struct Municipio {
14    /// IBGE 7-digit code.
15    pub ibge_code: u32,
16    /// Municipality name.
17    pub name: &'static str,
18    /// State this municipality belongs to.
19    pub state: State,
20}
21
22#[allow(clippy::unreadable_literal)]
23pub const ALL: &[Municipio] = &[
24    Municipio {
25        ibge_code: 1200013,
26        name: "Acrelândia",
27        state: State::AC,
28    },
29    Municipio {
30        ibge_code: 1200054,
31        name: "Assis Brasil",
32        state: State::AC,
33    },
34    Municipio {
35        ibge_code: 1200104,
36        name: "Brasiléia",
37        state: State::AC,
38    },
39    Municipio {
40        ibge_code: 1200138,
41        name: "Bujari",
42        state: State::AC,
43    },
44    Municipio {
45        ibge_code: 1200179,
46        name: "Capixaba",
47        state: State::AC,
48    },
49    Municipio {
50        ibge_code: 1200203,
51        name: "Cruzeiro do Sul",
52        state: State::AC,
53    },
54    Municipio {
55        ibge_code: 1200252,
56        name: "Epitaciolândia",
57        state: State::AC,
58    },
59    Municipio {
60        ibge_code: 1200302,
61        name: "Feijó",
62        state: State::AC,
63    },
64    Municipio {
65        ibge_code: 1200328,
66        name: "Jordão",
67        state: State::AC,
68    },
69    Municipio {
70        ibge_code: 1200344,
71        name: "Manoel Urbano",
72        state: State::AC,
73    },
74    Municipio {
75        ibge_code: 1200351,
76        name: "Marechal Thaumaturgo",
77        state: State::AC,
78    },
79    Municipio {
80        ibge_code: 1200336,
81        name: "Mâncio Lima",
82        state: State::AC,
83    },
84    Municipio {
85        ibge_code: 1200385,
86        name: "Plácido de Castro",
87        state: State::AC,
88    },
89    Municipio {
90        ibge_code: 1200807,
91        name: "Porto Acre",
92        state: State::AC,
93    },
94    Municipio {
95        ibge_code: 1200393,
96        name: "Porto Walter",
97        state: State::AC,
98    },
99    Municipio {
100        ibge_code: 1200401,
101        name: "Rio Branco",
102        state: State::AC,
103    },
104    Municipio {
105        ibge_code: 1200427,
106        name: "Rodrigues Alves",
107        state: State::AC,
108    },
109    Municipio {
110        ibge_code: 1200435,
111        name: "Santa Rosa do Purus",
112        state: State::AC,
113    },
114    Municipio {
115        ibge_code: 1200500,
116        name: "Sena Madureira",
117        state: State::AC,
118    },
119    Municipio {
120        ibge_code: 1200450,
121        name: "Senador Guiomard",
122        state: State::AC,
123    },
124    Municipio {
125        ibge_code: 1200609,
126        name: "Tarauacá",
127        state: State::AC,
128    },
129    Municipio {
130        ibge_code: 1200708,
131        name: "Xapuri",
132        state: State::AC,
133    },
134    Municipio {
135        ibge_code: 2700201,
136        name: "Anadia",
137        state: State::AL,
138    },
139    Municipio {
140        ibge_code: 2700300,
141        name: "Arapiraca",
142        state: State::AL,
143    },
144    Municipio {
145        ibge_code: 2700409,
146        name: "Atalaia",
147        state: State::AL,
148    },
149    Municipio {
150        ibge_code: 2700508,
151        name: "Barra de Santo Antônio",
152        state: State::AL,
153    },
154    Municipio {
155        ibge_code: 2700607,
156        name: "Barra de São Miguel",
157        state: State::AL,
158    },
159    Municipio {
160        ibge_code: 2700706,
161        name: "Batalha",
162        state: State::AL,
163    },
164    Municipio {
165        ibge_code: 2700904,
166        name: "Belo Monte",
167        state: State::AL,
168    },
169    Municipio {
170        ibge_code: 2700805,
171        name: "Belém",
172        state: State::AL,
173    },
174    Municipio {
175        ibge_code: 2701001,
176        name: "Boca da Mata",
177        state: State::AL,
178    },
179    Municipio {
180        ibge_code: 2701100,
181        name: "Branquinha",
182        state: State::AL,
183    },
184    Municipio {
185        ibge_code: 2701209,
186        name: "Cacimbinhas",
187        state: State::AL,
188    },
189    Municipio {
190        ibge_code: 2701308,
191        name: "Cajueiro",
192        state: State::AL,
193    },
194    Municipio {
195        ibge_code: 2701357,
196        name: "Campestre",
197        state: State::AL,
198    },
199    Municipio {
200        ibge_code: 2701407,
201        name: "Campo Alegre",
202        state: State::AL,
203    },
204    Municipio {
205        ibge_code: 2701506,
206        name: "Campo Grande",
207        state: State::AL,
208    },
209    Municipio {
210        ibge_code: 2701605,
211        name: "Canapi",
212        state: State::AL,
213    },
214    Municipio {
215        ibge_code: 2701704,
216        name: "Capela",
217        state: State::AL,
218    },
219    Municipio {
220        ibge_code: 2701803,
221        name: "Carneiros",
222        state: State::AL,
223    },
224    Municipio {
225        ibge_code: 2701902,
226        name: "Chã Preta",
227        state: State::AL,
228    },
229    Municipio {
230        ibge_code: 2702009,
231        name: "Coité do Nóia",
232        state: State::AL,
233    },
234    Municipio {
235        ibge_code: 2702108,
236        name: "Colônia Leopoldina",
237        state: State::AL,
238    },
239    Municipio {
240        ibge_code: 2702207,
241        name: "Coqueiro Seco",
242        state: State::AL,
243    },
244    Municipio {
245        ibge_code: 2702306,
246        name: "Coruripe",
247        state: State::AL,
248    },
249    Municipio {
250        ibge_code: 2702355,
251        name: "Craíbas",
252        state: State::AL,
253    },
254    Municipio {
255        ibge_code: 2702405,
256        name: "Delmiro Gouveia",
257        state: State::AL,
258    },
259    Municipio {
260        ibge_code: 2702504,
261        name: "Dois Riachos",
262        state: State::AL,
263    },
264    Municipio {
265        ibge_code: 2702553,
266        name: "Estrela de Alagoas",
267        state: State::AL,
268    },
269    Municipio {
270        ibge_code: 2702603,
271        name: "Feira Grande",
272        state: State::AL,
273    },
274    Municipio {
275        ibge_code: 2702702,
276        name: "Feliz Deserto",
277        state: State::AL,
278    },
279    Municipio {
280        ibge_code: 2702801,
281        name: "Flexeiras",
282        state: State::AL,
283    },
284    Municipio {
285        ibge_code: 2702900,
286        name: "Girau do Ponciano",
287        state: State::AL,
288    },
289    Municipio {
290        ibge_code: 2703007,
291        name: "Ibateguara",
292        state: State::AL,
293    },
294    Municipio {
295        ibge_code: 2703106,
296        name: "Igaci",
297        state: State::AL,
298    },
299    Municipio {
300        ibge_code: 2703205,
301        name: "Igreja Nova",
302        state: State::AL,
303    },
304    Municipio {
305        ibge_code: 2703304,
306        name: "Inhapi",
307        state: State::AL,
308    },
309    Municipio {
310        ibge_code: 2703403,
311        name: "Jacaré dos Homens",
312        state: State::AL,
313    },
314    Municipio {
315        ibge_code: 2703502,
316        name: "Jacuípe",
317        state: State::AL,
318    },
319    Municipio {
320        ibge_code: 2703601,
321        name: "Japaratinga",
322        state: State::AL,
323    },
324    Municipio {
325        ibge_code: 2703700,
326        name: "Jaramataia",
327        state: State::AL,
328    },
329    Municipio {
330        ibge_code: 2703759,
331        name: "Jequiá da Praia",
332        state: State::AL,
333    },
334    Municipio {
335        ibge_code: 2703809,
336        name: "Joaquim Gomes",
337        state: State::AL,
338    },
339    Municipio {
340        ibge_code: 2703908,
341        name: "Jundiá",
342        state: State::AL,
343    },
344    Municipio {
345        ibge_code: 2704005,
346        name: "Junqueiro",
347        state: State::AL,
348    },
349    Municipio {
350        ibge_code: 2704104,
351        name: "Lagoa da Canoa",
352        state: State::AL,
353    },
354    Municipio {
355        ibge_code: 2704203,
356        name: "Limoeiro de Anadia",
357        state: State::AL,
358    },
359    Municipio {
360        ibge_code: 2704302,
361        name: "Maceió",
362        state: State::AL,
363    },
364    Municipio {
365        ibge_code: 2704401,
366        name: "Major Isidoro",
367        state: State::AL,
368    },
369    Municipio {
370        ibge_code: 2704906,
371        name: "Mar Vermelho",
372        state: State::AL,
373    },
374    Municipio {
375        ibge_code: 2704500,
376        name: "Maragogi",
377        state: State::AL,
378    },
379    Municipio {
380        ibge_code: 2704609,
381        name: "Maravilha",
382        state: State::AL,
383    },
384    Municipio {
385        ibge_code: 2704708,
386        name: "Marechal Deodoro",
387        state: State::AL,
388    },
389    Municipio {
390        ibge_code: 2704807,
391        name: "Maribondo",
392        state: State::AL,
393    },
394    Municipio {
395        ibge_code: 2705002,
396        name: "Mata Grande",
397        state: State::AL,
398    },
399    Municipio {
400        ibge_code: 2705101,
401        name: "Matriz de Camaragibe",
402        state: State::AL,
403    },
404    Municipio {
405        ibge_code: 2705200,
406        name: "Messias",
407        state: State::AL,
408    },
409    Municipio {
410        ibge_code: 2705309,
411        name: "Minador do Negrão",
412        state: State::AL,
413    },
414    Municipio {
415        ibge_code: 2705408,
416        name: "Monteirópolis",
417        state: State::AL,
418    },
419    Municipio {
420        ibge_code: 2705507,
421        name: "Murici",
422        state: State::AL,
423    },
424    Municipio {
425        ibge_code: 2705606,
426        name: "Novo Lino",
427        state: State::AL,
428    },
429    Municipio {
430        ibge_code: 2705903,
431        name: "Olho d'Água Grande",
432        state: State::AL,
433    },
434    Municipio {
435        ibge_code: 2705705,
436        name: "Olho d'Água das Flores",
437        state: State::AL,
438    },
439    Municipio {
440        ibge_code: 2705804,
441        name: "Olho d'Água do Casado",
442        state: State::AL,
443    },
444    Municipio {
445        ibge_code: 2706000,
446        name: "Olivença",
447        state: State::AL,
448    },
449    Municipio {
450        ibge_code: 2706109,
451        name: "Ouro Branco",
452        state: State::AL,
453    },
454    Municipio {
455        ibge_code: 2706208,
456        name: "Palestina",
457        state: State::AL,
458    },
459    Municipio {
460        ibge_code: 2706307,
461        name: "Palmeira dos Índios",
462        state: State::AL,
463    },
464    Municipio {
465        ibge_code: 2706422,
466        name: "Pariconha",
467        state: State::AL,
468    },
469    Municipio {
470        ibge_code: 2706448,
471        name: "Paripueira",
472        state: State::AL,
473    },
474    Municipio {
475        ibge_code: 2706505,
476        name: "Passo de Camaragibe",
477        state: State::AL,
478    },
479    Municipio {
480        ibge_code: 2706604,
481        name: "Paulo Jacinto",
482        state: State::AL,
483    },
484    Municipio {
485        ibge_code: 2706703,
486        name: "Penedo",
487        state: State::AL,
488    },
489    Municipio {
490        ibge_code: 2706802,
491        name: "Piaçabuçu",
492        state: State::AL,
493    },
494    Municipio {
495        ibge_code: 2706901,
496        name: "Pilar",
497        state: State::AL,
498    },
499    Municipio {
500        ibge_code: 2707008,
501        name: "Pindoba",
502        state: State::AL,
503    },
504    Municipio {
505        ibge_code: 2707107,
506        name: "Piranhas",
507        state: State::AL,
508    },
509    Municipio {
510        ibge_code: 2707305,
511        name: "Porto Calvo",
512        state: State::AL,
513    },
514    Municipio {
515        ibge_code: 2707503,
516        name: "Porto Real do Colégio",
517        state: State::AL,
518    },
519    Municipio {
520        ibge_code: 2707404,
521        name: "Porto de Pedras",
522        state: State::AL,
523    },
524    Municipio {
525        ibge_code: 2707206,
526        name: "Poço das Trincheiras",
527        state: State::AL,
528    },
529    Municipio {
530        ibge_code: 2706406,
531        name: "Pão de Açúcar",
532        state: State::AL,
533    },
534    Municipio {
535        ibge_code: 2707602,
536        name: "Quebrangulo",
537        state: State::AL,
538    },
539    Municipio {
540        ibge_code: 2707701,
541        name: "Rio Largo",
542        state: State::AL,
543    },
544    Municipio {
545        ibge_code: 2707800,
546        name: "Roteiro",
547        state: State::AL,
548    },
549    Municipio {
550        ibge_code: 2707909,
551        name: "Santa Luzia do Norte",
552        state: State::AL,
553    },
554    Municipio {
555        ibge_code: 2708006,
556        name: "Santana do Ipanema",
557        state: State::AL,
558    },
559    Municipio {
560        ibge_code: 2708105,
561        name: "Santana do Mundaú",
562        state: State::AL,
563    },
564    Municipio {
565        ibge_code: 2708907,
566        name: "Satuba",
567        state: State::AL,
568    },
569    Municipio {
570        ibge_code: 2708956,
571        name: "Senador Rui Palmeira",
572        state: State::AL,
573    },
574    Municipio {
575        ibge_code: 2708204,
576        name: "São Brás",
577        state: State::AL,
578    },
579    Municipio {
580        ibge_code: 2708303,
581        name: "São José da Laje",
582        state: State::AL,
583    },
584    Municipio {
585        ibge_code: 2708402,
586        name: "São José da Tapera",
587        state: State::AL,
588    },
589    Municipio {
590        ibge_code: 2708501,
591        name: "São Luís do Quitunde",
592        state: State::AL,
593    },
594    Municipio {
595        ibge_code: 2708600,
596        name: "São Miguel dos Campos",
597        state: State::AL,
598    },
599    Municipio {
600        ibge_code: 2708709,
601        name: "São Miguel dos Milagres",
602        state: State::AL,
603    },
604    Municipio {
605        ibge_code: 2708808,
606        name: "São Sebastião",
607        state: State::AL,
608    },
609    Municipio {
610        ibge_code: 2709004,
611        name: "Tanque d'Arca",
612        state: State::AL,
613    },
614    Municipio {
615        ibge_code: 2709103,
616        name: "Taquarana",
617        state: State::AL,
618    },
619    Municipio {
620        ibge_code: 2709152,
621        name: "Teotônio Vilela",
622        state: State::AL,
623    },
624    Municipio {
625        ibge_code: 2709202,
626        name: "Traipu",
627        state: State::AL,
628    },
629    Municipio {
630        ibge_code: 2709301,
631        name: "União dos Palmares",
632        state: State::AL,
633    },
634    Municipio {
635        ibge_code: 2709400,
636        name: "Viçosa",
637        state: State::AL,
638    },
639    Municipio {
640        ibge_code: 2700102,
641        name: "Água Branca",
642        state: State::AL,
643    },
644    Municipio {
645        ibge_code: 1300029,
646        name: "Alvarães",
647        state: State::AM,
648    },
649    Municipio {
650        ibge_code: 1300060,
651        name: "Amaturá",
652        state: State::AM,
653    },
654    Municipio {
655        ibge_code: 1300086,
656        name: "Anamã",
657        state: State::AM,
658    },
659    Municipio {
660        ibge_code: 1300102,
661        name: "Anori",
662        state: State::AM,
663    },
664    Municipio {
665        ibge_code: 1300144,
666        name: "Apuí",
667        state: State::AM,
668    },
669    Municipio {
670        ibge_code: 1300201,
671        name: "Atalaia do Norte",
672        state: State::AM,
673    },
674    Municipio {
675        ibge_code: 1300300,
676        name: "Autazes",
677        state: State::AM,
678    },
679    Municipio {
680        ibge_code: 1300409,
681        name: "Barcelos",
682        state: State::AM,
683    },
684    Municipio {
685        ibge_code: 1300508,
686        name: "Barreirinha",
687        state: State::AM,
688    },
689    Municipio {
690        ibge_code: 1300607,
691        name: "Benjamin Constant",
692        state: State::AM,
693    },
694    Municipio {
695        ibge_code: 1300631,
696        name: "Beruri",
697        state: State::AM,
698    },
699    Municipio {
700        ibge_code: 1300680,
701        name: "Boa Vista do Ramos",
702        state: State::AM,
703    },
704    Municipio {
705        ibge_code: 1300706,
706        name: "Boca do Acre",
707        state: State::AM,
708    },
709    Municipio {
710        ibge_code: 1300805,
711        name: "Borba",
712        state: State::AM,
713    },
714    Municipio {
715        ibge_code: 1300839,
716        name: "Caapiranga",
717        state: State::AM,
718    },
719    Municipio {
720        ibge_code: 1300904,
721        name: "Canutama",
722        state: State::AM,
723    },
724    Municipio {
725        ibge_code: 1301001,
726        name: "Carauari",
727        state: State::AM,
728    },
729    Municipio {
730        ibge_code: 1301100,
731        name: "Careiro",
732        state: State::AM,
733    },
734    Municipio {
735        ibge_code: 1301159,
736        name: "Careiro da Várzea",
737        state: State::AM,
738    },
739    Municipio {
740        ibge_code: 1301209,
741        name: "Coari",
742        state: State::AM,
743    },
744    Municipio {
745        ibge_code: 1301308,
746        name: "Codajás",
747        state: State::AM,
748    },
749    Municipio {
750        ibge_code: 1301407,
751        name: "Eirunepé",
752        state: State::AM,
753    },
754    Municipio {
755        ibge_code: 1301506,
756        name: "Envira",
757        state: State::AM,
758    },
759    Municipio {
760        ibge_code: 1301605,
761        name: "Fonte Boa",
762        state: State::AM,
763    },
764    Municipio {
765        ibge_code: 1301654,
766        name: "Guajará",
767        state: State::AM,
768    },
769    Municipio {
770        ibge_code: 1301704,
771        name: "Humaitá",
772        state: State::AM,
773    },
774    Municipio {
775        ibge_code: 1301803,
776        name: "Ipixuna",
777        state: State::AM,
778    },
779    Municipio {
780        ibge_code: 1301852,
781        name: "Iranduba",
782        state: State::AM,
783    },
784    Municipio {
785        ibge_code: 1301902,
786        name: "Itacoatiara",
787        state: State::AM,
788    },
789    Municipio {
790        ibge_code: 1301951,
791        name: "Itamarati",
792        state: State::AM,
793    },
794    Municipio {
795        ibge_code: 1302009,
796        name: "Itapiranga",
797        state: State::AM,
798    },
799    Municipio {
800        ibge_code: 1302108,
801        name: "Japurá",
802        state: State::AM,
803    },
804    Municipio {
805        ibge_code: 1302207,
806        name: "Juruá",
807        state: State::AM,
808    },
809    Municipio {
810        ibge_code: 1302306,
811        name: "Jutaí",
812        state: State::AM,
813    },
814    Municipio {
815        ibge_code: 1302405,
816        name: "Lábrea",
817        state: State::AM,
818    },
819    Municipio {
820        ibge_code: 1302504,
821        name: "Manacapuru",
822        state: State::AM,
823    },
824    Municipio {
825        ibge_code: 1302553,
826        name: "Manaquiri",
827        state: State::AM,
828    },
829    Municipio {
830        ibge_code: 1302603,
831        name: "Manaus",
832        state: State::AM,
833    },
834    Municipio {
835        ibge_code: 1302702,
836        name: "Manicoré",
837        state: State::AM,
838    },
839    Municipio {
840        ibge_code: 1302801,
841        name: "Maraã",
842        state: State::AM,
843    },
844    Municipio {
845        ibge_code: 1302900,
846        name: "Maués",
847        state: State::AM,
848    },
849    Municipio {
850        ibge_code: 1303007,
851        name: "Nhamundá",
852        state: State::AM,
853    },
854    Municipio {
855        ibge_code: 1303106,
856        name: "Nova Olinda do Norte",
857        state: State::AM,
858    },
859    Municipio {
860        ibge_code: 1303205,
861        name: "Novo Airão",
862        state: State::AM,
863    },
864    Municipio {
865        ibge_code: 1303304,
866        name: "Novo Aripuanã",
867        state: State::AM,
868    },
869    Municipio {
870        ibge_code: 1303403,
871        name: "Parintins",
872        state: State::AM,
873    },
874    Municipio {
875        ibge_code: 1303502,
876        name: "Pauini",
877        state: State::AM,
878    },
879    Municipio {
880        ibge_code: 1303536,
881        name: "Presidente Figueiredo",
882        state: State::AM,
883    },
884    Municipio {
885        ibge_code: 1303569,
886        name: "Rio Preto da Eva",
887        state: State::AM,
888    },
889    Municipio {
890        ibge_code: 1303601,
891        name: "Santa Isabel do Rio Negro",
892        state: State::AM,
893    },
894    Municipio {
895        ibge_code: 1303700,
896        name: "Santo Antônio do Içá",
897        state: State::AM,
898    },
899    Municipio {
900        ibge_code: 1304005,
901        name: "Silves",
902        state: State::AM,
903    },
904    Municipio {
905        ibge_code: 1303809,
906        name: "São Gabriel da Cachoeira",
907        state: State::AM,
908    },
909    Municipio {
910        ibge_code: 1303908,
911        name: "São Paulo de Olivença",
912        state: State::AM,
913    },
914    Municipio {
915        ibge_code: 1303957,
916        name: "São Sebastião do Uatumã",
917        state: State::AM,
918    },
919    Municipio {
920        ibge_code: 1304062,
921        name: "Tabatinga",
922        state: State::AM,
923    },
924    Municipio {
925        ibge_code: 1304104,
926        name: "Tapauá",
927        state: State::AM,
928    },
929    Municipio {
930        ibge_code: 1304203,
931        name: "Tefé",
932        state: State::AM,
933    },
934    Municipio {
935        ibge_code: 1304237,
936        name: "Tonantins",
937        state: State::AM,
938    },
939    Municipio {
940        ibge_code: 1304260,
941        name: "Uarini",
942        state: State::AM,
943    },
944    Municipio {
945        ibge_code: 1304302,
946        name: "Urucará",
947        state: State::AM,
948    },
949    Municipio {
950        ibge_code: 1304401,
951        name: "Urucurituba",
952        state: State::AM,
953    },
954    Municipio {
955        ibge_code: 1600105,
956        name: "Amapá",
957        state: State::AP,
958    },
959    Municipio {
960        ibge_code: 1600204,
961        name: "Calçoene",
962        state: State::AP,
963    },
964    Municipio {
965        ibge_code: 1600212,
966        name: "Cutias",
967        state: State::AP,
968    },
969    Municipio {
970        ibge_code: 1600238,
971        name: "Ferreira Gomes",
972        state: State::AP,
973    },
974    Municipio {
975        ibge_code: 1600253,
976        name: "Itaubal",
977        state: State::AP,
978    },
979    Municipio {
980        ibge_code: 1600279,
981        name: "Laranjal do Jari",
982        state: State::AP,
983    },
984    Municipio {
985        ibge_code: 1600303,
986        name: "Macapá",
987        state: State::AP,
988    },
989    Municipio {
990        ibge_code: 1600402,
991        name: "Mazagão",
992        state: State::AP,
993    },
994    Municipio {
995        ibge_code: 1600501,
996        name: "Oiapoque",
997        state: State::AP,
998    },
999    Municipio {
1000        ibge_code: 1600154,
1001        name: "Pedra Branca do Amapari",
1002        state: State::AP,
1003    },
1004    Municipio {
1005        ibge_code: 1600535,
1006        name: "Porto Grande",
1007        state: State::AP,
1008    },
1009    Municipio {
1010        ibge_code: 1600550,
1011        name: "Pracuúba",
1012        state: State::AP,
1013    },
1014    Municipio {
1015        ibge_code: 1600600,
1016        name: "Santana",
1017        state: State::AP,
1018    },
1019    Municipio {
1020        ibge_code: 1600055,
1021        name: "Serra do Navio",
1022        state: State::AP,
1023    },
1024    Municipio {
1025        ibge_code: 1600709,
1026        name: "Tartarugalzinho",
1027        state: State::AP,
1028    },
1029    Municipio {
1030        ibge_code: 1600808,
1031        name: "Vitória do Jari",
1032        state: State::AP,
1033    },
1034    Municipio {
1035        ibge_code: 2900207,
1036        name: "Abaré",
1037        state: State::BA,
1038    },
1039    Municipio {
1040        ibge_code: 2900108,
1041        name: "Abaíra",
1042        state: State::BA,
1043    },
1044    Municipio {
1045        ibge_code: 2900306,
1046        name: "Acajutiba",
1047        state: State::BA,
1048    },
1049    Municipio {
1050        ibge_code: 2900355,
1051        name: "Adustina",
1052        state: State::BA,
1053    },
1054    Municipio {
1055        ibge_code: 2900603,
1056        name: "Aiquara",
1057        state: State::BA,
1058    },
1059    Municipio {
1060        ibge_code: 2900702,
1061        name: "Alagoinhas",
1062        state: State::BA,
1063    },
1064    Municipio {
1065        ibge_code: 2900801,
1066        name: "Alcobaça",
1067        state: State::BA,
1068    },
1069    Municipio {
1070        ibge_code: 2900900,
1071        name: "Almadina",
1072        state: State::BA,
1073    },
1074    Municipio {
1075        ibge_code: 2901007,
1076        name: "Amargosa",
1077        state: State::BA,
1078    },
1079    Municipio {
1080        ibge_code: 2901106,
1081        name: "Amélia Rodrigues",
1082        state: State::BA,
1083    },
1084    Municipio {
1085        ibge_code: 2901155,
1086        name: "América Dourada",
1087        state: State::BA,
1088    },
1089    Municipio {
1090        ibge_code: 2901205,
1091        name: "Anagé",
1092        state: State::BA,
1093    },
1094    Municipio {
1095        ibge_code: 2901304,
1096        name: "Andaraí",
1097        state: State::BA,
1098    },
1099    Municipio {
1100        ibge_code: 2901353,
1101        name: "Andorinha",
1102        state: State::BA,
1103    },
1104    Municipio {
1105        ibge_code: 2901403,
1106        name: "Angical",
1107        state: State::BA,
1108    },
1109    Municipio {
1110        ibge_code: 2901502,
1111        name: "Anguera",
1112        state: State::BA,
1113    },
1114    Municipio {
1115        ibge_code: 2901601,
1116        name: "Antas",
1117        state: State::BA,
1118    },
1119    Municipio {
1120        ibge_code: 2901700,
1121        name: "Antônio Cardoso",
1122        state: State::BA,
1123    },
1124    Municipio {
1125        ibge_code: 2901809,
1126        name: "Antônio Gonçalves",
1127        state: State::BA,
1128    },
1129    Municipio {
1130        ibge_code: 2901908,
1131        name: "Aporá",
1132        state: State::BA,
1133    },
1134    Municipio {
1135        ibge_code: 2901957,
1136        name: "Apuarema",
1137        state: State::BA,
1138    },
1139    Municipio {
1140        ibge_code: 2902005,
1141        name: "Aracatu",
1142        state: State::BA,
1143    },
1144    Municipio {
1145        ibge_code: 2902104,
1146        name: "Araci",
1147        state: State::BA,
1148    },
1149    Municipio {
1150        ibge_code: 2902203,
1151        name: "Aramari",
1152        state: State::BA,
1153    },
1154    Municipio {
1155        ibge_code: 2902252,
1156        name: "Arataca",
1157        state: State::BA,
1158    },
1159    Municipio {
1160        ibge_code: 2902302,
1161        name: "Aratuípe",
1162        state: State::BA,
1163    },
1164    Municipio {
1165        ibge_code: 2902054,
1166        name: "Araçás",
1167        state: State::BA,
1168    },
1169    Municipio {
1170        ibge_code: 2902401,
1171        name: "Aurelino Leal",
1172        state: State::BA,
1173    },
1174    Municipio {
1175        ibge_code: 2902500,
1176        name: "Baianópolis",
1177        state: State::BA,
1178    },
1179    Municipio {
1180        ibge_code: 2902609,
1181        name: "Baixa Grande",
1182        state: State::BA,
1183    },
1184    Municipio {
1185        ibge_code: 2902658,
1186        name: "Banzaê",
1187        state: State::BA,
1188    },
1189    Municipio {
1190        ibge_code: 2902708,
1191        name: "Barra",
1192        state: State::BA,
1193    },
1194    Municipio {
1195        ibge_code: 2902807,
1196        name: "Barra da Estiva",
1197        state: State::BA,
1198    },
1199    Municipio {
1200        ibge_code: 2902906,
1201        name: "Barra do Choça",
1202        state: State::BA,
1203    },
1204    Municipio {
1205        ibge_code: 2903003,
1206        name: "Barra do Mendes",
1207        state: State::BA,
1208    },
1209    Municipio {
1210        ibge_code: 2903102,
1211        name: "Barra do Rocha",
1212        state: State::BA,
1213    },
1214    Municipio {
1215        ibge_code: 2903201,
1216        name: "Barreiras",
1217        state: State::BA,
1218    },
1219    Municipio {
1220        ibge_code: 2903235,
1221        name: "Barro Alto",
1222        state: State::BA,
1223    },
1224    Municipio {
1225        ibge_code: 2903300,
1226        name: "Barro Preto",
1227        state: State::BA,
1228    },
1229    Municipio {
1230        ibge_code: 2903276,
1231        name: "Barrocas",
1232        state: State::BA,
1233    },
1234    Municipio {
1235        ibge_code: 2903409,
1236        name: "Belmonte",
1237        state: State::BA,
1238    },
1239    Municipio {
1240        ibge_code: 2903508,
1241        name: "Belo Campo",
1242        state: State::BA,
1243    },
1244    Municipio {
1245        ibge_code: 2903607,
1246        name: "Biritinga",
1247        state: State::BA,
1248    },
1249    Municipio {
1250        ibge_code: 2903706,
1251        name: "Boa Nova",
1252        state: State::BA,
1253    },
1254    Municipio {
1255        ibge_code: 2903805,
1256        name: "Boa Vista do Tupim",
1257        state: State::BA,
1258    },
1259    Municipio {
1260        ibge_code: 2903904,
1261        name: "Bom Jesus da Lapa",
1262        state: State::BA,
1263    },
1264    Municipio {
1265        ibge_code: 2903953,
1266        name: "Bom Jesus da Serra",
1267        state: State::BA,
1268    },
1269    Municipio {
1270        ibge_code: 2904001,
1271        name: "Boninal",
1272        state: State::BA,
1273    },
1274    Municipio {
1275        ibge_code: 2904050,
1276        name: "Bonito",
1277        state: State::BA,
1278    },
1279    Municipio {
1280        ibge_code: 2904100,
1281        name: "Boquira",
1282        state: State::BA,
1283    },
1284    Municipio {
1285        ibge_code: 2904209,
1286        name: "Botuporã",
1287        state: State::BA,
1288    },
1289    Municipio {
1290        ibge_code: 2904407,
1291        name: "Brejolândia",
1292        state: State::BA,
1293    },
1294    Municipio {
1295        ibge_code: 2904308,
1296        name: "Brejões",
1297        state: State::BA,
1298    },
1299    Municipio {
1300        ibge_code: 2904506,
1301        name: "Brotas de Macaúbas",
1302        state: State::BA,
1303    },
1304    Municipio {
1305        ibge_code: 2904605,
1306        name: "Brumado",
1307        state: State::BA,
1308    },
1309    Municipio {
1310        ibge_code: 2904704,
1311        name: "Buerarema",
1312        state: State::BA,
1313    },
1314    Municipio {
1315        ibge_code: 2904753,
1316        name: "Buritirama",
1317        state: State::BA,
1318    },
1319    Municipio {
1320        ibge_code: 2904803,
1321        name: "Caatiba",
1322        state: State::BA,
1323    },
1324    Municipio {
1325        ibge_code: 2904852,
1326        name: "Cabaceiras do Paraguaçu",
1327        state: State::BA,
1328    },
1329    Municipio {
1330        ibge_code: 2904902,
1331        name: "Cachoeira",
1332        state: State::BA,
1333    },
1334    Municipio {
1335        ibge_code: 2905008,
1336        name: "Caculé",
1337        state: State::BA,
1338    },
1339    Municipio {
1340        ibge_code: 2905156,
1341        name: "Caetanos",
1342        state: State::BA,
1343    },
1344    Municipio {
1345        ibge_code: 2905206,
1346        name: "Caetité",
1347        state: State::BA,
1348    },
1349    Municipio {
1350        ibge_code: 2905305,
1351        name: "Cafarnaum",
1352        state: State::BA,
1353    },
1354    Municipio {
1355        ibge_code: 2905404,
1356        name: "Cairu",
1357        state: State::BA,
1358    },
1359    Municipio {
1360        ibge_code: 2905503,
1361        name: "Caldeirão Grande",
1362        state: State::BA,
1363    },
1364    Municipio {
1365        ibge_code: 2905602,
1366        name: "Camacan",
1367        state: State::BA,
1368    },
1369    Municipio {
1370        ibge_code: 2905800,
1371        name: "Camamu",
1372        state: State::BA,
1373    },
1374    Municipio {
1375        ibge_code: 2905701,
1376        name: "Camaçari",
1377        state: State::BA,
1378    },
1379    Municipio {
1380        ibge_code: 2905909,
1381        name: "Campo Alegre de Lourdes",
1382        state: State::BA,
1383    },
1384    Municipio {
1385        ibge_code: 2906006,
1386        name: "Campo Formoso",
1387        state: State::BA,
1388    },
1389    Municipio {
1390        ibge_code: 2906204,
1391        name: "Canarana",
1392        state: State::BA,
1393    },
1394    Municipio {
1395        ibge_code: 2906303,
1396        name: "Canavieiras",
1397        state: State::BA,
1398    },
1399    Municipio {
1400        ibge_code: 2906402,
1401        name: "Candeal",
1402        state: State::BA,
1403    },
1404    Municipio {
1405        ibge_code: 2906501,
1406        name: "Candeias",
1407        state: State::BA,
1408    },
1409    Municipio {
1410        ibge_code: 2906600,
1411        name: "Candiba",
1412        state: State::BA,
1413    },
1414    Municipio {
1415        ibge_code: 2906808,
1416        name: "Cansanção",
1417        state: State::BA,
1418    },
1419    Municipio {
1420        ibge_code: 2906824,
1421        name: "Canudos",
1422        state: State::BA,
1423    },
1424    Municipio {
1425        ibge_code: 2906105,
1426        name: "Canápolis",
1427        state: State::BA,
1428    },
1429    Municipio {
1430        ibge_code: 2906857,
1431        name: "Capela do Alto Alegre",
1432        state: State::BA,
1433    },
1434    Municipio {
1435        ibge_code: 2906873,
1436        name: "Capim Grosso",
1437        state: State::BA,
1438    },
1439    Municipio {
1440        ibge_code: 2906907,
1441        name: "Caravelas",
1442        state: State::BA,
1443    },
1444    Municipio {
1445        ibge_code: 2906899,
1446        name: "Caraíbas",
1447        state: State::BA,
1448    },
1449    Municipio {
1450        ibge_code: 2907004,
1451        name: "Cardeal da Silva",
1452        state: State::BA,
1453    },
1454    Municipio {
1455        ibge_code: 2907103,
1456        name: "Carinhanha",
1457        state: State::BA,
1458    },
1459    Municipio {
1460        ibge_code: 2907202,
1461        name: "Casa Nova",
1462        state: State::BA,
1463    },
1464    Municipio {
1465        ibge_code: 2907301,
1466        name: "Castro Alves",
1467        state: State::BA,
1468    },
1469    Municipio {
1470        ibge_code: 2907400,
1471        name: "Catolândia",
1472        state: State::BA,
1473    },
1474    Municipio {
1475        ibge_code: 2907509,
1476        name: "Catu",
1477        state: State::BA,
1478    },
1479    Municipio {
1480        ibge_code: 2907558,
1481        name: "Caturama",
1482        state: State::BA,
1483    },
1484    Municipio {
1485        ibge_code: 2905107,
1486        name: "Caém",
1487        state: State::BA,
1488    },
1489    Municipio {
1490        ibge_code: 2907608,
1491        name: "Central",
1492        state: State::BA,
1493    },
1494    Municipio {
1495        ibge_code: 2907707,
1496        name: "Chorrochó",
1497        state: State::BA,
1498    },
1499    Municipio {
1500        ibge_code: 2907905,
1501        name: "Cipó",
1502        state: State::BA,
1503    },
1504    Municipio {
1505        ibge_code: 2908002,
1506        name: "Coaraci",
1507        state: State::BA,
1508    },
1509    Municipio {
1510        ibge_code: 2908101,
1511        name: "Cocos",
1512        state: State::BA,
1513    },
1514    Municipio {
1515        ibge_code: 2908200,
1516        name: "Conceição da Feira",
1517        state: State::BA,
1518    },
1519    Municipio {
1520        ibge_code: 2908309,
1521        name: "Conceição do Almeida",
1522        state: State::BA,
1523    },
1524    Municipio {
1525        ibge_code: 2908408,
1526        name: "Conceição do Coité",
1527        state: State::BA,
1528    },
1529    Municipio {
1530        ibge_code: 2908507,
1531        name: "Conceição do Jacuípe",
1532        state: State::BA,
1533    },
1534    Municipio {
1535        ibge_code: 2908606,
1536        name: "Conde",
1537        state: State::BA,
1538    },
1539    Municipio {
1540        ibge_code: 2908705,
1541        name: "Condeúba",
1542        state: State::BA,
1543    },
1544    Municipio {
1545        ibge_code: 2908804,
1546        name: "Contendas do Sincorá",
1547        state: State::BA,
1548    },
1549    Municipio {
1550        ibge_code: 2908903,
1551        name: "Coração de Maria",
1552        state: State::BA,
1553    },
1554    Municipio {
1555        ibge_code: 2909000,
1556        name: "Cordeiros",
1557        state: State::BA,
1558    },
1559    Municipio {
1560        ibge_code: 2909109,
1561        name: "Coribe",
1562        state: State::BA,
1563    },
1564    Municipio {
1565        ibge_code: 2909208,
1566        name: "Coronel João Sá",
1567        state: State::BA,
1568    },
1569    Municipio {
1570        ibge_code: 2909307,
1571        name: "Correntina",
1572        state: State::BA,
1573    },
1574    Municipio {
1575        ibge_code: 2909406,
1576        name: "Cotegipe",
1577        state: State::BA,
1578    },
1579    Municipio {
1580        ibge_code: 2909505,
1581        name: "Cravolândia",
1582        state: State::BA,
1583    },
1584    Municipio {
1585        ibge_code: 2909703,
1586        name: "Cristópolis",
1587        state: State::BA,
1588    },
1589    Municipio {
1590        ibge_code: 2909604,
1591        name: "Crisópolis",
1592        state: State::BA,
1593    },
1594    Municipio {
1595        ibge_code: 2909802,
1596        name: "Cruz das Almas",
1597        state: State::BA,
1598    },
1599    Municipio {
1600        ibge_code: 2909901,
1601        name: "Curaçá",
1602        state: State::BA,
1603    },
1604    Municipio {
1605        ibge_code: 2906709,
1606        name: "Cândido Sales",
1607        state: State::BA,
1608    },
1609    Municipio {
1610        ibge_code: 2907806,
1611        name: "Cícero Dantas",
1612        state: State::BA,
1613    },
1614    Municipio {
1615        ibge_code: 2910057,
1616        name: "Dias d'Ávila",
1617        state: State::BA,
1618    },
1619    Municipio {
1620        ibge_code: 2910107,
1621        name: "Dom Basílio",
1622        state: State::BA,
1623    },
1624    Municipio {
1625        ibge_code: 2910206,
1626        name: "Dom Macedo Costa",
1627        state: State::BA,
1628    },
1629    Municipio {
1630        ibge_code: 2910008,
1631        name: "Dário Meira",
1632        state: State::BA,
1633    },
1634    Municipio {
1635        ibge_code: 2910305,
1636        name: "Elísio Medrado",
1637        state: State::BA,
1638    },
1639    Municipio {
1640        ibge_code: 2910404,
1641        name: "Encruzilhada",
1642        state: State::BA,
1643    },
1644    Municipio {
1645        ibge_code: 2910503,
1646        name: "Entre Rios",
1647        state: State::BA,
1648    },
1649    Municipio {
1650        ibge_code: 2910602,
1651        name: "Esplanada",
1652        state: State::BA,
1653    },
1654    Municipio {
1655        ibge_code: 2910701,
1656        name: "Euclides da Cunha",
1657        state: State::BA,
1658    },
1659    Municipio {
1660        ibge_code: 2910727,
1661        name: "Eunápolis",
1662        state: State::BA,
1663    },
1664    Municipio {
1665        ibge_code: 2910776,
1666        name: "Feira da Mata",
1667        state: State::BA,
1668    },
1669    Municipio {
1670        ibge_code: 2910800,
1671        name: "Feira de Santana",
1672        state: State::BA,
1673    },
1674    Municipio {
1675        ibge_code: 2910859,
1676        name: "Filadélfia",
1677        state: State::BA,
1678    },
1679    Municipio {
1680        ibge_code: 2910909,
1681        name: "Firmino Alves",
1682        state: State::BA,
1683    },
1684    Municipio {
1685        ibge_code: 2911006,
1686        name: "Floresta Azul",
1687        state: State::BA,
1688    },
1689    Municipio {
1690        ibge_code: 2911105,
1691        name: "Formosa do Rio Preto",
1692        state: State::BA,
1693    },
1694    Municipio {
1695        ibge_code: 2910750,
1696        name: "Fátima",
1697        state: State::BA,
1698    },
1699    Municipio {
1700        ibge_code: 2911204,
1701        name: "Gandu",
1702        state: State::BA,
1703    },
1704    Municipio {
1705        ibge_code: 2911253,
1706        name: "Gavião",
1707        state: State::BA,
1708    },
1709    Municipio {
1710        ibge_code: 2911303,
1711        name: "Gentio do Ouro",
1712        state: State::BA,
1713    },
1714    Municipio {
1715        ibge_code: 2911402,
1716        name: "Glória",
1717        state: State::BA,
1718    },
1719    Municipio {
1720        ibge_code: 2911501,
1721        name: "Gongogi",
1722        state: State::BA,
1723    },
1724    Municipio {
1725        ibge_code: 2911600,
1726        name: "Governador Mangabeira",
1727        state: State::BA,
1728    },
1729    Municipio {
1730        ibge_code: 2911659,
1731        name: "Guajeru",
1732        state: State::BA,
1733    },
1734    Municipio {
1735        ibge_code: 2911709,
1736        name: "Guanambi",
1737        state: State::BA,
1738    },
1739    Municipio {
1740        ibge_code: 2911808,
1741        name: "Guaratinga",
1742        state: State::BA,
1743    },
1744    Municipio {
1745        ibge_code: 2911857,
1746        name: "Heliópolis",
1747        state: State::BA,
1748    },
1749    Municipio {
1750        ibge_code: 2911907,
1751        name: "Iaçu",
1752        state: State::BA,
1753    },
1754    Municipio {
1755        ibge_code: 2912004,
1756        name: "Ibiassucê",
1757        state: State::BA,
1758    },
1759    Municipio {
1760        ibge_code: 2912103,
1761        name: "Ibicaraí",
1762        state: State::BA,
1763    },
1764    Municipio {
1765        ibge_code: 2912202,
1766        name: "Ibicoara",
1767        state: State::BA,
1768    },
1769    Municipio {
1770        ibge_code: 2912301,
1771        name: "Ibicuí",
1772        state: State::BA,
1773    },
1774    Municipio {
1775        ibge_code: 2912400,
1776        name: "Ibipeba",
1777        state: State::BA,
1778    },
1779    Municipio {
1780        ibge_code: 2912509,
1781        name: "Ibipitanga",
1782        state: State::BA,
1783    },
1784    Municipio {
1785        ibge_code: 2912608,
1786        name: "Ibiquera",
1787        state: State::BA,
1788    },
1789    Municipio {
1790        ibge_code: 2912707,
1791        name: "Ibirapitanga",
1792        state: State::BA,
1793    },
1794    Municipio {
1795        ibge_code: 2912806,
1796        name: "Ibirapuã",
1797        state: State::BA,
1798    },
1799    Municipio {
1800        ibge_code: 2912905,
1801        name: "Ibirataia",
1802        state: State::BA,
1803    },
1804    Municipio {
1805        ibge_code: 2913002,
1806        name: "Ibitiara",
1807        state: State::BA,
1808    },
1809    Municipio {
1810        ibge_code: 2913101,
1811        name: "Ibititá",
1812        state: State::BA,
1813    },
1814    Municipio {
1815        ibge_code: 2913200,
1816        name: "Ibotirama",
1817        state: State::BA,
1818    },
1819    Municipio {
1820        ibge_code: 2913309,
1821        name: "Ichu",
1822        state: State::BA,
1823    },
1824    Municipio {
1825        ibge_code: 2913408,
1826        name: "Igaporã",
1827        state: State::BA,
1828    },
1829    Municipio {
1830        ibge_code: 2913457,
1831        name: "Igrapiúna",
1832        state: State::BA,
1833    },
1834    Municipio {
1835        ibge_code: 2913507,
1836        name: "Iguaí",
1837        state: State::BA,
1838    },
1839    Municipio {
1840        ibge_code: 2913606,
1841        name: "Ilhéus",
1842        state: State::BA,
1843    },
1844    Municipio {
1845        ibge_code: 2913705,
1846        name: "Inhambupe",
1847        state: State::BA,
1848    },
1849    Municipio {
1850        ibge_code: 2913804,
1851        name: "Ipecaetá",
1852        state: State::BA,
1853    },
1854    Municipio {
1855        ibge_code: 2913903,
1856        name: "Ipiaú",
1857        state: State::BA,
1858    },
1859    Municipio {
1860        ibge_code: 2914000,
1861        name: "Ipirá",
1862        state: State::BA,
1863    },
1864    Municipio {
1865        ibge_code: 2914109,
1866        name: "Ipupiara",
1867        state: State::BA,
1868    },
1869    Municipio {
1870        ibge_code: 2914208,
1871        name: "Irajuba",
1872        state: State::BA,
1873    },
1874    Municipio {
1875        ibge_code: 2914307,
1876        name: "Iramaia",
1877        state: State::BA,
1878    },
1879    Municipio {
1880        ibge_code: 2914406,
1881        name: "Iraquara",
1882        state: State::BA,
1883    },
1884    Municipio {
1885        ibge_code: 2914505,
1886        name: "Irará",
1887        state: State::BA,
1888    },
1889    Municipio {
1890        ibge_code: 2914604,
1891        name: "Irecê",
1892        state: State::BA,
1893    },
1894    Municipio {
1895        ibge_code: 2914653,
1896        name: "Itabela",
1897        state: State::BA,
1898    },
1899    Municipio {
1900        ibge_code: 2914703,
1901        name: "Itaberaba",
1902        state: State::BA,
1903    },
1904    Municipio {
1905        ibge_code: 2914802,
1906        name: "Itabuna",
1907        state: State::BA,
1908    },
1909    Municipio {
1910        ibge_code: 2914901,
1911        name: "Itacaré",
1912        state: State::BA,
1913    },
1914    Municipio {
1915        ibge_code: 2915007,
1916        name: "Itaeté",
1917        state: State::BA,
1918    },
1919    Municipio {
1920        ibge_code: 2915106,
1921        name: "Itagi",
1922        state: State::BA,
1923    },
1924    Municipio {
1925        ibge_code: 2915205,
1926        name: "Itagibá",
1927        state: State::BA,
1928    },
1929    Municipio {
1930        ibge_code: 2915304,
1931        name: "Itagimirim",
1932        state: State::BA,
1933    },
1934    Municipio {
1935        ibge_code: 2915353,
1936        name: "Itaguaçu da Bahia",
1937        state: State::BA,
1938    },
1939    Municipio {
1940        ibge_code: 2915403,
1941        name: "Itaju do Colônia",
1942        state: State::BA,
1943    },
1944    Municipio {
1945        ibge_code: 2915502,
1946        name: "Itajuípe",
1947        state: State::BA,
1948    },
1949    Municipio {
1950        ibge_code: 2915601,
1951        name: "Itamaraju",
1952        state: State::BA,
1953    },
1954    Municipio {
1955        ibge_code: 2915700,
1956        name: "Itamari",
1957        state: State::BA,
1958    },
1959    Municipio {
1960        ibge_code: 2915809,
1961        name: "Itambé",
1962        state: State::BA,
1963    },
1964    Municipio {
1965        ibge_code: 2915908,
1966        name: "Itanagra",
1967        state: State::BA,
1968    },
1969    Municipio {
1970        ibge_code: 2916005,
1971        name: "Itanhém",
1972        state: State::BA,
1973    },
1974    Municipio {
1975        ibge_code: 2916104,
1976        name: "Itaparica",
1977        state: State::BA,
1978    },
1979    Municipio {
1980        ibge_code: 2916302,
1981        name: "Itapebi",
1982        state: State::BA,
1983    },
1984    Municipio {
1985        ibge_code: 2916401,
1986        name: "Itapetinga",
1987        state: State::BA,
1988    },
1989    Municipio {
1990        ibge_code: 2916500,
1991        name: "Itapicuru",
1992        state: State::BA,
1993    },
1994    Municipio {
1995        ibge_code: 2916609,
1996        name: "Itapitanga",
1997        state: State::BA,
1998    },
1999    Municipio {
2000        ibge_code: 2916203,
2001        name: "Itapé",
2002        state: State::BA,
2003    },
2004    Municipio {
2005        ibge_code: 2916708,
2006        name: "Itaquara",
2007        state: State::BA,
2008    },
2009    Municipio {
2010        ibge_code: 2916807,
2011        name: "Itarantim",
2012        state: State::BA,
2013    },
2014    Municipio {
2015        ibge_code: 2916856,
2016        name: "Itatim",
2017        state: State::BA,
2018    },
2019    Municipio {
2020        ibge_code: 2916906,
2021        name: "Itiruçu",
2022        state: State::BA,
2023    },
2024    Municipio {
2025        ibge_code: 2917003,
2026        name: "Itiúba",
2027        state: State::BA,
2028    },
2029    Municipio {
2030        ibge_code: 2917102,
2031        name: "Itororó",
2032        state: State::BA,
2033    },
2034    Municipio {
2035        ibge_code: 2917201,
2036        name: "Ituaçu",
2037        state: State::BA,
2038    },
2039    Municipio {
2040        ibge_code: 2917300,
2041        name: "Ituberá",
2042        state: State::BA,
2043    },
2044    Municipio {
2045        ibge_code: 2917334,
2046        name: "Iuiu",
2047        state: State::BA,
2048    },
2049    Municipio {
2050        ibge_code: 2917359,
2051        name: "Jaborandi",
2052        state: State::BA,
2053    },
2054    Municipio {
2055        ibge_code: 2917409,
2056        name: "Jacaraci",
2057        state: State::BA,
2058    },
2059    Municipio {
2060        ibge_code: 2917508,
2061        name: "Jacobina",
2062        state: State::BA,
2063    },
2064    Municipio {
2065        ibge_code: 2917607,
2066        name: "Jaguaquara",
2067        state: State::BA,
2068    },
2069    Municipio {
2070        ibge_code: 2917706,
2071        name: "Jaguarari",
2072        state: State::BA,
2073    },
2074    Municipio {
2075        ibge_code: 2917805,
2076        name: "Jaguaripe",
2077        state: State::BA,
2078    },
2079    Municipio {
2080        ibge_code: 2917904,
2081        name: "Jandaíra",
2082        state: State::BA,
2083    },
2084    Municipio {
2085        ibge_code: 2918001,
2086        name: "Jequié",
2087        state: State::BA,
2088    },
2089    Municipio {
2090        ibge_code: 2918100,
2091        name: "Jeremoabo",
2092        state: State::BA,
2093    },
2094    Municipio {
2095        ibge_code: 2918209,
2096        name: "Jiquiriçá",
2097        state: State::BA,
2098    },
2099    Municipio {
2100        ibge_code: 2918308,
2101        name: "Jitaúna",
2102        state: State::BA,
2103    },
2104    Municipio {
2105        ibge_code: 2918357,
2106        name: "João Dourado",
2107        state: State::BA,
2108    },
2109    Municipio {
2110        ibge_code: 2918407,
2111        name: "Juazeiro",
2112        state: State::BA,
2113    },
2114    Municipio {
2115        ibge_code: 2918456,
2116        name: "Jucuruçu",
2117        state: State::BA,
2118    },
2119    Municipio {
2120        ibge_code: 2918506,
2121        name: "Jussara",
2122        state: State::BA,
2123    },
2124    Municipio {
2125        ibge_code: 2918555,
2126        name: "Jussari",
2127        state: State::BA,
2128    },
2129    Municipio {
2130        ibge_code: 2918605,
2131        name: "Jussiape",
2132        state: State::BA,
2133    },
2134    Municipio {
2135        ibge_code: 2918704,
2136        name: "Lafaiete Coutinho",
2137        state: State::BA,
2138    },
2139    Municipio {
2140        ibge_code: 2918753,
2141        name: "Lagoa Real",
2142        state: State::BA,
2143    },
2144    Municipio {
2145        ibge_code: 2918803,
2146        name: "Laje",
2147        state: State::BA,
2148    },
2149    Municipio {
2150        ibge_code: 2919009,
2151        name: "Lajedinho",
2152        state: State::BA,
2153    },
2154    Municipio {
2155        ibge_code: 2919058,
2156        name: "Lajedo do Tabocal",
2157        state: State::BA,
2158    },
2159    Municipio {
2160        ibge_code: 2918902,
2161        name: "Lajedão",
2162        state: State::BA,
2163    },
2164    Municipio {
2165        ibge_code: 2919108,
2166        name: "Lamarão",
2167        state: State::BA,
2168    },
2169    Municipio {
2170        ibge_code: 2919157,
2171        name: "Lapão",
2172        state: State::BA,
2173    },
2174    Municipio {
2175        ibge_code: 2919207,
2176        name: "Lauro de Freitas",
2177        state: State::BA,
2178    },
2179    Municipio {
2180        ibge_code: 2919306,
2181        name: "Lençóis",
2182        state: State::BA,
2183    },
2184    Municipio {
2185        ibge_code: 2919405,
2186        name: "Licínio de Almeida",
2187        state: State::BA,
2188    },
2189    Municipio {
2190        ibge_code: 2919504,
2191        name: "Livramento de Nossa Senhora",
2192        state: State::BA,
2193    },
2194    Municipio {
2195        ibge_code: 2919553,
2196        name: "Luís Eduardo Magalhães",
2197        state: State::BA,
2198    },
2199    Municipio {
2200        ibge_code: 2919603,
2201        name: "Macajuba",
2202        state: State::BA,
2203    },
2204    Municipio {
2205        ibge_code: 2919702,
2206        name: "Macarani",
2207        state: State::BA,
2208    },
2209    Municipio {
2210        ibge_code: 2919801,
2211        name: "Macaúbas",
2212        state: State::BA,
2213    },
2214    Municipio {
2215        ibge_code: 2919900,
2216        name: "Macururé",
2217        state: State::BA,
2218    },
2219    Municipio {
2220        ibge_code: 2919926,
2221        name: "Madre de Deus",
2222        state: State::BA,
2223    },
2224    Municipio {
2225        ibge_code: 2919959,
2226        name: "Maetinga",
2227        state: State::BA,
2228    },
2229    Municipio {
2230        ibge_code: 2920007,
2231        name: "Maiquinique",
2232        state: State::BA,
2233    },
2234    Municipio {
2235        ibge_code: 2920106,
2236        name: "Mairi",
2237        state: State::BA,
2238    },
2239    Municipio {
2240        ibge_code: 2920205,
2241        name: "Malhada",
2242        state: State::BA,
2243    },
2244    Municipio {
2245        ibge_code: 2920304,
2246        name: "Malhada de Pedras",
2247        state: State::BA,
2248    },
2249    Municipio {
2250        ibge_code: 2920403,
2251        name: "Manoel Vitorino",
2252        state: State::BA,
2253    },
2254    Municipio {
2255        ibge_code: 2920452,
2256        name: "Mansidão",
2257        state: State::BA,
2258    },
2259    Municipio {
2260        ibge_code: 2920502,
2261        name: "Maracás",
2262        state: State::BA,
2263    },
2264    Municipio {
2265        ibge_code: 2920601,
2266        name: "Maragogipe",
2267        state: State::BA,
2268    },
2269    Municipio {
2270        ibge_code: 2920700,
2271        name: "Maraú",
2272        state: State::BA,
2273    },
2274    Municipio {
2275        ibge_code: 2920809,
2276        name: "Marcionílio Souza",
2277        state: State::BA,
2278    },
2279    Municipio {
2280        ibge_code: 2920908,
2281        name: "Mascote",
2282        state: State::BA,
2283    },
2284    Municipio {
2285        ibge_code: 2921005,
2286        name: "Mata de São João",
2287        state: State::BA,
2288    },
2289    Municipio {
2290        ibge_code: 2921054,
2291        name: "Matina",
2292        state: State::BA,
2293    },
2294    Municipio {
2295        ibge_code: 2921104,
2296        name: "Medeiros Neto",
2297        state: State::BA,
2298    },
2299    Municipio {
2300        ibge_code: 2921203,
2301        name: "Miguel Calmon",
2302        state: State::BA,
2303    },
2304    Municipio {
2305        ibge_code: 2921302,
2306        name: "Milagres",
2307        state: State::BA,
2308    },
2309    Municipio {
2310        ibge_code: 2921401,
2311        name: "Mirangaba",
2312        state: State::BA,
2313    },
2314    Municipio {
2315        ibge_code: 2921450,
2316        name: "Mirante",
2317        state: State::BA,
2318    },
2319    Municipio {
2320        ibge_code: 2921500,
2321        name: "Monte Santo",
2322        state: State::BA,
2323    },
2324    Municipio {
2325        ibge_code: 2921609,
2326        name: "Morpará",
2327        state: State::BA,
2328    },
2329    Municipio {
2330        ibge_code: 2921708,
2331        name: "Morro do Chapéu",
2332        state: State::BA,
2333    },
2334    Municipio {
2335        ibge_code: 2921807,
2336        name: "Mortugaba",
2337        state: State::BA,
2338    },
2339    Municipio {
2340        ibge_code: 2921906,
2341        name: "Mucugê",
2342        state: State::BA,
2343    },
2344    Municipio {
2345        ibge_code: 2922003,
2346        name: "Mucuri",
2347        state: State::BA,
2348    },
2349    Municipio {
2350        ibge_code: 2922052,
2351        name: "Mulungu do Morro",
2352        state: State::BA,
2353    },
2354    Municipio {
2355        ibge_code: 2922102,
2356        name: "Mundo Novo",
2357        state: State::BA,
2358    },
2359    Municipio {
2360        ibge_code: 2922201,
2361        name: "Muniz Ferreira",
2362        state: State::BA,
2363    },
2364    Municipio {
2365        ibge_code: 2922250,
2366        name: "Muquém do São Francisco",
2367        state: State::BA,
2368    },
2369    Municipio {
2370        ibge_code: 2922300,
2371        name: "Muritiba",
2372        state: State::BA,
2373    },
2374    Municipio {
2375        ibge_code: 2922409,
2376        name: "Mutuípe",
2377        state: State::BA,
2378    },
2379    Municipio {
2380        ibge_code: 2922508,
2381        name: "Nazaré",
2382        state: State::BA,
2383    },
2384    Municipio {
2385        ibge_code: 2922607,
2386        name: "Nilo Peçanha",
2387        state: State::BA,
2388    },
2389    Municipio {
2390        ibge_code: 2922656,
2391        name: "Nordestina",
2392        state: State::BA,
2393    },
2394    Municipio {
2395        ibge_code: 2922706,
2396        name: "Nova Canaã",
2397        state: State::BA,
2398    },
2399    Municipio {
2400        ibge_code: 2922730,
2401        name: "Nova Fátima",
2402        state: State::BA,
2403    },
2404    Municipio {
2405        ibge_code: 2922755,
2406        name: "Nova Ibiá",
2407        state: State::BA,
2408    },
2409    Municipio {
2410        ibge_code: 2922805,
2411        name: "Nova Itarana",
2412        state: State::BA,
2413    },
2414    Municipio {
2415        ibge_code: 2922854,
2416        name: "Nova Redenção",
2417        state: State::BA,
2418    },
2419    Municipio {
2420        ibge_code: 2922904,
2421        name: "Nova Soure",
2422        state: State::BA,
2423    },
2424    Municipio {
2425        ibge_code: 2923001,
2426        name: "Nova Viçosa",
2427        state: State::BA,
2428    },
2429    Municipio {
2430        ibge_code: 2923035,
2431        name: "Novo Horizonte",
2432        state: State::BA,
2433    },
2434    Municipio {
2435        ibge_code: 2923050,
2436        name: "Novo Triunfo",
2437        state: State::BA,
2438    },
2439    Municipio {
2440        ibge_code: 2923100,
2441        name: "Olindina",
2442        state: State::BA,
2443    },
2444    Municipio {
2445        ibge_code: 2923209,
2446        name: "Oliveira dos Brejinhos",
2447        state: State::BA,
2448    },
2449    Municipio {
2450        ibge_code: 2923308,
2451        name: "Ouriçangas",
2452        state: State::BA,
2453    },
2454    Municipio {
2455        ibge_code: 2923357,
2456        name: "Ourolândia",
2457        state: State::BA,
2458    },
2459    Municipio {
2460        ibge_code: 2923407,
2461        name: "Palmas de Monte Alto",
2462        state: State::BA,
2463    },
2464    Municipio {
2465        ibge_code: 2923506,
2466        name: "Palmeiras",
2467        state: State::BA,
2468    },
2469    Municipio {
2470        ibge_code: 2923605,
2471        name: "Paramirim",
2472        state: State::BA,
2473    },
2474    Municipio {
2475        ibge_code: 2923704,
2476        name: "Paratinga",
2477        state: State::BA,
2478    },
2479    Municipio {
2480        ibge_code: 2923803,
2481        name: "Paripiranga",
2482        state: State::BA,
2483    },
2484    Municipio {
2485        ibge_code: 2923902,
2486        name: "Pau Brasil",
2487        state: State::BA,
2488    },
2489    Municipio {
2490        ibge_code: 2924009,
2491        name: "Paulo Afonso",
2492        state: State::BA,
2493    },
2494    Municipio {
2495        ibge_code: 2924207,
2496        name: "Pedro Alexandre",
2497        state: State::BA,
2498    },
2499    Municipio {
2500        ibge_code: 2924108,
2501        name: "Pedrão",
2502        state: State::BA,
2503    },
2504    Municipio {
2505        ibge_code: 2924306,
2506        name: "Piatã",
2507        state: State::BA,
2508    },
2509    Municipio {
2510        ibge_code: 2924405,
2511        name: "Pilão Arcado",
2512        state: State::BA,
2513    },
2514    Municipio {
2515        ibge_code: 2924504,
2516        name: "Pindaí",
2517        state: State::BA,
2518    },
2519    Municipio {
2520        ibge_code: 2924603,
2521        name: "Pindobaçu",
2522        state: State::BA,
2523    },
2524    Municipio {
2525        ibge_code: 2924652,
2526        name: "Pintadas",
2527        state: State::BA,
2528    },
2529    Municipio {
2530        ibge_code: 2924678,
2531        name: "Piraí do Norte",
2532        state: State::BA,
2533    },
2534    Municipio {
2535        ibge_code: 2924702,
2536        name: "Piripá",
2537        state: State::BA,
2538    },
2539    Municipio {
2540        ibge_code: 2924801,
2541        name: "Piritiba",
2542        state: State::BA,
2543    },
2544    Municipio {
2545        ibge_code: 2924900,
2546        name: "Planaltino",
2547        state: State::BA,
2548    },
2549    Municipio {
2550        ibge_code: 2925006,
2551        name: "Planalto",
2552        state: State::BA,
2553    },
2554    Municipio {
2555        ibge_code: 2925204,
2556        name: "Pojuca",
2557        state: State::BA,
2558    },
2559    Municipio {
2560        ibge_code: 2925253,
2561        name: "Ponto Novo",
2562        state: State::BA,
2563    },
2564    Municipio {
2565        ibge_code: 2925303,
2566        name: "Porto Seguro",
2567        state: State::BA,
2568    },
2569    Municipio {
2570        ibge_code: 2925402,
2571        name: "Potiraguá",
2572        state: State::BA,
2573    },
2574    Municipio {
2575        ibge_code: 2925105,
2576        name: "Poções",
2577        state: State::BA,
2578    },
2579    Municipio {
2580        ibge_code: 2925501,
2581        name: "Prado",
2582        state: State::BA,
2583    },
2584    Municipio {
2585        ibge_code: 2925600,
2586        name: "Presidente Dutra",
2587        state: State::BA,
2588    },
2589    Municipio {
2590        ibge_code: 2925709,
2591        name: "Presidente Jânio Quadros",
2592        state: State::BA,
2593    },
2594    Municipio {
2595        ibge_code: 2925758,
2596        name: "Presidente Tancredo Neves",
2597        state: State::BA,
2598    },
2599    Municipio {
2600        ibge_code: 2924058,
2601        name: "Pé de Serra",
2602        state: State::BA,
2603    },
2604    Municipio {
2605        ibge_code: 2925808,
2606        name: "Queimadas",
2607        state: State::BA,
2608    },
2609    Municipio {
2610        ibge_code: 2925907,
2611        name: "Quijingue",
2612        state: State::BA,
2613    },
2614    Municipio {
2615        ibge_code: 2925931,
2616        name: "Quixabeira",
2617        state: State::BA,
2618    },
2619    Municipio {
2620        ibge_code: 2925956,
2621        name: "Rafael Jambeiro",
2622        state: State::BA,
2623    },
2624    Municipio {
2625        ibge_code: 2926004,
2626        name: "Remanso",
2627        state: State::BA,
2628    },
2629    Municipio {
2630        ibge_code: 2926103,
2631        name: "Retirolândia",
2632        state: State::BA,
2633    },
2634    Municipio {
2635        ibge_code: 2926400,
2636        name: "Riacho de Santana",
2637        state: State::BA,
2638    },
2639    Municipio {
2640        ibge_code: 2926202,
2641        name: "Riachão das Neves",
2642        state: State::BA,
2643    },
2644    Municipio {
2645        ibge_code: 2926301,
2646        name: "Riachão do Jacuípe",
2647        state: State::BA,
2648    },
2649    Municipio {
2650        ibge_code: 2926509,
2651        name: "Ribeira do Amparo",
2652        state: State::BA,
2653    },
2654    Municipio {
2655        ibge_code: 2926608,
2656        name: "Ribeira do Pombal",
2657        state: State::BA,
2658    },
2659    Municipio {
2660        ibge_code: 2926657,
2661        name: "Ribeirão do Largo",
2662        state: State::BA,
2663    },
2664    Municipio {
2665        ibge_code: 2927002,
2666        name: "Rio Real",
2667        state: State::BA,
2668    },
2669    Municipio {
2670        ibge_code: 2926707,
2671        name: "Rio de Contas",
2672        state: State::BA,
2673    },
2674    Municipio {
2675        ibge_code: 2926806,
2676        name: "Rio do Antônio",
2677        state: State::BA,
2678    },
2679    Municipio {
2680        ibge_code: 2926905,
2681        name: "Rio do Pires",
2682        state: State::BA,
2683    },
2684    Municipio {
2685        ibge_code: 2927101,
2686        name: "Rodelas",
2687        state: State::BA,
2688    },
2689    Municipio {
2690        ibge_code: 2927200,
2691        name: "Ruy Barbosa",
2692        state: State::BA,
2693    },
2694    Municipio {
2695        ibge_code: 2927309,
2696        name: "Salinas da Margarida",
2697        state: State::BA,
2698    },
2699    Municipio {
2700        ibge_code: 2927408,
2701        name: "Salvador",
2702        state: State::BA,
2703    },
2704    Municipio {
2705        ibge_code: 2927606,
2706        name: "Santa Brígida",
2707        state: State::BA,
2708    },
2709    Municipio {
2710        ibge_code: 2927507,
2711        name: "Santa Bárbara",
2712        state: State::BA,
2713    },
2714    Municipio {
2715        ibge_code: 2927705,
2716        name: "Santa Cruz Cabrália",
2717        state: State::BA,
2718    },
2719    Municipio {
2720        ibge_code: 2927804,
2721        name: "Santa Cruz da Vitória",
2722        state: State::BA,
2723    },
2724    Municipio {
2725        ibge_code: 2927903,
2726        name: "Santa Inês",
2727        state: State::BA,
2728    },
2729    Municipio {
2730        ibge_code: 2928059,
2731        name: "Santa Luzia",
2732        state: State::BA,
2733    },
2734    Municipio {
2735        ibge_code: 2928109,
2736        name: "Santa Maria da Vitória",
2737        state: State::BA,
2738    },
2739    Municipio {
2740        ibge_code: 2928406,
2741        name: "Santa Rita de Cássia",
2742        state: State::BA,
2743    },
2744    Municipio {
2745        ibge_code: 2928505,
2746        name: "Santa Terezinha",
2747        state: State::BA,
2748    },
2749    Municipio {
2750        ibge_code: 2928000,
2751        name: "Santaluz",
2752        state: State::BA,
2753    },
2754    Municipio {
2755        ibge_code: 2928208,
2756        name: "Santana",
2757        state: State::BA,
2758    },
2759    Municipio {
2760        ibge_code: 2928307,
2761        name: "Santanópolis",
2762        state: State::BA,
2763    },
2764    Municipio {
2765        ibge_code: 2928604,
2766        name: "Santo Amaro",
2767        state: State::BA,
2768    },
2769    Municipio {
2770        ibge_code: 2928703,
2771        name: "Santo Antônio de Jesus",
2772        state: State::BA,
2773    },
2774    Municipio {
2775        ibge_code: 2928802,
2776        name: "Santo Estêvão",
2777        state: State::BA,
2778    },
2779    Municipio {
2780        ibge_code: 2929602,
2781        name: "Sapeaçu",
2782        state: State::BA,
2783    },
2784    Municipio {
2785        ibge_code: 2929750,
2786        name: "Saubara",
2787        state: State::BA,
2788    },
2789    Municipio {
2790        ibge_code: 2929800,
2791        name: "Saúde",
2792        state: State::BA,
2793    },
2794    Municipio {
2795        ibge_code: 2929909,
2796        name: "Seabra",
2797        state: State::BA,
2798    },
2799    Municipio {
2800        ibge_code: 2930006,
2801        name: "Sebastião Laranjeiras",
2802        state: State::BA,
2803    },
2804    Municipio {
2805        ibge_code: 2930105,
2806        name: "Senhor do Bonfim",
2807        state: State::BA,
2808    },
2809    Municipio {
2810        ibge_code: 2930204,
2811        name: "Sento Sé",
2812        state: State::BA,
2813    },
2814    Municipio {
2815        ibge_code: 2930303,
2816        name: "Serra Dourada",
2817        state: State::BA,
2818    },
2819    Municipio {
2820        ibge_code: 2930402,
2821        name: "Serra Preta",
2822        state: State::BA,
2823    },
2824    Municipio {
2825        ibge_code: 2930154,
2826        name: "Serra do Ramalho",
2827        state: State::BA,
2828    },
2829    Municipio {
2830        ibge_code: 2930501,
2831        name: "Serrinha",
2832        state: State::BA,
2833    },
2834    Municipio {
2835        ibge_code: 2930600,
2836        name: "Serrolândia",
2837        state: State::BA,
2838    },
2839    Municipio {
2840        ibge_code: 2930709,
2841        name: "Simões Filho",
2842        state: State::BA,
2843    },
2844    Municipio {
2845        ibge_code: 2930774,
2846        name: "Sobradinho",
2847        state: State::BA,
2848    },
2849    Municipio {
2850        ibge_code: 2930808,
2851        name: "Souto Soares",
2852        state: State::BA,
2853    },
2854    Municipio {
2855        ibge_code: 2929701,
2856        name: "Sátiro Dias",
2857        state: State::BA,
2858    },
2859    Municipio {
2860        ibge_code: 2928901,
2861        name: "São Desidério",
2862        state: State::BA,
2863    },
2864    Municipio {
2865        ibge_code: 2928950,
2866        name: "São Domingos",
2867        state: State::BA,
2868    },
2869    Municipio {
2870        ibge_code: 2929107,
2871        name: "São Felipe",
2872        state: State::BA,
2873    },
2874    Municipio {
2875        ibge_code: 2929206,
2876        name: "São Francisco do Conde",
2877        state: State::BA,
2878    },
2879    Municipio {
2880        ibge_code: 2929008,
2881        name: "São Félix",
2882        state: State::BA,
2883    },
2884    Municipio {
2885        ibge_code: 2929057,
2886        name: "São Félix do Coribe",
2887        state: State::BA,
2888    },
2889    Municipio {
2890        ibge_code: 2929255,
2891        name: "São Gabriel",
2892        state: State::BA,
2893    },
2894    Municipio {
2895        ibge_code: 2929305,
2896        name: "São Gonçalo dos Campos",
2897        state: State::BA,
2898    },
2899    Municipio {
2900        ibge_code: 2929354,
2901        name: "São José da Vitória",
2902        state: State::BA,
2903    },
2904    Municipio {
2905        ibge_code: 2929370,
2906        name: "São José do Jacuípe",
2907        state: State::BA,
2908    },
2909    Municipio {
2910        ibge_code: 2929404,
2911        name: "São Miguel das Matas",
2912        state: State::BA,
2913    },
2914    Municipio {
2915        ibge_code: 2929503,
2916        name: "São Sebastião do Passé",
2917        state: State::BA,
2918    },
2919    Municipio {
2920        ibge_code: 2930758,
2921        name: "Sítio do Mato",
2922        state: State::BA,
2923    },
2924    Municipio {
2925        ibge_code: 2930766,
2926        name: "Sítio do Quinto",
2927        state: State::BA,
2928    },
2929    Municipio {
2930        ibge_code: 2930907,
2931        name: "Tabocas do Brejo Velho",
2932        state: State::BA,
2933    },
2934    Municipio {
2935        ibge_code: 2931004,
2936        name: "Tanhaçu",
2937        state: State::BA,
2938    },
2939    Municipio {
2940        ibge_code: 2931053,
2941        name: "Tanque Novo",
2942        state: State::BA,
2943    },
2944    Municipio {
2945        ibge_code: 2931103,
2946        name: "Tanquinho",
2947        state: State::BA,
2948    },
2949    Municipio {
2950        ibge_code: 2931202,
2951        name: "Taperoá",
2952        state: State::BA,
2953    },
2954    Municipio {
2955        ibge_code: 2931301,
2956        name: "Tapiramutá",
2957        state: State::BA,
2958    },
2959    Municipio {
2960        ibge_code: 2931350,
2961        name: "Teixeira de Freitas",
2962        state: State::BA,
2963    },
2964    Municipio {
2965        ibge_code: 2931400,
2966        name: "Teodoro Sampaio",
2967        state: State::BA,
2968    },
2969    Municipio {
2970        ibge_code: 2931509,
2971        name: "Teofilândia",
2972        state: State::BA,
2973    },
2974    Municipio {
2975        ibge_code: 2931608,
2976        name: "Teolândia",
2977        state: State::BA,
2978    },
2979    Municipio {
2980        ibge_code: 2931707,
2981        name: "Terra Nova",
2982        state: State::BA,
2983    },
2984    Municipio {
2985        ibge_code: 2931806,
2986        name: "Tremedal",
2987        state: State::BA,
2988    },
2989    Municipio {
2990        ibge_code: 2931905,
2991        name: "Tucano",
2992        state: State::BA,
2993    },
2994    Municipio {
2995        ibge_code: 2932002,
2996        name: "Uauá",
2997        state: State::BA,
2998    },
2999    Municipio {
3000        ibge_code: 2932200,
3001        name: "Ubaitaba",
3002        state: State::BA,
3003    },
3004    Municipio {
3005        ibge_code: 2932309,
3006        name: "Ubatã",
3007        state: State::BA,
3008    },
3009    Municipio {
3010        ibge_code: 2932101,
3011        name: "Ubaíra",
3012        state: State::BA,
3013    },
3014    Municipio {
3015        ibge_code: 2932408,
3016        name: "Uibaí",
3017        state: State::BA,
3018    },
3019    Municipio {
3020        ibge_code: 2932457,
3021        name: "Umburanas",
3022        state: State::BA,
3023    },
3024    Municipio {
3025        ibge_code: 2932507,
3026        name: "Una",
3027        state: State::BA,
3028    },
3029    Municipio {
3030        ibge_code: 2932606,
3031        name: "Urandi",
3032        state: State::BA,
3033    },
3034    Municipio {
3035        ibge_code: 2932705,
3036        name: "Uruçuca",
3037        state: State::BA,
3038    },
3039    Municipio {
3040        ibge_code: 2932804,
3041        name: "Utinga",
3042        state: State::BA,
3043    },
3044    Municipio {
3045        ibge_code: 2933000,
3046        name: "Valente",
3047        state: State::BA,
3048    },
3049    Municipio {
3050        ibge_code: 2932903,
3051        name: "Valença",
3052        state: State::BA,
3053    },
3054    Municipio {
3055        ibge_code: 2933174,
3056        name: "Varzedo",
3057        state: State::BA,
3058    },
3059    Municipio {
3060        ibge_code: 2933208,
3061        name: "Vera Cruz",
3062        state: State::BA,
3063    },
3064    Municipio {
3065        ibge_code: 2933257,
3066        name: "Vereda",
3067        state: State::BA,
3068    },
3069    Municipio {
3070        ibge_code: 2933307,
3071        name: "Vitória da Conquista",
3072        state: State::BA,
3073    },
3074    Municipio {
3075        ibge_code: 2933158,
3076        name: "Várzea Nova",
3077        state: State::BA,
3078    },
3079    Municipio {
3080        ibge_code: 2933059,
3081        name: "Várzea da Roça",
3082        state: State::BA,
3083    },
3084    Municipio {
3085        ibge_code: 2933109,
3086        name: "Várzea do Poço",
3087        state: State::BA,
3088    },
3089    Municipio {
3090        ibge_code: 2933406,
3091        name: "Wagner",
3092        state: State::BA,
3093    },
3094    Municipio {
3095        ibge_code: 2933455,
3096        name: "Wanderley",
3097        state: State::BA,
3098    },
3099    Municipio {
3100        ibge_code: 2933505,
3101        name: "Wenceslau Guimarães",
3102        state: State::BA,
3103    },
3104    Municipio {
3105        ibge_code: 2933604,
3106        name: "Xique-Xique",
3107        state: State::BA,
3108    },
3109    Municipio {
3110        ibge_code: 2900405,
3111        name: "Água Fria",
3112        state: State::BA,
3113    },
3114    Municipio {
3115        ibge_code: 2900504,
3116        name: "Érico Cardoso",
3117        state: State::BA,
3118    },
3119    Municipio {
3120        ibge_code: 2300101,
3121        name: "Abaiara",
3122        state: State::CE,
3123    },
3124    Municipio {
3125        ibge_code: 2300150,
3126        name: "Acarape",
3127        state: State::CE,
3128    },
3129    Municipio {
3130        ibge_code: 2300200,
3131        name: "Acaraú",
3132        state: State::CE,
3133    },
3134    Municipio {
3135        ibge_code: 2300309,
3136        name: "Acopiara",
3137        state: State::CE,
3138    },
3139    Municipio {
3140        ibge_code: 2300408,
3141        name: "Aiuaba",
3142        state: State::CE,
3143    },
3144    Municipio {
3145        ibge_code: 2300507,
3146        name: "Alcântaras",
3147        state: State::CE,
3148    },
3149    Municipio {
3150        ibge_code: 2300606,
3151        name: "Altaneira",
3152        state: State::CE,
3153    },
3154    Municipio {
3155        ibge_code: 2300705,
3156        name: "Alto Santo",
3157        state: State::CE,
3158    },
3159    Municipio {
3160        ibge_code: 2300754,
3161        name: "Amontada",
3162        state: State::CE,
3163    },
3164    Municipio {
3165        ibge_code: 2300804,
3166        name: "Antonina do Norte",
3167        state: State::CE,
3168    },
3169    Municipio {
3170        ibge_code: 2300903,
3171        name: "Apuiarés",
3172        state: State::CE,
3173    },
3174    Municipio {
3175        ibge_code: 2301000,
3176        name: "Aquiraz",
3177        state: State::CE,
3178    },
3179    Municipio {
3180        ibge_code: 2301109,
3181        name: "Aracati",
3182        state: State::CE,
3183    },
3184    Municipio {
3185        ibge_code: 2301208,
3186        name: "Aracoiaba",
3187        state: State::CE,
3188    },
3189    Municipio {
3190        ibge_code: 2301257,
3191        name: "Ararendá",
3192        state: State::CE,
3193    },
3194    Municipio {
3195        ibge_code: 2301307,
3196        name: "Araripe",
3197        state: State::CE,
3198    },
3199    Municipio {
3200        ibge_code: 2301406,
3201        name: "Aratuba",
3202        state: State::CE,
3203    },
3204    Municipio {
3205        ibge_code: 2301505,
3206        name: "Arneiroz",
3207        state: State::CE,
3208    },
3209    Municipio {
3210        ibge_code: 2301604,
3211        name: "Assaré",
3212        state: State::CE,
3213    },
3214    Municipio {
3215        ibge_code: 2301703,
3216        name: "Aurora",
3217        state: State::CE,
3218    },
3219    Municipio {
3220        ibge_code: 2301802,
3221        name: "Baixio",
3222        state: State::CE,
3223    },
3224    Municipio {
3225        ibge_code: 2301851,
3226        name: "Banabuiú",
3227        state: State::CE,
3228    },
3229    Municipio {
3230        ibge_code: 2301901,
3231        name: "Barbalha",
3232        state: State::CE,
3233    },
3234    Municipio {
3235        ibge_code: 2301950,
3236        name: "Barreira",
3237        state: State::CE,
3238    },
3239    Municipio {
3240        ibge_code: 2302008,
3241        name: "Barro",
3242        state: State::CE,
3243    },
3244    Municipio {
3245        ibge_code: 2302057,
3246        name: "Barroquinha",
3247        state: State::CE,
3248    },
3249    Municipio {
3250        ibge_code: 2302107,
3251        name: "Baturité",
3252        state: State::CE,
3253    },
3254    Municipio {
3255        ibge_code: 2302206,
3256        name: "Beberibe",
3257        state: State::CE,
3258    },
3259    Municipio {
3260        ibge_code: 2302305,
3261        name: "Bela Cruz",
3262        state: State::CE,
3263    },
3264    Municipio {
3265        ibge_code: 2302404,
3266        name: "Boa Viagem",
3267        state: State::CE,
3268    },
3269    Municipio {
3270        ibge_code: 2302503,
3271        name: "Brejo Santo",
3272        state: State::CE,
3273    },
3274    Municipio {
3275        ibge_code: 2302602,
3276        name: "Camocim",
3277        state: State::CE,
3278    },
3279    Municipio {
3280        ibge_code: 2302701,
3281        name: "Campos Sales",
3282        state: State::CE,
3283    },
3284    Municipio {
3285        ibge_code: 2302800,
3286        name: "Canindé",
3287        state: State::CE,
3288    },
3289    Municipio {
3290        ibge_code: 2302909,
3291        name: "Capistrano",
3292        state: State::CE,
3293    },
3294    Municipio {
3295        ibge_code: 2303006,
3296        name: "Caridade",
3297        state: State::CE,
3298    },
3299    Municipio {
3300        ibge_code: 2303204,
3301        name: "Caririaçu",
3302        state: State::CE,
3303    },
3304    Municipio {
3305        ibge_code: 2303105,
3306        name: "Cariré",
3307        state: State::CE,
3308    },
3309    Municipio {
3310        ibge_code: 2303303,
3311        name: "Cariús",
3312        state: State::CE,
3313    },
3314    Municipio {
3315        ibge_code: 2303402,
3316        name: "Carnaubal",
3317        state: State::CE,
3318    },
3319    Municipio {
3320        ibge_code: 2303501,
3321        name: "Cascavel",
3322        state: State::CE,
3323    },
3324    Municipio {
3325        ibge_code: 2303600,
3326        name: "Catarina",
3327        state: State::CE,
3328    },
3329    Municipio {
3330        ibge_code: 2303659,
3331        name: "Catunda",
3332        state: State::CE,
3333    },
3334    Municipio {
3335        ibge_code: 2303709,
3336        name: "Caucaia",
3337        state: State::CE,
3338    },
3339    Municipio {
3340        ibge_code: 2303808,
3341        name: "Cedro",
3342        state: State::CE,
3343    },
3344    Municipio {
3345        ibge_code: 2303907,
3346        name: "Chaval",
3347        state: State::CE,
3348    },
3349    Municipio {
3350        ibge_code: 2303956,
3351        name: "Chorozinho",
3352        state: State::CE,
3353    },
3354    Municipio {
3355        ibge_code: 2303931,
3356        name: "Choró",
3357        state: State::CE,
3358    },
3359    Municipio {
3360        ibge_code: 2304004,
3361        name: "Coreaú",
3362        state: State::CE,
3363    },
3364    Municipio {
3365        ibge_code: 2304103,
3366        name: "Crateús",
3367        state: State::CE,
3368    },
3369    Municipio {
3370        ibge_code: 2304202,
3371        name: "Crato",
3372        state: State::CE,
3373    },
3374    Municipio {
3375        ibge_code: 2304236,
3376        name: "Croatá",
3377        state: State::CE,
3378    },
3379    Municipio {
3380        ibge_code: 2304251,
3381        name: "Cruz",
3382        state: State::CE,
3383    },
3384    Municipio {
3385        ibge_code: 2304269,
3386        name: "Deputado Irapuan Pinheiro",
3387        state: State::CE,
3388    },
3389    Municipio {
3390        ibge_code: 2304277,
3391        name: "Ereré",
3392        state: State::CE,
3393    },
3394    Municipio {
3395        ibge_code: 2304285,
3396        name: "Eusébio",
3397        state: State::CE,
3398    },
3399    Municipio {
3400        ibge_code: 2304301,
3401        name: "Farias Brito",
3402        state: State::CE,
3403    },
3404    Municipio {
3405        ibge_code: 2304350,
3406        name: "Forquilha",
3407        state: State::CE,
3408    },
3409    Municipio {
3410        ibge_code: 2304400,
3411        name: "Fortaleza",
3412        state: State::CE,
3413    },
3414    Municipio {
3415        ibge_code: 2304459,
3416        name: "Fortim",
3417        state: State::CE,
3418    },
3419    Municipio {
3420        ibge_code: 2304509,
3421        name: "Frecheirinha",
3422        state: State::CE,
3423    },
3424    Municipio {
3425        ibge_code: 2304608,
3426        name: "General Sampaio",
3427        state: State::CE,
3428    },
3429    Municipio {
3430        ibge_code: 2304707,
3431        name: "Granja",
3432        state: State::CE,
3433    },
3434    Municipio {
3435        ibge_code: 2304806,
3436        name: "Granjeiro",
3437        state: State::CE,
3438    },
3439    Municipio {
3440        ibge_code: 2304657,
3441        name: "Graça",
3442        state: State::CE,
3443    },
3444    Municipio {
3445        ibge_code: 2304905,
3446        name: "Groaíras",
3447        state: State::CE,
3448    },
3449    Municipio {
3450        ibge_code: 2304954,
3451        name: "Guaiúba",
3452        state: State::CE,
3453    },
3454    Municipio {
3455        ibge_code: 2305001,
3456        name: "Guaraciaba do Norte",
3457        state: State::CE,
3458    },
3459    Municipio {
3460        ibge_code: 2305100,
3461        name: "Guaramiranga",
3462        state: State::CE,
3463    },
3464    Municipio {
3465        ibge_code: 2305209,
3466        name: "Hidrolândia",
3467        state: State::CE,
3468    },
3469    Municipio {
3470        ibge_code: 2305233,
3471        name: "Horizonte",
3472        state: State::CE,
3473    },
3474    Municipio {
3475        ibge_code: 2305266,
3476        name: "Ibaretama",
3477        state: State::CE,
3478    },
3479    Municipio {
3480        ibge_code: 2305308,
3481        name: "Ibiapina",
3482        state: State::CE,
3483    },
3484    Municipio {
3485        ibge_code: 2305332,
3486        name: "Ibicuitinga",
3487        state: State::CE,
3488    },
3489    Municipio {
3490        ibge_code: 2305357,
3491        name: "Icapuí",
3492        state: State::CE,
3493    },
3494    Municipio {
3495        ibge_code: 2305407,
3496        name: "Icó",
3497        state: State::CE,
3498    },
3499    Municipio {
3500        ibge_code: 2305506,
3501        name: "Iguatu",
3502        state: State::CE,
3503    },
3504    Municipio {
3505        ibge_code: 2305605,
3506        name: "Independência",
3507        state: State::CE,
3508    },
3509    Municipio {
3510        ibge_code: 2305654,
3511        name: "Ipaporanga",
3512        state: State::CE,
3513    },
3514    Municipio {
3515        ibge_code: 2305704,
3516        name: "Ipaumirim",
3517        state: State::CE,
3518    },
3519    Municipio {
3520        ibge_code: 2305803,
3521        name: "Ipu",
3522        state: State::CE,
3523    },
3524    Municipio {
3525        ibge_code: 2305902,
3526        name: "Ipueiras",
3527        state: State::CE,
3528    },
3529    Municipio {
3530        ibge_code: 2306009,
3531        name: "Iracema",
3532        state: State::CE,
3533    },
3534    Municipio {
3535        ibge_code: 2306108,
3536        name: "Irauçuba",
3537        state: State::CE,
3538    },
3539    Municipio {
3540        ibge_code: 2306256,
3541        name: "Itaitinga",
3542        state: State::CE,
3543    },
3544    Municipio {
3545        ibge_code: 2306207,
3546        name: "Itaiçaba",
3547        state: State::CE,
3548    },
3549    Municipio {
3550        ibge_code: 2306306,
3551        name: "Itapajé",
3552        state: State::CE,
3553    },
3554    Municipio {
3555        ibge_code: 2306405,
3556        name: "Itapipoca",
3557        state: State::CE,
3558    },
3559    Municipio {
3560        ibge_code: 2306504,
3561        name: "Itapiúna",
3562        state: State::CE,
3563    },
3564    Municipio {
3565        ibge_code: 2306553,
3566        name: "Itarema",
3567        state: State::CE,
3568    },
3569    Municipio {
3570        ibge_code: 2306603,
3571        name: "Itatira",
3572        state: State::CE,
3573    },
3574    Municipio {
3575        ibge_code: 2306702,
3576        name: "Jaguaretama",
3577        state: State::CE,
3578    },
3579    Municipio {
3580        ibge_code: 2306801,
3581        name: "Jaguaribara",
3582        state: State::CE,
3583    },
3584    Municipio {
3585        ibge_code: 2306900,
3586        name: "Jaguaribe",
3587        state: State::CE,
3588    },
3589    Municipio {
3590        ibge_code: 2307007,
3591        name: "Jaguaruana",
3592        state: State::CE,
3593    },
3594    Municipio {
3595        ibge_code: 2307106,
3596        name: "Jardim",
3597        state: State::CE,
3598    },
3599    Municipio {
3600        ibge_code: 2307205,
3601        name: "Jati",
3602        state: State::CE,
3603    },
3604    Municipio {
3605        ibge_code: 2307254,
3606        name: "Jijoca de Jericoacoara",
3607        state: State::CE,
3608    },
3609    Municipio {
3610        ibge_code: 2307304,
3611        name: "Juazeiro do Norte",
3612        state: State::CE,
3613    },
3614    Municipio {
3615        ibge_code: 2307403,
3616        name: "Jucás",
3617        state: State::CE,
3618    },
3619    Municipio {
3620        ibge_code: 2307502,
3621        name: "Lavras da Mangabeira",
3622        state: State::CE,
3623    },
3624    Municipio {
3625        ibge_code: 2307601,
3626        name: "Limoeiro do Norte",
3627        state: State::CE,
3628    },
3629    Municipio {
3630        ibge_code: 2307635,
3631        name: "Madalena",
3632        state: State::CE,
3633    },
3634    Municipio {
3635        ibge_code: 2307650,
3636        name: "Maracanaú",
3637        state: State::CE,
3638    },
3639    Municipio {
3640        ibge_code: 2307700,
3641        name: "Maranguape",
3642        state: State::CE,
3643    },
3644    Municipio {
3645        ibge_code: 2307809,
3646        name: "Marco",
3647        state: State::CE,
3648    },
3649    Municipio {
3650        ibge_code: 2307908,
3651        name: "Martinópole",
3652        state: State::CE,
3653    },
3654    Municipio {
3655        ibge_code: 2308005,
3656        name: "Massapê",
3657        state: State::CE,
3658    },
3659    Municipio {
3660        ibge_code: 2308104,
3661        name: "Mauriti",
3662        state: State::CE,
3663    },
3664    Municipio {
3665        ibge_code: 2308203,
3666        name: "Meruoca",
3667        state: State::CE,
3668    },
3669    Municipio {
3670        ibge_code: 2308302,
3671        name: "Milagres",
3672        state: State::CE,
3673    },
3674    Municipio {
3675        ibge_code: 2308351,
3676        name: "Milhã",
3677        state: State::CE,
3678    },
3679    Municipio {
3680        ibge_code: 2308377,
3681        name: "Miraíma",
3682        state: State::CE,
3683    },
3684    Municipio {
3685        ibge_code: 2308401,
3686        name: "Missão Velha",
3687        state: State::CE,
3688    },
3689    Municipio {
3690        ibge_code: 2308500,
3691        name: "Mombaça",
3692        state: State::CE,
3693    },
3694    Municipio {
3695        ibge_code: 2308609,
3696        name: "Monsenhor Tabosa",
3697        state: State::CE,
3698    },
3699    Municipio {
3700        ibge_code: 2308708,
3701        name: "Morada Nova",
3702        state: State::CE,
3703    },
3704    Municipio {
3705        ibge_code: 2308807,
3706        name: "Moraújo",
3707        state: State::CE,
3708    },
3709    Municipio {
3710        ibge_code: 2308906,
3711        name: "Morrinhos",
3712        state: State::CE,
3713    },
3714    Municipio {
3715        ibge_code: 2309003,
3716        name: "Mucambo",
3717        state: State::CE,
3718    },
3719    Municipio {
3720        ibge_code: 2309102,
3721        name: "Mulungu",
3722        state: State::CE,
3723    },
3724    Municipio {
3725        ibge_code: 2309201,
3726        name: "Nova Olinda",
3727        state: State::CE,
3728    },
3729    Municipio {
3730        ibge_code: 2309300,
3731        name: "Nova Russas",
3732        state: State::CE,
3733    },
3734    Municipio {
3735        ibge_code: 2309409,
3736        name: "Novo Oriente",
3737        state: State::CE,
3738    },
3739    Municipio {
3740        ibge_code: 2309458,
3741        name: "Ocara",
3742        state: State::CE,
3743    },
3744    Municipio {
3745        ibge_code: 2309508,
3746        name: "Orós",
3747        state: State::CE,
3748    },
3749    Municipio {
3750        ibge_code: 2309607,
3751        name: "Pacajus",
3752        state: State::CE,
3753    },
3754    Municipio {
3755        ibge_code: 2309706,
3756        name: "Pacatuba",
3757        state: State::CE,
3758    },
3759    Municipio {
3760        ibge_code: 2309805,
3761        name: "Pacoti",
3762        state: State::CE,
3763    },
3764    Municipio {
3765        ibge_code: 2309904,
3766        name: "Pacujá",
3767        state: State::CE,
3768    },
3769    Municipio {
3770        ibge_code: 2310001,
3771        name: "Palhano",
3772        state: State::CE,
3773    },
3774    Municipio {
3775        ibge_code: 2310100,
3776        name: "Palmácia",
3777        state: State::CE,
3778    },
3779    Municipio {
3780        ibge_code: 2310209,
3781        name: "Paracuru",
3782        state: State::CE,
3783    },
3784    Municipio {
3785        ibge_code: 2310258,
3786        name: "Paraipaba",
3787        state: State::CE,
3788    },
3789    Municipio {
3790        ibge_code: 2310308,
3791        name: "Parambu",
3792        state: State::CE,
3793    },
3794    Municipio {
3795        ibge_code: 2310407,
3796        name: "Paramoti",
3797        state: State::CE,
3798    },
3799    Municipio {
3800        ibge_code: 2310506,
3801        name: "Pedra Branca",
3802        state: State::CE,
3803    },
3804    Municipio {
3805        ibge_code: 2310605,
3806        name: "Penaforte",
3807        state: State::CE,
3808    },
3809    Municipio {
3810        ibge_code: 2310704,
3811        name: "Pentecoste",
3812        state: State::CE,
3813    },
3814    Municipio {
3815        ibge_code: 2310803,
3816        name: "Pereiro",
3817        state: State::CE,
3818    },
3819    Municipio {
3820        ibge_code: 2310852,
3821        name: "Pindoretama",
3822        state: State::CE,
3823    },
3824    Municipio {
3825        ibge_code: 2310902,
3826        name: "Piquet Carneiro",
3827        state: State::CE,
3828    },
3829    Municipio {
3830        ibge_code: 2310951,
3831        name: "Pires Ferreira",
3832        state: State::CE,
3833    },
3834    Municipio {
3835        ibge_code: 2311009,
3836        name: "Poranga",
3837        state: State::CE,
3838    },
3839    Municipio {
3840        ibge_code: 2311108,
3841        name: "Porteiras",
3842        state: State::CE,
3843    },
3844    Municipio {
3845        ibge_code: 2311207,
3846        name: "Potengi",
3847        state: State::CE,
3848    },
3849    Municipio {
3850        ibge_code: 2311231,
3851        name: "Potiretama",
3852        state: State::CE,
3853    },
3854    Municipio {
3855        ibge_code: 2311264,
3856        name: "Quiterianópolis",
3857        state: State::CE,
3858    },
3859    Municipio {
3860        ibge_code: 2311306,
3861        name: "Quixadá",
3862        state: State::CE,
3863    },
3864    Municipio {
3865        ibge_code: 2311355,
3866        name: "Quixelô",
3867        state: State::CE,
3868    },
3869    Municipio {
3870        ibge_code: 2311405,
3871        name: "Quixeramobim",
3872        state: State::CE,
3873    },
3874    Municipio {
3875        ibge_code: 2311504,
3876        name: "Quixeré",
3877        state: State::CE,
3878    },
3879    Municipio {
3880        ibge_code: 2311603,
3881        name: "Redenção",
3882        state: State::CE,
3883    },
3884    Municipio {
3885        ibge_code: 2311702,
3886        name: "Reriutaba",
3887        state: State::CE,
3888    },
3889    Municipio {
3890        ibge_code: 2311801,
3891        name: "Russas",
3892        state: State::CE,
3893    },
3894    Municipio {
3895        ibge_code: 2311900,
3896        name: "Saboeiro",
3897        state: State::CE,
3898    },
3899    Municipio {
3900        ibge_code: 2311959,
3901        name: "Salitre",
3902        state: State::CE,
3903    },
3904    Municipio {
3905        ibge_code: 2312205,
3906        name: "Santa Quitéria",
3907        state: State::CE,
3908    },
3909    Municipio {
3910        ibge_code: 2312007,
3911        name: "Santana do Acaraú",
3912        state: State::CE,
3913    },
3914    Municipio {
3915        ibge_code: 2312106,
3916        name: "Santana do Cariri",
3917        state: State::CE,
3918    },
3919    Municipio {
3920        ibge_code: 2312700,
3921        name: "Senador Pompeu",
3922        state: State::CE,
3923    },
3924    Municipio {
3925        ibge_code: 2312809,
3926        name: "Senador Sá",
3927        state: State::CE,
3928    },
3929    Municipio {
3930        ibge_code: 2312908,
3931        name: "Sobral",
3932        state: State::CE,
3933    },
3934    Municipio {
3935        ibge_code: 2313005,
3936        name: "Solonópole",
3937        state: State::CE,
3938    },
3939    Municipio {
3940        ibge_code: 2312304,
3941        name: "São Benedito",
3942        state: State::CE,
3943    },
3944    Municipio {
3945        ibge_code: 2312403,
3946        name: "São Gonçalo do Amarante",
3947        state: State::CE,
3948    },
3949    Municipio {
3950        ibge_code: 2312502,
3951        name: "São João do Jaguaribe",
3952        state: State::CE,
3953    },
3954    Municipio {
3955        ibge_code: 2312601,
3956        name: "São Luís do Curu",
3957        state: State::CE,
3958    },
3959    Municipio {
3960        ibge_code: 2313104,
3961        name: "Tabuleiro do Norte",
3962        state: State::CE,
3963    },
3964    Municipio {
3965        ibge_code: 2313203,
3966        name: "Tamboril",
3967        state: State::CE,
3968    },
3969    Municipio {
3970        ibge_code: 2313252,
3971        name: "Tarrafas",
3972        state: State::CE,
3973    },
3974    Municipio {
3975        ibge_code: 2313302,
3976        name: "Tauá",
3977        state: State::CE,
3978    },
3979    Municipio {
3980        ibge_code: 2313351,
3981        name: "Tejuçuoca",
3982        state: State::CE,
3983    },
3984    Municipio {
3985        ibge_code: 2313401,
3986        name: "Tianguá",
3987        state: State::CE,
3988    },
3989    Municipio {
3990        ibge_code: 2313500,
3991        name: "Trairi",
3992        state: State::CE,
3993    },
3994    Municipio {
3995        ibge_code: 2313559,
3996        name: "Tururu",
3997        state: State::CE,
3998    },
3999    Municipio {
4000        ibge_code: 2313609,
4001        name: "Ubajara",
4002        state: State::CE,
4003    },
4004    Municipio {
4005        ibge_code: 2313708,
4006        name: "Umari",
4007        state: State::CE,
4008    },
4009    Municipio {
4010        ibge_code: 2313757,
4011        name: "Umirim",
4012        state: State::CE,
4013    },
4014    Municipio {
4015        ibge_code: 2313807,
4016        name: "Uruburetama",
4017        state: State::CE,
4018    },
4019    Municipio {
4020        ibge_code: 2313906,
4021        name: "Uruoca",
4022        state: State::CE,
4023    },
4024    Municipio {
4025        ibge_code: 2313955,
4026        name: "Varjota",
4027        state: State::CE,
4028    },
4029    Municipio {
4030        ibge_code: 2314102,
4031        name: "Viçosa do Ceará",
4032        state: State::CE,
4033    },
4034    Municipio {
4035        ibge_code: 2314003,
4036        name: "Várzea Alegre",
4037        state: State::CE,
4038    },
4039    Municipio {
4040        ibge_code: 5300108,
4041        name: "Brasília",
4042        state: State::DF,
4043    },
4044    Municipio {
4045        ibge_code: 3200102,
4046        name: "Afonso Cláudio",
4047        state: State::ES,
4048    },
4049    Municipio {
4050        ibge_code: 3200201,
4051        name: "Alegre",
4052        state: State::ES,
4053    },
4054    Municipio {
4055        ibge_code: 3200300,
4056        name: "Alfredo Chaves",
4057        state: State::ES,
4058    },
4059    Municipio {
4060        ibge_code: 3200359,
4061        name: "Alto Rio Novo",
4062        state: State::ES,
4063    },
4064    Municipio {
4065        ibge_code: 3200409,
4066        name: "Anchieta",
4067        state: State::ES,
4068    },
4069    Municipio {
4070        ibge_code: 3200508,
4071        name: "Apiacá",
4072        state: State::ES,
4073    },
4074    Municipio {
4075        ibge_code: 3200607,
4076        name: "Aracruz",
4077        state: State::ES,
4078    },
4079    Municipio {
4080        ibge_code: 3200706,
4081        name: "Atílio Vivácqua",
4082        state: State::ES,
4083    },
4084    Municipio {
4085        ibge_code: 3200805,
4086        name: "Baixo Guandu",
4087        state: State::ES,
4088    },
4089    Municipio {
4090        ibge_code: 3200904,
4091        name: "Barra de São Francisco",
4092        state: State::ES,
4093    },
4094    Municipio {
4095        ibge_code: 3201001,
4096        name: "Boa Esperança",
4097        state: State::ES,
4098    },
4099    Municipio {
4100        ibge_code: 3201100,
4101        name: "Bom Jesus do Norte",
4102        state: State::ES,
4103    },
4104    Municipio {
4105        ibge_code: 3201159,
4106        name: "Brejetuba",
4107        state: State::ES,
4108    },
4109    Municipio {
4110        ibge_code: 3201209,
4111        name: "Cachoeiro de Itapemirim",
4112        state: State::ES,
4113    },
4114    Municipio {
4115        ibge_code: 3201308,
4116        name: "Cariacica",
4117        state: State::ES,
4118    },
4119    Municipio {
4120        ibge_code: 3201407,
4121        name: "Castelo",
4122        state: State::ES,
4123    },
4124    Municipio {
4125        ibge_code: 3201506,
4126        name: "Colatina",
4127        state: State::ES,
4128    },
4129    Municipio {
4130        ibge_code: 3201605,
4131        name: "Conceição da Barra",
4132        state: State::ES,
4133    },
4134    Municipio {
4135        ibge_code: 3201704,
4136        name: "Conceição do Castelo",
4137        state: State::ES,
4138    },
4139    Municipio {
4140        ibge_code: 3201803,
4141        name: "Divino de São Lourenço",
4142        state: State::ES,
4143    },
4144    Municipio {
4145        ibge_code: 3201902,
4146        name: "Domingos Martins",
4147        state: State::ES,
4148    },
4149    Municipio {
4150        ibge_code: 3202009,
4151        name: "Dores do Rio Preto",
4152        state: State::ES,
4153    },
4154    Municipio {
4155        ibge_code: 3202108,
4156        name: "Ecoporanga",
4157        state: State::ES,
4158    },
4159    Municipio {
4160        ibge_code: 3202207,
4161        name: "Fundão",
4162        state: State::ES,
4163    },
4164    Municipio {
4165        ibge_code: 3202256,
4166        name: "Governador Lindenberg",
4167        state: State::ES,
4168    },
4169    Municipio {
4170        ibge_code: 3202405,
4171        name: "Guarapari",
4172        state: State::ES,
4173    },
4174    Municipio {
4175        ibge_code: 3202306,
4176        name: "Guaçuí",
4177        state: State::ES,
4178    },
4179    Municipio {
4180        ibge_code: 3202454,
4181        name: "Ibatiba",
4182        state: State::ES,
4183    },
4184    Municipio {
4185        ibge_code: 3202504,
4186        name: "Ibiraçu",
4187        state: State::ES,
4188    },
4189    Municipio {
4190        ibge_code: 3202553,
4191        name: "Ibitirama",
4192        state: State::ES,
4193    },
4194    Municipio {
4195        ibge_code: 3202603,
4196        name: "Iconha",
4197        state: State::ES,
4198    },
4199    Municipio {
4200        ibge_code: 3202652,
4201        name: "Irupi",
4202        state: State::ES,
4203    },
4204    Municipio {
4205        ibge_code: 3202702,
4206        name: "Itaguaçu",
4207        state: State::ES,
4208    },
4209    Municipio {
4210        ibge_code: 3202801,
4211        name: "Itapemirim",
4212        state: State::ES,
4213    },
4214    Municipio {
4215        ibge_code: 3202900,
4216        name: "Itarana",
4217        state: State::ES,
4218    },
4219    Municipio {
4220        ibge_code: 3203007,
4221        name: "Iúna",
4222        state: State::ES,
4223    },
4224    Municipio {
4225        ibge_code: 3203056,
4226        name: "Jaguaré",
4227        state: State::ES,
4228    },
4229    Municipio {
4230        ibge_code: 3203106,
4231        name: "Jerônimo Monteiro",
4232        state: State::ES,
4233    },
4234    Municipio {
4235        ibge_code: 3203130,
4236        name: "João Neiva",
4237        state: State::ES,
4238    },
4239    Municipio {
4240        ibge_code: 3203163,
4241        name: "Laranja da Terra",
4242        state: State::ES,
4243    },
4244    Municipio {
4245        ibge_code: 3203205,
4246        name: "Linhares",
4247        state: State::ES,
4248    },
4249    Municipio {
4250        ibge_code: 3203304,
4251        name: "Mantenópolis",
4252        state: State::ES,
4253    },
4254    Municipio {
4255        ibge_code: 3203320,
4256        name: "Marataízes",
4257        state: State::ES,
4258    },
4259    Municipio {
4260        ibge_code: 3203346,
4261        name: "Marechal Floriano",
4262        state: State::ES,
4263    },
4264    Municipio {
4265        ibge_code: 3203353,
4266        name: "Marilândia",
4267        state: State::ES,
4268    },
4269    Municipio {
4270        ibge_code: 3203403,
4271        name: "Mimoso do Sul",
4272        state: State::ES,
4273    },
4274    Municipio {
4275        ibge_code: 3203502,
4276        name: "Montanha",
4277        state: State::ES,
4278    },
4279    Municipio {
4280        ibge_code: 3203601,
4281        name: "Mucurici",
4282        state: State::ES,
4283    },
4284    Municipio {
4285        ibge_code: 3203700,
4286        name: "Muniz Freire",
4287        state: State::ES,
4288    },
4289    Municipio {
4290        ibge_code: 3203809,
4291        name: "Muqui",
4292        state: State::ES,
4293    },
4294    Municipio {
4295        ibge_code: 3203908,
4296        name: "Nova Venécia",
4297        state: State::ES,
4298    },
4299    Municipio {
4300        ibge_code: 3204005,
4301        name: "Pancas",
4302        state: State::ES,
4303    },
4304    Municipio {
4305        ibge_code: 3204054,
4306        name: "Pedro Canário",
4307        state: State::ES,
4308    },
4309    Municipio {
4310        ibge_code: 3204104,
4311        name: "Pinheiros",
4312        state: State::ES,
4313    },
4314    Municipio {
4315        ibge_code: 3204203,
4316        name: "Piúma",
4317        state: State::ES,
4318    },
4319    Municipio {
4320        ibge_code: 3204252,
4321        name: "Ponto Belo",
4322        state: State::ES,
4323    },
4324    Municipio {
4325        ibge_code: 3204302,
4326        name: "Presidente Kennedy",
4327        state: State::ES,
4328    },
4329    Municipio {
4330        ibge_code: 3204351,
4331        name: "Rio Bananal",
4332        state: State::ES,
4333    },
4334    Municipio {
4335        ibge_code: 3204401,
4336        name: "Rio Novo do Sul",
4337        state: State::ES,
4338    },
4339    Municipio {
4340        ibge_code: 3204500,
4341        name: "Santa Leopoldina",
4342        state: State::ES,
4343    },
4344    Municipio {
4345        ibge_code: 3204559,
4346        name: "Santa Maria de Jetibá",
4347        state: State::ES,
4348    },
4349    Municipio {
4350        ibge_code: 3204609,
4351        name: "Santa Teresa",
4352        state: State::ES,
4353    },
4354    Municipio {
4355        ibge_code: 3205002,
4356        name: "Serra",
4357        state: State::ES,
4358    },
4359    Municipio {
4360        ibge_code: 3205010,
4361        name: "Sooretama",
4362        state: State::ES,
4363    },
4364    Municipio {
4365        ibge_code: 3204658,
4366        name: "São Domingos do Norte",
4367        state: State::ES,
4368    },
4369    Municipio {
4370        ibge_code: 3204708,
4371        name: "São Gabriel da Palha",
4372        state: State::ES,
4373    },
4374    Municipio {
4375        ibge_code: 3204807,
4376        name: "São José do Calçado",
4377        state: State::ES,
4378    },
4379    Municipio {
4380        ibge_code: 3204906,
4381        name: "São Mateus",
4382        state: State::ES,
4383    },
4384    Municipio {
4385        ibge_code: 3204955,
4386        name: "São Roque do Canaã",
4387        state: State::ES,
4388    },
4389    Municipio {
4390        ibge_code: 3205036,
4391        name: "Vargem Alta",
4392        state: State::ES,
4393    },
4394    Municipio {
4395        ibge_code: 3205069,
4396        name: "Venda Nova do Imigrante",
4397        state: State::ES,
4398    },
4399    Municipio {
4400        ibge_code: 3205101,
4401        name: "Viana",
4402        state: State::ES,
4403    },
4404    Municipio {
4405        ibge_code: 3205150,
4406        name: "Vila Pavão",
4407        state: State::ES,
4408    },
4409    Municipio {
4410        ibge_code: 3205176,
4411        name: "Vila Valério",
4412        state: State::ES,
4413    },
4414    Municipio {
4415        ibge_code: 3205200,
4416        name: "Vila Velha",
4417        state: State::ES,
4418    },
4419    Municipio {
4420        ibge_code: 3205309,
4421        name: "Vitória",
4422        state: State::ES,
4423    },
4424    Municipio {
4425        ibge_code: 3200169,
4426        name: "Água Doce do Norte",
4427        state: State::ES,
4428    },
4429    Municipio {
4430        ibge_code: 3200136,
4431        name: "Águia Branca",
4432        state: State::ES,
4433    },
4434    Municipio {
4435        ibge_code: 5200050,
4436        name: "Abadia de Goiás",
4437        state: State::GO,
4438    },
4439    Municipio {
4440        ibge_code: 5200100,
4441        name: "Abadiânia",
4442        state: State::GO,
4443    },
4444    Municipio {
4445        ibge_code: 5200134,
4446        name: "Acreúna",
4447        state: State::GO,
4448    },
4449    Municipio {
4450        ibge_code: 5200159,
4451        name: "Adelândia",
4452        state: State::GO,
4453    },
4454    Municipio {
4455        ibge_code: 5200308,
4456        name: "Alexânia",
4457        state: State::GO,
4458    },
4459    Municipio {
4460        ibge_code: 5200506,
4461        name: "Aloândia",
4462        state: State::GO,
4463    },
4464    Municipio {
4465        ibge_code: 5200555,
4466        name: "Alto Horizonte",
4467        state: State::GO,
4468    },
4469    Municipio {
4470        ibge_code: 5200605,
4471        name: "Alto Paraíso de Goiás",
4472        state: State::GO,
4473    },
4474    Municipio {
4475        ibge_code: 5200803,
4476        name: "Alvorada do Norte",
4477        state: State::GO,
4478    },
4479    Municipio {
4480        ibge_code: 5200829,
4481        name: "Amaralina",
4482        state: State::GO,
4483    },
4484    Municipio {
4485        ibge_code: 5200852,
4486        name: "Americano do Brasil",
4487        state: State::GO,
4488    },
4489    Municipio {
4490        ibge_code: 5200902,
4491        name: "Amorinópolis",
4492        state: State::GO,
4493    },
4494    Municipio {
4495        ibge_code: 5201207,
4496        name: "Anhanguera",
4497        state: State::GO,
4498    },
4499    Municipio {
4500        ibge_code: 5201306,
4501        name: "Anicuns",
4502        state: State::GO,
4503    },
4504    Municipio {
4505        ibge_code: 5201108,
4506        name: "Anápolis",
4507        state: State::GO,
4508    },
4509    Municipio {
4510        ibge_code: 5201405,
4511        name: "Aparecida de Goiânia",
4512        state: State::GO,
4513    },
4514    Municipio {
4515        ibge_code: 5201454,
4516        name: "Aparecida do Rio Doce",
4517        state: State::GO,
4518    },
4519    Municipio {
4520        ibge_code: 5201504,
4521        name: "Aporé",
4522        state: State::GO,
4523    },
4524    Municipio {
4525        ibge_code: 5201702,
4526        name: "Aragarças",
4527        state: State::GO,
4528    },
4529    Municipio {
4530        ibge_code: 5201801,
4531        name: "Aragoiânia",
4532        state: State::GO,
4533    },
4534    Municipio {
4535        ibge_code: 5202155,
4536        name: "Araguapaz",
4537        state: State::GO,
4538    },
4539    Municipio {
4540        ibge_code: 5201603,
4541        name: "Araçu",
4542        state: State::GO,
4543    },
4544    Municipio {
4545        ibge_code: 5202353,
4546        name: "Arenópolis",
4547        state: State::GO,
4548    },
4549    Municipio {
4550        ibge_code: 5202502,
4551        name: "Aruanã",
4552        state: State::GO,
4553    },
4554    Municipio {
4555        ibge_code: 5202601,
4556        name: "Aurilândia",
4557        state: State::GO,
4558    },
4559    Municipio {
4560        ibge_code: 5202809,
4561        name: "Avelinópolis",
4562        state: State::GO,
4563    },
4564    Municipio {
4565        ibge_code: 5203104,
4566        name: "Baliza",
4567        state: State::GO,
4568    },
4569    Municipio {
4570        ibge_code: 5203203,
4571        name: "Barro Alto",
4572        state: State::GO,
4573    },
4574    Municipio {
4575        ibge_code: 5203302,
4576        name: "Bela Vista de Goiás",
4577        state: State::GO,
4578    },
4579    Municipio {
4580        ibge_code: 5203401,
4581        name: "Bom Jardim de Goiás",
4582        state: State::GO,
4583    },
4584    Municipio {
4585        ibge_code: 5203500,
4586        name: "Bom Jesus de Goiás",
4587        state: State::GO,
4588    },
4589    Municipio {
4590        ibge_code: 5203559,
4591        name: "Bonfinópolis",
4592        state: State::GO,
4593    },
4594    Municipio {
4595        ibge_code: 5203575,
4596        name: "Bonópolis",
4597        state: State::GO,
4598    },
4599    Municipio {
4600        ibge_code: 5203609,
4601        name: "Brazabrantes",
4602        state: State::GO,
4603    },
4604    Municipio {
4605        ibge_code: 5203807,
4606        name: "Britânia",
4607        state: State::GO,
4608    },
4609    Municipio {
4610        ibge_code: 5203906,
4611        name: "Buriti Alegre",
4612        state: State::GO,
4613    },
4614    Municipio {
4615        ibge_code: 5203939,
4616        name: "Buriti de Goiás",
4617        state: State::GO,
4618    },
4619    Municipio {
4620        ibge_code: 5203962,
4621        name: "Buritinópolis",
4622        state: State::GO,
4623    },
4624    Municipio {
4625        ibge_code: 5204003,
4626        name: "Cabeceiras",
4627        state: State::GO,
4628    },
4629    Municipio {
4630        ibge_code: 5204102,
4631        name: "Cachoeira Alta",
4632        state: State::GO,
4633    },
4634    Municipio {
4635        ibge_code: 5204250,
4636        name: "Cachoeira Dourada",
4637        state: State::GO,
4638    },
4639    Municipio {
4640        ibge_code: 5204201,
4641        name: "Cachoeira de Goiás",
4642        state: State::GO,
4643    },
4644    Municipio {
4645        ibge_code: 5204409,
4646        name: "Caiapônia",
4647        state: State::GO,
4648    },
4649    Municipio {
4650        ibge_code: 5204508,
4651        name: "Caldas Novas",
4652        state: State::GO,
4653    },
4654    Municipio {
4655        ibge_code: 5204557,
4656        name: "Caldazinha",
4657        state: State::GO,
4658    },
4659    Municipio {
4660        ibge_code: 5204607,
4661        name: "Campestre de Goiás",
4662        state: State::GO,
4663    },
4664    Municipio {
4665        ibge_code: 5204656,
4666        name: "Campinaçu",
4667        state: State::GO,
4668    },
4669    Municipio {
4670        ibge_code: 5204706,
4671        name: "Campinorte",
4672        state: State::GO,
4673    },
4674    Municipio {
4675        ibge_code: 5204805,
4676        name: "Campo Alegre de Goiás",
4677        state: State::GO,
4678    },
4679    Municipio {
4680        ibge_code: 5204854,
4681        name: "Campo Limpo de Goiás",
4682        state: State::GO,
4683    },
4684    Municipio {
4685        ibge_code: 5204904,
4686        name: "Campos Belos",
4687        state: State::GO,
4688    },
4689    Municipio {
4690        ibge_code: 5204953,
4691        name: "Campos Verdes",
4692        state: State::GO,
4693    },
4694    Municipio {
4695        ibge_code: 5205000,
4696        name: "Carmo do Rio Verde",
4697        state: State::GO,
4698    },
4699    Municipio {
4700        ibge_code: 5205059,
4701        name: "Castelândia",
4702        state: State::GO,
4703    },
4704    Municipio {
4705        ibge_code: 5205109,
4706        name: "Catalão",
4707        state: State::GO,
4708    },
4709    Municipio {
4710        ibge_code: 5205208,
4711        name: "Caturaí",
4712        state: State::GO,
4713    },
4714    Municipio {
4715        ibge_code: 5205307,
4716        name: "Cavalcante",
4717        state: State::GO,
4718    },
4719    Municipio {
4720        ibge_code: 5204300,
4721        name: "Caçu",
4722        state: State::GO,
4723    },
4724    Municipio {
4725        ibge_code: 5205406,
4726        name: "Ceres",
4727        state: State::GO,
4728    },
4729    Municipio {
4730        ibge_code: 5205455,
4731        name: "Cezarina",
4732        state: State::GO,
4733    },
4734    Municipio {
4735        ibge_code: 5205471,
4736        name: "Chapadão do Céu",
4737        state: State::GO,
4738    },
4739    Municipio {
4740        ibge_code: 5205497,
4741        name: "Cidade Ocidental",
4742        state: State::GO,
4743    },
4744    Municipio {
4745        ibge_code: 5205513,
4746        name: "Cocalzinho de Goiás",
4747        state: State::GO,
4748    },
4749    Municipio {
4750        ibge_code: 5205521,
4751        name: "Colinas do Sul",
4752        state: State::GO,
4753    },
4754    Municipio {
4755        ibge_code: 5205901,
4756        name: "Corumbaíba",
4757        state: State::GO,
4758    },
4759    Municipio {
4760        ibge_code: 5205802,
4761        name: "Corumbá de Goiás",
4762        state: State::GO,
4763    },
4764    Municipio {
4765        ibge_code: 5206206,
4766        name: "Cristalina",
4767        state: State::GO,
4768    },
4769    Municipio {
4770        ibge_code: 5206305,
4771        name: "Cristianópolis",
4772        state: State::GO,
4773    },
4774    Municipio {
4775        ibge_code: 5206404,
4776        name: "Crixás",
4777        state: State::GO,
4778    },
4779    Municipio {
4780        ibge_code: 5206503,
4781        name: "Cromínia",
4782        state: State::GO,
4783    },
4784    Municipio {
4785        ibge_code: 5206602,
4786        name: "Cumari",
4787        state: State::GO,
4788    },
4789    Municipio {
4790        ibge_code: 5205703,
4791        name: "Córrego do Ouro",
4792        state: State::GO,
4793    },
4794    Municipio {
4795        ibge_code: 5206701,
4796        name: "Damianópolis",
4797        state: State::GO,
4798    },
4799    Municipio {
4800        ibge_code: 5206800,
4801        name: "Damolândia",
4802        state: State::GO,
4803    },
4804    Municipio {
4805        ibge_code: 5206909,
4806        name: "Davinópolis",
4807        state: State::GO,
4808    },
4809    Municipio {
4810        ibge_code: 5207105,
4811        name: "Diorama",
4812        state: State::GO,
4813    },
4814    Municipio {
4815        ibge_code: 5208301,
4816        name: "Divinópolis de Goiás",
4817        state: State::GO,
4818    },
4819    Municipio {
4820        ibge_code: 5207253,
4821        name: "Doverlândia",
4822        state: State::GO,
4823    },
4824    Municipio {
4825        ibge_code: 5207352,
4826        name: "Edealina",
4827        state: State::GO,
4828    },
4829    Municipio {
4830        ibge_code: 5207402,
4831        name: "Edéia",
4832        state: State::GO,
4833    },
4834    Municipio {
4835        ibge_code: 5207501,
4836        name: "Estrela do Norte",
4837        state: State::GO,
4838    },
4839    Municipio {
4840        ibge_code: 5207535,
4841        name: "Faina",
4842        state: State::GO,
4843    },
4844    Municipio {
4845        ibge_code: 5207600,
4846        name: "Fazenda Nova",
4847        state: State::GO,
4848    },
4849    Municipio {
4850        ibge_code: 5207808,
4851        name: "Firminópolis",
4852        state: State::GO,
4853    },
4854    Municipio {
4855        ibge_code: 5207907,
4856        name: "Flores de Goiás",
4857        state: State::GO,
4858    },
4859    Municipio {
4860        ibge_code: 5208004,
4861        name: "Formosa",
4862        state: State::GO,
4863    },
4864    Municipio {
4865        ibge_code: 5208103,
4866        name: "Formoso",
4867        state: State::GO,
4868    },
4869    Municipio {
4870        ibge_code: 5208152,
4871        name: "Gameleira de Goiás",
4872        state: State::GO,
4873    },
4874    Municipio {
4875        ibge_code: 5208509,
4876        name: "Goiandira",
4877        state: State::GO,
4878    },
4879    Municipio {
4880        ibge_code: 5208806,
4881        name: "Goianira",
4882        state: State::GO,
4883    },
4884    Municipio {
4885        ibge_code: 5208400,
4886        name: "Goianápolis",
4887        state: State::GO,
4888    },
4889    Municipio {
4890        ibge_code: 5208608,
4891        name: "Goianésia",
4892        state: State::GO,
4893    },
4894    Municipio {
4895        ibge_code: 5209101,
4896        name: "Goiatuba",
4897        state: State::GO,
4898    },
4899    Municipio {
4900        ibge_code: 5208905,
4901        name: "Goiás",
4902        state: State::GO,
4903    },
4904    Municipio {
4905        ibge_code: 5208707,
4906        name: "Goiânia",
4907        state: State::GO,
4908    },
4909    Municipio {
4910        ibge_code: 5209150,
4911        name: "Gouvelândia",
4912        state: State::GO,
4913    },
4914    Municipio {
4915        ibge_code: 5209200,
4916        name: "Guapó",
4917        state: State::GO,
4918    },
4919    Municipio {
4920        ibge_code: 5209408,
4921        name: "Guarani de Goiás",
4922        state: State::GO,
4923    },
4924    Municipio {
4925        ibge_code: 5209291,
4926        name: "Guaraíta",
4927        state: State::GO,
4928    },
4929    Municipio {
4930        ibge_code: 5209457,
4931        name: "Guarinos",
4932        state: State::GO,
4933    },
4934    Municipio {
4935        ibge_code: 5209606,
4936        name: "Heitoraí",
4937        state: State::GO,
4938    },
4939    Municipio {
4940        ibge_code: 5209804,
4941        name: "Hidrolina",
4942        state: State::GO,
4943    },
4944    Municipio {
4945        ibge_code: 5209705,
4946        name: "Hidrolândia",
4947        state: State::GO,
4948    },
4949    Municipio {
4950        ibge_code: 5209903,
4951        name: "Iaciara",
4952        state: State::GO,
4953    },
4954    Municipio {
4955        ibge_code: 5209937,
4956        name: "Inaciolândia",
4957        state: State::GO,
4958    },
4959    Municipio {
4960        ibge_code: 5209952,
4961        name: "Indiara",
4962        state: State::GO,
4963    },
4964    Municipio {
4965        ibge_code: 5210000,
4966        name: "Inhumas",
4967        state: State::GO,
4968    },
4969    Municipio {
4970        ibge_code: 5210109,
4971        name: "Ipameri",
4972        state: State::GO,
4973    },
4974    Municipio {
4975        ibge_code: 5210158,
4976        name: "Ipiranga de Goiás",
4977        state: State::GO,
4978    },
4979    Municipio {
4980        ibge_code: 5210208,
4981        name: "Iporá",
4982        state: State::GO,
4983    },
4984    Municipio {
4985        ibge_code: 5210307,
4986        name: "Israelândia",
4987        state: State::GO,
4988    },
4989    Municipio {
4990        ibge_code: 5210406,
4991        name: "Itaberaí",
4992        state: State::GO,
4993    },
4994    Municipio {
4995        ibge_code: 5210562,
4996        name: "Itaguari",
4997        state: State::GO,
4998    },
4999    Municipio {
5000        ibge_code: 5210604,
5001        name: "Itaguaru",
5002        state: State::GO,
5003    },
5004    Municipio {
5005        ibge_code: 5210802,
5006        name: "Itajá",
5007        state: State::GO,
5008    },
5009    Municipio {
5010        ibge_code: 5210901,
5011        name: "Itapaci",
5012        state: State::GO,
5013    },
5014    Municipio {
5015        ibge_code: 5211008,
5016        name: "Itapirapuã",
5017        state: State::GO,
5018    },
5019    Municipio {
5020        ibge_code: 5211206,
5021        name: "Itapuranga",
5022        state: State::GO,
5023    },
5024    Municipio {
5025        ibge_code: 5211305,
5026        name: "Itarumã",
5027        state: State::GO,
5028    },
5029    Municipio {
5030        ibge_code: 5211404,
5031        name: "Itauçu",
5032        state: State::GO,
5033    },
5034    Municipio {
5035        ibge_code: 5211503,
5036        name: "Itumbiara",
5037        state: State::GO,
5038    },
5039    Municipio {
5040        ibge_code: 5211602,
5041        name: "Ivolândia",
5042        state: State::GO,
5043    },
5044    Municipio {
5045        ibge_code: 5211701,
5046        name: "Jandaia",
5047        state: State::GO,
5048    },
5049    Municipio {
5050        ibge_code: 5211800,
5051        name: "Jaraguá",
5052        state: State::GO,
5053    },
5054    Municipio {
5055        ibge_code: 5211909,
5056        name: "Jataí",
5057        state: State::GO,
5058    },
5059    Municipio {
5060        ibge_code: 5212006,
5061        name: "Jaupaci",
5062        state: State::GO,
5063    },
5064    Municipio {
5065        ibge_code: 5212055,
5066        name: "Jesúpolis",
5067        state: State::GO,
5068    },
5069    Municipio {
5070        ibge_code: 5212105,
5071        name: "Joviânia",
5072        state: State::GO,
5073    },
5074    Municipio {
5075        ibge_code: 5212204,
5076        name: "Jussara",
5077        state: State::GO,
5078    },
5079    Municipio {
5080        ibge_code: 5212253,
5081        name: "Lagoa Santa",
5082        state: State::GO,
5083    },
5084    Municipio {
5085        ibge_code: 5212303,
5086        name: "Leopoldo de Bulhões",
5087        state: State::GO,
5088    },
5089    Municipio {
5090        ibge_code: 5212501,
5091        name: "Luziânia",
5092        state: State::GO,
5093    },
5094    Municipio {
5095        ibge_code: 5212600,
5096        name: "Mairipotaba",
5097        state: State::GO,
5098    },
5099    Municipio {
5100        ibge_code: 5212709,
5101        name: "Mambaí",
5102        state: State::GO,
5103    },
5104    Municipio {
5105        ibge_code: 5212808,
5106        name: "Mara Rosa",
5107        state: State::GO,
5108    },
5109    Municipio {
5110        ibge_code: 5212907,
5111        name: "Marzagão",
5112        state: State::GO,
5113    },
5114    Municipio {
5115        ibge_code: 5212956,
5116        name: "Matrinchã",
5117        state: State::GO,
5118    },
5119    Municipio {
5120        ibge_code: 5213004,
5121        name: "Maurilândia",
5122        state: State::GO,
5123    },
5124    Municipio {
5125        ibge_code: 5213053,
5126        name: "Mimoso de Goiás",
5127        state: State::GO,
5128    },
5129    Municipio {
5130        ibge_code: 5213087,
5131        name: "Minaçu",
5132        state: State::GO,
5133    },
5134    Municipio {
5135        ibge_code: 5213103,
5136        name: "Mineiros",
5137        state: State::GO,
5138    },
5139    Municipio {
5140        ibge_code: 5213400,
5141        name: "Moiporá",
5142        state: State::GO,
5143    },
5144    Municipio {
5145        ibge_code: 5213509,
5146        name: "Monte Alegre de Goiás",
5147        state: State::GO,
5148    },
5149    Municipio {
5150        ibge_code: 5213707,
5151        name: "Montes Claros de Goiás",
5152        state: State::GO,
5153    },
5154    Municipio {
5155        ibge_code: 5213756,
5156        name: "Montividiu",
5157        state: State::GO,
5158    },
5159    Municipio {
5160        ibge_code: 5213772,
5161        name: "Montividiu do Norte",
5162        state: State::GO,
5163    },
5164    Municipio {
5165        ibge_code: 5213806,
5166        name: "Morrinhos",
5167        state: State::GO,
5168    },
5169    Municipio {
5170        ibge_code: 5213855,
5171        name: "Morro Agudo de Goiás",
5172        state: State::GO,
5173    },
5174    Municipio {
5175        ibge_code: 5213905,
5176        name: "Mossâmedes",
5177        state: State::GO,
5178    },
5179    Municipio {
5180        ibge_code: 5214002,
5181        name: "Mozarlândia",
5182        state: State::GO,
5183    },
5184    Municipio {
5185        ibge_code: 5214051,
5186        name: "Mundo Novo",
5187        state: State::GO,
5188    },
5189    Municipio {
5190        ibge_code: 5214101,
5191        name: "Mutunópolis",
5192        state: State::GO,
5193    },
5194    Municipio {
5195        ibge_code: 5214408,
5196        name: "Nazário",
5197        state: State::GO,
5198    },
5199    Municipio {
5200        ibge_code: 5214507,
5201        name: "Nerópolis",
5202        state: State::GO,
5203    },
5204    Municipio {
5205        ibge_code: 5214606,
5206        name: "Niquelândia",
5207        state: State::GO,
5208    },
5209    Municipio {
5210        ibge_code: 5214705,
5211        name: "Nova América",
5212        state: State::GO,
5213    },
5214    Municipio {
5215        ibge_code: 5214804,
5216        name: "Nova Aurora",
5217        state: State::GO,
5218    },
5219    Municipio {
5220        ibge_code: 5214838,
5221        name: "Nova Crixás",
5222        state: State::GO,
5223    },
5224    Municipio {
5225        ibge_code: 5214861,
5226        name: "Nova Glória",
5227        state: State::GO,
5228    },
5229    Municipio {
5230        ibge_code: 5214879,
5231        name: "Nova Iguaçu de Goiás",
5232        state: State::GO,
5233    },
5234    Municipio {
5235        ibge_code: 5214903,
5236        name: "Nova Roma",
5237        state: State::GO,
5238    },
5239    Municipio {
5240        ibge_code: 5215009,
5241        name: "Nova Veneza",
5242        state: State::GO,
5243    },
5244    Municipio {
5245        ibge_code: 5215207,
5246        name: "Novo Brasil",
5247        state: State::GO,
5248    },
5249    Municipio {
5250        ibge_code: 5215231,
5251        name: "Novo Gama",
5252        state: State::GO,
5253    },
5254    Municipio {
5255        ibge_code: 5215256,
5256        name: "Novo Planalto",
5257        state: State::GO,
5258    },
5259    Municipio {
5260        ibge_code: 5215306,
5261        name: "Orizona",
5262        state: State::GO,
5263    },
5264    Municipio {
5265        ibge_code: 5215405,
5266        name: "Ouro Verde de Goiás",
5267        state: State::GO,
5268    },
5269    Municipio {
5270        ibge_code: 5215504,
5271        name: "Ouvidor",
5272        state: State::GO,
5273    },
5274    Municipio {
5275        ibge_code: 5215603,
5276        name: "Padre Bernardo",
5277        state: State::GO,
5278    },
5279    Municipio {
5280        ibge_code: 5215652,
5281        name: "Palestina de Goiás",
5282        state: State::GO,
5283    },
5284    Municipio {
5285        ibge_code: 5215702,
5286        name: "Palmeiras de Goiás",
5287        state: State::GO,
5288    },
5289    Municipio {
5290        ibge_code: 5215801,
5291        name: "Palmelo",
5292        state: State::GO,
5293    },
5294    Municipio {
5295        ibge_code: 5215900,
5296        name: "Palminópolis",
5297        state: State::GO,
5298    },
5299    Municipio {
5300        ibge_code: 5216007,
5301        name: "Panamá",
5302        state: State::GO,
5303    },
5304    Municipio {
5305        ibge_code: 5216304,
5306        name: "Paranaiguara",
5307        state: State::GO,
5308    },
5309    Municipio {
5310        ibge_code: 5216403,
5311        name: "Paraúna",
5312        state: State::GO,
5313    },
5314    Municipio {
5315        ibge_code: 5216452,
5316        name: "Perolândia",
5317        state: State::GO,
5318    },
5319    Municipio {
5320        ibge_code: 5216809,
5321        name: "Petrolina de Goiás",
5322        state: State::GO,
5323    },
5324    Municipio {
5325        ibge_code: 5216908,
5326        name: "Pilar de Goiás",
5327        state: State::GO,
5328    },
5329    Municipio {
5330        ibge_code: 5217104,
5331        name: "Piracanjuba",
5332        state: State::GO,
5333    },
5334    Municipio {
5335        ibge_code: 5217203,
5336        name: "Piranhas",
5337        state: State::GO,
5338    },
5339    Municipio {
5340        ibge_code: 5217302,
5341        name: "Pirenópolis",
5342        state: State::GO,
5343    },
5344    Municipio {
5345        ibge_code: 5217401,
5346        name: "Pires do Rio",
5347        state: State::GO,
5348    },
5349    Municipio {
5350        ibge_code: 5217609,
5351        name: "Planaltina",
5352        state: State::GO,
5353    },
5354    Municipio {
5355        ibge_code: 5217708,
5356        name: "Pontalina",
5357        state: State::GO,
5358    },
5359    Municipio {
5360        ibge_code: 5218003,
5361        name: "Porangatu",
5362        state: State::GO,
5363    },
5364    Municipio {
5365        ibge_code: 5218052,
5366        name: "Porteirão",
5367        state: State::GO,
5368    },
5369    Municipio {
5370        ibge_code: 5218102,
5371        name: "Portelândia",
5372        state: State::GO,
5373    },
5374    Municipio {
5375        ibge_code: 5218300,
5376        name: "Posse",
5377        state: State::GO,
5378    },
5379    Municipio {
5380        ibge_code: 5218391,
5381        name: "Professor Jamil",
5382        state: State::GO,
5383    },
5384    Municipio {
5385        ibge_code: 5218508,
5386        name: "Quirinópolis",
5387        state: State::GO,
5388    },
5389    Municipio {
5390        ibge_code: 5218607,
5391        name: "Rialma",
5392        state: State::GO,
5393    },
5394    Municipio {
5395        ibge_code: 5218706,
5396        name: "Rianápolis",
5397        state: State::GO,
5398    },
5399    Municipio {
5400        ibge_code: 5218789,
5401        name: "Rio Quente",
5402        state: State::GO,
5403    },
5404    Municipio {
5405        ibge_code: 5218805,
5406        name: "Rio Verde",
5407        state: State::GO,
5408    },
5409    Municipio {
5410        ibge_code: 5218904,
5411        name: "Rubiataba",
5412        state: State::GO,
5413    },
5414    Municipio {
5415        ibge_code: 5219001,
5416        name: "Sanclerlândia",
5417        state: State::GO,
5418    },
5419    Municipio {
5420        ibge_code: 5219100,
5421        name: "Santa Bárbara de Goiás",
5422        state: State::GO,
5423    },
5424    Municipio {
5425        ibge_code: 5219209,
5426        name: "Santa Cruz de Goiás",
5427        state: State::GO,
5428    },
5429    Municipio {
5430        ibge_code: 5219258,
5431        name: "Santa Fé de Goiás",
5432        state: State::GO,
5433    },
5434    Municipio {
5435        ibge_code: 5219308,
5436        name: "Santa Helena de Goiás",
5437        state: State::GO,
5438    },
5439    Municipio {
5440        ibge_code: 5219357,
5441        name: "Santa Isabel",
5442        state: State::GO,
5443    },
5444    Municipio {
5445        ibge_code: 5219407,
5446        name: "Santa Rita do Araguaia",
5447        state: State::GO,
5448    },
5449    Municipio {
5450        ibge_code: 5219456,
5451        name: "Santa Rita do Novo Destino",
5452        state: State::GO,
5453    },
5454    Municipio {
5455        ibge_code: 5219506,
5456        name: "Santa Rosa de Goiás",
5457        state: State::GO,
5458    },
5459    Municipio {
5460        ibge_code: 5219605,
5461        name: "Santa Tereza de Goiás",
5462        state: State::GO,
5463    },
5464    Municipio {
5465        ibge_code: 5219704,
5466        name: "Santa Terezinha de Goiás",
5467        state: State::GO,
5468    },
5469    Municipio {
5470        ibge_code: 5219712,
5471        name: "Santo Antônio da Barra",
5472        state: State::GO,
5473    },
5474    Municipio {
5475        ibge_code: 5219738,
5476        name: "Santo Antônio de Goiás",
5477        state: State::GO,
5478    },
5479    Municipio {
5480        ibge_code: 5219753,
5481        name: "Santo Antônio do Descoberto",
5482        state: State::GO,
5483    },
5484    Municipio {
5485        ibge_code: 5220454,
5486        name: "Senador Canedo",
5487        state: State::GO,
5488    },
5489    Municipio {
5490        ibge_code: 5220504,
5491        name: "Serranópolis",
5492        state: State::GO,
5493    },
5494    Municipio {
5495        ibge_code: 5220603,
5496        name: "Silvânia",
5497        state: State::GO,
5498    },
5499    Municipio {
5500        ibge_code: 5220686,
5501        name: "Simolândia",
5502        state: State::GO,
5503    },
5504    Municipio {
5505        ibge_code: 5219803,
5506        name: "São Domingos",
5507        state: State::GO,
5508    },
5509    Municipio {
5510        ibge_code: 5219902,
5511        name: "São Francisco de Goiás",
5512        state: State::GO,
5513    },
5514    Municipio {
5515        ibge_code: 5220009,
5516        name: "São João d'Aliança",
5517        state: State::GO,
5518    },
5519    Municipio {
5520        ibge_code: 5220058,
5521        name: "São João da Paraúna",
5522        state: State::GO,
5523    },
5524    Municipio {
5525        ibge_code: 5220157,
5526        name: "São Luiz do Norte",
5527        state: State::GO,
5528    },
5529    Municipio {
5530        ibge_code: 5220108,
5531        name: "São Luís de Montes Belos",
5532        state: State::GO,
5533    },
5534    Municipio {
5535        ibge_code: 5220207,
5536        name: "São Miguel do Araguaia",
5537        state: State::GO,
5538    },
5539    Municipio {
5540        ibge_code: 5220264,
5541        name: "São Miguel do Passa Quatro",
5542        state: State::GO,
5543    },
5544    Municipio {
5545        ibge_code: 5220280,
5546        name: "São Patrício",
5547        state: State::GO,
5548    },
5549    Municipio {
5550        ibge_code: 5220405,
5551        name: "São Simão",
5552        state: State::GO,
5553    },
5554    Municipio {
5555        ibge_code: 5220702,
5556        name: "Sítio d'Abadia",
5557        state: State::GO,
5558    },
5559    Municipio {
5560        ibge_code: 5221007,
5561        name: "Taquaral de Goiás",
5562        state: State::GO,
5563    },
5564    Municipio {
5565        ibge_code: 5221080,
5566        name: "Teresina de Goiás",
5567        state: State::GO,
5568    },
5569    Municipio {
5570        ibge_code: 5221197,
5571        name: "Terezópolis de Goiás",
5572        state: State::GO,
5573    },
5574    Municipio {
5575        ibge_code: 5221403,
5576        name: "Trindade",
5577        state: State::GO,
5578    },
5579    Municipio {
5580        ibge_code: 5221452,
5581        name: "Trombas",
5582        state: State::GO,
5583    },
5584    Municipio {
5585        ibge_code: 5221304,
5586        name: "Três Ranchos",
5587        state: State::GO,
5588    },
5589    Municipio {
5590        ibge_code: 5221551,
5591        name: "Turvelândia",
5592        state: State::GO,
5593    },
5594    Municipio {
5595        ibge_code: 5221502,
5596        name: "Turvânia",
5597        state: State::GO,
5598    },
5599    Municipio {
5600        ibge_code: 5221577,
5601        name: "Uirapuru",
5602        state: State::GO,
5603    },
5604    Municipio {
5605        ibge_code: 5221700,
5606        name: "Uruana",
5607        state: State::GO,
5608    },
5609    Municipio {
5610        ibge_code: 5221601,
5611        name: "Uruaçu",
5612        state: State::GO,
5613    },
5614    Municipio {
5615        ibge_code: 5221809,
5616        name: "Urutaí",
5617        state: State::GO,
5618    },
5619    Municipio {
5620        ibge_code: 5221858,
5621        name: "Valparaíso de Goiás",
5622        state: State::GO,
5623    },
5624    Municipio {
5625        ibge_code: 5221908,
5626        name: "Varjão",
5627        state: State::GO,
5628    },
5629    Municipio {
5630        ibge_code: 5222005,
5631        name: "Vianópolis",
5632        state: State::GO,
5633    },
5634    Municipio {
5635        ibge_code: 5222054,
5636        name: "Vicentinópolis",
5637        state: State::GO,
5638    },
5639    Municipio {
5640        ibge_code: 5222203,
5641        name: "Vila Boa",
5642        state: State::GO,
5643    },
5644    Municipio {
5645        ibge_code: 5222302,
5646        name: "Vila Propício",
5647        state: State::GO,
5648    },
5649    Municipio {
5650        ibge_code: 5200175,
5651        name: "Água Fria de Goiás",
5652        state: State::GO,
5653    },
5654    Municipio {
5655        ibge_code: 5200209,
5656        name: "Água Limpa",
5657        state: State::GO,
5658    },
5659    Municipio {
5660        ibge_code: 5200258,
5661        name: "Águas Lindas de Goiás",
5662        state: State::GO,
5663    },
5664    Municipio {
5665        ibge_code: 2100105,
5666        name: "Afonso Cunha",
5667        state: State::MA,
5668    },
5669    Municipio {
5670        ibge_code: 2100204,
5671        name: "Alcântara",
5672        state: State::MA,
5673    },
5674    Municipio {
5675        ibge_code: 2100303,
5676        name: "Aldeias Altas",
5677        state: State::MA,
5678    },
5679    Municipio {
5680        ibge_code: 2100402,
5681        name: "Altamira do Maranhão",
5682        state: State::MA,
5683    },
5684    Municipio {
5685        ibge_code: 2100436,
5686        name: "Alto Alegre do Maranhão",
5687        state: State::MA,
5688    },
5689    Municipio {
5690        ibge_code: 2100477,
5691        name: "Alto Alegre do Pindaré",
5692        state: State::MA,
5693    },
5694    Municipio {
5695        ibge_code: 2100501,
5696        name: "Alto Parnaíba",
5697        state: State::MA,
5698    },
5699    Municipio {
5700        ibge_code: 2100550,
5701        name: "Amapá do Maranhão",
5702        state: State::MA,
5703    },
5704    Municipio {
5705        ibge_code: 2100600,
5706        name: "Amarante do Maranhão",
5707        state: State::MA,
5708    },
5709    Municipio {
5710        ibge_code: 2100709,
5711        name: "Anajatuba",
5712        state: State::MA,
5713    },
5714    Municipio {
5715        ibge_code: 2100808,
5716        name: "Anapurus",
5717        state: State::MA,
5718    },
5719    Municipio {
5720        ibge_code: 2100832,
5721        name: "Apicum-Açu",
5722        state: State::MA,
5723    },
5724    Municipio {
5725        ibge_code: 2100873,
5726        name: "Araguanã",
5727        state: State::MA,
5728    },
5729    Municipio {
5730        ibge_code: 2100907,
5731        name: "Araioses",
5732        state: State::MA,
5733    },
5734    Municipio {
5735        ibge_code: 2100956,
5736        name: "Arame",
5737        state: State::MA,
5738    },
5739    Municipio {
5740        ibge_code: 2101004,
5741        name: "Arari",
5742        state: State::MA,
5743    },
5744    Municipio {
5745        ibge_code: 2101103,
5746        name: "Axixá",
5747        state: State::MA,
5748    },
5749    Municipio {
5750        ibge_code: 2100055,
5751        name: "Açailândia",
5752        state: State::MA,
5753    },
5754    Municipio {
5755        ibge_code: 2101202,
5756        name: "Bacabal",
5757        state: State::MA,
5758    },
5759    Municipio {
5760        ibge_code: 2101251,
5761        name: "Bacabeira",
5762        state: State::MA,
5763    },
5764    Municipio {
5765        ibge_code: 2101301,
5766        name: "Bacuri",
5767        state: State::MA,
5768    },
5769    Municipio {
5770        ibge_code: 2101350,
5771        name: "Bacurituba",
5772        state: State::MA,
5773    },
5774    Municipio {
5775        ibge_code: 2101400,
5776        name: "Balsas",
5777        state: State::MA,
5778    },
5779    Municipio {
5780        ibge_code: 2101608,
5781        name: "Barra do Corda",
5782        state: State::MA,
5783    },
5784    Municipio {
5785        ibge_code: 2101707,
5786        name: "Barreirinhas",
5787        state: State::MA,
5788    },
5789    Municipio {
5790        ibge_code: 2101509,
5791        name: "Barão de Grajaú",
5792        state: State::MA,
5793    },
5794    Municipio {
5795        ibge_code: 2101772,
5796        name: "Bela Vista do Maranhão",
5797        state: State::MA,
5798    },
5799    Municipio {
5800        ibge_code: 2101731,
5801        name: "Belágua",
5802        state: State::MA,
5803    },
5804    Municipio {
5805        ibge_code: 2101806,
5806        name: "Benedito Leite",
5807        state: State::MA,
5808    },
5809    Municipio {
5810        ibge_code: 2101905,
5811        name: "Bequimão",
5812        state: State::MA,
5813    },
5814    Municipio {
5815        ibge_code: 2101939,
5816        name: "Bernardo do Mearim",
5817        state: State::MA,
5818    },
5819    Municipio {
5820        ibge_code: 2101970,
5821        name: "Boa Vista do Gurupi",
5822        state: State::MA,
5823    },
5824    Municipio {
5825        ibge_code: 2102002,
5826        name: "Bom Jardim",
5827        state: State::MA,
5828    },
5829    Municipio {
5830        ibge_code: 2102036,
5831        name: "Bom Jesus das Selvas",
5832        state: State::MA,
5833    },
5834    Municipio {
5835        ibge_code: 2102077,
5836        name: "Bom Lugar",
5837        state: State::MA,
5838    },
5839    Municipio {
5840        ibge_code: 2102101,
5841        name: "Brejo",
5842        state: State::MA,
5843    },
5844    Municipio {
5845        ibge_code: 2102150,
5846        name: "Brejo de Areia",
5847        state: State::MA,
5848    },
5849    Municipio {
5850        ibge_code: 2102200,
5851        name: "Buriti",
5852        state: State::MA,
5853    },
5854    Municipio {
5855        ibge_code: 2102309,
5856        name: "Buriti Bravo",
5857        state: State::MA,
5858    },
5859    Municipio {
5860        ibge_code: 2102325,
5861        name: "Buriticupu",
5862        state: State::MA,
5863    },
5864    Municipio {
5865        ibge_code: 2102358,
5866        name: "Buritirana",
5867        state: State::MA,
5868    },
5869    Municipio {
5870        ibge_code: 2102374,
5871        name: "Cachoeira Grande",
5872        state: State::MA,
5873    },
5874    Municipio {
5875        ibge_code: 2102408,
5876        name: "Cajapió",
5877        state: State::MA,
5878    },
5879    Municipio {
5880        ibge_code: 2102507,
5881        name: "Cajari",
5882        state: State::MA,
5883    },
5884    Municipio {
5885        ibge_code: 2102556,
5886        name: "Campestre do Maranhão",
5887        state: State::MA,
5888    },
5889    Municipio {
5890        ibge_code: 2102705,
5891        name: "Cantanhede",
5892        state: State::MA,
5893    },
5894    Municipio {
5895        ibge_code: 2102754,
5896        name: "Capinzal do Norte",
5897        state: State::MA,
5898    },
5899    Municipio {
5900        ibge_code: 2102804,
5901        name: "Carolina",
5902        state: State::MA,
5903    },
5904    Municipio {
5905        ibge_code: 2102903,
5906        name: "Carutapera",
5907        state: State::MA,
5908    },
5909    Municipio {
5910        ibge_code: 2103000,
5911        name: "Caxias",
5912        state: State::MA,
5913    },
5914    Municipio {
5915        ibge_code: 2103109,
5916        name: "Cedral",
5917        state: State::MA,
5918    },
5919    Municipio {
5920        ibge_code: 2103125,
5921        name: "Central do Maranhão",
5922        state: State::MA,
5923    },
5924    Municipio {
5925        ibge_code: 2103174,
5926        name: "Centro Novo do Maranhão",
5927        state: State::MA,
5928    },
5929    Municipio {
5930        ibge_code: 2103158,
5931        name: "Centro do Guilherme",
5932        state: State::MA,
5933    },
5934    Municipio {
5935        ibge_code: 2103208,
5936        name: "Chapadinha",
5937        state: State::MA,
5938    },
5939    Municipio {
5940        ibge_code: 2103257,
5941        name: "Cidelândia",
5942        state: State::MA,
5943    },
5944    Municipio {
5945        ibge_code: 2103307,
5946        name: "Codó",
5947        state: State::MA,
5948    },
5949    Municipio {
5950        ibge_code: 2103406,
5951        name: "Coelho Neto",
5952        state: State::MA,
5953    },
5954    Municipio {
5955        ibge_code: 2103505,
5956        name: "Colinas",
5957        state: State::MA,
5958    },
5959    Municipio {
5960        ibge_code: 2103554,
5961        name: "Conceição do Lago-Açu",
5962        state: State::MA,
5963    },
5964    Municipio {
5965        ibge_code: 2103604,
5966        name: "Coroatá",
5967        state: State::MA,
5968    },
5969    Municipio {
5970        ibge_code: 2103703,
5971        name: "Cururupu",
5972        state: State::MA,
5973    },
5974    Municipio {
5975        ibge_code: 2102606,
5976        name: "Cândido Mendes",
5977        state: State::MA,
5978    },
5979    Municipio {
5980        ibge_code: 2103752,
5981        name: "Davinópolis",
5982        state: State::MA,
5983    },
5984    Municipio {
5985        ibge_code: 2103802,
5986        name: "Dom Pedro",
5987        state: State::MA,
5988    },
5989    Municipio {
5990        ibge_code: 2103901,
5991        name: "Duque Bacelar",
5992        state: State::MA,
5993    },
5994    Municipio {
5995        ibge_code: 2104008,
5996        name: "Esperantinópolis",
5997        state: State::MA,
5998    },
5999    Municipio {
6000        ibge_code: 2104057,
6001        name: "Estreito",
6002        state: State::MA,
6003    },
6004    Municipio {
6005        ibge_code: 2104073,
6006        name: "Feira Nova do Maranhão",
6007        state: State::MA,
6008    },
6009    Municipio {
6010        ibge_code: 2104081,
6011        name: "Fernando Falcão",
6012        state: State::MA,
6013    },
6014    Municipio {
6015        ibge_code: 2104099,
6016        name: "Formosa da Serra Negra",
6017        state: State::MA,
6018    },
6019    Municipio {
6020        ibge_code: 2104107,
6021        name: "Fortaleza dos Nogueiras",
6022        state: State::MA,
6023    },
6024    Municipio {
6025        ibge_code: 2104206,
6026        name: "Fortuna",
6027        state: State::MA,
6028    },
6029    Municipio {
6030        ibge_code: 2104305,
6031        name: "Godofredo Viana",
6032        state: State::MA,
6033    },
6034    Municipio {
6035        ibge_code: 2104404,
6036        name: "Gonçalves Dias",
6037        state: State::MA,
6038    },
6039    Municipio {
6040        ibge_code: 2104503,
6041        name: "Governador Archer",
6042        state: State::MA,
6043    },
6044    Municipio {
6045        ibge_code: 2104552,
6046        name: "Governador Edison Lobão",
6047        state: State::MA,
6048    },
6049    Municipio {
6050        ibge_code: 2104602,
6051        name: "Governador Eugênio Barros",
6052        state: State::MA,
6053    },
6054    Municipio {
6055        ibge_code: 2104628,
6056        name: "Governador Luiz Rocha",
6057        state: State::MA,
6058    },
6059    Municipio {
6060        ibge_code: 2104651,
6061        name: "Governador Newton Bello",
6062        state: State::MA,
6063    },
6064    Municipio {
6065        ibge_code: 2104677,
6066        name: "Governador Nunes Freire",
6067        state: State::MA,
6068    },
6069    Municipio {
6070        ibge_code: 2104800,
6071        name: "Grajaú",
6072        state: State::MA,
6073    },
6074    Municipio {
6075        ibge_code: 2104701,
6076        name: "Graça Aranha",
6077        state: State::MA,
6078    },
6079    Municipio {
6080        ibge_code: 2104909,
6081        name: "Guimarães",
6082        state: State::MA,
6083    },
6084    Municipio {
6085        ibge_code: 2105005,
6086        name: "Humberto de Campos",
6087        state: State::MA,
6088    },
6089    Municipio {
6090        ibge_code: 2105104,
6091        name: "Icatu",
6092        state: State::MA,
6093    },
6094    Municipio {
6095        ibge_code: 2105203,
6096        name: "Igarapé Grande",
6097        state: State::MA,
6098    },
6099    Municipio {
6100        ibge_code: 2105153,
6101        name: "Igarapé do Meio",
6102        state: State::MA,
6103    },
6104    Municipio {
6105        ibge_code: 2105302,
6106        name: "Imperatriz",
6107        state: State::MA,
6108    },
6109    Municipio {
6110        ibge_code: 2105351,
6111        name: "Itaipava do Grajaú",
6112        state: State::MA,
6113    },
6114    Municipio {
6115        ibge_code: 2105401,
6116        name: "Itapecuru Mirim",
6117        state: State::MA,
6118    },
6119    Municipio {
6120        ibge_code: 2105427,
6121        name: "Itinga do Maranhão",
6122        state: State::MA,
6123    },
6124    Municipio {
6125        ibge_code: 2105450,
6126        name: "Jatobá",
6127        state: State::MA,
6128    },
6129    Municipio {
6130        ibge_code: 2105476,
6131        name: "Jenipapo dos Vieiras",
6132        state: State::MA,
6133    },
6134    Municipio {
6135        ibge_code: 2105609,
6136        name: "Joselândia",
6137        state: State::MA,
6138    },
6139    Municipio {
6140        ibge_code: 2105500,
6141        name: "João Lisboa",
6142        state: State::MA,
6143    },
6144    Municipio {
6145        ibge_code: 2105658,
6146        name: "Junco do Maranhão",
6147        state: State::MA,
6148    },
6149    Municipio {
6150        ibge_code: 2105906,
6151        name: "Lago Verde",
6152        state: State::MA,
6153    },
6154    Municipio {
6155        ibge_code: 2105708,
6156        name: "Lago da Pedra",
6157        state: State::MA,
6158    },
6159    Municipio {
6160        ibge_code: 2105807,
6161        name: "Lago do Junco",
6162        state: State::MA,
6163    },
6164    Municipio {
6165        ibge_code: 2105948,
6166        name: "Lago dos Rodrigues",
6167        state: State::MA,
6168    },
6169    Municipio {
6170        ibge_code: 2105963,
6171        name: "Lagoa Grande do Maranhão",
6172        state: State::MA,
6173    },
6174    Municipio {
6175        ibge_code: 2105922,
6176        name: "Lagoa do Mato",
6177        state: State::MA,
6178    },
6179    Municipio {
6180        ibge_code: 2105989,
6181        name: "Lajeado Novo",
6182        state: State::MA,
6183    },
6184    Municipio {
6185        ibge_code: 2106003,
6186        name: "Lima Campos",
6187        state: State::MA,
6188    },
6189    Municipio {
6190        ibge_code: 2106102,
6191        name: "Loreto",
6192        state: State::MA,
6193    },
6194    Municipio {
6195        ibge_code: 2106201,
6196        name: "Luís Domingues",
6197        state: State::MA,
6198    },
6199    Municipio {
6200        ibge_code: 2106300,
6201        name: "Magalhães de Almeida",
6202        state: State::MA,
6203    },
6204    Municipio {
6205        ibge_code: 2106326,
6206        name: "Maracaçumé",
6207        state: State::MA,
6208    },
6209    Municipio {
6210        ibge_code: 2106359,
6211        name: "Marajá do Sena",
6212        state: State::MA,
6213    },
6214    Municipio {
6215        ibge_code: 2106375,
6216        name: "Maranhãozinho",
6217        state: State::MA,
6218    },
6219    Municipio {
6220        ibge_code: 2106409,
6221        name: "Mata Roma",
6222        state: State::MA,
6223    },
6224    Municipio {
6225        ibge_code: 2106508,
6226        name: "Matinha",
6227        state: State::MA,
6228    },
6229    Municipio {
6230        ibge_code: 2106607,
6231        name: "Matões",
6232        state: State::MA,
6233    },
6234    Municipio {
6235        ibge_code: 2106631,
6236        name: "Matões do Norte",
6237        state: State::MA,
6238    },
6239    Municipio {
6240        ibge_code: 2106672,
6241        name: "Milagres do Maranhão",
6242        state: State::MA,
6243    },
6244    Municipio {
6245        ibge_code: 2106706,
6246        name: "Mirador",
6247        state: State::MA,
6248    },
6249    Municipio {
6250        ibge_code: 2106755,
6251        name: "Miranda do Norte",
6252        state: State::MA,
6253    },
6254    Municipio {
6255        ibge_code: 2106805,
6256        name: "Mirinzal",
6257        state: State::MA,
6258    },
6259    Municipio {
6260        ibge_code: 2107001,
6261        name: "Montes Altos",
6262        state: State::MA,
6263    },
6264    Municipio {
6265        ibge_code: 2106904,
6266        name: "Monção",
6267        state: State::MA,
6268    },
6269    Municipio {
6270        ibge_code: 2107100,
6271        name: "Morros",
6272        state: State::MA,
6273    },
6274    Municipio {
6275        ibge_code: 2107209,
6276        name: "Nina Rodrigues",
6277        state: State::MA,
6278    },
6279    Municipio {
6280        ibge_code: 2107258,
6281        name: "Nova Colinas",
6282        state: State::MA,
6283    },
6284    Municipio {
6285        ibge_code: 2107308,
6286        name: "Nova Iorque",
6287        state: State::MA,
6288    },
6289    Municipio {
6290        ibge_code: 2107357,
6291        name: "Nova Olinda do Maranhão",
6292        state: State::MA,
6293    },
6294    Municipio {
6295        ibge_code: 2107407,
6296        name: "Olho d'Água das Cunhãs",
6297        state: State::MA,
6298    },
6299    Municipio {
6300        ibge_code: 2107456,
6301        name: "Olinda Nova do Maranhão",
6302        state: State::MA,
6303    },
6304    Municipio {
6305        ibge_code: 2107605,
6306        name: "Palmeirândia",
6307        state: State::MA,
6308    },
6309    Municipio {
6310        ibge_code: 2107704,
6311        name: "Paraibano",
6312        state: State::MA,
6313    },
6314    Municipio {
6315        ibge_code: 2107803,
6316        name: "Parnarama",
6317        state: State::MA,
6318    },
6319    Municipio {
6320        ibge_code: 2107902,
6321        name: "Passagem Franca",
6322        state: State::MA,
6323    },
6324    Municipio {
6325        ibge_code: 2108009,
6326        name: "Pastos Bons",
6327        state: State::MA,
6328    },
6329    Municipio {
6330        ibge_code: 2108058,
6331        name: "Paulino Neves",
6332        state: State::MA,
6333    },
6334    Municipio {
6335        ibge_code: 2108108,
6336        name: "Paulo Ramos",
6337        state: State::MA,
6338    },
6339    Municipio {
6340        ibge_code: 2107506,
6341        name: "Paço do Lumiar",
6342        state: State::MA,
6343    },
6344    Municipio {
6345        ibge_code: 2108207,
6346        name: "Pedreiras",
6347        state: State::MA,
6348    },
6349    Municipio {
6350        ibge_code: 2108256,
6351        name: "Pedro do Rosário",
6352        state: State::MA,
6353    },
6354    Municipio {
6355        ibge_code: 2108306,
6356        name: "Penalva",
6357        state: State::MA,
6358    },
6359    Municipio {
6360        ibge_code: 2108405,
6361        name: "Peri Mirim",
6362        state: State::MA,
6363    },
6364    Municipio {
6365        ibge_code: 2108454,
6366        name: "Peritoró",
6367        state: State::MA,
6368    },
6369    Municipio {
6370        ibge_code: 2108504,
6371        name: "Pindaré-Mirim",
6372        state: State::MA,
6373    },
6374    Municipio {
6375        ibge_code: 2108603,
6376        name: "Pinheiro",
6377        state: State::MA,
6378    },
6379    Municipio {
6380        ibge_code: 2108702,
6381        name: "Pio XII",
6382        state: State::MA,
6383    },
6384    Municipio {
6385        ibge_code: 2108801,
6386        name: "Pirapemas",
6387        state: State::MA,
6388    },
6389    Municipio {
6390        ibge_code: 2109007,
6391        name: "Porto Franco",
6392        state: State::MA,
6393    },
6394    Municipio {
6395        ibge_code: 2109056,
6396        name: "Porto Rico do Maranhão",
6397        state: State::MA,
6398    },
6399    Municipio {
6400        ibge_code: 2108900,
6401        name: "Poção de Pedras",
6402        state: State::MA,
6403    },
6404    Municipio {
6405        ibge_code: 2109106,
6406        name: "Presidente Dutra",
6407        state: State::MA,
6408    },
6409    Municipio {
6410        ibge_code: 2109205,
6411        name: "Presidente Juscelino",
6412        state: State::MA,
6413    },
6414    Municipio {
6415        ibge_code: 2109239,
6416        name: "Presidente Médici",
6417        state: State::MA,
6418    },
6419    Municipio {
6420        ibge_code: 2109270,
6421        name: "Presidente Sarney",
6422        state: State::MA,
6423    },
6424    Municipio {
6425        ibge_code: 2109304,
6426        name: "Presidente Vargas",
6427        state: State::MA,
6428    },
6429    Municipio {
6430        ibge_code: 2109403,
6431        name: "Primeira Cruz",
6432        state: State::MA,
6433    },
6434    Municipio {
6435        ibge_code: 2109452,
6436        name: "Raposa",
6437        state: State::MA,
6438    },
6439    Municipio {
6440        ibge_code: 2109502,
6441        name: "Riachão",
6442        state: State::MA,
6443    },
6444    Municipio {
6445        ibge_code: 2109551,
6446        name: "Ribamar Fiquene",
6447        state: State::MA,
6448    },
6449    Municipio {
6450        ibge_code: 2109601,
6451        name: "Rosário",
6452        state: State::MA,
6453    },
6454    Municipio {
6455        ibge_code: 2109700,
6456        name: "Sambaíba",
6457        state: State::MA,
6458    },
6459    Municipio {
6460        ibge_code: 2109759,
6461        name: "Santa Filomena do Maranhão",
6462        state: State::MA,
6463    },
6464    Municipio {
6465        ibge_code: 2109809,
6466        name: "Santa Helena",
6467        state: State::MA,
6468    },
6469    Municipio {
6470        ibge_code: 2109908,
6471        name: "Santa Inês",
6472        state: State::MA,
6473    },
6474    Municipio {
6475        ibge_code: 2110005,
6476        name: "Santa Luzia",
6477        state: State::MA,
6478    },
6479    Municipio {
6480        ibge_code: 2110039,
6481        name: "Santa Luzia do Paruá",
6482        state: State::MA,
6483    },
6484    Municipio {
6485        ibge_code: 2110104,
6486        name: "Santa Quitéria do Maranhão",
6487        state: State::MA,
6488    },
6489    Municipio {
6490        ibge_code: 2110203,
6491        name: "Santa Rita",
6492        state: State::MA,
6493    },
6494    Municipio {
6495        ibge_code: 2110237,
6496        name: "Santana do Maranhão",
6497        state: State::MA,
6498    },
6499    Municipio {
6500        ibge_code: 2110278,
6501        name: "Santo Amaro do Maranhão",
6502        state: State::MA,
6503    },
6504    Municipio {
6505        ibge_code: 2110302,
6506        name: "Santo Antônio dos Lopes",
6507        state: State::MA,
6508    },
6509    Municipio {
6510        ibge_code: 2111722,
6511        name: "Satubinha",
6512        state: State::MA,
6513    },
6514    Municipio {
6515        ibge_code: 2111748,
6516        name: "Senador Alexandre Costa",
6517        state: State::MA,
6518    },
6519    Municipio {
6520        ibge_code: 2111763,
6521        name: "Senador La Rocque",
6522        state: State::MA,
6523    },
6524    Municipio {
6525        ibge_code: 2111789,
6526        name: "Serrano do Maranhão",
6527        state: State::MA,
6528    },
6529    Municipio {
6530        ibge_code: 2111904,
6531        name: "Sucupira do Norte",
6532        state: State::MA,
6533    },
6534    Municipio {
6535        ibge_code: 2111953,
6536        name: "Sucupira do Riachão",
6537        state: State::MA,
6538    },
6539    Municipio {
6540        ibge_code: 2110401,
6541        name: "São Benedito do Rio Preto",
6542        state: State::MA,
6543    },
6544    Municipio {
6545        ibge_code: 2110500,
6546        name: "São Bento",
6547        state: State::MA,
6548    },
6549    Municipio {
6550        ibge_code: 2110609,
6551        name: "São Bernardo",
6552        state: State::MA,
6553    },
6554    Municipio {
6555        ibge_code: 2110658,
6556        name: "São Domingos do Azeitão",
6557        state: State::MA,
6558    },
6559    Municipio {
6560        ibge_code: 2110708,
6561        name: "São Domingos do Maranhão",
6562        state: State::MA,
6563    },
6564    Municipio {
6565        ibge_code: 2110856,
6566        name: "São Francisco do Brejão",
6567        state: State::MA,
6568    },
6569    Municipio {
6570        ibge_code: 2110906,
6571        name: "São Francisco do Maranhão",
6572        state: State::MA,
6573    },
6574    Municipio {
6575        ibge_code: 2110807,
6576        name: "São Félix de Balsas",
6577        state: State::MA,
6578    },
6579    Municipio {
6580        ibge_code: 2111201,
6581        name: "São José de Ribamar",
6582        state: State::MA,
6583    },
6584    Municipio {
6585        ibge_code: 2111250,
6586        name: "São José dos Basílios",
6587        state: State::MA,
6588    },
6589    Municipio {
6590        ibge_code: 2111003,
6591        name: "São João Batista",
6592        state: State::MA,
6593    },
6594    Municipio {
6595        ibge_code: 2111029,
6596        name: "São João do Carú",
6597        state: State::MA,
6598    },
6599    Municipio {
6600        ibge_code: 2111052,
6601        name: "São João do Paraíso",
6602        state: State::MA,
6603    },
6604    Municipio {
6605        ibge_code: 2111078,
6606        name: "São João do Soter",
6607        state: State::MA,
6608    },
6609    Municipio {
6610        ibge_code: 2111102,
6611        name: "São João dos Patos",
6612        state: State::MA,
6613    },
6614    Municipio {
6615        ibge_code: 2111300,
6616        name: "São Luís",
6617        state: State::MA,
6618    },
6619    Municipio {
6620        ibge_code: 2111409,
6621        name: "São Luís Gonzaga do Maranhão",
6622        state: State::MA,
6623    },
6624    Municipio {
6625        ibge_code: 2111508,
6626        name: "São Mateus do Maranhão",
6627        state: State::MA,
6628    },
6629    Municipio {
6630        ibge_code: 2111532,
6631        name: "São Pedro da Água Branca",
6632        state: State::MA,
6633    },
6634    Municipio {
6635        ibge_code: 2111573,
6636        name: "São Pedro dos Crentes",
6637        state: State::MA,
6638    },
6639    Municipio {
6640        ibge_code: 2111607,
6641        name: "São Raimundo das Mangabeiras",
6642        state: State::MA,
6643    },
6644    Municipio {
6645        ibge_code: 2111631,
6646        name: "São Raimundo do Doca Bezerra",
6647        state: State::MA,
6648    },
6649    Municipio {
6650        ibge_code: 2111672,
6651        name: "São Roberto",
6652        state: State::MA,
6653    },
6654    Municipio {
6655        ibge_code: 2111706,
6656        name: "São Vicente Ferrer",
6657        state: State::MA,
6658    },
6659    Municipio {
6660        ibge_code: 2111805,
6661        name: "Sítio Novo",
6662        state: State::MA,
6663    },
6664    Municipio {
6665        ibge_code: 2112001,
6666        name: "Tasso Fragoso",
6667        state: State::MA,
6668    },
6669    Municipio {
6670        ibge_code: 2112100,
6671        name: "Timbiras",
6672        state: State::MA,
6673    },
6674    Municipio {
6675        ibge_code: 2112209,
6676        name: "Timon",
6677        state: State::MA,
6678    },
6679    Municipio {
6680        ibge_code: 2112233,
6681        name: "Trizidela do Vale",
6682        state: State::MA,
6683    },
6684    Municipio {
6685        ibge_code: 2112274,
6686        name: "Tufilândia",
6687        state: State::MA,
6688    },
6689    Municipio {
6690        ibge_code: 2112308,
6691        name: "Tuntum",
6692        state: State::MA,
6693    },
6694    Municipio {
6695        ibge_code: 2112407,
6696        name: "Turiaçu",
6697        state: State::MA,
6698    },
6699    Municipio {
6700        ibge_code: 2112456,
6701        name: "Turilândia",
6702        state: State::MA,
6703    },
6704    Municipio {
6705        ibge_code: 2112506,
6706        name: "Tutóia",
6707        state: State::MA,
6708    },
6709    Municipio {
6710        ibge_code: 2112605,
6711        name: "Urbano Santos",
6712        state: State::MA,
6713    },
6714    Municipio {
6715        ibge_code: 2112704,
6716        name: "Vargem Grande",
6717        state: State::MA,
6718    },
6719    Municipio {
6720        ibge_code: 2112803,
6721        name: "Viana",
6722        state: State::MA,
6723    },
6724    Municipio {
6725        ibge_code: 2112852,
6726        name: "Vila Nova dos Martírios",
6727        state: State::MA,
6728    },
6729    Municipio {
6730        ibge_code: 2113009,
6731        name: "Vitorino Freire",
6732        state: State::MA,
6733    },
6734    Municipio {
6735        ibge_code: 2112902,
6736        name: "Vitória do Mearim",
6737        state: State::MA,
6738    },
6739    Municipio {
6740        ibge_code: 2114007,
6741        name: "Zé Doca",
6742        state: State::MA,
6743    },
6744    Municipio {
6745        ibge_code: 2100154,
6746        name: "Água Doce do Maranhão",
6747        state: State::MA,
6748    },
6749    Municipio {
6750        ibge_code: 3100104,
6751        name: "Abadia dos Dourados",
6752        state: State::MG,
6753    },
6754    Municipio {
6755        ibge_code: 3100203,
6756        name: "Abaeté",
6757        state: State::MG,
6758    },
6759    Municipio {
6760        ibge_code: 3100302,
6761        name: "Abre Campo",
6762        state: State::MG,
6763    },
6764    Municipio {
6765        ibge_code: 3100401,
6766        name: "Acaiaca",
6767        state: State::MG,
6768    },
6769    Municipio {
6770        ibge_code: 3100807,
6771        name: "Aguanil",
6772        state: State::MG,
6773    },
6774    Municipio {
6775        ibge_code: 3101102,
6776        name: "Aimorés",
6777        state: State::MG,
6778    },
6779    Municipio {
6780        ibge_code: 3101201,
6781        name: "Aiuruoca",
6782        state: State::MG,
6783    },
6784    Municipio {
6785        ibge_code: 3101300,
6786        name: "Alagoa",
6787        state: State::MG,
6788    },
6789    Municipio {
6790        ibge_code: 3101409,
6791        name: "Albertina",
6792        state: State::MG,
6793    },
6794    Municipio {
6795        ibge_code: 3101607,
6796        name: "Alfenas",
6797        state: State::MG,
6798    },
6799    Municipio {
6800        ibge_code: 3101631,
6801        name: "Alfredo Vasconcelos",
6802        state: State::MG,
6803    },
6804    Municipio {
6805        ibge_code: 3101706,
6806        name: "Almenara",
6807        state: State::MG,
6808    },
6809    Municipio {
6810        ibge_code: 3101805,
6811        name: "Alpercata",
6812        state: State::MG,
6813    },
6814    Municipio {
6815        ibge_code: 3101904,
6816        name: "Alpinópolis",
6817        state: State::MG,
6818    },
6819    Municipio {
6820        ibge_code: 3102001,
6821        name: "Alterosa",
6822        state: State::MG,
6823    },
6824    Municipio {
6825        ibge_code: 3102050,
6826        name: "Alto Caparaó",
6827        state: State::MG,
6828    },
6829    Municipio {
6830        ibge_code: 3153509,
6831        name: "Alto Jequitibá",
6832        state: State::MG,
6833    },
6834    Municipio {
6835        ibge_code: 3102100,
6836        name: "Alto Rio Doce",
6837        state: State::MG,
6838    },
6839    Municipio {
6840        ibge_code: 3102209,
6841        name: "Alvarenga",
6842        state: State::MG,
6843    },
6844    Municipio {
6845        ibge_code: 3102308,
6846        name: "Alvinópolis",
6847        state: State::MG,
6848    },
6849    Municipio {
6850        ibge_code: 3102407,
6851        name: "Alvorada de Minas",
6852        state: State::MG,
6853    },
6854    Municipio {
6855        ibge_code: 3101508,
6856        name: "Além Paraíba",
6857        state: State::MG,
6858    },
6859    Municipio {
6860        ibge_code: 3102506,
6861        name: "Amparo do Serra",
6862        state: State::MG,
6863    },
6864    Municipio {
6865        ibge_code: 3102605,
6866        name: "Andradas",
6867        state: State::MG,
6868    },
6869    Municipio {
6870        ibge_code: 3102803,
6871        name: "Andrelândia",
6872        state: State::MG,
6873    },
6874    Municipio {
6875        ibge_code: 3102852,
6876        name: "Angelândia",
6877        state: State::MG,
6878    },
6879    Municipio {
6880        ibge_code: 3102902,
6881        name: "Antônio Carlos",
6882        state: State::MG,
6883    },
6884    Municipio {
6885        ibge_code: 3103009,
6886        name: "Antônio Dias",
6887        state: State::MG,
6888    },
6889    Municipio {
6890        ibge_code: 3103108,
6891        name: "Antônio Prado de Minas",
6892        state: State::MG,
6893    },
6894    Municipio {
6895        ibge_code: 3103306,
6896        name: "Aracitaba",
6897        state: State::MG,
6898    },
6899    Municipio {
6900        ibge_code: 3103504,
6901        name: "Araguari",
6902        state: State::MG,
6903    },
6904    Municipio {
6905        ibge_code: 3103603,
6906        name: "Arantina",
6907        state: State::MG,
6908    },
6909    Municipio {
6910        ibge_code: 3103702,
6911        name: "Araponga",
6912        state: State::MG,
6913    },
6914    Municipio {
6915        ibge_code: 3103751,
6916        name: "Araporã",
6917        state: State::MG,
6918    },
6919    Municipio {
6920        ibge_code: 3103801,
6921        name: "Arapuá",
6922        state: State::MG,
6923    },
6924    Municipio {
6925        ibge_code: 3104007,
6926        name: "Araxá",
6927        state: State::MG,
6928    },
6929    Municipio {
6930        ibge_code: 3103207,
6931        name: "Araçaí",
6932        state: State::MG,
6933    },
6934    Municipio {
6935        ibge_code: 3103405,
6936        name: "Araçuaí",
6937        state: State::MG,
6938    },
6939    Municipio {
6940        ibge_code: 3103900,
6941        name: "Araújos",
6942        state: State::MG,
6943    },
6944    Municipio {
6945        ibge_code: 3104106,
6946        name: "Arceburgo",
6947        state: State::MG,
6948    },
6949    Municipio {
6950        ibge_code: 3104205,
6951        name: "Arcos",
6952        state: State::MG,
6953    },
6954    Municipio {
6955        ibge_code: 3104304,
6956        name: "Areado",
6957        state: State::MG,
6958    },
6959    Municipio {
6960        ibge_code: 3104403,
6961        name: "Argirita",
6962        state: State::MG,
6963    },
6964    Municipio {
6965        ibge_code: 3104452,
6966        name: "Aricanduva",
6967        state: State::MG,
6968    },
6969    Municipio {
6970        ibge_code: 3104502,
6971        name: "Arinos",
6972        state: State::MG,
6973    },
6974    Municipio {
6975        ibge_code: 3104601,
6976        name: "Astolfo Dutra",
6977        state: State::MG,
6978    },
6979    Municipio {
6980        ibge_code: 3104700,
6981        name: "Ataléia",
6982        state: State::MG,
6983    },
6984    Municipio {
6985        ibge_code: 3104809,
6986        name: "Augusto de Lima",
6987        state: State::MG,
6988    },
6989    Municipio {
6990        ibge_code: 3100500,
6991        name: "Açucena",
6992        state: State::MG,
6993    },
6994    Municipio {
6995        ibge_code: 3104908,
6996        name: "Baependi",
6997        state: State::MG,
6998    },
6999    Municipio {
7000        ibge_code: 3105004,
7001        name: "Baldim",
7002        state: State::MG,
7003    },
7004    Municipio {
7005        ibge_code: 3105103,
7006        name: "Bambuí",
7007        state: State::MG,
7008    },
7009    Municipio {
7010        ibge_code: 3105202,
7011        name: "Bandeira",
7012        state: State::MG,
7013    },
7014    Municipio {
7015        ibge_code: 3105301,
7016        name: "Bandeira do Sul",
7017        state: State::MG,
7018    },
7019    Municipio {
7020        ibge_code: 3105608,
7021        name: "Barbacena",
7022        state: State::MG,
7023    },
7024    Municipio {
7025        ibge_code: 3105707,
7026        name: "Barra Longa",
7027        state: State::MG,
7028    },
7029    Municipio {
7030        ibge_code: 3105905,
7031        name: "Barroso",
7032        state: State::MG,
7033    },
7034    Municipio {
7035        ibge_code: 3105400,
7036        name: "Barão de Cocais",
7037        state: State::MG,
7038    },
7039    Municipio {
7040        ibge_code: 3105509,
7041        name: "Barão do Monte Alto",
7042        state: State::MG,
7043    },
7044    Municipio {
7045        ibge_code: 3106002,
7046        name: "Bela Vista de Minas",
7047        state: State::MG,
7048    },
7049    Municipio {
7050        ibge_code: 3106101,
7051        name: "Belmiro Braga",
7052        state: State::MG,
7053    },
7054    Municipio {
7055        ibge_code: 3106200,
7056        name: "Belo Horizonte",
7057        state: State::MG,
7058    },
7059    Municipio {
7060        ibge_code: 3106309,
7061        name: "Belo Oriente",
7062        state: State::MG,
7063    },
7064    Municipio {
7065        ibge_code: 3106408,
7066        name: "Belo Vale",
7067        state: State::MG,
7068    },
7069    Municipio {
7070        ibge_code: 3106507,
7071        name: "Berilo",
7072        state: State::MG,
7073    },
7074    Municipio {
7075        ibge_code: 3106655,
7076        name: "Berizal",
7077        state: State::MG,
7078    },
7079    Municipio {
7080        ibge_code: 3106606,
7081        name: "Bertópolis",
7082        state: State::MG,
7083    },
7084    Municipio {
7085        ibge_code: 3106705,
7086        name: "Betim",
7087        state: State::MG,
7088    },
7089    Municipio {
7090        ibge_code: 3106804,
7091        name: "Bias Fortes",
7092        state: State::MG,
7093    },
7094    Municipio {
7095        ibge_code: 3106903,
7096        name: "Bicas",
7097        state: State::MG,
7098    },
7099    Municipio {
7100        ibge_code: 3107000,
7101        name: "Biquinhas",
7102        state: State::MG,
7103    },
7104    Municipio {
7105        ibge_code: 3107109,
7106        name: "Boa Esperança",
7107        state: State::MG,
7108    },
7109    Municipio {
7110        ibge_code: 3107208,
7111        name: "Bocaina de Minas",
7112        state: State::MG,
7113    },
7114    Municipio {
7115        ibge_code: 3107307,
7116        name: "Bocaiúva",
7117        state: State::MG,
7118    },
7119    Municipio {
7120        ibge_code: 3107406,
7121        name: "Bom Despacho",
7122        state: State::MG,
7123    },
7124    Municipio {
7125        ibge_code: 3107505,
7126        name: "Bom Jardim de Minas",
7127        state: State::MG,
7128    },
7129    Municipio {
7130        ibge_code: 3107604,
7131        name: "Bom Jesus da Penha",
7132        state: State::MG,
7133    },
7134    Municipio {
7135        ibge_code: 3107703,
7136        name: "Bom Jesus do Amparo",
7137        state: State::MG,
7138    },
7139    Municipio {
7140        ibge_code: 3107802,
7141        name: "Bom Jesus do Galho",
7142        state: State::MG,
7143    },
7144    Municipio {
7145        ibge_code: 3107901,
7146        name: "Bom Repouso",
7147        state: State::MG,
7148    },
7149    Municipio {
7150        ibge_code: 3108008,
7151        name: "Bom Sucesso",
7152        state: State::MG,
7153    },
7154    Municipio {
7155        ibge_code: 3108107,
7156        name: "Bonfim",
7157        state: State::MG,
7158    },
7159    Municipio {
7160        ibge_code: 3108206,
7161        name: "Bonfinópolis de Minas",
7162        state: State::MG,
7163    },
7164    Municipio {
7165        ibge_code: 3108255,
7166        name: "Bonito de Minas",
7167        state: State::MG,
7168    },
7169    Municipio {
7170        ibge_code: 3108305,
7171        name: "Borda da Mata",
7172        state: State::MG,
7173    },
7174    Municipio {
7175        ibge_code: 3108404,
7176        name: "Botelhos",
7177        state: State::MG,
7178    },
7179    Municipio {
7180        ibge_code: 3108503,
7181        name: "Botumirim",
7182        state: State::MG,
7183    },
7184    Municipio {
7185        ibge_code: 3108552,
7186        name: "Brasilândia de Minas",
7187        state: State::MG,
7188    },
7189    Municipio {
7190        ibge_code: 3108602,
7191        name: "Brasília de Minas",
7192        state: State::MG,
7193    },
7194    Municipio {
7195        ibge_code: 3108909,
7196        name: "Brazópolis",
7197        state: State::MG,
7198    },
7199    Municipio {
7200        ibge_code: 3108800,
7201        name: "Braúnas",
7202        state: State::MG,
7203    },
7204    Municipio {
7205        ibge_code: 3109006,
7206        name: "Brumadinho",
7207        state: State::MG,
7208    },
7209    Municipio {
7210        ibge_code: 3108701,
7211        name: "Brás Pires",
7212        state: State::MG,
7213    },
7214    Municipio {
7215        ibge_code: 3109105,
7216        name: "Bueno Brandão",
7217        state: State::MG,
7218    },
7219    Municipio {
7220        ibge_code: 3109204,
7221        name: "Buenópolis",
7222        state: State::MG,
7223    },
7224    Municipio {
7225        ibge_code: 3109253,
7226        name: "Bugre",
7227        state: State::MG,
7228    },
7229    Municipio {
7230        ibge_code: 3109303,
7231        name: "Buritis",
7232        state: State::MG,
7233    },
7234    Municipio {
7235        ibge_code: 3109402,
7236        name: "Buritizeiro",
7237        state: State::MG,
7238    },
7239    Municipio {
7240        ibge_code: 3109451,
7241        name: "Cabeceira Grande",
7242        state: State::MG,
7243    },
7244    Municipio {
7245        ibge_code: 3109501,
7246        name: "Cabo Verde",
7247        state: State::MG,
7248    },
7249    Municipio {
7250        ibge_code: 3109808,
7251        name: "Cachoeira Dourada",
7252        state: State::MG,
7253    },
7254    Municipio {
7255        ibge_code: 3109600,
7256        name: "Cachoeira da Prata",
7257        state: State::MG,
7258    },
7259    Municipio {
7260        ibge_code: 3109709,
7261        name: "Cachoeira de Minas",
7262        state: State::MG,
7263    },
7264    Municipio {
7265        ibge_code: 3102704,
7266        name: "Cachoeira de Pajeú",
7267        state: State::MG,
7268    },
7269    Municipio {
7270        ibge_code: 3109907,
7271        name: "Caetanópolis",
7272        state: State::MG,
7273    },
7274    Municipio {
7275        ibge_code: 3110004,
7276        name: "Caeté",
7277        state: State::MG,
7278    },
7279    Municipio {
7280        ibge_code: 3110103,
7281        name: "Caiana",
7282        state: State::MG,
7283    },
7284    Municipio {
7285        ibge_code: 3110202,
7286        name: "Cajuri",
7287        state: State::MG,
7288    },
7289    Municipio {
7290        ibge_code: 3110301,
7291        name: "Caldas",
7292        state: State::MG,
7293    },
7294    Municipio {
7295        ibge_code: 3110400,
7296        name: "Camacho",
7297        state: State::MG,
7298    },
7299    Municipio {
7300        ibge_code: 3110509,
7301        name: "Camanducaia",
7302        state: State::MG,
7303    },
7304    Municipio {
7305        ibge_code: 3110707,
7306        name: "Cambuquira",
7307        state: State::MG,
7308    },
7309    Municipio {
7310        ibge_code: 3110608,
7311        name: "Cambuí",
7312        state: State::MG,
7313    },
7314    Municipio {
7315        ibge_code: 3110905,
7316        name: "Campanha",
7317        state: State::MG,
7318    },
7319    Municipio {
7320        ibge_code: 3110806,
7321        name: "Campanário",
7322        state: State::MG,
7323    },
7324    Municipio {
7325        ibge_code: 3111002,
7326        name: "Campestre",
7327        state: State::MG,
7328    },
7329    Municipio {
7330        ibge_code: 3111101,
7331        name: "Campina Verde",
7332        state: State::MG,
7333    },
7334    Municipio {
7335        ibge_code: 3111150,
7336        name: "Campo Azul",
7337        state: State::MG,
7338    },
7339    Municipio {
7340        ibge_code: 3111200,
7341        name: "Campo Belo",
7342        state: State::MG,
7343    },
7344    Municipio {
7345        ibge_code: 3111408,
7346        name: "Campo Florido",
7347        state: State::MG,
7348    },
7349    Municipio {
7350        ibge_code: 3111309,
7351        name: "Campo do Meio",
7352        state: State::MG,
7353    },
7354    Municipio {
7355        ibge_code: 3111507,
7356        name: "Campos Altos",
7357        state: State::MG,
7358    },
7359    Municipio {
7360        ibge_code: 3111606,
7361        name: "Campos Gerais",
7362        state: State::MG,
7363    },
7364    Municipio {
7365        ibge_code: 3111903,
7366        name: "Cana Verde",
7367        state: State::MG,
7368    },
7369    Municipio {
7370        ibge_code: 3111705,
7371        name: "Canaã",
7372        state: State::MG,
7373    },
7374    Municipio {
7375        ibge_code: 3112000,
7376        name: "Candeias",
7377        state: State::MG,
7378    },
7379    Municipio {
7380        ibge_code: 3112059,
7381        name: "Cantagalo",
7382        state: State::MG,
7383    },
7384    Municipio {
7385        ibge_code: 3111804,
7386        name: "Canápolis",
7387        state: State::MG,
7388    },
7389    Municipio {
7390        ibge_code: 3112109,
7391        name: "Caparaó",
7392        state: State::MG,
7393    },
7394    Municipio {
7395        ibge_code: 3112208,
7396        name: "Capela Nova",
7397        state: State::MG,
7398    },
7399    Municipio {
7400        ibge_code: 3112307,
7401        name: "Capelinha",
7402        state: State::MG,
7403    },
7404    Municipio {
7405        ibge_code: 3112406,
7406        name: "Capetinga",
7407        state: State::MG,
7408    },
7409    Municipio {
7410        ibge_code: 3112505,
7411        name: "Capim Branco",
7412        state: State::MG,
7413    },
7414    Municipio {
7415        ibge_code: 3112604,
7416        name: "Capinópolis",
7417        state: State::MG,
7418    },
7419    Municipio {
7420        ibge_code: 3112653,
7421        name: "Capitão Andrade",
7422        state: State::MG,
7423    },
7424    Municipio {
7425        ibge_code: 3112703,
7426        name: "Capitão Enéas",
7427        state: State::MG,
7428    },
7429    Municipio {
7430        ibge_code: 3112802,
7431        name: "Capitólio",
7432        state: State::MG,
7433    },
7434    Municipio {
7435        ibge_code: 3112901,
7436        name: "Caputira",
7437        state: State::MG,
7438    },
7439    Municipio {
7440        ibge_code: 3113107,
7441        name: "Caranaíba",
7442        state: State::MG,
7443    },
7444    Municipio {
7445        ibge_code: 3113206,
7446        name: "Carandaí",
7447        state: State::MG,
7448    },
7449    Municipio {
7450        ibge_code: 3113305,
7451        name: "Carangola",
7452        state: State::MG,
7453    },
7454    Municipio {
7455        ibge_code: 3113404,
7456        name: "Caratinga",
7457        state: State::MG,
7458    },
7459    Municipio {
7460        ibge_code: 3113008,
7461        name: "Caraí",
7462        state: State::MG,
7463    },
7464    Municipio {
7465        ibge_code: 3113503,
7466        name: "Carbonita",
7467        state: State::MG,
7468    },
7469    Municipio {
7470        ibge_code: 3113602,
7471        name: "Careaçu",
7472        state: State::MG,
7473    },
7474    Municipio {
7475        ibge_code: 3113701,
7476        name: "Carlos Chagas",
7477        state: State::MG,
7478    },
7479    Municipio {
7480        ibge_code: 3113909,
7481        name: "Carmo da Cachoeira",
7482        state: State::MG,
7483    },
7484    Municipio {
7485        ibge_code: 3114006,
7486        name: "Carmo da Mata",
7487        state: State::MG,
7488    },
7489    Municipio {
7490        ibge_code: 3114105,
7491        name: "Carmo de Minas",
7492        state: State::MG,
7493    },
7494    Municipio {
7495        ibge_code: 3114204,
7496        name: "Carmo do Cajuru",
7497        state: State::MG,
7498    },
7499    Municipio {
7500        ibge_code: 3114303,
7501        name: "Carmo do Paranaíba",
7502        state: State::MG,
7503    },
7504    Municipio {
7505        ibge_code: 3114402,
7506        name: "Carmo do Rio Claro",
7507        state: State::MG,
7508    },
7509    Municipio {
7510        ibge_code: 3113800,
7511        name: "Carmésia",
7512        state: State::MG,
7513    },
7514    Municipio {
7515        ibge_code: 3114501,
7516        name: "Carmópolis de Minas",
7517        state: State::MG,
7518    },
7519    Municipio {
7520        ibge_code: 3114550,
7521        name: "Carneirinho",
7522        state: State::MG,
7523    },
7524    Municipio {
7525        ibge_code: 3114600,
7526        name: "Carrancas",
7527        state: State::MG,
7528    },
7529    Municipio {
7530        ibge_code: 3114808,
7531        name: "Carvalhos",
7532        state: State::MG,
7533    },
7534    Municipio {
7535        ibge_code: 3114709,
7536        name: "Carvalhópolis",
7537        state: State::MG,
7538    },
7539    Municipio {
7540        ibge_code: 3114907,
7541        name: "Casa Grande",
7542        state: State::MG,
7543    },
7544    Municipio {
7545        ibge_code: 3115003,
7546        name: "Cascalho Rico",
7547        state: State::MG,
7548    },
7549    Municipio {
7550        ibge_code: 3115300,
7551        name: "Cataguases",
7552        state: State::MG,
7553    },
7554    Municipio {
7555        ibge_code: 3115359,
7556        name: "Catas Altas",
7557        state: State::MG,
7558    },
7559    Municipio {
7560        ibge_code: 3115409,
7561        name: "Catas Altas da Noruega",
7562        state: State::MG,
7563    },
7564    Municipio {
7565        ibge_code: 3115458,
7566        name: "Catuji",
7567        state: State::MG,
7568    },
7569    Municipio {
7570        ibge_code: 3115474,
7571        name: "Catuti",
7572        state: State::MG,
7573    },
7574    Municipio {
7575        ibge_code: 3115508,
7576        name: "Caxambu",
7577        state: State::MG,
7578    },
7579    Municipio {
7580        ibge_code: 3115607,
7581        name: "Cedro do Abaeté",
7582        state: State::MG,
7583    },
7584    Municipio {
7585        ibge_code: 3115706,
7586        name: "Central de Minas",
7587        state: State::MG,
7588    },
7589    Municipio {
7590        ibge_code: 3115805,
7591        name: "Centralina",
7592        state: State::MG,
7593    },
7594    Municipio {
7595        ibge_code: 3116001,
7596        name: "Chalé",
7597        state: State::MG,
7598    },
7599    Municipio {
7600        ibge_code: 3116159,
7601        name: "Chapada Gaúcha",
7602        state: State::MG,
7603    },
7604    Municipio {
7605        ibge_code: 3116100,
7606        name: "Chapada do Norte",
7607        state: State::MG,
7608    },
7609    Municipio {
7610        ibge_code: 3116209,
7611        name: "Chiador",
7612        state: State::MG,
7613    },
7614    Municipio {
7615        ibge_code: 3115904,
7616        name: "Chácara",
7617        state: State::MG,
7618    },
7619    Municipio {
7620        ibge_code: 3116308,
7621        name: "Cipotânea",
7622        state: State::MG,
7623    },
7624    Municipio {
7625        ibge_code: 3116407,
7626        name: "Claraval",
7627        state: State::MG,
7628    },
7629    Municipio {
7630        ibge_code: 3116506,
7631        name: "Claro dos Poções",
7632        state: State::MG,
7633    },
7634    Municipio {
7635        ibge_code: 3116605,
7636        name: "Cláudio",
7637        state: State::MG,
7638    },
7639    Municipio {
7640        ibge_code: 3116704,
7641        name: "Coimbra",
7642        state: State::MG,
7643    },
7644    Municipio {
7645        ibge_code: 3116803,
7646        name: "Coluna",
7647        state: State::MG,
7648    },
7649    Municipio {
7650        ibge_code: 3116902,
7651        name: "Comendador Gomes",
7652        state: State::MG,
7653    },
7654    Municipio {
7655        ibge_code: 3117009,
7656        name: "Comercinho",
7657        state: State::MG,
7658    },
7659    Municipio {
7660        ibge_code: 3117108,
7661        name: "Conceição da Aparecida",
7662        state: State::MG,
7663    },
7664    Municipio {
7665        ibge_code: 3115201,
7666        name: "Conceição da Barra de Minas",
7667        state: State::MG,
7668    },
7669    Municipio {
7670        ibge_code: 3117306,
7671        name: "Conceição das Alagoas",
7672        state: State::MG,
7673    },
7674    Municipio {
7675        ibge_code: 3117207,
7676        name: "Conceição das Pedras",
7677        state: State::MG,
7678    },
7679    Municipio {
7680        ibge_code: 3117405,
7681        name: "Conceição de Ipanema",
7682        state: State::MG,
7683    },
7684    Municipio {
7685        ibge_code: 3117504,
7686        name: "Conceição do Mato Dentro",
7687        state: State::MG,
7688    },
7689    Municipio {
7690        ibge_code: 3117603,
7691        name: "Conceição do Pará",
7692        state: State::MG,
7693    },
7694    Municipio {
7695        ibge_code: 3117702,
7696        name: "Conceição do Rio Verde",
7697        state: State::MG,
7698    },
7699    Municipio {
7700        ibge_code: 3117801,
7701        name: "Conceição dos Ouros",
7702        state: State::MG,
7703    },
7704    Municipio {
7705        ibge_code: 3117876,
7706        name: "Confins",
7707        state: State::MG,
7708    },
7709    Municipio {
7710        ibge_code: 3117900,
7711        name: "Congonhal",
7712        state: State::MG,
7713    },
7714    Municipio {
7715        ibge_code: 3118007,
7716        name: "Congonhas",
7717        state: State::MG,
7718    },
7719    Municipio {
7720        ibge_code: 3118106,
7721        name: "Congonhas do Norte",
7722        state: State::MG,
7723    },
7724    Municipio {
7725        ibge_code: 3118205,
7726        name: "Conquista",
7727        state: State::MG,
7728    },
7729    Municipio {
7730        ibge_code: 3118304,
7731        name: "Conselheiro Lafaiete",
7732        state: State::MG,
7733    },
7734    Municipio {
7735        ibge_code: 3118403,
7736        name: "Conselheiro Pena",
7737        state: State::MG,
7738    },
7739    Municipio {
7740        ibge_code: 3118502,
7741        name: "Consolação",
7742        state: State::MG,
7743    },
7744    Municipio {
7745        ibge_code: 3118601,
7746        name: "Contagem",
7747        state: State::MG,
7748    },
7749    Municipio {
7750        ibge_code: 3118700,
7751        name: "Coqueiral",
7752        state: State::MG,
7753    },
7754    Municipio {
7755        ibge_code: 3118809,
7756        name: "Coração de Jesus",
7757        state: State::MG,
7758    },
7759    Municipio {
7760        ibge_code: 3118908,
7761        name: "Cordisburgo",
7762        state: State::MG,
7763    },
7764    Municipio {
7765        ibge_code: 3119005,
7766        name: "Cordislândia",
7767        state: State::MG,
7768    },
7769    Municipio {
7770        ibge_code: 3119104,
7771        name: "Corinto",
7772        state: State::MG,
7773    },
7774    Municipio {
7775        ibge_code: 3119203,
7776        name: "Coroaci",
7777        state: State::MG,
7778    },
7779    Municipio {
7780        ibge_code: 3119302,
7781        name: "Coromandel",
7782        state: State::MG,
7783    },
7784    Municipio {
7785        ibge_code: 3119401,
7786        name: "Coronel Fabriciano",
7787        state: State::MG,
7788    },
7789    Municipio {
7790        ibge_code: 3119500,
7791        name: "Coronel Murta",
7792        state: State::MG,
7793    },
7794    Municipio {
7795        ibge_code: 3119609,
7796        name: "Coronel Pacheco",
7797        state: State::MG,
7798    },
7799    Municipio {
7800        ibge_code: 3119708,
7801        name: "Coronel Xavier Chaves",
7802        state: State::MG,
7803    },
7804    Municipio {
7805        ibge_code: 3120102,
7806        name: "Couto de Magalhães de Minas",
7807        state: State::MG,
7808    },
7809    Municipio {
7810        ibge_code: 3120201,
7811        name: "Cristais",
7812        state: State::MG,
7813    },
7814    Municipio {
7815        ibge_code: 3120409,
7816        name: "Cristiano Otoni",
7817        state: State::MG,
7818    },
7819    Municipio {
7820        ibge_code: 3120508,
7821        name: "Cristina",
7822        state: State::MG,
7823    },
7824    Municipio {
7825        ibge_code: 3120300,
7826        name: "Cristália",
7827        state: State::MG,
7828    },
7829    Municipio {
7830        ibge_code: 3120151,
7831        name: "Crisólita",
7832        state: State::MG,
7833    },
7834    Municipio {
7835        ibge_code: 3120607,
7836        name: "Crucilândia",
7837        state: State::MG,
7838    },
7839    Municipio {
7840        ibge_code: 3120706,
7841        name: "Cruzeiro da Fortaleza",
7842        state: State::MG,
7843    },
7844    Municipio {
7845        ibge_code: 3120805,
7846        name: "Cruzília",
7847        state: State::MG,
7848    },
7849    Municipio {
7850        ibge_code: 3120839,
7851        name: "Cuparaque",
7852        state: State::MG,
7853    },
7854    Municipio {
7855        ibge_code: 3120870,
7856        name: "Curral de Dentro",
7857        state: State::MG,
7858    },
7859    Municipio {
7860        ibge_code: 3120904,
7861        name: "Curvelo",
7862        state: State::MG,
7863    },
7864    Municipio {
7865        ibge_code: 3115102,
7866        name: "Cássia",
7867        state: State::MG,
7868    },
7869    Municipio {
7870        ibge_code: 3119807,
7871        name: "Córrego Danta",
7872        state: State::MG,
7873    },
7874    Municipio {
7875        ibge_code: 3119955,
7876        name: "Córrego Fundo",
7877        state: State::MG,
7878    },
7879    Municipio {
7880        ibge_code: 3120003,
7881        name: "Córrego Novo",
7882        state: State::MG,
7883    },
7884    Municipio {
7885        ibge_code: 3119906,
7886        name: "Córrego do Bom Jesus",
7887        state: State::MG,
7888    },
7889    Municipio {
7890        ibge_code: 3117836,
7891        name: "Cônego Marinho",
7892        state: State::MG,
7893    },
7894    Municipio {
7895        ibge_code: 3121001,
7896        name: "Datas",
7897        state: State::MG,
7898    },
7899    Municipio {
7900        ibge_code: 3121100,
7901        name: "Delfim Moreira",
7902        state: State::MG,
7903    },
7904    Municipio {
7905        ibge_code: 3121209,
7906        name: "Delfinópolis",
7907        state: State::MG,
7908    },
7909    Municipio {
7910        ibge_code: 3121258,
7911        name: "Delta",
7912        state: State::MG,
7913    },
7914    Municipio {
7915        ibge_code: 3121308,
7916        name: "Descoberto",
7917        state: State::MG,
7918    },
7919    Municipio {
7920        ibge_code: 3121407,
7921        name: "Desterro de Entre Rios",
7922        state: State::MG,
7923    },
7924    Municipio {
7925        ibge_code: 3121506,
7926        name: "Desterro do Melo",
7927        state: State::MG,
7928    },
7929    Municipio {
7930        ibge_code: 3121605,
7931        name: "Diamantina",
7932        state: State::MG,
7933    },
7934    Municipio {
7935        ibge_code: 3121704,
7936        name: "Diogo de Vasconcelos",
7937        state: State::MG,
7938    },
7939    Municipio {
7940        ibge_code: 3121803,
7941        name: "Dionísio",
7942        state: State::MG,
7943    },
7944    Municipio {
7945        ibge_code: 3122009,
7946        name: "Divino",
7947        state: State::MG,
7948    },
7949    Municipio {
7950        ibge_code: 3122108,
7951        name: "Divino das Laranjeiras",
7952        state: State::MG,
7953    },
7954    Municipio {
7955        ibge_code: 3122207,
7956        name: "Divinolândia de Minas",
7957        state: State::MG,
7958    },
7959    Municipio {
7960        ibge_code: 3121902,
7961        name: "Divinésia",
7962        state: State::MG,
7963    },
7964    Municipio {
7965        ibge_code: 3122306,
7966        name: "Divinópolis",
7967        state: State::MG,
7968    },
7969    Municipio {
7970        ibge_code: 3122355,
7971        name: "Divisa Alegre",
7972        state: State::MG,
7973    },
7974    Municipio {
7975        ibge_code: 3122405,
7976        name: "Divisa Nova",
7977        state: State::MG,
7978    },
7979    Municipio {
7980        ibge_code: 3122454,
7981        name: "Divisópolis",
7982        state: State::MG,
7983    },
7984    Municipio {
7985        ibge_code: 3122470,
7986        name: "Dom Bosco",
7987        state: State::MG,
7988    },
7989    Municipio {
7990        ibge_code: 3122504,
7991        name: "Dom Cavati",
7992        state: State::MG,
7993    },
7994    Municipio {
7995        ibge_code: 3122603,
7996        name: "Dom Joaquim",
7997        state: State::MG,
7998    },
7999    Municipio {
8000        ibge_code: 3122702,
8001        name: "Dom Silvério",
8002        state: State::MG,
8003    },
8004    Municipio {
8005        ibge_code: 3122801,
8006        name: "Dom Viçoso",
8007        state: State::MG,
8008    },
8009    Municipio {
8010        ibge_code: 3122900,
8011        name: "Dona Euzébia",
8012        state: State::MG,
8013    },
8014    Municipio {
8015        ibge_code: 3123007,
8016        name: "Dores de Campos",
8017        state: State::MG,
8018    },
8019    Municipio {
8020        ibge_code: 3123106,
8021        name: "Dores de Guanhães",
8022        state: State::MG,
8023    },
8024    Municipio {
8025        ibge_code: 3123205,
8026        name: "Dores do Indaiá",
8027        state: State::MG,
8028    },
8029    Municipio {
8030        ibge_code: 3123304,
8031        name: "Dores do Turvo",
8032        state: State::MG,
8033    },
8034    Municipio {
8035        ibge_code: 3123403,
8036        name: "Doresópolis",
8037        state: State::MG,
8038    },
8039    Municipio {
8040        ibge_code: 3123502,
8041        name: "Douradoquara",
8042        state: State::MG,
8043    },
8044    Municipio {
8045        ibge_code: 3123528,
8046        name: "Durandé",
8047        state: State::MG,
8048    },
8049    Municipio {
8050        ibge_code: 3123601,
8051        name: "Elói Mendes",
8052        state: State::MG,
8053    },
8054    Municipio {
8055        ibge_code: 3123700,
8056        name: "Engenheiro Caldas",
8057        state: State::MG,
8058    },
8059    Municipio {
8060        ibge_code: 3123809,
8061        name: "Engenheiro Navarro",
8062        state: State::MG,
8063    },
8064    Municipio {
8065        ibge_code: 3123858,
8066        name: "Entre Folhas",
8067        state: State::MG,
8068    },
8069    Municipio {
8070        ibge_code: 3123908,
8071        name: "Entre Rios de Minas",
8072        state: State::MG,
8073    },
8074    Municipio {
8075        ibge_code: 3124005,
8076        name: "Ervália",
8077        state: State::MG,
8078    },
8079    Municipio {
8080        ibge_code: 3124104,
8081        name: "Esmeraldas",
8082        state: State::MG,
8083    },
8084    Municipio {
8085        ibge_code: 3124203,
8086        name: "Espera Feliz",
8087        state: State::MG,
8088    },
8089    Municipio {
8090        ibge_code: 3124302,
8091        name: "Espinosa",
8092        state: State::MG,
8093    },
8094    Municipio {
8095        ibge_code: 3124401,
8096        name: "Espírito Santo do Dourado",
8097        state: State::MG,
8098    },
8099    Municipio {
8100        ibge_code: 3124500,
8101        name: "Estiva",
8102        state: State::MG,
8103    },
8104    Municipio {
8105        ibge_code: 3124609,
8106        name: "Estrela Dalva",
8107        state: State::MG,
8108    },
8109    Municipio {
8110        ibge_code: 3124708,
8111        name: "Estrela do Indaiá",
8112        state: State::MG,
8113    },
8114    Municipio {
8115        ibge_code: 3124807,
8116        name: "Estrela do Sul",
8117        state: State::MG,
8118    },
8119    Municipio {
8120        ibge_code: 3124906,
8121        name: "Eugenópolis",
8122        state: State::MG,
8123    },
8124    Municipio {
8125        ibge_code: 3125002,
8126        name: "Ewbank da Câmara",
8127        state: State::MG,
8128    },
8129    Municipio {
8130        ibge_code: 3125101,
8131        name: "Extrema",
8132        state: State::MG,
8133    },
8134    Municipio {
8135        ibge_code: 3125200,
8136        name: "Fama",
8137        state: State::MG,
8138    },
8139    Municipio {
8140        ibge_code: 3125309,
8141        name: "Faria Lemos",
8142        state: State::MG,
8143    },
8144    Municipio {
8145        ibge_code: 3125606,
8146        name: "Felisburgo",
8147        state: State::MG,
8148    },
8149    Municipio {
8150        ibge_code: 3125705,
8151        name: "Felixlândia",
8152        state: State::MG,
8153    },
8154    Municipio {
8155        ibge_code: 3125408,
8156        name: "Felício dos Santos",
8157        state: State::MG,
8158    },
8159    Municipio {
8160        ibge_code: 3125804,
8161        name: "Fernandes Tourinho",
8162        state: State::MG,
8163    },
8164    Municipio {
8165        ibge_code: 3125903,
8166        name: "Ferros",
8167        state: State::MG,
8168    },
8169    Municipio {
8170        ibge_code: 3125952,
8171        name: "Fervedouro",
8172        state: State::MG,
8173    },
8174    Municipio {
8175        ibge_code: 3126000,
8176        name: "Florestal",
8177        state: State::MG,
8178    },
8179    Municipio {
8180        ibge_code: 3126109,
8181        name: "Formiga",
8182        state: State::MG,
8183    },
8184    Municipio {
8185        ibge_code: 3126208,
8186        name: "Formoso",
8187        state: State::MG,
8188    },
8189    Municipio {
8190        ibge_code: 3126307,
8191        name: "Fortaleza de Minas",
8192        state: State::MG,
8193    },
8194    Municipio {
8195        ibge_code: 3126406,
8196        name: "Fortuna de Minas",
8197        state: State::MG,
8198    },
8199    Municipio {
8200        ibge_code: 3126505,
8201        name: "Francisco Badaró",
8202        state: State::MG,
8203    },
8204    Municipio {
8205        ibge_code: 3126604,
8206        name: "Francisco Dumont",
8207        state: State::MG,
8208    },
8209    Municipio {
8210        ibge_code: 3126703,
8211        name: "Francisco Sá",
8212        state: State::MG,
8213    },
8214    Municipio {
8215        ibge_code: 3126752,
8216        name: "Franciscópolis",
8217        state: State::MG,
8218    },
8219    Municipio {
8220        ibge_code: 3126802,
8221        name: "Frei Gaspar",
8222        state: State::MG,
8223    },
8224    Municipio {
8225        ibge_code: 3126901,
8226        name: "Frei Inocêncio",
8227        state: State::MG,
8228    },
8229    Municipio {
8230        ibge_code: 3126950,
8231        name: "Frei Lagonegro",
8232        state: State::MG,
8233    },
8234    Municipio {
8235        ibge_code: 3127008,
8236        name: "Fronteira",
8237        state: State::MG,
8238    },
8239    Municipio {
8240        ibge_code: 3127057,
8241        name: "Fronteira dos Vales",
8242        state: State::MG,
8243    },
8244    Municipio {
8245        ibge_code: 3127073,
8246        name: "Fruta de Leite",
8247        state: State::MG,
8248    },
8249    Municipio {
8250        ibge_code: 3127107,
8251        name: "Frutal",
8252        state: State::MG,
8253    },
8254    Municipio {
8255        ibge_code: 3127206,
8256        name: "Funilândia",
8257        state: State::MG,
8258    },
8259    Municipio {
8260        ibge_code: 3127305,
8261        name: "Galiléia",
8262        state: State::MG,
8263    },
8264    Municipio {
8265        ibge_code: 3127339,
8266        name: "Gameleiras",
8267        state: State::MG,
8268    },
8269    Municipio {
8270        ibge_code: 3127354,
8271        name: "Glaucilândia",
8272        state: State::MG,
8273    },
8274    Municipio {
8275        ibge_code: 3127370,
8276        name: "Goiabeira",
8277        state: State::MG,
8278    },
8279    Municipio {
8280        ibge_code: 3127388,
8281        name: "Goianá",
8282        state: State::MG,
8283    },
8284    Municipio {
8285        ibge_code: 3127503,
8286        name: "Gonzaga",
8287        state: State::MG,
8288    },
8289    Municipio {
8290        ibge_code: 3127404,
8291        name: "Gonçalves",
8292        state: State::MG,
8293    },
8294    Municipio {
8295        ibge_code: 3127602,
8296        name: "Gouveia",
8297        state: State::MG,
8298    },
8299    Municipio {
8300        ibge_code: 3127701,
8301        name: "Governador Valadares",
8302        state: State::MG,
8303    },
8304    Municipio {
8305        ibge_code: 3127909,
8306        name: "Grupiara",
8307        state: State::MG,
8308    },
8309    Municipio {
8310        ibge_code: 3127800,
8311        name: "Grão Mogol",
8312        state: State::MG,
8313    },
8314    Municipio {
8315        ibge_code: 3128006,
8316        name: "Guanhães",
8317        state: State::MG,
8318    },
8319    Municipio {
8320        ibge_code: 3128105,
8321        name: "Guapé",
8322        state: State::MG,
8323    },
8324    Municipio {
8325        ibge_code: 3128204,
8326        name: "Guaraciaba",
8327        state: State::MG,
8328    },
8329    Municipio {
8330        ibge_code: 3128253,
8331        name: "Guaraciama",
8332        state: State::MG,
8333    },
8334    Municipio {
8335        ibge_code: 3128402,
8336        name: "Guarani",
8337        state: State::MG,
8338    },
8339    Municipio {
8340        ibge_code: 3128303,
8341        name: "Guaranésia",
8342        state: State::MG,
8343    },
8344    Municipio {
8345        ibge_code: 3128501,
8346        name: "Guarará",
8347        state: State::MG,
8348    },
8349    Municipio {
8350        ibge_code: 3128600,
8351        name: "Guarda-Mor",
8352        state: State::MG,
8353    },
8354    Municipio {
8355        ibge_code: 3128709,
8356        name: "Guaxupé",
8357        state: State::MG,
8358    },
8359    Municipio {
8360        ibge_code: 3128808,
8361        name: "Guidoval",
8362        state: State::MG,
8363    },
8364    Municipio {
8365        ibge_code: 3128907,
8366        name: "Guimarânia",
8367        state: State::MG,
8368    },
8369    Municipio {
8370        ibge_code: 3129004,
8371        name: "Guiricema",
8372        state: State::MG,
8373    },
8374    Municipio {
8375        ibge_code: 3129103,
8376        name: "Gurinhatã",
8377        state: State::MG,
8378    },
8379    Municipio {
8380        ibge_code: 3129202,
8381        name: "Heliodora",
8382        state: State::MG,
8383    },
8384    Municipio {
8385        ibge_code: 3129301,
8386        name: "Iapu",
8387        state: State::MG,
8388    },
8389    Municipio {
8390        ibge_code: 3129400,
8391        name: "Ibertioga",
8392        state: State::MG,
8393    },
8394    Municipio {
8395        ibge_code: 3129608,
8396        name: "Ibiaí",
8397        state: State::MG,
8398    },
8399    Municipio {
8400        ibge_code: 3129657,
8401        name: "Ibiracatu",
8402        state: State::MG,
8403    },
8404    Municipio {
8405        ibge_code: 3129707,
8406        name: "Ibiraci",
8407        state: State::MG,
8408    },
8409    Municipio {
8410        ibge_code: 3129806,
8411        name: "Ibirité",
8412        state: State::MG,
8413    },
8414    Municipio {
8415        ibge_code: 3129905,
8416        name: "Ibitiúra de Minas",
8417        state: State::MG,
8418    },
8419    Municipio {
8420        ibge_code: 3130002,
8421        name: "Ibituruna",
8422        state: State::MG,
8423    },
8424    Municipio {
8425        ibge_code: 3129509,
8426        name: "Ibiá",
8427        state: State::MG,
8428    },
8429    Municipio {
8430        ibge_code: 3130051,
8431        name: "Icaraí de Minas",
8432        state: State::MG,
8433    },
8434    Municipio {
8435        ibge_code: 3130101,
8436        name: "Igarapé",
8437        state: State::MG,
8438    },
8439    Municipio {
8440        ibge_code: 3130200,
8441        name: "Igaratinga",
8442        state: State::MG,
8443    },
8444    Municipio {
8445        ibge_code: 3130309,
8446        name: "Iguatama",
8447        state: State::MG,
8448    },
8449    Municipio {
8450        ibge_code: 3130408,
8451        name: "Ijaci",
8452        state: State::MG,
8453    },
8454    Municipio {
8455        ibge_code: 3130507,
8456        name: "Ilicínea",
8457        state: State::MG,
8458    },
8459    Municipio {
8460        ibge_code: 3130556,
8461        name: "Imbé de Minas",
8462        state: State::MG,
8463    },
8464    Municipio {
8465        ibge_code: 3130606,
8466        name: "Inconfidentes",
8467        state: State::MG,
8468    },
8469    Municipio {
8470        ibge_code: 3130655,
8471        name: "Indaiabira",
8472        state: State::MG,
8473    },
8474    Municipio {
8475        ibge_code: 3130705,
8476        name: "Indianópolis",
8477        state: State::MG,
8478    },
8479    Municipio {
8480        ibge_code: 3130804,
8481        name: "Ingaí",
8482        state: State::MG,
8483    },
8484    Municipio {
8485        ibge_code: 3130903,
8486        name: "Inhapim",
8487        state: State::MG,
8488    },
8489    Municipio {
8490        ibge_code: 3131000,
8491        name: "Inhaúma",
8492        state: State::MG,
8493    },
8494    Municipio {
8495        ibge_code: 3131109,
8496        name: "Inimutaba",
8497        state: State::MG,
8498    },
8499    Municipio {
8500        ibge_code: 3131158,
8501        name: "Ipaba",
8502        state: State::MG,
8503    },
8504    Municipio {
8505        ibge_code: 3131208,
8506        name: "Ipanema",
8507        state: State::MG,
8508    },
8509    Municipio {
8510        ibge_code: 3131307,
8511        name: "Ipatinga",
8512        state: State::MG,
8513    },
8514    Municipio {
8515        ibge_code: 3131406,
8516        name: "Ipiaçu",
8517        state: State::MG,
8518    },
8519    Municipio {
8520        ibge_code: 3131505,
8521        name: "Ipuiúna",
8522        state: State::MG,
8523    },
8524    Municipio {
8525        ibge_code: 3131604,
8526        name: "Iraí de Minas",
8527        state: State::MG,
8528    },
8529    Municipio {
8530        ibge_code: 3131703,
8531        name: "Itabira",
8532        state: State::MG,
8533    },
8534    Municipio {
8535        ibge_code: 3131802,
8536        name: "Itabirinha",
8537        state: State::MG,
8538    },
8539    Municipio {
8540        ibge_code: 3131901,
8541        name: "Itabirito",
8542        state: State::MG,
8543    },
8544    Municipio {
8545        ibge_code: 3132008,
8546        name: "Itacambira",
8547        state: State::MG,
8548    },
8549    Municipio {
8550        ibge_code: 3132107,
8551        name: "Itacarambi",
8552        state: State::MG,
8553    },
8554    Municipio {
8555        ibge_code: 3132206,
8556        name: "Itaguara",
8557        state: State::MG,
8558    },
8559    Municipio {
8560        ibge_code: 3132305,
8561        name: "Itaipé",
8562        state: State::MG,
8563    },
8564    Municipio {
8565        ibge_code: 3132404,
8566        name: "Itajubá",
8567        state: State::MG,
8568    },
8569    Municipio {
8570        ibge_code: 3132503,
8571        name: "Itamarandiba",
8572        state: State::MG,
8573    },
8574    Municipio {
8575        ibge_code: 3132602,
8576        name: "Itamarati de Minas",
8577        state: State::MG,
8578    },
8579    Municipio {
8580        ibge_code: 3132701,
8581        name: "Itambacuri",
8582        state: State::MG,
8583    },
8584    Municipio {
8585        ibge_code: 3132800,
8586        name: "Itambé do Mato Dentro",
8587        state: State::MG,
8588    },
8589    Municipio {
8590        ibge_code: 3132909,
8591        name: "Itamogi",
8592        state: State::MG,
8593    },
8594    Municipio {
8595        ibge_code: 3133006,
8596        name: "Itamonte",
8597        state: State::MG,
8598    },
8599    Municipio {
8600        ibge_code: 3133105,
8601        name: "Itanhandu",
8602        state: State::MG,
8603    },
8604    Municipio {
8605        ibge_code: 3133204,
8606        name: "Itanhomi",
8607        state: State::MG,
8608    },
8609    Municipio {
8610        ibge_code: 3133303,
8611        name: "Itaobim",
8612        state: State::MG,
8613    },
8614    Municipio {
8615        ibge_code: 3133402,
8616        name: "Itapagipe",
8617        state: State::MG,
8618    },
8619    Municipio {
8620        ibge_code: 3133501,
8621        name: "Itapecerica",
8622        state: State::MG,
8623    },
8624    Municipio {
8625        ibge_code: 3133600,
8626        name: "Itapeva",
8627        state: State::MG,
8628    },
8629    Municipio {
8630        ibge_code: 3133709,
8631        name: "Itatiaiuçu",
8632        state: State::MG,
8633    },
8634    Municipio {
8635        ibge_code: 3133907,
8636        name: "Itaverava",
8637        state: State::MG,
8638    },
8639    Municipio {
8640        ibge_code: 3133758,
8641        name: "Itaú de Minas",
8642        state: State::MG,
8643    },
8644    Municipio {
8645        ibge_code: 3133808,
8646        name: "Itaúna",
8647        state: State::MG,
8648    },
8649    Municipio {
8650        ibge_code: 3134004,
8651        name: "Itinga",
8652        state: State::MG,
8653    },
8654    Municipio {
8655        ibge_code: 3134103,
8656        name: "Itueta",
8657        state: State::MG,
8658    },
8659    Municipio {
8660        ibge_code: 3134202,
8661        name: "Ituiutaba",
8662        state: State::MG,
8663    },
8664    Municipio {
8665        ibge_code: 3134301,
8666        name: "Itumirim",
8667        state: State::MG,
8668    },
8669    Municipio {
8670        ibge_code: 3134400,
8671        name: "Iturama",
8672        state: State::MG,
8673    },
8674    Municipio {
8675        ibge_code: 3134509,
8676        name: "Itutinga",
8677        state: State::MG,
8678    },
8679    Municipio {
8680        ibge_code: 3134608,
8681        name: "Jaboticatubas",
8682        state: State::MG,
8683    },
8684    Municipio {
8685        ibge_code: 3134707,
8686        name: "Jacinto",
8687        state: State::MG,
8688    },
8689    Municipio {
8690        ibge_code: 3134905,
8691        name: "Jacutinga",
8692        state: State::MG,
8693    },
8694    Municipio {
8695        ibge_code: 3134806,
8696        name: "Jacuí",
8697        state: State::MG,
8698    },
8699    Municipio {
8700        ibge_code: 3135001,
8701        name: "Jaguaraçu",
8702        state: State::MG,
8703    },
8704    Municipio {
8705        ibge_code: 3135076,
8706        name: "Jampruca",
8707        state: State::MG,
8708    },
8709    Municipio {
8710        ibge_code: 3135100,
8711        name: "Janaúba",
8712        state: State::MG,
8713    },
8714    Municipio {
8715        ibge_code: 3135209,
8716        name: "Januária",
8717        state: State::MG,
8718    },
8719    Municipio {
8720        ibge_code: 3135308,
8721        name: "Japaraíba",
8722        state: State::MG,
8723    },
8724    Municipio {
8725        ibge_code: 3135357,
8726        name: "Japonvar",
8727        state: State::MG,
8728    },
8729    Municipio {
8730        ibge_code: 3135050,
8731        name: "Jaíba",
8732        state: State::MG,
8733    },
8734    Municipio {
8735        ibge_code: 3135407,
8736        name: "Jeceaba",
8737        state: State::MG,
8738    },
8739    Municipio {
8740        ibge_code: 3135456,
8741        name: "Jenipapo de Minas",
8742        state: State::MG,
8743    },
8744    Municipio {
8745        ibge_code: 3135506,
8746        name: "Jequeri",
8747        state: State::MG,
8748    },
8749    Municipio {
8750        ibge_code: 3135605,
8751        name: "Jequitaí",
8752        state: State::MG,
8753    },
8754    Municipio {
8755        ibge_code: 3135704,
8756        name: "Jequitibá",
8757        state: State::MG,
8758    },
8759    Municipio {
8760        ibge_code: 3135803,
8761        name: "Jequitinhonha",
8762        state: State::MG,
8763    },
8764    Municipio {
8765        ibge_code: 3135902,
8766        name: "Jesuânia",
8767        state: State::MG,
8768    },
8769    Municipio {
8770        ibge_code: 3136108,
8771        name: "Joanésia",
8772        state: State::MG,
8773    },
8774    Municipio {
8775        ibge_code: 3136405,
8776        name: "Joaquim Felício",
8777        state: State::MG,
8778    },
8779    Municipio {
8780        ibge_code: 3136009,
8781        name: "Joaíma",
8782        state: State::MG,
8783    },
8784    Municipio {
8785        ibge_code: 3136504,
8786        name: "Jordânia",
8787        state: State::MG,
8788    },
8789    Municipio {
8790        ibge_code: 3136579,
8791        name: "Josenópolis",
8792        state: State::MG,
8793    },
8794    Municipio {
8795        ibge_code: 3136520,
8796        name: "José Gonçalves de Minas",
8797        state: State::MG,
8798    },
8799    Municipio {
8800        ibge_code: 3136553,
8801        name: "José Raydan",
8802        state: State::MG,
8803    },
8804    Municipio {
8805        ibge_code: 3136207,
8806        name: "João Monlevade",
8807        state: State::MG,
8808    },
8809    Municipio {
8810        ibge_code: 3136306,
8811        name: "João Pinheiro",
8812        state: State::MG,
8813    },
8814    Municipio {
8815        ibge_code: 3136652,
8816        name: "Juatuba",
8817        state: State::MG,
8818    },
8819    Municipio {
8820        ibge_code: 3136702,
8821        name: "Juiz de Fora",
8822        state: State::MG,
8823    },
8824    Municipio {
8825        ibge_code: 3136801,
8826        name: "Juramento",
8827        state: State::MG,
8828    },
8829    Municipio {
8830        ibge_code: 3136900,
8831        name: "Juruaia",
8832        state: State::MG,
8833    },
8834    Municipio {
8835        ibge_code: 3136959,
8836        name: "Juvenília",
8837        state: State::MG,
8838    },
8839    Municipio {
8840        ibge_code: 3137007,
8841        name: "Ladainha",
8842        state: State::MG,
8843    },
8844    Municipio {
8845        ibge_code: 3137106,
8846        name: "Lagamar",
8847        state: State::MG,
8848    },
8849    Municipio {
8850        ibge_code: 3137403,
8851        name: "Lagoa Dourada",
8852        state: State::MG,
8853    },
8854    Municipio {
8855        ibge_code: 3137502,
8856        name: "Lagoa Formosa",
8857        state: State::MG,
8858    },
8859    Municipio {
8860        ibge_code: 3137536,
8861        name: "Lagoa Grande",
8862        state: State::MG,
8863    },
8864    Municipio {
8865        ibge_code: 3137601,
8866        name: "Lagoa Santa",
8867        state: State::MG,
8868    },
8869    Municipio {
8870        ibge_code: 3137205,
8871        name: "Lagoa da Prata",
8872        state: State::MG,
8873    },
8874    Municipio {
8875        ibge_code: 3137304,
8876        name: "Lagoa dos Patos",
8877        state: State::MG,
8878    },
8879    Municipio {
8880        ibge_code: 3137700,
8881        name: "Lajinha",
8882        state: State::MG,
8883    },
8884    Municipio {
8885        ibge_code: 3137809,
8886        name: "Lambari",
8887        state: State::MG,
8888    },
8889    Municipio {
8890        ibge_code: 3137908,
8891        name: "Lamim",
8892        state: State::MG,
8893    },
8894    Municipio {
8895        ibge_code: 3138005,
8896        name: "Laranjal",
8897        state: State::MG,
8898    },
8899    Municipio {
8900        ibge_code: 3138104,
8901        name: "Lassance",
8902        state: State::MG,
8903    },
8904    Municipio {
8905        ibge_code: 3138203,
8906        name: "Lavras",
8907        state: State::MG,
8908    },
8909    Municipio {
8910        ibge_code: 3138302,
8911        name: "Leandro Ferreira",
8912        state: State::MG,
8913    },
8914    Municipio {
8915        ibge_code: 3138351,
8916        name: "Leme do Prado",
8917        state: State::MG,
8918    },
8919    Municipio {
8920        ibge_code: 3138401,
8921        name: "Leopoldina",
8922        state: State::MG,
8923    },
8924    Municipio {
8925        ibge_code: 3138500,
8926        name: "Liberdade",
8927        state: State::MG,
8928    },
8929    Municipio {
8930        ibge_code: 3138609,
8931        name: "Lima Duarte",
8932        state: State::MG,
8933    },
8934    Municipio {
8935        ibge_code: 3138625,
8936        name: "Limeira do Oeste",
8937        state: State::MG,
8938    },
8939    Municipio {
8940        ibge_code: 3138658,
8941        name: "Lontra",
8942        state: State::MG,
8943    },
8944    Municipio {
8945        ibge_code: 3138674,
8946        name: "Luisburgo",
8947        state: State::MG,
8948    },
8949    Municipio {
8950        ibge_code: 3138682,
8951        name: "Luislândia",
8952        state: State::MG,
8953    },
8954    Municipio {
8955        ibge_code: 3138708,
8956        name: "Luminárias",
8957        state: State::MG,
8958    },
8959    Municipio {
8960        ibge_code: 3138807,
8961        name: "Luz",
8962        state: State::MG,
8963    },
8964    Municipio {
8965        ibge_code: 3138906,
8966        name: "Machacalis",
8967        state: State::MG,
8968    },
8969    Municipio {
8970        ibge_code: 3139003,
8971        name: "Machado",
8972        state: State::MG,
8973    },
8974    Municipio {
8975        ibge_code: 3139102,
8976        name: "Madre de Deus de Minas",
8977        state: State::MG,
8978    },
8979    Municipio {
8980        ibge_code: 3139201,
8981        name: "Malacacheta",
8982        state: State::MG,
8983    },
8984    Municipio {
8985        ibge_code: 3139250,
8986        name: "Mamonas",
8987        state: State::MG,
8988    },
8989    Municipio {
8990        ibge_code: 3139300,
8991        name: "Manga",
8992        state: State::MG,
8993    },
8994    Municipio {
8995        ibge_code: 3139409,
8996        name: "Manhuaçu",
8997        state: State::MG,
8998    },
8999    Municipio {
9000        ibge_code: 3139508,
9001        name: "Manhumirim",
9002        state: State::MG,
9003    },
9004    Municipio {
9005        ibge_code: 3139607,
9006        name: "Mantena",
9007        state: State::MG,
9008    },
9009    Municipio {
9010        ibge_code: 3139805,
9011        name: "Mar de Espanha",
9012        state: State::MG,
9013    },
9014    Municipio {
9015        ibge_code: 3139706,
9016        name: "Maravilhas",
9017        state: State::MG,
9018    },
9019    Municipio {
9020        ibge_code: 3139904,
9021        name: "Maria da Fé",
9022        state: State::MG,
9023    },
9024    Municipio {
9025        ibge_code: 3140001,
9026        name: "Mariana",
9027        state: State::MG,
9028    },
9029    Municipio {
9030        ibge_code: 3140100,
9031        name: "Marilac",
9032        state: State::MG,
9033    },
9034    Municipio {
9035        ibge_code: 3140209,
9036        name: "Maripá de Minas",
9037        state: State::MG,
9038    },
9039    Municipio {
9040        ibge_code: 3140308,
9041        name: "Marliéria",
9042        state: State::MG,
9043    },
9044    Municipio {
9045        ibge_code: 3140407,
9046        name: "Marmelópolis",
9047        state: State::MG,
9048    },
9049    Municipio {
9050        ibge_code: 3140506,
9051        name: "Martinho Campos",
9052        state: State::MG,
9053    },
9054    Municipio {
9055        ibge_code: 3140530,
9056        name: "Martins Soares",
9057        state: State::MG,
9058    },
9059    Municipio {
9060        ibge_code: 3140555,
9061        name: "Mata Verde",
9062        state: State::MG,
9063    },
9064    Municipio {
9065        ibge_code: 3140605,
9066        name: "Materlândia",
9067        state: State::MG,
9068    },
9069    Municipio {
9070        ibge_code: 3140704,
9071        name: "Mateus Leme",
9072        state: State::MG,
9073    },
9074    Municipio {
9075        ibge_code: 3171501,
9076        name: "Mathias Lobato",
9077        state: State::MG,
9078    },
9079    Municipio {
9080        ibge_code: 3140803,
9081        name: "Matias Barbosa",
9082        state: State::MG,
9083    },
9084    Municipio {
9085        ibge_code: 3140852,
9086        name: "Matias Cardoso",
9087        state: State::MG,
9088    },
9089    Municipio {
9090        ibge_code: 3140902,
9091        name: "Matipó",
9092        state: State::MG,
9093    },
9094    Municipio {
9095        ibge_code: 3141009,
9096        name: "Mato Verde",
9097        state: State::MG,
9098    },
9099    Municipio {
9100        ibge_code: 3141108,
9101        name: "Matozinhos",
9102        state: State::MG,
9103    },
9104    Municipio {
9105        ibge_code: 3141207,
9106        name: "Matutina",
9107        state: State::MG,
9108    },
9109    Municipio {
9110        ibge_code: 3141306,
9111        name: "Medeiros",
9112        state: State::MG,
9113    },
9114    Municipio {
9115        ibge_code: 3141405,
9116        name: "Medina",
9117        state: State::MG,
9118    },
9119    Municipio {
9120        ibge_code: 3141504,
9121        name: "Mendes Pimentel",
9122        state: State::MG,
9123    },
9124    Municipio {
9125        ibge_code: 3141603,
9126        name: "Mercês",
9127        state: State::MG,
9128    },
9129    Municipio {
9130        ibge_code: 3141702,
9131        name: "Mesquita",
9132        state: State::MG,
9133    },
9134    Municipio {
9135        ibge_code: 3141801,
9136        name: "Minas Novas",
9137        state: State::MG,
9138    },
9139    Municipio {
9140        ibge_code: 3141900,
9141        name: "Minduri",
9142        state: State::MG,
9143    },
9144    Municipio {
9145        ibge_code: 3142007,
9146        name: "Mirabela",
9147        state: State::MG,
9148    },
9149    Municipio {
9150        ibge_code: 3142106,
9151        name: "Miradouro",
9152        state: State::MG,
9153    },
9154    Municipio {
9155        ibge_code: 3142254,
9156        name: "Miravânia",
9157        state: State::MG,
9158    },
9159    Municipio {
9160        ibge_code: 3142205,
9161        name: "Miraí",
9162        state: State::MG,
9163    },
9164    Municipio {
9165        ibge_code: 3142304,
9166        name: "Moeda",
9167        state: State::MG,
9168    },
9169    Municipio {
9170        ibge_code: 3142403,
9171        name: "Moema",
9172        state: State::MG,
9173    },
9174    Municipio {
9175        ibge_code: 3142502,
9176        name: "Monjolos",
9177        state: State::MG,
9178    },
9179    Municipio {
9180        ibge_code: 3142601,
9181        name: "Monsenhor Paulo",
9182        state: State::MG,
9183    },
9184    Municipio {
9185        ibge_code: 3142700,
9186        name: "Montalvânia",
9187        state: State::MG,
9188    },
9189    Municipio {
9190        ibge_code: 3142809,
9191        name: "Monte Alegre de Minas",
9192        state: State::MG,
9193    },
9194    Municipio {
9195        ibge_code: 3142908,
9196        name: "Monte Azul",
9197        state: State::MG,
9198    },
9199    Municipio {
9200        ibge_code: 3143005,
9201        name: "Monte Belo",
9202        state: State::MG,
9203    },
9204    Municipio {
9205        ibge_code: 3143104,
9206        name: "Monte Carmelo",
9207        state: State::MG,
9208    },
9209    Municipio {
9210        ibge_code: 3143153,
9211        name: "Monte Formoso",
9212        state: State::MG,
9213    },
9214    Municipio {
9215        ibge_code: 3143203,
9216        name: "Monte Santo de Minas",
9217        state: State::MG,
9218    },
9219    Municipio {
9220        ibge_code: 3143401,
9221        name: "Monte Sião",
9222        state: State::MG,
9223    },
9224    Municipio {
9225        ibge_code: 3143302,
9226        name: "Montes Claros",
9227        state: State::MG,
9228    },
9229    Municipio {
9230        ibge_code: 3143450,
9231        name: "Montezuma",
9232        state: State::MG,
9233    },
9234    Municipio {
9235        ibge_code: 3143500,
9236        name: "Morada Nova de Minas",
9237        state: State::MG,
9238    },
9239    Municipio {
9240        ibge_code: 3143609,
9241        name: "Morro da Garça",
9242        state: State::MG,
9243    },
9244    Municipio {
9245        ibge_code: 3143708,
9246        name: "Morro do Pilar",
9247        state: State::MG,
9248    },
9249    Municipio {
9250        ibge_code: 3143807,
9251        name: "Munhoz",
9252        state: State::MG,
9253    },
9254    Municipio {
9255        ibge_code: 3143906,
9256        name: "Muriaé",
9257        state: State::MG,
9258    },
9259    Municipio {
9260        ibge_code: 3144003,
9261        name: "Mutum",
9262        state: State::MG,
9263    },
9264    Municipio {
9265        ibge_code: 3144102,
9266        name: "Muzambinho",
9267        state: State::MG,
9268    },
9269    Municipio {
9270        ibge_code: 3140159,
9271        name: "Mário Campos",
9272        state: State::MG,
9273    },
9274    Municipio {
9275        ibge_code: 3144201,
9276        name: "Nacip Raydan",
9277        state: State::MG,
9278    },
9279    Municipio {
9280        ibge_code: 3144300,
9281        name: "Nanuque",
9282        state: State::MG,
9283    },
9284    Municipio {
9285        ibge_code: 3144359,
9286        name: "Naque",
9287        state: State::MG,
9288    },
9289    Municipio {
9290        ibge_code: 3144375,
9291        name: "Natalândia",
9292        state: State::MG,
9293    },
9294    Municipio {
9295        ibge_code: 3144409,
9296        name: "Natércia",
9297        state: State::MG,
9298    },
9299    Municipio {
9300        ibge_code: 3144508,
9301        name: "Nazareno",
9302        state: State::MG,
9303    },
9304    Municipio {
9305        ibge_code: 3144607,
9306        name: "Nepomuceno",
9307        state: State::MG,
9308    },
9309    Municipio {
9310        ibge_code: 3144656,
9311        name: "Ninheira",
9312        state: State::MG,
9313    },
9314    Municipio {
9315        ibge_code: 3144672,
9316        name: "Nova Belém",
9317        state: State::MG,
9318    },
9319    Municipio {
9320        ibge_code: 3144706,
9321        name: "Nova Era",
9322        state: State::MG,
9323    },
9324    Municipio {
9325        ibge_code: 3144805,
9326        name: "Nova Lima",
9327        state: State::MG,
9328    },
9329    Municipio {
9330        ibge_code: 3144904,
9331        name: "Nova Módica",
9332        state: State::MG,
9333    },
9334    Municipio {
9335        ibge_code: 3145000,
9336        name: "Nova Ponte",
9337        state: State::MG,
9338    },
9339    Municipio {
9340        ibge_code: 3145059,
9341        name: "Nova Porteirinha",
9342        state: State::MG,
9343    },
9344    Municipio {
9345        ibge_code: 3145109,
9346        name: "Nova Resende",
9347        state: State::MG,
9348    },
9349    Municipio {
9350        ibge_code: 3145208,
9351        name: "Nova Serrana",
9352        state: State::MG,
9353    },
9354    Municipio {
9355        ibge_code: 3136603,
9356        name: "Nova União",
9357        state: State::MG,
9358    },
9359    Municipio {
9360        ibge_code: 3145307,
9361        name: "Novo Cruzeiro",
9362        state: State::MG,
9363    },
9364    Municipio {
9365        ibge_code: 3145356,
9366        name: "Novo Oriente de Minas",
9367        state: State::MG,
9368    },
9369    Municipio {
9370        ibge_code: 3145372,
9371        name: "Novorizonte",
9372        state: State::MG,
9373    },
9374    Municipio {
9375        ibge_code: 3145406,
9376        name: "Olaria",
9377        state: State::MG,
9378    },
9379    Municipio {
9380        ibge_code: 3145455,
9381        name: "Olhos-d'Água",
9382        state: State::MG,
9383    },
9384    Municipio {
9385        ibge_code: 3145604,
9386        name: "Oliveira",
9387        state: State::MG,
9388    },
9389    Municipio {
9390        ibge_code: 3145703,
9391        name: "Oliveira Fortes",
9392        state: State::MG,
9393    },
9394    Municipio {
9395        ibge_code: 3145505,
9396        name: "Olímpio Noronha",
9397        state: State::MG,
9398    },
9399    Municipio {
9400        ibge_code: 3145802,
9401        name: "Onça de Pitangui",
9402        state: State::MG,
9403    },
9404    Municipio {
9405        ibge_code: 3145851,
9406        name: "Oratórios",
9407        state: State::MG,
9408    },
9409    Municipio {
9410        ibge_code: 3145877,
9411        name: "Orizânia",
9412        state: State::MG,
9413    },
9414    Municipio {
9415        ibge_code: 3145901,
9416        name: "Ouro Branco",
9417        state: State::MG,
9418    },
9419    Municipio {
9420        ibge_code: 3146008,
9421        name: "Ouro Fino",
9422        state: State::MG,
9423    },
9424    Municipio {
9425        ibge_code: 3146107,
9426        name: "Ouro Preto",
9427        state: State::MG,
9428    },
9429    Municipio {
9430        ibge_code: 3146206,
9431        name: "Ouro Verde de Minas",
9432        state: State::MG,
9433    },
9434    Municipio {
9435        ibge_code: 3146255,
9436        name: "Padre Carvalho",
9437        state: State::MG,
9438    },
9439    Municipio {
9440        ibge_code: 3146305,
9441        name: "Padre Paraíso",
9442        state: State::MG,
9443    },
9444    Municipio {
9445        ibge_code: 3146552,
9446        name: "Pai Pedro",
9447        state: State::MG,
9448    },
9449    Municipio {
9450        ibge_code: 3146404,
9451        name: "Paineiras",
9452        state: State::MG,
9453    },
9454    Municipio {
9455        ibge_code: 3146503,
9456        name: "Pains",
9457        state: State::MG,
9458    },
9459    Municipio {
9460        ibge_code: 3146602,
9461        name: "Paiva",
9462        state: State::MG,
9463    },
9464    Municipio {
9465        ibge_code: 3146701,
9466        name: "Palma",
9467        state: State::MG,
9468    },
9469    Municipio {
9470        ibge_code: 3146750,
9471        name: "Palmópolis",
9472        state: State::MG,
9473    },
9474    Municipio {
9475        ibge_code: 3146909,
9476        name: "Papagaios",
9477        state: State::MG,
9478    },
9479    Municipio {
9480        ibge_code: 3147006,
9481        name: "Paracatu",
9482        state: State::MG,
9483    },
9484    Municipio {
9485        ibge_code: 3147204,
9486        name: "Paraguaçu",
9487        state: State::MG,
9488    },
9489    Municipio {
9490        ibge_code: 3147303,
9491        name: "Paraisópolis",
9492        state: State::MG,
9493    },
9494    Municipio {
9495        ibge_code: 3147402,
9496        name: "Paraopeba",
9497        state: State::MG,
9498    },
9499    Municipio {
9500        ibge_code: 3147105,
9501        name: "Pará de Minas",
9502        state: State::MG,
9503    },
9504    Municipio {
9505        ibge_code: 3147600,
9506        name: "Passa Quatro",
9507        state: State::MG,
9508    },
9509    Municipio {
9510        ibge_code: 3147709,
9511        name: "Passa Tempo",
9512        state: State::MG,
9513    },
9514    Municipio {
9515        ibge_code: 3147808,
9516        name: "Passa Vinte",
9517        state: State::MG,
9518    },
9519    Municipio {
9520        ibge_code: 3147501,
9521        name: "Passabém",
9522        state: State::MG,
9523    },
9524    Municipio {
9525        ibge_code: 3147907,
9526        name: "Passos",
9527        state: State::MG,
9528    },
9529    Municipio {
9530        ibge_code: 3147956,
9531        name: "Patis",
9532        state: State::MG,
9533    },
9534    Municipio {
9535        ibge_code: 3148004,
9536        name: "Patos de Minas",
9537        state: State::MG,
9538    },
9539    Municipio {
9540        ibge_code: 3148103,
9541        name: "Patrocínio",
9542        state: State::MG,
9543    },
9544    Municipio {
9545        ibge_code: 3148202,
9546        name: "Patrocínio do Muriaé",
9547        state: State::MG,
9548    },
9549    Municipio {
9550        ibge_code: 3148301,
9551        name: "Paula Cândido",
9552        state: State::MG,
9553    },
9554    Municipio {
9555        ibge_code: 3148400,
9556        name: "Paulistas",
9557        state: State::MG,
9558    },
9559    Municipio {
9560        ibge_code: 3148509,
9561        name: "Pavão",
9562        state: State::MG,
9563    },
9564    Municipio {
9565        ibge_code: 3148707,
9566        name: "Pedra Azul",
9567        state: State::MG,
9568    },
9569    Municipio {
9570        ibge_code: 3148756,
9571        name: "Pedra Bonita",
9572        state: State::MG,
9573    },
9574    Municipio {
9575        ibge_code: 3149002,
9576        name: "Pedra Dourada",
9577        state: State::MG,
9578    },
9579    Municipio {
9580        ibge_code: 3148806,
9581        name: "Pedra do Anta",
9582        state: State::MG,
9583    },
9584    Municipio {
9585        ibge_code: 3148905,
9586        name: "Pedra do Indaiá",
9587        state: State::MG,
9588    },
9589    Municipio {
9590        ibge_code: 3149101,
9591        name: "Pedralva",
9592        state: State::MG,
9593    },
9594    Municipio {
9595        ibge_code: 3149150,
9596        name: "Pedras de Maria da Cruz",
9597        state: State::MG,
9598    },
9599    Municipio {
9600        ibge_code: 3149200,
9601        name: "Pedrinópolis",
9602        state: State::MG,
9603    },
9604    Municipio {
9605        ibge_code: 3149309,
9606        name: "Pedro Leopoldo",
9607        state: State::MG,
9608    },
9609    Municipio {
9610        ibge_code: 3149408,
9611        name: "Pedro Teixeira",
9612        state: State::MG,
9613    },
9614    Municipio {
9615        ibge_code: 3149507,
9616        name: "Pequeri",
9617        state: State::MG,
9618    },
9619    Municipio {
9620        ibge_code: 3149606,
9621        name: "Pequi",
9622        state: State::MG,
9623    },
9624    Municipio {
9625        ibge_code: 3149705,
9626        name: "Perdigão",
9627        state: State::MG,
9628    },
9629    Municipio {
9630        ibge_code: 3149804,
9631        name: "Perdizes",
9632        state: State::MG,
9633    },
9634    Municipio {
9635        ibge_code: 3149903,
9636        name: "Perdões",
9637        state: State::MG,
9638    },
9639    Municipio {
9640        ibge_code: 3149952,
9641        name: "Periquito",
9642        state: State::MG,
9643    },
9644    Municipio {
9645        ibge_code: 3150000,
9646        name: "Pescador",
9647        state: State::MG,
9648    },
9649    Municipio {
9650        ibge_code: 3148608,
9651        name: "Peçanha",
9652        state: State::MG,
9653    },
9654    Municipio {
9655        ibge_code: 3150109,
9656        name: "Piau",
9657        state: State::MG,
9658    },
9659    Municipio {
9660        ibge_code: 3150158,
9661        name: "Piedade de Caratinga",
9662        state: State::MG,
9663    },
9664    Municipio {
9665        ibge_code: 3150208,
9666        name: "Piedade de Ponte Nova",
9667        state: State::MG,
9668    },
9669    Municipio {
9670        ibge_code: 3150307,
9671        name: "Piedade do Rio Grande",
9672        state: State::MG,
9673    },
9674    Municipio {
9675        ibge_code: 3150406,
9676        name: "Piedade dos Gerais",
9677        state: State::MG,
9678    },
9679    Municipio {
9680        ibge_code: 3150505,
9681        name: "Pimenta",
9682        state: State::MG,
9683    },
9684    Municipio {
9685        ibge_code: 3150539,
9686        name: "Pingo-d'Água",
9687        state: State::MG,
9688    },
9689    Municipio {
9690        ibge_code: 3150570,
9691        name: "Pintópolis",
9692        state: State::MG,
9693    },
9694    Municipio {
9695        ibge_code: 3150604,
9696        name: "Piracema",
9697        state: State::MG,
9698    },
9699    Municipio {
9700        ibge_code: 3150703,
9701        name: "Pirajuba",
9702        state: State::MG,
9703    },
9704    Municipio {
9705        ibge_code: 3150802,
9706        name: "Piranga",
9707        state: State::MG,
9708    },
9709    Municipio {
9710        ibge_code: 3151008,
9711        name: "Piranguinho",
9712        state: State::MG,
9713    },
9714    Municipio {
9715        ibge_code: 3150901,
9716        name: "Piranguçu",
9717        state: State::MG,
9718    },
9719    Municipio {
9720        ibge_code: 3151107,
9721        name: "Pirapetinga",
9722        state: State::MG,
9723    },
9724    Municipio {
9725        ibge_code: 3151206,
9726        name: "Pirapora",
9727        state: State::MG,
9728    },
9729    Municipio {
9730        ibge_code: 3151305,
9731        name: "Piraúba",
9732        state: State::MG,
9733    },
9734    Municipio {
9735        ibge_code: 3151404,
9736        name: "Pitangui",
9737        state: State::MG,
9738    },
9739    Municipio {
9740        ibge_code: 3151503,
9741        name: "Piumhi",
9742        state: State::MG,
9743    },
9744    Municipio {
9745        ibge_code: 3151602,
9746        name: "Planura",
9747        state: State::MG,
9748    },
9749    Municipio {
9750        ibge_code: 3151909,
9751        name: "Pocrane",
9752        state: State::MG,
9753    },
9754    Municipio {
9755        ibge_code: 3152006,
9756        name: "Pompéu",
9757        state: State::MG,
9758    },
9759    Municipio {
9760        ibge_code: 3152105,
9761        name: "Ponte Nova",
9762        state: State::MG,
9763    },
9764    Municipio {
9765        ibge_code: 3152131,
9766        name: "Ponto Chique",
9767        state: State::MG,
9768    },
9769    Municipio {
9770        ibge_code: 3152170,
9771        name: "Ponto dos Volantes",
9772        state: State::MG,
9773    },
9774    Municipio {
9775        ibge_code: 3152204,
9776        name: "Porteirinha",
9777        state: State::MG,
9778    },
9779    Municipio {
9780        ibge_code: 3152303,
9781        name: "Porto Firme",
9782        state: State::MG,
9783    },
9784    Municipio {
9785        ibge_code: 3152402,
9786        name: "Poté",
9787        state: State::MG,
9788    },
9789    Municipio {
9790        ibge_code: 3152501,
9791        name: "Pouso Alegre",
9792        state: State::MG,
9793    },
9794    Municipio {
9795        ibge_code: 3152600,
9796        name: "Pouso Alto",
9797        state: State::MG,
9798    },
9799    Municipio {
9800        ibge_code: 3151701,
9801        name: "Poço Fundo",
9802        state: State::MG,
9803    },
9804    Municipio {
9805        ibge_code: 3151800,
9806        name: "Poços de Caldas",
9807        state: State::MG,
9808    },
9809    Municipio {
9810        ibge_code: 3152709,
9811        name: "Prados",
9812        state: State::MG,
9813    },
9814    Municipio {
9815        ibge_code: 3152808,
9816        name: "Prata",
9817        state: State::MG,
9818    },
9819    Municipio {
9820        ibge_code: 3153004,
9821        name: "Pratinha",
9822        state: State::MG,
9823    },
9824    Municipio {
9825        ibge_code: 3152907,
9826        name: "Pratápolis",
9827        state: State::MG,
9828    },
9829    Municipio {
9830        ibge_code: 3153103,
9831        name: "Presidente Bernardes",
9832        state: State::MG,
9833    },
9834    Municipio {
9835        ibge_code: 3153202,
9836        name: "Presidente Juscelino",
9837        state: State::MG,
9838    },
9839    Municipio {
9840        ibge_code: 3153301,
9841        name: "Presidente Kubitschek",
9842        state: State::MG,
9843    },
9844    Municipio {
9845        ibge_code: 3153400,
9846        name: "Presidente Olegário",
9847        state: State::MG,
9848    },
9849    Municipio {
9850        ibge_code: 3153608,
9851        name: "Prudente de Morais",
9852        state: State::MG,
9853    },
9854    Municipio {
9855        ibge_code: 3153707,
9856        name: "Quartel Geral",
9857        state: State::MG,
9858    },
9859    Municipio {
9860        ibge_code: 3153806,
9861        name: "Queluzito",
9862        state: State::MG,
9863    },
9864    Municipio {
9865        ibge_code: 3153905,
9866        name: "Raposos",
9867        state: State::MG,
9868    },
9869    Municipio {
9870        ibge_code: 3154002,
9871        name: "Raul Soares",
9872        state: State::MG,
9873    },
9874    Municipio {
9875        ibge_code: 3154101,
9876        name: "Recreio",
9877        state: State::MG,
9878    },
9879    Municipio {
9880        ibge_code: 3154150,
9881        name: "Reduto",
9882        state: State::MG,
9883    },
9884    Municipio {
9885        ibge_code: 3154200,
9886        name: "Resende Costa",
9887        state: State::MG,
9888    },
9889    Municipio {
9890        ibge_code: 3154309,
9891        name: "Resplendor",
9892        state: State::MG,
9893    },
9894    Municipio {
9895        ibge_code: 3154408,
9896        name: "Ressaquinha",
9897        state: State::MG,
9898    },
9899    Municipio {
9900        ibge_code: 3154457,
9901        name: "Riachinho",
9902        state: State::MG,
9903    },
9904    Municipio {
9905        ibge_code: 3154507,
9906        name: "Riacho dos Machados",
9907        state: State::MG,
9908    },
9909    Municipio {
9910        ibge_code: 3154705,
9911        name: "Ribeirão Vermelho",
9912        state: State::MG,
9913    },
9914    Municipio {
9915        ibge_code: 3154606,
9916        name: "Ribeirão das Neves",
9917        state: State::MG,
9918    },
9919    Municipio {
9920        ibge_code: 3154804,
9921        name: "Rio Acima",
9922        state: State::MG,
9923    },
9924    Municipio {
9925        ibge_code: 3154903,
9926        name: "Rio Casca",
9927        state: State::MG,
9928    },
9929    Municipio {
9930        ibge_code: 3155009,
9931        name: "Rio Doce",
9932        state: State::MG,
9933    },
9934    Municipio {
9935        ibge_code: 3155207,
9936        name: "Rio Espera",
9937        state: State::MG,
9938    },
9939    Municipio {
9940        ibge_code: 3155306,
9941        name: "Rio Manso",
9942        state: State::MG,
9943    },
9944    Municipio {
9945        ibge_code: 3155405,
9946        name: "Rio Novo",
9947        state: State::MG,
9948    },
9949    Municipio {
9950        ibge_code: 3155504,
9951        name: "Rio Paranaíba",
9952        state: State::MG,
9953    },
9954    Municipio {
9955        ibge_code: 3155603,
9956        name: "Rio Pardo de Minas",
9957        state: State::MG,
9958    },
9959    Municipio {
9960        ibge_code: 3155702,
9961        name: "Rio Piracicaba",
9962        state: State::MG,
9963    },
9964    Municipio {
9965        ibge_code: 3155801,
9966        name: "Rio Pomba",
9967        state: State::MG,
9968    },
9969    Municipio {
9970        ibge_code: 3155900,
9971        name: "Rio Preto",
9972        state: State::MG,
9973    },
9974    Municipio {
9975        ibge_code: 3156007,
9976        name: "Rio Vermelho",
9977        state: State::MG,
9978    },
9979    Municipio {
9980        ibge_code: 3155108,
9981        name: "Rio do Prado",
9982        state: State::MG,
9983    },
9984    Municipio {
9985        ibge_code: 3156106,
9986        name: "Ritápolis",
9987        state: State::MG,
9988    },
9989    Municipio {
9990        ibge_code: 3156205,
9991        name: "Rochedo de Minas",
9992        state: State::MG,
9993    },
9994    Municipio {
9995        ibge_code: 3156304,
9996        name: "Rodeiro",
9997        state: State::MG,
9998    },
9999    Municipio {
10000        ibge_code: 3156403,
10001        name: "Romaria",
10002        state: State::MG,
10003    },
10004    Municipio {
10005        ibge_code: 3156452,
10006        name: "Rosário da Limeira",
10007        state: State::MG,
10008    },
10009    Municipio {
10010        ibge_code: 3156502,
10011        name: "Rubelita",
10012        state: State::MG,
10013    },
10014    Municipio {
10015        ibge_code: 3156601,
10016        name: "Rubim",
10017        state: State::MG,
10018    },
10019    Municipio {
10020        ibge_code: 3156700,
10021        name: "Sabará",
10022        state: State::MG,
10023    },
10024    Municipio {
10025        ibge_code: 3156809,
10026        name: "Sabinópolis",
10027        state: State::MG,
10028    },
10029    Municipio {
10030        ibge_code: 3156908,
10031        name: "Sacramento",
10032        state: State::MG,
10033    },
10034    Municipio {
10035        ibge_code: 3157005,
10036        name: "Salinas",
10037        state: State::MG,
10038    },
10039    Municipio {
10040        ibge_code: 3157104,
10041        name: "Salto da Divisa",
10042        state: State::MG,
10043    },
10044    Municipio {
10045        ibge_code: 3157203,
10046        name: "Santa Bárbara",
10047        state: State::MG,
10048    },
10049    Municipio {
10050        ibge_code: 3157252,
10051        name: "Santa Bárbara do Leste",
10052        state: State::MG,
10053    },
10054    Municipio {
10055        ibge_code: 3157278,
10056        name: "Santa Bárbara do Monte Verde",
10057        state: State::MG,
10058    },
10059    Municipio {
10060        ibge_code: 3157302,
10061        name: "Santa Bárbara do Tugúrio",
10062        state: State::MG,
10063    },
10064    Municipio {
10065        ibge_code: 3157336,
10066        name: "Santa Cruz de Minas",
10067        state: State::MG,
10068    },
10069    Municipio {
10070        ibge_code: 3157377,
10071        name: "Santa Cruz de Salinas",
10072        state: State::MG,
10073    },
10074    Municipio {
10075        ibge_code: 3157401,
10076        name: "Santa Cruz do Escalvado",
10077        state: State::MG,
10078    },
10079    Municipio {
10080        ibge_code: 3157500,
10081        name: "Santa Efigênia de Minas",
10082        state: State::MG,
10083    },
10084    Municipio {
10085        ibge_code: 3157609,
10086        name: "Santa Fé de Minas",
10087        state: State::MG,
10088    },
10089    Municipio {
10090        ibge_code: 3157658,
10091        name: "Santa Helena de Minas",
10092        state: State::MG,
10093    },
10094    Municipio {
10095        ibge_code: 3157708,
10096        name: "Santa Juliana",
10097        state: State::MG,
10098    },
10099    Municipio {
10100        ibge_code: 3157807,
10101        name: "Santa Luzia",
10102        state: State::MG,
10103    },
10104    Municipio {
10105        ibge_code: 3157906,
10106        name: "Santa Margarida",
10107        state: State::MG,
10108    },
10109    Municipio {
10110        ibge_code: 3158003,
10111        name: "Santa Maria de Itabira",
10112        state: State::MG,
10113    },
10114    Municipio {
10115        ibge_code: 3158102,
10116        name: "Santa Maria do Salto",
10117        state: State::MG,
10118    },
10119    Municipio {
10120        ibge_code: 3158201,
10121        name: "Santa Maria do Suaçuí",
10122        state: State::MG,
10123    },
10124    Municipio {
10125        ibge_code: 3159209,
10126        name: "Santa Rita de Caldas",
10127        state: State::MG,
10128    },
10129    Municipio {
10130        ibge_code: 3159407,
10131        name: "Santa Rita de Ibitipoca",
10132        state: State::MG,
10133    },
10134    Municipio {
10135        ibge_code: 3159308,
10136        name: "Santa Rita de Jacutinga",
10137        state: State::MG,
10138    },
10139    Municipio {
10140        ibge_code: 3159357,
10141        name: "Santa Rita de Minas",
10142        state: State::MG,
10143    },
10144    Municipio {
10145        ibge_code: 3159506,
10146        name: "Santa Rita do Itueto",
10147        state: State::MG,
10148    },
10149    Municipio {
10150        ibge_code: 3159605,
10151        name: "Santa Rita do Sapucaí",
10152        state: State::MG,
10153    },
10154    Municipio {
10155        ibge_code: 3159704,
10156        name: "Santa Rosa da Serra",
10157        state: State::MG,
10158    },
10159    Municipio {
10160        ibge_code: 3159803,
10161        name: "Santa Vitória",
10162        state: State::MG,
10163    },
10164    Municipio {
10165        ibge_code: 3158300,
10166        name: "Santana da Vargem",
10167        state: State::MG,
10168    },
10169    Municipio {
10170        ibge_code: 3158409,
10171        name: "Santana de Cataguases",
10172        state: State::MG,
10173    },
10174    Municipio {
10175        ibge_code: 3158508,
10176        name: "Santana de Pirapama",
10177        state: State::MG,
10178    },
10179    Municipio {
10180        ibge_code: 3158607,
10181        name: "Santana do Deserto",
10182        state: State::MG,
10183    },
10184    Municipio {
10185        ibge_code: 3158706,
10186        name: "Santana do Garambéu",
10187        state: State::MG,
10188    },
10189    Municipio {
10190        ibge_code: 3158805,
10191        name: "Santana do Jacaré",
10192        state: State::MG,
10193    },
10194    Municipio {
10195        ibge_code: 3158904,
10196        name: "Santana do Manhuaçu",
10197        state: State::MG,
10198    },
10199    Municipio {
10200        ibge_code: 3158953,
10201        name: "Santana do Paraíso",
10202        state: State::MG,
10203    },
10204    Municipio {
10205        ibge_code: 3159001,
10206        name: "Santana do Riacho",
10207        state: State::MG,
10208    },
10209    Municipio {
10210        ibge_code: 3159100,
10211        name: "Santana dos Montes",
10212        state: State::MG,
10213    },
10214    Municipio {
10215        ibge_code: 3159902,
10216        name: "Santo Antônio do Amparo",
10217        state: State::MG,
10218    },
10219    Municipio {
10220        ibge_code: 3160009,
10221        name: "Santo Antônio do Aventureiro",
10222        state: State::MG,
10223    },
10224    Municipio {
10225        ibge_code: 3160108,
10226        name: "Santo Antônio do Grama",
10227        state: State::MG,
10228    },
10229    Municipio {
10230        ibge_code: 3160207,
10231        name: "Santo Antônio do Itambé",
10232        state: State::MG,
10233    },
10234    Municipio {
10235        ibge_code: 3160306,
10236        name: "Santo Antônio do Jacinto",
10237        state: State::MG,
10238    },
10239    Municipio {
10240        ibge_code: 3160405,
10241        name: "Santo Antônio do Monte",
10242        state: State::MG,
10243    },
10244    Municipio {
10245        ibge_code: 3160454,
10246        name: "Santo Antônio do Retiro",
10247        state: State::MG,
10248    },
10249    Municipio {
10250        ibge_code: 3160504,
10251        name: "Santo Antônio do Rio Abaixo",
10252        state: State::MG,
10253    },
10254    Municipio {
10255        ibge_code: 3160603,
10256        name: "Santo Hipólito",
10257        state: State::MG,
10258    },
10259    Municipio {
10260        ibge_code: 3160702,
10261        name: "Santos Dumont",
10262        state: State::MG,
10263    },
10264    Municipio {
10265        ibge_code: 3165404,
10266        name: "Sapucaí-Mirim",
10267        state: State::MG,
10268    },
10269    Municipio {
10270        ibge_code: 3165503,
10271        name: "Sardoá",
10272        state: State::MG,
10273    },
10274    Municipio {
10275        ibge_code: 3165537,
10276        name: "Sarzedo",
10277        state: State::MG,
10278    },
10279    Municipio {
10280        ibge_code: 3165560,
10281        name: "Sem-Peixe",
10282        state: State::MG,
10283    },
10284    Municipio {
10285        ibge_code: 3165578,
10286        name: "Senador Amaral",
10287        state: State::MG,
10288    },
10289    Municipio {
10290        ibge_code: 3165602,
10291        name: "Senador Cortes",
10292        state: State::MG,
10293    },
10294    Municipio {
10295        ibge_code: 3165701,
10296        name: "Senador Firmino",
10297        state: State::MG,
10298    },
10299    Municipio {
10300        ibge_code: 3165800,
10301        name: "Senador José Bento",
10302        state: State::MG,
10303    },
10304    Municipio {
10305        ibge_code: 3165909,
10306        name: "Senador Modestino Gonçalves",
10307        state: State::MG,
10308    },
10309    Municipio {
10310        ibge_code: 3166006,
10311        name: "Senhora de Oliveira",
10312        state: State::MG,
10313    },
10314    Municipio {
10315        ibge_code: 3166105,
10316        name: "Senhora do Porto",
10317        state: State::MG,
10318    },
10319    Municipio {
10320        ibge_code: 3166204,
10321        name: "Senhora dos Remédios",
10322        state: State::MG,
10323    },
10324    Municipio {
10325        ibge_code: 3166303,
10326        name: "Sericita",
10327        state: State::MG,
10328    },
10329    Municipio {
10330        ibge_code: 3166402,
10331        name: "Seritinga",
10332        state: State::MG,
10333    },
10334    Municipio {
10335        ibge_code: 3166501,
10336        name: "Serra Azul de Minas",
10337        state: State::MG,
10338    },
10339    Municipio {
10340        ibge_code: 3166600,
10341        name: "Serra da Saudade",
10342        state: State::MG,
10343    },
10344    Municipio {
10345        ibge_code: 3166808,
10346        name: "Serra do Salitre",
10347        state: State::MG,
10348    },
10349    Municipio {
10350        ibge_code: 3166709,
10351        name: "Serra dos Aimorés",
10352        state: State::MG,
10353    },
10354    Municipio {
10355        ibge_code: 3166907,
10356        name: "Serrania",
10357        state: State::MG,
10358    },
10359    Municipio {
10360        ibge_code: 3167004,
10361        name: "Serranos",
10362        state: State::MG,
10363    },
10364    Municipio {
10365        ibge_code: 3166956,
10366        name: "Serranópolis de Minas",
10367        state: State::MG,
10368    },
10369    Municipio {
10370        ibge_code: 3167103,
10371        name: "Serro",
10372        state: State::MG,
10373    },
10374    Municipio {
10375        ibge_code: 3167202,
10376        name: "Sete Lagoas",
10377        state: State::MG,
10378    },
10379    Municipio {
10380        ibge_code: 3165552,
10381        name: "Setubinha",
10382        state: State::MG,
10383    },
10384    Municipio {
10385        ibge_code: 3167301,
10386        name: "Silveirânia",
10387        state: State::MG,
10388    },
10389    Municipio {
10390        ibge_code: 3167400,
10391        name: "Silvianópolis",
10392        state: State::MG,
10393    },
10394    Municipio {
10395        ibge_code: 3167608,
10396        name: "Simonésia",
10397        state: State::MG,
10398    },
10399    Municipio {
10400        ibge_code: 3167509,
10401        name: "Simão Pereira",
10402        state: State::MG,
10403    },
10404    Municipio {
10405        ibge_code: 3167707,
10406        name: "Sobrália",
10407        state: State::MG,
10408    },
10409    Municipio {
10410        ibge_code: 3167806,
10411        name: "Soledade de Minas",
10412        state: State::MG,
10413    },
10414    Municipio {
10415        ibge_code: 3160801,
10416        name: "São Bento Abade",
10417        state: State::MG,
10418    },
10419    Municipio {
10420        ibge_code: 3160900,
10421        name: "São Brás do Suaçuí",
10422        state: State::MG,
10423    },
10424    Municipio {
10425        ibge_code: 3160959,
10426        name: "São Domingos das Dores",
10427        state: State::MG,
10428    },
10429    Municipio {
10430        ibge_code: 3161007,
10431        name: "São Domingos do Prata",
10432        state: State::MG,
10433    },
10434    Municipio {
10435        ibge_code: 3161106,
10436        name: "São Francisco",
10437        state: State::MG,
10438    },
10439    Municipio {
10440        ibge_code: 3161205,
10441        name: "São Francisco de Paula",
10442        state: State::MG,
10443    },
10444    Municipio {
10445        ibge_code: 3161304,
10446        name: "São Francisco de Sales",
10447        state: State::MG,
10448    },
10449    Municipio {
10450        ibge_code: 3161403,
10451        name: "São Francisco do Glória",
10452        state: State::MG,
10453    },
10454    Municipio {
10455        ibge_code: 3161056,
10456        name: "São Félix de Minas",
10457        state: State::MG,
10458    },
10459    Municipio {
10460        ibge_code: 3161502,
10461        name: "São Geraldo",
10462        state: State::MG,
10463    },
10464    Municipio {
10465        ibge_code: 3161601,
10466        name: "São Geraldo da Piedade",
10467        state: State::MG,
10468    },
10469    Municipio {
10470        ibge_code: 3161650,
10471        name: "São Geraldo do Baixio",
10472        state: State::MG,
10473    },
10474    Municipio {
10475        ibge_code: 3161700,
10476        name: "São Gonçalo do Abaeté",
10477        state: State::MG,
10478    },
10479    Municipio {
10480        ibge_code: 3161809,
10481        name: "São Gonçalo do Pará",
10482        state: State::MG,
10483    },
10484    Municipio {
10485        ibge_code: 3161908,
10486        name: "São Gonçalo do Rio Abaixo",
10487        state: State::MG,
10488    },
10489    Municipio {
10490        ibge_code: 3125507,
10491        name: "São Gonçalo do Rio Preto",
10492        state: State::MG,
10493    },
10494    Municipio {
10495        ibge_code: 3162005,
10496        name: "São Gonçalo do Sapucaí",
10497        state: State::MG,
10498    },
10499    Municipio {
10500        ibge_code: 3162104,
10501        name: "São Gotardo",
10502        state: State::MG,
10503    },
10504    Municipio {
10505        ibge_code: 3162922,
10506        name: "São Joaquim de Bicas",
10507        state: State::MG,
10508    },
10509    Municipio {
10510        ibge_code: 3162948,
10511        name: "São José da Barra",
10512        state: State::MG,
10513    },
10514    Municipio {
10515        ibge_code: 3162955,
10516        name: "São José da Lapa",
10517        state: State::MG,
10518    },
10519    Municipio {
10520        ibge_code: 3163003,
10521        name: "São José da Safira",
10522        state: State::MG,
10523    },
10524    Municipio {
10525        ibge_code: 3163102,
10526        name: "São José da Varginha",
10527        state: State::MG,
10528    },
10529    Municipio {
10530        ibge_code: 3163201,
10531        name: "São José do Alegre",
10532        state: State::MG,
10533    },
10534    Municipio {
10535        ibge_code: 3163300,
10536        name: "São José do Divino",
10537        state: State::MG,
10538    },
10539    Municipio {
10540        ibge_code: 3163409,
10541        name: "São José do Goiabal",
10542        state: State::MG,
10543    },
10544    Municipio {
10545        ibge_code: 3163508,
10546        name: "São José do Jacuri",
10547        state: State::MG,
10548    },
10549    Municipio {
10550        ibge_code: 3163607,
10551        name: "São José do Mantimento",
10552        state: State::MG,
10553    },
10554    Municipio {
10555        ibge_code: 3162203,
10556        name: "São João Batista do Glória",
10557        state: State::MG,
10558    },
10559    Municipio {
10560        ibge_code: 3162807,
10561        name: "São João Evangelista",
10562        state: State::MG,
10563    },
10564    Municipio {
10565        ibge_code: 3162906,
10566        name: "São João Nepomuceno",
10567        state: State::MG,
10568    },
10569    Municipio {
10570        ibge_code: 3162252,
10571        name: "São João da Lagoa",
10572        state: State::MG,
10573    },
10574    Municipio {
10575        ibge_code: 3162302,
10576        name: "São João da Mata",
10577        state: State::MG,
10578    },
10579    Municipio {
10580        ibge_code: 3162401,
10581        name: "São João da Ponte",
10582        state: State::MG,
10583    },
10584    Municipio {
10585        ibge_code: 3162450,
10586        name: "São João das Missões",
10587        state: State::MG,
10588    },
10589    Municipio {
10590        ibge_code: 3162500,
10591        name: "São João del Rei",
10592        state: State::MG,
10593    },
10594    Municipio {
10595        ibge_code: 3162559,
10596        name: "São João do Manhuaçu",
10597        state: State::MG,
10598    },
10599    Municipio {
10600        ibge_code: 3162575,
10601        name: "São João do Manteninha",
10602        state: State::MG,
10603    },
10604    Municipio {
10605        ibge_code: 3162609,
10606        name: "São João do Oriente",
10607        state: State::MG,
10608    },
10609    Municipio {
10610        ibge_code: 3162658,
10611        name: "São João do Pacuí",
10612        state: State::MG,
10613    },
10614    Municipio {
10615        ibge_code: 3162708,
10616        name: "São João do Paraíso",
10617        state: State::MG,
10618    },
10619    Municipio {
10620        ibge_code: 3163706,
10621        name: "São Lourenço",
10622        state: State::MG,
10623    },
10624    Municipio {
10625        ibge_code: 3163805,
10626        name: "São Miguel do Anta",
10627        state: State::MG,
10628    },
10629    Municipio {
10630        ibge_code: 3163904,
10631        name: "São Pedro da União",
10632        state: State::MG,
10633    },
10634    Municipio {
10635        ibge_code: 3164100,
10636        name: "São Pedro do Suaçuí",
10637        state: State::MG,
10638    },
10639    Municipio {
10640        ibge_code: 3164001,
10641        name: "São Pedro dos Ferros",
10642        state: State::MG,
10643    },
10644    Municipio {
10645        ibge_code: 3164209,
10646        name: "São Romão",
10647        state: State::MG,
10648    },
10649    Municipio {
10650        ibge_code: 3164308,
10651        name: "São Roque de Minas",
10652        state: State::MG,
10653    },
10654    Municipio {
10655        ibge_code: 3164407,
10656        name: "São Sebastião da Bela Vista",
10657        state: State::MG,
10658    },
10659    Municipio {
10660        ibge_code: 3164431,
10661        name: "São Sebastião da Vargem Alegre",
10662        state: State::MG,
10663    },
10664    Municipio {
10665        ibge_code: 3164472,
10666        name: "São Sebastião do Anta",
10667        state: State::MG,
10668    },
10669    Municipio {
10670        ibge_code: 3164506,
10671        name: "São Sebastião do Maranhão",
10672        state: State::MG,
10673    },
10674    Municipio {
10675        ibge_code: 3164605,
10676        name: "São Sebastião do Oeste",
10677        state: State::MG,
10678    },
10679    Municipio {
10680        ibge_code: 3164704,
10681        name: "São Sebastião do Paraíso",
10682        state: State::MG,
10683    },
10684    Municipio {
10685        ibge_code: 3164803,
10686        name: "São Sebastião do Rio Preto",
10687        state: State::MG,
10688    },
10689    Municipio {
10690        ibge_code: 3164902,
10691        name: "São Sebastião do Rio Verde",
10692        state: State::MG,
10693    },
10694    Municipio {
10695        ibge_code: 3165008,
10696        name: "São Tiago",
10697        state: State::MG,
10698    },
10699    Municipio {
10700        ibge_code: 3165107,
10701        name: "São Tomás de Aquino",
10702        state: State::MG,
10703    },
10704    Municipio {
10705        ibge_code: 3165206,
10706        name: "São Tomé das Letras",
10707        state: State::MG,
10708    },
10709    Municipio {
10710        ibge_code: 3165305,
10711        name: "São Vicente de Minas",
10712        state: State::MG,
10713    },
10714    Municipio {
10715        ibge_code: 3167905,
10716        name: "Tabuleiro",
10717        state: State::MG,
10718    },
10719    Municipio {
10720        ibge_code: 3168002,
10721        name: "Taiobeiras",
10722        state: State::MG,
10723    },
10724    Municipio {
10725        ibge_code: 3168051,
10726        name: "Taparuba",
10727        state: State::MG,
10728    },
10729    Municipio {
10730        ibge_code: 3168101,
10731        name: "Tapira",
10732        state: State::MG,
10733    },
10734    Municipio {
10735        ibge_code: 3168200,
10736        name: "Tapiraí",
10737        state: State::MG,
10738    },
10739    Municipio {
10740        ibge_code: 3168309,
10741        name: "Taquaraçu de Minas",
10742        state: State::MG,
10743    },
10744    Municipio {
10745        ibge_code: 3168408,
10746        name: "Tarumirim",
10747        state: State::MG,
10748    },
10749    Municipio {
10750        ibge_code: 3168507,
10751        name: "Teixeiras",
10752        state: State::MG,
10753    },
10754    Municipio {
10755        ibge_code: 3168606,
10756        name: "Teófilo Otoni",
10757        state: State::MG,
10758    },
10759    Municipio {
10760        ibge_code: 3168705,
10761        name: "Timóteo",
10762        state: State::MG,
10763    },
10764    Municipio {
10765        ibge_code: 3168804,
10766        name: "Tiradentes",
10767        state: State::MG,
10768    },
10769    Municipio {
10770        ibge_code: 3168903,
10771        name: "Tiros",
10772        state: State::MG,
10773    },
10774    Municipio {
10775        ibge_code: 3169000,
10776        name: "Tocantins",
10777        state: State::MG,
10778    },
10779    Municipio {
10780        ibge_code: 3169059,
10781        name: "Tocos do Moji",
10782        state: State::MG,
10783    },
10784    Municipio {
10785        ibge_code: 3169109,
10786        name: "Toledo",
10787        state: State::MG,
10788    },
10789    Municipio {
10790        ibge_code: 3169208,
10791        name: "Tombos",
10792        state: State::MG,
10793    },
10794    Municipio {
10795        ibge_code: 3169307,
10796        name: "Três Corações",
10797        state: State::MG,
10798    },
10799    Municipio {
10800        ibge_code: 3169356,
10801        name: "Três Marias",
10802        state: State::MG,
10803    },
10804    Municipio {
10805        ibge_code: 3169406,
10806        name: "Três Pontas",
10807        state: State::MG,
10808    },
10809    Municipio {
10810        ibge_code: 3169505,
10811        name: "Tumiritinga",
10812        state: State::MG,
10813    },
10814    Municipio {
10815        ibge_code: 3169604,
10816        name: "Tupaciguara",
10817        state: State::MG,
10818    },
10819    Municipio {
10820        ibge_code: 3169703,
10821        name: "Turmalina",
10822        state: State::MG,
10823    },
10824    Municipio {
10825        ibge_code: 3169802,
10826        name: "Turvolândia",
10827        state: State::MG,
10828    },
10829    Municipio {
10830        ibge_code: 3170057,
10831        name: "Ubaporanga",
10832        state: State::MG,
10833    },
10834    Municipio {
10835        ibge_code: 3170008,
10836        name: "Ubaí",
10837        state: State::MG,
10838    },
10839    Municipio {
10840        ibge_code: 3170107,
10841        name: "Uberaba",
10842        state: State::MG,
10843    },
10844    Municipio {
10845        ibge_code: 3170206,
10846        name: "Uberlândia",
10847        state: State::MG,
10848    },
10849    Municipio {
10850        ibge_code: 3169901,
10851        name: "Ubá",
10852        state: State::MG,
10853    },
10854    Municipio {
10855        ibge_code: 3170305,
10856        name: "Umburatiba",
10857        state: State::MG,
10858    },
10859    Municipio {
10860        ibge_code: 3170404,
10861        name: "Unaí",
10862        state: State::MG,
10863    },
10864    Municipio {
10865        ibge_code: 3170438,
10866        name: "União de Minas",
10867        state: State::MG,
10868    },
10869    Municipio {
10870        ibge_code: 3170479,
10871        name: "Uruana de Minas",
10872        state: State::MG,
10873    },
10874    Municipio {
10875        ibge_code: 3170529,
10876        name: "Urucuia",
10877        state: State::MG,
10878    },
10879    Municipio {
10880        ibge_code: 3170503,
10881        name: "Urucânia",
10882        state: State::MG,
10883    },
10884    Municipio {
10885        ibge_code: 3170578,
10886        name: "Vargem Alegre",
10887        state: State::MG,
10888    },
10889    Municipio {
10890        ibge_code: 3170602,
10891        name: "Vargem Bonita",
10892        state: State::MG,
10893    },
10894    Municipio {
10895        ibge_code: 3170651,
10896        name: "Vargem Grande do Rio Pardo",
10897        state: State::MG,
10898    },
10899    Municipio {
10900        ibge_code: 3170701,
10901        name: "Varginha",
10902        state: State::MG,
10903    },
10904    Municipio {
10905        ibge_code: 3170750,
10906        name: "Varjão de Minas",
10907        state: State::MG,
10908    },
10909    Municipio {
10910        ibge_code: 3170909,
10911        name: "Varzelândia",
10912        state: State::MG,
10913    },
10914    Municipio {
10915        ibge_code: 3171006,
10916        name: "Vazante",
10917        state: State::MG,
10918    },
10919    Municipio {
10920        ibge_code: 3171030,
10921        name: "Verdelândia",
10922        state: State::MG,
10923    },
10924    Municipio {
10925        ibge_code: 3171071,
10926        name: "Veredinha",
10927        state: State::MG,
10928    },
10929    Municipio {
10930        ibge_code: 3171154,
10931        name: "Vermelho Novo",
10932        state: State::MG,
10933    },
10934    Municipio {
10935        ibge_code: 3171105,
10936        name: "Veríssimo",
10937        state: State::MG,
10938    },
10939    Municipio {
10940        ibge_code: 3171204,
10941        name: "Vespasiano",
10942        state: State::MG,
10943    },
10944    Municipio {
10945        ibge_code: 3171402,
10946        name: "Vieiras",
10947        state: State::MG,
10948    },
10949    Municipio {
10950        ibge_code: 3171600,
10951        name: "Virgem da Lapa",
10952        state: State::MG,
10953    },
10954    Municipio {
10955        ibge_code: 3171808,
10956        name: "Virginópolis",
10957        state: State::MG,
10958    },
10959    Municipio {
10960        ibge_code: 3171907,
10961        name: "Virgolândia",
10962        state: State::MG,
10963    },
10964    Municipio {
10965        ibge_code: 3171709,
10966        name: "Virgínia",
10967        state: State::MG,
10968    },
10969    Municipio {
10970        ibge_code: 3172004,
10971        name: "Visconde do Rio Branco",
10972        state: State::MG,
10973    },
10974    Municipio {
10975        ibge_code: 3171303,
10976        name: "Viçosa",
10977        state: State::MG,
10978    },
10979    Municipio {
10980        ibge_code: 3172103,
10981        name: "Volta Grande",
10982        state: State::MG,
10983    },
10984    Municipio {
10985        ibge_code: 3170800,
10986        name: "Várzea da Palma",
10987        state: State::MG,
10988    },
10989    Municipio {
10990        ibge_code: 3172202,
10991        name: "Wenceslau Braz",
10992        state: State::MG,
10993    },
10994    Municipio {
10995        ibge_code: 3100609,
10996        name: "Água Boa",
10997        state: State::MG,
10998    },
10999    Municipio {
11000        ibge_code: 3100708,
11001        name: "Água Comprida",
11002        state: State::MG,
11003    },
11004    Municipio {
11005        ibge_code: 3100906,
11006        name: "Águas Formosas",
11007        state: State::MG,
11008    },
11009    Municipio {
11010        ibge_code: 3101003,
11011        name: "Águas Vermelhas",
11012        state: State::MG,
11013    },
11014    Municipio {
11015        ibge_code: 5000252,
11016        name: "Alcinópolis",
11017        state: State::MS,
11018    },
11019    Municipio {
11020        ibge_code: 5000609,
11021        name: "Amambai",
11022        state: State::MS,
11023    },
11024    Municipio {
11025        ibge_code: 5000708,
11026        name: "Anastácio",
11027        state: State::MS,
11028    },
11029    Municipio {
11030        ibge_code: 5000807,
11031        name: "Anaurilândia",
11032        state: State::MS,
11033    },
11034    Municipio {
11035        ibge_code: 5000856,
11036        name: "Angélica",
11037        state: State::MS,
11038    },
11039    Municipio {
11040        ibge_code: 5000906,
11041        name: "Antônio João",
11042        state: State::MS,
11043    },
11044    Municipio {
11045        ibge_code: 5001003,
11046        name: "Aparecida do Taboado",
11047        state: State::MS,
11048    },
11049    Municipio {
11050        ibge_code: 5001102,
11051        name: "Aquidauana",
11052        state: State::MS,
11053    },
11054    Municipio {
11055        ibge_code: 5001243,
11056        name: "Aral Moreira",
11057        state: State::MS,
11058    },
11059    Municipio {
11060        ibge_code: 5001508,
11061        name: "Bandeirantes",
11062        state: State::MS,
11063    },
11064    Municipio {
11065        ibge_code: 5001904,
11066        name: "Bataguassu",
11067        state: State::MS,
11068    },
11069    Municipio {
11070        ibge_code: 5002001,
11071        name: "Batayporã",
11072        state: State::MS,
11073    },
11074    Municipio {
11075        ibge_code: 5002100,
11076        name: "Bela Vista",
11077        state: State::MS,
11078    },
11079    Municipio {
11080        ibge_code: 5002159,
11081        name: "Bodoquena",
11082        state: State::MS,
11083    },
11084    Municipio {
11085        ibge_code: 5002209,
11086        name: "Bonito",
11087        state: State::MS,
11088    },
11089    Municipio {
11090        ibge_code: 5002308,
11091        name: "Brasilândia",
11092        state: State::MS,
11093    },
11094    Municipio {
11095        ibge_code: 5002407,
11096        name: "Caarapó",
11097        state: State::MS,
11098    },
11099    Municipio {
11100        ibge_code: 5002605,
11101        name: "Camapuã",
11102        state: State::MS,
11103    },
11104    Municipio {
11105        ibge_code: 5002704,
11106        name: "Campo Grande",
11107        state: State::MS,
11108    },
11109    Municipio {
11110        ibge_code: 5002803,
11111        name: "Caracol",
11112        state: State::MS,
11113    },
11114    Municipio {
11115        ibge_code: 5002902,
11116        name: "Cassilândia",
11117        state: State::MS,
11118    },
11119    Municipio {
11120        ibge_code: 5002951,
11121        name: "Chapadão do Sul",
11122        state: State::MS,
11123    },
11124    Municipio {
11125        ibge_code: 5003108,
11126        name: "Corguinho",
11127        state: State::MS,
11128    },
11129    Municipio {
11130        ibge_code: 5003157,
11131        name: "Coronel Sapucaia",
11132        state: State::MS,
11133    },
11134    Municipio {
11135        ibge_code: 5003207,
11136        name: "Corumbá",
11137        state: State::MS,
11138    },
11139    Municipio {
11140        ibge_code: 5003256,
11141        name: "Costa Rica",
11142        state: State::MS,
11143    },
11144    Municipio {
11145        ibge_code: 5003306,
11146        name: "Coxim",
11147        state: State::MS,
11148    },
11149    Municipio {
11150        ibge_code: 5003454,
11151        name: "Deodápolis",
11152        state: State::MS,
11153    },
11154    Municipio {
11155        ibge_code: 5003488,
11156        name: "Dois Irmãos do Buriti",
11157        state: State::MS,
11158    },
11159    Municipio {
11160        ibge_code: 5003504,
11161        name: "Douradina",
11162        state: State::MS,
11163    },
11164    Municipio {
11165        ibge_code: 5003702,
11166        name: "Dourados",
11167        state: State::MS,
11168    },
11169    Municipio {
11170        ibge_code: 5003751,
11171        name: "Eldorado",
11172        state: State::MS,
11173    },
11174    Municipio {
11175        ibge_code: 5003900,
11176        name: "Figueirão",
11177        state: State::MS,
11178    },
11179    Municipio {
11180        ibge_code: 5003801,
11181        name: "Fátima do Sul",
11182        state: State::MS,
11183    },
11184    Municipio {
11185        ibge_code: 5004007,
11186        name: "Glória de Dourados",
11187        state: State::MS,
11188    },
11189    Municipio {
11190        ibge_code: 5004106,
11191        name: "Guia Lopes da Laguna",
11192        state: State::MS,
11193    },
11194    Municipio {
11195        ibge_code: 5004304,
11196        name: "Iguatemi",
11197        state: State::MS,
11198    },
11199    Municipio {
11200        ibge_code: 5004403,
11201        name: "Inocência",
11202        state: State::MS,
11203    },
11204    Municipio {
11205        ibge_code: 5004502,
11206        name: "Itaporã",
11207        state: State::MS,
11208    },
11209    Municipio {
11210        ibge_code: 5004601,
11211        name: "Itaquiraí",
11212        state: State::MS,
11213    },
11214    Municipio {
11215        ibge_code: 5004700,
11216        name: "Ivinhema",
11217        state: State::MS,
11218    },
11219    Municipio {
11220        ibge_code: 5004809,
11221        name: "Japorã",
11222        state: State::MS,
11223    },
11224    Municipio {
11225        ibge_code: 5004908,
11226        name: "Jaraguari",
11227        state: State::MS,
11228    },
11229    Municipio {
11230        ibge_code: 5005004,
11231        name: "Jardim",
11232        state: State::MS,
11233    },
11234    Municipio {
11235        ibge_code: 5005103,
11236        name: "Jateí",
11237        state: State::MS,
11238    },
11239    Municipio {
11240        ibge_code: 5005152,
11241        name: "Juti",
11242        state: State::MS,
11243    },
11244    Municipio {
11245        ibge_code: 5005202,
11246        name: "Ladário",
11247        state: State::MS,
11248    },
11249    Municipio {
11250        ibge_code: 5005251,
11251        name: "Laguna Carapã",
11252        state: State::MS,
11253    },
11254    Municipio {
11255        ibge_code: 5005400,
11256        name: "Maracaju",
11257        state: State::MS,
11258    },
11259    Municipio {
11260        ibge_code: 5005608,
11261        name: "Miranda",
11262        state: State::MS,
11263    },
11264    Municipio {
11265        ibge_code: 5005681,
11266        name: "Mundo Novo",
11267        state: State::MS,
11268    },
11269    Municipio {
11270        ibge_code: 5005707,
11271        name: "Naviraí",
11272        state: State::MS,
11273    },
11274    Municipio {
11275        ibge_code: 5005806,
11276        name: "Nioaque",
11277        state: State::MS,
11278    },
11279    Municipio {
11280        ibge_code: 5006002,
11281        name: "Nova Alvorada do Sul",
11282        state: State::MS,
11283    },
11284    Municipio {
11285        ibge_code: 5006200,
11286        name: "Nova Andradina",
11287        state: State::MS,
11288    },
11289    Municipio {
11290        ibge_code: 5006259,
11291        name: "Novo Horizonte do Sul",
11292        state: State::MS,
11293    },
11294    Municipio {
11295        ibge_code: 5006309,
11296        name: "Paranaíba",
11297        state: State::MS,
11298    },
11299    Municipio {
11300        ibge_code: 5006358,
11301        name: "Paranhos",
11302        state: State::MS,
11303    },
11304    Municipio {
11305        ibge_code: 5006275,
11306        name: "Paraíso das Águas",
11307        state: State::MS,
11308    },
11309    Municipio {
11310        ibge_code: 5006408,
11311        name: "Pedro Gomes",
11312        state: State::MS,
11313    },
11314    Municipio {
11315        ibge_code: 5006606,
11316        name: "Ponta Porã",
11317        state: State::MS,
11318    },
11319    Municipio {
11320        ibge_code: 5006903,
11321        name: "Porto Murtinho",
11322        state: State::MS,
11323    },
11324    Municipio {
11325        ibge_code: 5007109,
11326        name: "Ribas do Rio Pardo",
11327        state: State::MS,
11328    },
11329    Municipio {
11330        ibge_code: 5007208,
11331        name: "Rio Brilhante",
11332        state: State::MS,
11333    },
11334    Municipio {
11335        ibge_code: 5007307,
11336        name: "Rio Negro",
11337        state: State::MS,
11338    },
11339    Municipio {
11340        ibge_code: 5007406,
11341        name: "Rio Verde de Mato Grosso",
11342        state: State::MS,
11343    },
11344    Municipio {
11345        ibge_code: 5007505,
11346        name: "Rochedo",
11347        state: State::MS,
11348    },
11349    Municipio {
11350        ibge_code: 5007554,
11351        name: "Santa Rita do Pardo",
11352        state: State::MS,
11353    },
11354    Municipio {
11355        ibge_code: 5007802,
11356        name: "Selvíria",
11357        state: State::MS,
11358    },
11359    Municipio {
11360        ibge_code: 5007703,
11361        name: "Sete Quedas",
11362        state: State::MS,
11363    },
11364    Municipio {
11365        ibge_code: 5007901,
11366        name: "Sidrolândia",
11367        state: State::MS,
11368    },
11369    Municipio {
11370        ibge_code: 5007935,
11371        name: "Sonora",
11372        state: State::MS,
11373    },
11374    Municipio {
11375        ibge_code: 5007695,
11376        name: "São Gabriel do Oeste",
11377        state: State::MS,
11378    },
11379    Municipio {
11380        ibge_code: 5007950,
11381        name: "Tacuru",
11382        state: State::MS,
11383    },
11384    Municipio {
11385        ibge_code: 5007976,
11386        name: "Taquarussu",
11387        state: State::MS,
11388    },
11389    Municipio {
11390        ibge_code: 5008008,
11391        name: "Terenos",
11392        state: State::MS,
11393    },
11394    Municipio {
11395        ibge_code: 5008305,
11396        name: "Três Lagoas",
11397        state: State::MS,
11398    },
11399    Municipio {
11400        ibge_code: 5008404,
11401        name: "Vicentina",
11402        state: State::MS,
11403    },
11404    Municipio {
11405        ibge_code: 5000203,
11406        name: "Água Clara",
11407        state: State::MS,
11408    },
11409    Municipio {
11410        ibge_code: 5100102,
11411        name: "Acorizal",
11412        state: State::MT,
11413    },
11414    Municipio {
11415        ibge_code: 5100250,
11416        name: "Alta Floresta",
11417        state: State::MT,
11418    },
11419    Municipio {
11420        ibge_code: 5100300,
11421        name: "Alto Araguaia",
11422        state: State::MT,
11423    },
11424    Municipio {
11425        ibge_code: 5100359,
11426        name: "Alto Boa Vista",
11427        state: State::MT,
11428    },
11429    Municipio {
11430        ibge_code: 5100409,
11431        name: "Alto Garças",
11432        state: State::MT,
11433    },
11434    Municipio {
11435        ibge_code: 5100508,
11436        name: "Alto Paraguai",
11437        state: State::MT,
11438    },
11439    Municipio {
11440        ibge_code: 5100607,
11441        name: "Alto Taquari",
11442        state: State::MT,
11443    },
11444    Municipio {
11445        ibge_code: 5100805,
11446        name: "Apiacás",
11447        state: State::MT,
11448    },
11449    Municipio {
11450        ibge_code: 5101001,
11451        name: "Araguaiana",
11452        state: State::MT,
11453    },
11454    Municipio {
11455        ibge_code: 5101209,
11456        name: "Araguainha",
11457        state: State::MT,
11458    },
11459    Municipio {
11460        ibge_code: 5101258,
11461        name: "Araputanga",
11462        state: State::MT,
11463    },
11464    Municipio {
11465        ibge_code: 5101308,
11466        name: "Arenápolis",
11467        state: State::MT,
11468    },
11469    Municipio {
11470        ibge_code: 5101407,
11471        name: "Aripuanã",
11472        state: State::MT,
11473    },
11474    Municipio {
11475        ibge_code: 5101704,
11476        name: "Barra do Bugres",
11477        state: State::MT,
11478    },
11479    Municipio {
11480        ibge_code: 5101803,
11481        name: "Barra do Garças",
11482        state: State::MT,
11483    },
11484    Municipio {
11485        ibge_code: 5101605,
11486        name: "Barão de Melgaço",
11487        state: State::MT,
11488    },
11489    Municipio {
11490        ibge_code: 5101837,
11491        name: "Boa Esperança do Norte",
11492        state: State::MT,
11493    },
11494    Municipio {
11495        ibge_code: 5101852,
11496        name: "Bom Jesus do Araguaia",
11497        state: State::MT,
11498    },
11499    Municipio {
11500        ibge_code: 5101902,
11501        name: "Brasnorte",
11502        state: State::MT,
11503    },
11504    Municipio {
11505        ibge_code: 5102603,
11506        name: "Campinápolis",
11507        state: State::MT,
11508    },
11509    Municipio {
11510        ibge_code: 5102637,
11511        name: "Campo Novo do Parecis",
11512        state: State::MT,
11513    },
11514    Municipio {
11515        ibge_code: 5102678,
11516        name: "Campo Verde",
11517        state: State::MT,
11518    },
11519    Municipio {
11520        ibge_code: 5102686,
11521        name: "Campos de Júlio",
11522        state: State::MT,
11523    },
11524    Municipio {
11525        ibge_code: 5102694,
11526        name: "Canabrava do Norte",
11527        state: State::MT,
11528    },
11529    Municipio {
11530        ibge_code: 5102702,
11531        name: "Canarana",
11532        state: State::MT,
11533    },
11534    Municipio {
11535        ibge_code: 5102793,
11536        name: "Carlinda",
11537        state: State::MT,
11538    },
11539    Municipio {
11540        ibge_code: 5102850,
11541        name: "Castanheira",
11542        state: State::MT,
11543    },
11544    Municipio {
11545        ibge_code: 5103007,
11546        name: "Chapada dos Guimarães",
11547        state: State::MT,
11548    },
11549    Municipio {
11550        ibge_code: 5103056,
11551        name: "Cláudia",
11552        state: State::MT,
11553    },
11554    Municipio {
11555        ibge_code: 5103106,
11556        name: "Cocalinho",
11557        state: State::MT,
11558    },
11559    Municipio {
11560        ibge_code: 5103254,
11561        name: "Colniza",
11562        state: State::MT,
11563    },
11564    Municipio {
11565        ibge_code: 5103205,
11566        name: "Colíder",
11567        state: State::MT,
11568    },
11569    Municipio {
11570        ibge_code: 5103304,
11571        name: "Comodoro",
11572        state: State::MT,
11573    },
11574    Municipio {
11575        ibge_code: 5103353,
11576        name: "Confresa",
11577        state: State::MT,
11578    },
11579    Municipio {
11580        ibge_code: 5103361,
11581        name: "Conquista D'Oeste",
11582        state: State::MT,
11583    },
11584    Municipio {
11585        ibge_code: 5103379,
11586        name: "Cotriguaçu",
11587        state: State::MT,
11588    },
11589    Municipio {
11590        ibge_code: 5103403,
11591        name: "Cuiabá",
11592        state: State::MT,
11593    },
11594    Municipio {
11595        ibge_code: 5103437,
11596        name: "Curvelândia",
11597        state: State::MT,
11598    },
11599    Municipio {
11600        ibge_code: 5102504,
11601        name: "Cáceres",
11602        state: State::MT,
11603    },
11604    Municipio {
11605        ibge_code: 5103452,
11606        name: "Denise",
11607        state: State::MT,
11608    },
11609    Municipio {
11610        ibge_code: 5103502,
11611        name: "Diamantino",
11612        state: State::MT,
11613    },
11614    Municipio {
11615        ibge_code: 5103601,
11616        name: "Dom Aquino",
11617        state: State::MT,
11618    },
11619    Municipio {
11620        ibge_code: 5103700,
11621        name: "Feliz Natal",
11622        state: State::MT,
11623    },
11624    Municipio {
11625        ibge_code: 5103809,
11626        name: "Figueirópolis D'Oeste",
11627        state: State::MT,
11628    },
11629    Municipio {
11630        ibge_code: 5103858,
11631        name: "Gaúcha do Norte",
11632        state: State::MT,
11633    },
11634    Municipio {
11635        ibge_code: 5103908,
11636        name: "General Carneiro",
11637        state: State::MT,
11638    },
11639    Municipio {
11640        ibge_code: 5103957,
11641        name: "Glória D'Oeste",
11642        state: State::MT,
11643    },
11644    Municipio {
11645        ibge_code: 5104104,
11646        name: "Guarantã do Norte",
11647        state: State::MT,
11648    },
11649    Municipio {
11650        ibge_code: 5104203,
11651        name: "Guiratinga",
11652        state: State::MT,
11653    },
11654    Municipio {
11655        ibge_code: 5104500,
11656        name: "Indiavaí",
11657        state: State::MT,
11658    },
11659    Municipio {
11660        ibge_code: 5104526,
11661        name: "Ipiranga do Norte",
11662        state: State::MT,
11663    },
11664    Municipio {
11665        ibge_code: 5104542,
11666        name: "Itanhangá",
11667        state: State::MT,
11668    },
11669    Municipio {
11670        ibge_code: 5104559,
11671        name: "Itaúba",
11672        state: State::MT,
11673    },
11674    Municipio {
11675        ibge_code: 5104609,
11676        name: "Itiquira",
11677        state: State::MT,
11678    },
11679    Municipio {
11680        ibge_code: 5104807,
11681        name: "Jaciara",
11682        state: State::MT,
11683    },
11684    Municipio {
11685        ibge_code: 5104906,
11686        name: "Jangada",
11687        state: State::MT,
11688    },
11689    Municipio {
11690        ibge_code: 5105002,
11691        name: "Jauru",
11692        state: State::MT,
11693    },
11694    Municipio {
11695        ibge_code: 5105101,
11696        name: "Juara",
11697        state: State::MT,
11698    },
11699    Municipio {
11700        ibge_code: 5105176,
11701        name: "Juruena",
11702        state: State::MT,
11703    },
11704    Municipio {
11705        ibge_code: 5105200,
11706        name: "Juscimeira",
11707        state: State::MT,
11708    },
11709    Municipio {
11710        ibge_code: 5105150,
11711        name: "Juína",
11712        state: State::MT,
11713    },
11714    Municipio {
11715        ibge_code: 5105234,
11716        name: "Lambari D'Oeste",
11717        state: State::MT,
11718    },
11719    Municipio {
11720        ibge_code: 5105259,
11721        name: "Lucas do Rio Verde",
11722        state: State::MT,
11723    },
11724    Municipio {
11725        ibge_code: 5105309,
11726        name: "Luciara",
11727        state: State::MT,
11728    },
11729    Municipio {
11730        ibge_code: 5105580,
11731        name: "Marcelândia",
11732        state: State::MT,
11733    },
11734    Municipio {
11735        ibge_code: 5105606,
11736        name: "Matupá",
11737        state: State::MT,
11738    },
11739    Municipio {
11740        ibge_code: 5105622,
11741        name: "Mirassol d'Oeste",
11742        state: State::MT,
11743    },
11744    Municipio {
11745        ibge_code: 5105903,
11746        name: "Nobres",
11747        state: State::MT,
11748    },
11749    Municipio {
11750        ibge_code: 5106000,
11751        name: "Nortelândia",
11752        state: State::MT,
11753    },
11754    Municipio {
11755        ibge_code: 5106109,
11756        name: "Nossa Senhora do Livramento",
11757        state: State::MT,
11758    },
11759    Municipio {
11760        ibge_code: 5106158,
11761        name: "Nova Bandeirantes",
11762        state: State::MT,
11763    },
11764    Municipio {
11765        ibge_code: 5106208,
11766        name: "Nova Brasilândia",
11767        state: State::MT,
11768    },
11769    Municipio {
11770        ibge_code: 5106216,
11771        name: "Nova Canaã do Norte",
11772        state: State::MT,
11773    },
11774    Municipio {
11775        ibge_code: 5108808,
11776        name: "Nova Guarita",
11777        state: State::MT,
11778    },
11779    Municipio {
11780        ibge_code: 5106182,
11781        name: "Nova Lacerda",
11782        state: State::MT,
11783    },
11784    Municipio {
11785        ibge_code: 5108857,
11786        name: "Nova Marilândia",
11787        state: State::MT,
11788    },
11789    Municipio {
11790        ibge_code: 5108907,
11791        name: "Nova Maringá",
11792        state: State::MT,
11793    },
11794    Municipio {
11795        ibge_code: 5108956,
11796        name: "Nova Monte Verde",
11797        state: State::MT,
11798    },
11799    Municipio {
11800        ibge_code: 5106224,
11801        name: "Nova Mutum",
11802        state: State::MT,
11803    },
11804    Municipio {
11805        ibge_code: 5106174,
11806        name: "Nova Nazaré",
11807        state: State::MT,
11808    },
11809    Municipio {
11810        ibge_code: 5106232,
11811        name: "Nova Olímpia",
11812        state: State::MT,
11813    },
11814    Municipio {
11815        ibge_code: 5106190,
11816        name: "Nova Santa Helena",
11817        state: State::MT,
11818    },
11819    Municipio {
11820        ibge_code: 5106240,
11821        name: "Nova Ubiratã",
11822        state: State::MT,
11823    },
11824    Municipio {
11825        ibge_code: 5106257,
11826        name: "Nova Xavantina",
11827        state: State::MT,
11828    },
11829    Municipio {
11830        ibge_code: 5106273,
11831        name: "Novo Horizonte do Norte",
11832        state: State::MT,
11833    },
11834    Municipio {
11835        ibge_code: 5106265,
11836        name: "Novo Mundo",
11837        state: State::MT,
11838    },
11839    Municipio {
11840        ibge_code: 5106315,
11841        name: "Novo Santo Antônio",
11842        state: State::MT,
11843    },
11844    Municipio {
11845        ibge_code: 5106281,
11846        name: "Novo São Joaquim",
11847        state: State::MT,
11848    },
11849    Municipio {
11850        ibge_code: 5106307,
11851        name: "Paranatinga",
11852        state: State::MT,
11853    },
11854    Municipio {
11855        ibge_code: 5106299,
11856        name: "Paranaíta",
11857        state: State::MT,
11858    },
11859    Municipio {
11860        ibge_code: 5106372,
11861        name: "Pedra Preta",
11862        state: State::MT,
11863    },
11864    Municipio {
11865        ibge_code: 5106422,
11866        name: "Peixoto de Azevedo",
11867        state: State::MT,
11868    },
11869    Municipio {
11870        ibge_code: 5106455,
11871        name: "Planalto da Serra",
11872        state: State::MT,
11873    },
11874    Municipio {
11875        ibge_code: 5106505,
11876        name: "Poconé",
11877        state: State::MT,
11878    },
11879    Municipio {
11880        ibge_code: 5106653,
11881        name: "Pontal do Araguaia",
11882        state: State::MT,
11883    },
11884    Municipio {
11885        ibge_code: 5106703,
11886        name: "Ponte Branca",
11887        state: State::MT,
11888    },
11889    Municipio {
11890        ibge_code: 5106752,
11891        name: "Pontes e Lacerda",
11892        state: State::MT,
11893    },
11894    Municipio {
11895        ibge_code: 5106778,
11896        name: "Porto Alegre do Norte",
11897        state: State::MT,
11898    },
11899    Municipio {
11900        ibge_code: 5106828,
11901        name: "Porto Esperidião",
11902        state: State::MT,
11903    },
11904    Municipio {
11905        ibge_code: 5106851,
11906        name: "Porto Estrela",
11907        state: State::MT,
11908    },
11909    Municipio {
11910        ibge_code: 5106802,
11911        name: "Porto dos Gaúchos",
11912        state: State::MT,
11913    },
11914    Municipio {
11915        ibge_code: 5107008,
11916        name: "Poxoréu",
11917        state: State::MT,
11918    },
11919    Municipio {
11920        ibge_code: 5107040,
11921        name: "Primavera do Leste",
11922        state: State::MT,
11923    },
11924    Municipio {
11925        ibge_code: 5107065,
11926        name: "Querência",
11927        state: State::MT,
11928    },
11929    Municipio {
11930        ibge_code: 5107156,
11931        name: "Reserva do Cabaçal",
11932        state: State::MT,
11933    },
11934    Municipio {
11935        ibge_code: 5107180,
11936        name: "Ribeirão Cascalheira",
11937        state: State::MT,
11938    },
11939    Municipio {
11940        ibge_code: 5107198,
11941        name: "Ribeirãozinho",
11942        state: State::MT,
11943    },
11944    Municipio {
11945        ibge_code: 5107206,
11946        name: "Rio Branco",
11947        state: State::MT,
11948    },
11949    Municipio {
11950        ibge_code: 5107578,
11951        name: "Rondolândia",
11952        state: State::MT,
11953    },
11954    Municipio {
11955        ibge_code: 5107602,
11956        name: "Rondonópolis",
11957        state: State::MT,
11958    },
11959    Municipio {
11960        ibge_code: 5107701,
11961        name: "Rosário Oeste",
11962        state: State::MT,
11963    },
11964    Municipio {
11965        ibge_code: 5107750,
11966        name: "Salto do Céu",
11967        state: State::MT,
11968    },
11969    Municipio {
11970        ibge_code: 5107248,
11971        name: "Santa Carmem",
11972        state: State::MT,
11973    },
11974    Municipio {
11975        ibge_code: 5107743,
11976        name: "Santa Cruz do Xingu",
11977        state: State::MT,
11978    },
11979    Municipio {
11980        ibge_code: 5107768,
11981        name: "Santa Rita do Trivelato",
11982        state: State::MT,
11983    },
11984    Municipio {
11985        ibge_code: 5107776,
11986        name: "Santa Terezinha",
11987        state: State::MT,
11988    },
11989    Municipio {
11990        ibge_code: 5107263,
11991        name: "Santo Afonso",
11992        state: State::MT,
11993    },
11994    Municipio {
11995        ibge_code: 5107800,
11996        name: "Santo Antônio de Leverger",
11997        state: State::MT,
11998    },
11999    Municipio {
12000        ibge_code: 5107792,
12001        name: "Santo Antônio do Leste",
12002        state: State::MT,
12003    },
12004    Municipio {
12005        ibge_code: 5107875,
12006        name: "Sapezal",
12007        state: State::MT,
12008    },
12009    Municipio {
12010        ibge_code: 5107883,
12011        name: "Serra Nova Dourada",
12012        state: State::MT,
12013    },
12014    Municipio {
12015        ibge_code: 5107909,
12016        name: "Sinop",
12017        state: State::MT,
12018    },
12019    Municipio {
12020        ibge_code: 5107925,
12021        name: "Sorriso",
12022        state: State::MT,
12023    },
12024    Municipio {
12025        ibge_code: 5107859,
12026        name: "São Félix do Araguaia",
12027        state: State::MT,
12028    },
12029    Municipio {
12030        ibge_code: 5107297,
12031        name: "São José do Povo",
12032        state: State::MT,
12033    },
12034    Municipio {
12035        ibge_code: 5107305,
12036        name: "São José do Rio Claro",
12037        state: State::MT,
12038    },
12039    Municipio {
12040        ibge_code: 5107354,
12041        name: "São José do Xingu",
12042        state: State::MT,
12043    },
12044    Municipio {
12045        ibge_code: 5107107,
12046        name: "São José dos Quatro Marcos",
12047        state: State::MT,
12048    },
12049    Municipio {
12050        ibge_code: 5107404,
12051        name: "São Pedro da Cipa",
12052        state: State::MT,
12053    },
12054    Municipio {
12055        ibge_code: 5107941,
12056        name: "Tabaporã",
12057        state: State::MT,
12058    },
12059    Municipio {
12060        ibge_code: 5107958,
12061        name: "Tangará da Serra",
12062        state: State::MT,
12063    },
12064    Municipio {
12065        ibge_code: 5108006,
12066        name: "Tapurah",
12067        state: State::MT,
12068    },
12069    Municipio {
12070        ibge_code: 5108055,
12071        name: "Terra Nova do Norte",
12072        state: State::MT,
12073    },
12074    Municipio {
12075        ibge_code: 5108105,
12076        name: "Tesouro",
12077        state: State::MT,
12078    },
12079    Municipio {
12080        ibge_code: 5108204,
12081        name: "Torixoréu",
12082        state: State::MT,
12083    },
12084    Municipio {
12085        ibge_code: 5108303,
12086        name: "União do Sul",
12087        state: State::MT,
12088    },
12089    Municipio {
12090        ibge_code: 5108352,
12091        name: "Vale de São Domingos",
12092        state: State::MT,
12093    },
12094    Municipio {
12095        ibge_code: 5108501,
12096        name: "Vera",
12097        state: State::MT,
12098    },
12099    Municipio {
12100        ibge_code: 5105507,
12101        name: "Vila Bela da Santíssima Trindade",
12102        state: State::MT,
12103    },
12104    Municipio {
12105        ibge_code: 5108600,
12106        name: "Vila Rica",
12107        state: State::MT,
12108    },
12109    Municipio {
12110        ibge_code: 5108402,
12111        name: "Várzea Grande",
12112        state: State::MT,
12113    },
12114    Municipio {
12115        ibge_code: 5100201,
12116        name: "Água Boa",
12117        state: State::MT,
12118    },
12119    Municipio {
12120        ibge_code: 1500107,
12121        name: "Abaetetuba",
12122        state: State::PA,
12123    },
12124    Municipio {
12125        ibge_code: 1500131,
12126        name: "Abel Figueiredo",
12127        state: State::PA,
12128    },
12129    Municipio {
12130        ibge_code: 1500206,
12131        name: "Acará",
12132        state: State::PA,
12133    },
12134    Municipio {
12135        ibge_code: 1500305,
12136        name: "Afuá",
12137        state: State::PA,
12138    },
12139    Municipio {
12140        ibge_code: 1500404,
12141        name: "Alenquer",
12142        state: State::PA,
12143    },
12144    Municipio {
12145        ibge_code: 1500503,
12146        name: "Almeirim",
12147        state: State::PA,
12148    },
12149    Municipio {
12150        ibge_code: 1500602,
12151        name: "Altamira",
12152        state: State::PA,
12153    },
12154    Municipio {
12155        ibge_code: 1500701,
12156        name: "Anajás",
12157        state: State::PA,
12158    },
12159    Municipio {
12160        ibge_code: 1500800,
12161        name: "Ananindeua",
12162        state: State::PA,
12163    },
12164    Municipio {
12165        ibge_code: 1500859,
12166        name: "Anapu",
12167        state: State::PA,
12168    },
12169    Municipio {
12170        ibge_code: 1500909,
12171        name: "Augusto Corrêa",
12172        state: State::PA,
12173    },
12174    Municipio {
12175        ibge_code: 1500958,
12176        name: "Aurora do Pará",
12177        state: State::PA,
12178    },
12179    Municipio {
12180        ibge_code: 1501006,
12181        name: "Aveiro",
12182        state: State::PA,
12183    },
12184    Municipio {
12185        ibge_code: 1501105,
12186        name: "Bagre",
12187        state: State::PA,
12188    },
12189    Municipio {
12190        ibge_code: 1501204,
12191        name: "Baião",
12192        state: State::PA,
12193    },
12194    Municipio {
12195        ibge_code: 1501253,
12196        name: "Bannach",
12197        state: State::PA,
12198    },
12199    Municipio {
12200        ibge_code: 1501303,
12201        name: "Barcarena",
12202        state: State::PA,
12203    },
12204    Municipio {
12205        ibge_code: 1501451,
12206        name: "Belterra",
12207        state: State::PA,
12208    },
12209    Municipio {
12210        ibge_code: 1501402,
12211        name: "Belém",
12212        state: State::PA,
12213    },
12214    Municipio {
12215        ibge_code: 1501501,
12216        name: "Benevides",
12217        state: State::PA,
12218    },
12219    Municipio {
12220        ibge_code: 1501576,
12221        name: "Bom Jesus do Tocantins",
12222        state: State::PA,
12223    },
12224    Municipio {
12225        ibge_code: 1501600,
12226        name: "Bonito",
12227        state: State::PA,
12228    },
12229    Municipio {
12230        ibge_code: 1501709,
12231        name: "Bragança",
12232        state: State::PA,
12233    },
12234    Municipio {
12235        ibge_code: 1501725,
12236        name: "Brasil Novo",
12237        state: State::PA,
12238    },
12239    Municipio {
12240        ibge_code: 1501758,
12241        name: "Brejo Grande do Araguaia",
12242        state: State::PA,
12243    },
12244    Municipio {
12245        ibge_code: 1501782,
12246        name: "Breu Branco",
12247        state: State::PA,
12248    },
12249    Municipio {
12250        ibge_code: 1501808,
12251        name: "Breves",
12252        state: State::PA,
12253    },
12254    Municipio {
12255        ibge_code: 1501907,
12256        name: "Bujaru",
12257        state: State::PA,
12258    },
12259    Municipio {
12260        ibge_code: 1502004,
12261        name: "Cachoeira do Arari",
12262        state: State::PA,
12263    },
12264    Municipio {
12265        ibge_code: 1501956,
12266        name: "Cachoeira do Piriá",
12267        state: State::PA,
12268    },
12269    Municipio {
12270        ibge_code: 1502103,
12271        name: "Cametá",
12272        state: State::PA,
12273    },
12274    Municipio {
12275        ibge_code: 1502152,
12276        name: "Canaã dos Carajás",
12277        state: State::PA,
12278    },
12279    Municipio {
12280        ibge_code: 1502202,
12281        name: "Capanema",
12282        state: State::PA,
12283    },
12284    Municipio {
12285        ibge_code: 1502301,
12286        name: "Capitão Poço",
12287        state: State::PA,
12288    },
12289    Municipio {
12290        ibge_code: 1502400,
12291        name: "Castanhal",
12292        state: State::PA,
12293    },
12294    Municipio {
12295        ibge_code: 1502509,
12296        name: "Chaves",
12297        state: State::PA,
12298    },
12299    Municipio {
12300        ibge_code: 1502608,
12301        name: "Colares",
12302        state: State::PA,
12303    },
12304    Municipio {
12305        ibge_code: 1502707,
12306        name: "Conceição do Araguaia",
12307        state: State::PA,
12308    },
12309    Municipio {
12310        ibge_code: 1502756,
12311        name: "Concórdia do Pará",
12312        state: State::PA,
12313    },
12314    Municipio {
12315        ibge_code: 1502764,
12316        name: "Cumaru do Norte",
12317        state: State::PA,
12318    },
12319    Municipio {
12320        ibge_code: 1502772,
12321        name: "Curionópolis",
12322        state: State::PA,
12323    },
12324    Municipio {
12325        ibge_code: 1502806,
12326        name: "Curralinho",
12327        state: State::PA,
12328    },
12329    Municipio {
12330        ibge_code: 1502855,
12331        name: "Curuá",
12332        state: State::PA,
12333    },
12334    Municipio {
12335        ibge_code: 1502905,
12336        name: "Curuçá",
12337        state: State::PA,
12338    },
12339    Municipio {
12340        ibge_code: 1502939,
12341        name: "Dom Eliseu",
12342        state: State::PA,
12343    },
12344    Municipio {
12345        ibge_code: 1502954,
12346        name: "Eldorado do Carajás",
12347        state: State::PA,
12348    },
12349    Municipio {
12350        ibge_code: 1503002,
12351        name: "Faro",
12352        state: State::PA,
12353    },
12354    Municipio {
12355        ibge_code: 1503044,
12356        name: "Floresta do Araguaia",
12357        state: State::PA,
12358    },
12359    Municipio {
12360        ibge_code: 1503077,
12361        name: "Garrafão do Norte",
12362        state: State::PA,
12363    },
12364    Municipio {
12365        ibge_code: 1503093,
12366        name: "Goianésia do Pará",
12367        state: State::PA,
12368    },
12369    Municipio {
12370        ibge_code: 1503101,
12371        name: "Gurupá",
12372        state: State::PA,
12373    },
12374    Municipio {
12375        ibge_code: 1503200,
12376        name: "Igarapé-Açu",
12377        state: State::PA,
12378    },
12379    Municipio {
12380        ibge_code: 1503309,
12381        name: "Igarapé-Miri",
12382        state: State::PA,
12383    },
12384    Municipio {
12385        ibge_code: 1503408,
12386        name: "Inhangapi",
12387        state: State::PA,
12388    },
12389    Municipio {
12390        ibge_code: 1503457,
12391        name: "Ipixuna do Pará",
12392        state: State::PA,
12393    },
12394    Municipio {
12395        ibge_code: 1503507,
12396        name: "Irituia",
12397        state: State::PA,
12398    },
12399    Municipio {
12400        ibge_code: 1503606,
12401        name: "Itaituba",
12402        state: State::PA,
12403    },
12404    Municipio {
12405        ibge_code: 1503705,
12406        name: "Itupiranga",
12407        state: State::PA,
12408    },
12409    Municipio {
12410        ibge_code: 1503754,
12411        name: "Jacareacanga",
12412        state: State::PA,
12413    },
12414    Municipio {
12415        ibge_code: 1503804,
12416        name: "Jacundá",
12417        state: State::PA,
12418    },
12419    Municipio {
12420        ibge_code: 1503903,
12421        name: "Juruti",
12422        state: State::PA,
12423    },
12424    Municipio {
12425        ibge_code: 1504000,
12426        name: "Limoeiro do Ajuru",
12427        state: State::PA,
12428    },
12429    Municipio {
12430        ibge_code: 1504109,
12431        name: "Magalhães Barata",
12432        state: State::PA,
12433    },
12434    Municipio {
12435        ibge_code: 1504208,
12436        name: "Marabá",
12437        state: State::PA,
12438    },
12439    Municipio {
12440        ibge_code: 1504307,
12441        name: "Maracanã",
12442        state: State::PA,
12443    },
12444    Municipio {
12445        ibge_code: 1504406,
12446        name: "Marapanim",
12447        state: State::PA,
12448    },
12449    Municipio {
12450        ibge_code: 1504422,
12451        name: "Marituba",
12452        state: State::PA,
12453    },
12454    Municipio {
12455        ibge_code: 1504455,
12456        name: "Medicilândia",
12457        state: State::PA,
12458    },
12459    Municipio {
12460        ibge_code: 1504505,
12461        name: "Melgaço",
12462        state: State::PA,
12463    },
12464    Municipio {
12465        ibge_code: 1504604,
12466        name: "Mocajuba",
12467        state: State::PA,
12468    },
12469    Municipio {
12470        ibge_code: 1504703,
12471        name: "Moju",
12472        state: State::PA,
12473    },
12474    Municipio {
12475        ibge_code: 1504752,
12476        name: "Mojuí dos Campos",
12477        state: State::PA,
12478    },
12479    Municipio {
12480        ibge_code: 1504802,
12481        name: "Monte Alegre",
12482        state: State::PA,
12483    },
12484    Municipio {
12485        ibge_code: 1504901,
12486        name: "Muaná",
12487        state: State::PA,
12488    },
12489    Municipio {
12490        ibge_code: 1504059,
12491        name: "Mãe do Rio",
12492        state: State::PA,
12493    },
12494    Municipio {
12495        ibge_code: 1504950,
12496        name: "Nova Esperança do Piriá",
12497        state: State::PA,
12498    },
12499    Municipio {
12500        ibge_code: 1504976,
12501        name: "Nova Ipixuna",
12502        state: State::PA,
12503    },
12504    Municipio {
12505        ibge_code: 1505007,
12506        name: "Nova Timboteua",
12507        state: State::PA,
12508    },
12509    Municipio {
12510        ibge_code: 1505031,
12511        name: "Novo Progresso",
12512        state: State::PA,
12513    },
12514    Municipio {
12515        ibge_code: 1505064,
12516        name: "Novo Repartimento",
12517        state: State::PA,
12518    },
12519    Municipio {
12520        ibge_code: 1505205,
12521        name: "Oeiras do Pará",
12522        state: State::PA,
12523    },
12524    Municipio {
12525        ibge_code: 1505304,
12526        name: "Oriximiná",
12527        state: State::PA,
12528    },
12529    Municipio {
12530        ibge_code: 1505437,
12531        name: "Ourilândia do Norte",
12532        state: State::PA,
12533    },
12534    Municipio {
12535        ibge_code: 1505403,
12536        name: "Ourém",
12537        state: State::PA,
12538    },
12539    Municipio {
12540        ibge_code: 1505486,
12541        name: "Pacajá",
12542        state: State::PA,
12543    },
12544    Municipio {
12545        ibge_code: 1505494,
12546        name: "Palestina do Pará",
12547        state: State::PA,
12548    },
12549    Municipio {
12550        ibge_code: 1505502,
12551        name: "Paragominas",
12552        state: State::PA,
12553    },
12554    Municipio {
12555        ibge_code: 1505536,
12556        name: "Parauapebas",
12557        state: State::PA,
12558    },
12559    Municipio {
12560        ibge_code: 1505551,
12561        name: "Pau D'Arco",
12562        state: State::PA,
12563    },
12564    Municipio {
12565        ibge_code: 1505601,
12566        name: "Peixe-Boi",
12567        state: State::PA,
12568    },
12569    Municipio {
12570        ibge_code: 1505635,
12571        name: "Piçarra",
12572        state: State::PA,
12573    },
12574    Municipio {
12575        ibge_code: 1505650,
12576        name: "Placas",
12577        state: State::PA,
12578    },
12579    Municipio {
12580        ibge_code: 1505700,
12581        name: "Ponta de Pedras",
12582        state: State::PA,
12583    },
12584    Municipio {
12585        ibge_code: 1505809,
12586        name: "Portel",
12587        state: State::PA,
12588    },
12589    Municipio {
12590        ibge_code: 1505908,
12591        name: "Porto de Moz",
12592        state: State::PA,
12593    },
12594    Municipio {
12595        ibge_code: 1506005,
12596        name: "Prainha",
12597        state: State::PA,
12598    },
12599    Municipio {
12600        ibge_code: 1506104,
12601        name: "Primavera",
12602        state: State::PA,
12603    },
12604    Municipio {
12605        ibge_code: 1506112,
12606        name: "Quatipuru",
12607        state: State::PA,
12608    },
12609    Municipio {
12610        ibge_code: 1506138,
12611        name: "Redenção",
12612        state: State::PA,
12613    },
12614    Municipio {
12615        ibge_code: 1506161,
12616        name: "Rio Maria",
12617        state: State::PA,
12618    },
12619    Municipio {
12620        ibge_code: 1506187,
12621        name: "Rondon do Pará",
12622        state: State::PA,
12623    },
12624    Municipio {
12625        ibge_code: 1506195,
12626        name: "Rurópolis",
12627        state: State::PA,
12628    },
12629    Municipio {
12630        ibge_code: 1506203,
12631        name: "Salinópolis",
12632        state: State::PA,
12633    },
12634    Municipio {
12635        ibge_code: 1506302,
12636        name: "Salvaterra",
12637        state: State::PA,
12638    },
12639    Municipio {
12640        ibge_code: 1506351,
12641        name: "Santa Bárbara do Pará",
12642        state: State::PA,
12643    },
12644    Municipio {
12645        ibge_code: 1506401,
12646        name: "Santa Cruz do Arari",
12647        state: State::PA,
12648    },
12649    Municipio {
12650        ibge_code: 1506500,
12651        name: "Santa Izabel do Pará",
12652        state: State::PA,
12653    },
12654    Municipio {
12655        ibge_code: 1506559,
12656        name: "Santa Luzia do Pará",
12657        state: State::PA,
12658    },
12659    Municipio {
12660        ibge_code: 1506583,
12661        name: "Santa Maria das Barreiras",
12662        state: State::PA,
12663    },
12664    Municipio {
12665        ibge_code: 1506609,
12666        name: "Santa Maria do Pará",
12667        state: State::PA,
12668    },
12669    Municipio {
12670        ibge_code: 1506708,
12671        name: "Santana do Araguaia",
12672        state: State::PA,
12673    },
12674    Municipio {
12675        ibge_code: 1506807,
12676        name: "Santarém",
12677        state: State::PA,
12678    },
12679    Municipio {
12680        ibge_code: 1506906,
12681        name: "Santarém Novo",
12682        state: State::PA,
12683    },
12684    Municipio {
12685        ibge_code: 1507003,
12686        name: "Santo Antônio do Tauá",
12687        state: State::PA,
12688    },
12689    Municipio {
12690        ibge_code: 1507755,
12691        name: "Sapucaia",
12692        state: State::PA,
12693    },
12694    Municipio {
12695        ibge_code: 1507805,
12696        name: "Senador José Porfírio",
12697        state: State::PA,
12698    },
12699    Municipio {
12700        ibge_code: 1507904,
12701        name: "Soure",
12702        state: State::PA,
12703    },
12704    Municipio {
12705        ibge_code: 1507102,
12706        name: "São Caetano de Odivelas",
12707        state: State::PA,
12708    },
12709    Municipio {
12710        ibge_code: 1507151,
12711        name: "São Domingos do Araguaia",
12712        state: State::PA,
12713    },
12714    Municipio {
12715        ibge_code: 1507201,
12716        name: "São Domingos do Capim",
12717        state: State::PA,
12718    },
12719    Municipio {
12720        ibge_code: 1507409,
12721        name: "São Francisco do Pará",
12722        state: State::PA,
12723    },
12724    Municipio {
12725        ibge_code: 1507300,
12726        name: "São Félix do Xingu",
12727        state: State::PA,
12728    },
12729    Municipio {
12730        ibge_code: 1507458,
12731        name: "São Geraldo do Araguaia",
12732        state: State::PA,
12733    },
12734    Municipio {
12735        ibge_code: 1507466,
12736        name: "São João da Ponta",
12737        state: State::PA,
12738    },
12739    Municipio {
12740        ibge_code: 1507474,
12741        name: "São João de Pirabas",
12742        state: State::PA,
12743    },
12744    Municipio {
12745        ibge_code: 1507508,
12746        name: "São João do Araguaia",
12747        state: State::PA,
12748    },
12749    Municipio {
12750        ibge_code: 1507607,
12751        name: "São Miguel do Guamá",
12752        state: State::PA,
12753    },
12754    Municipio {
12755        ibge_code: 1507706,
12756        name: "São Sebastião da Boa Vista",
12757        state: State::PA,
12758    },
12759    Municipio {
12760        ibge_code: 1507953,
12761        name: "Tailândia",
12762        state: State::PA,
12763    },
12764    Municipio {
12765        ibge_code: 1507961,
12766        name: "Terra Alta",
12767        state: State::PA,
12768    },
12769    Municipio {
12770        ibge_code: 1507979,
12771        name: "Terra Santa",
12772        state: State::PA,
12773    },
12774    Municipio {
12775        ibge_code: 1508001,
12776        name: "Tomé-Açu",
12777        state: State::PA,
12778    },
12779    Municipio {
12780        ibge_code: 1508035,
12781        name: "Tracuateua",
12782        state: State::PA,
12783    },
12784    Municipio {
12785        ibge_code: 1508050,
12786        name: "Trairão",
12787        state: State::PA,
12788    },
12789    Municipio {
12790        ibge_code: 1508084,
12791        name: "Tucumã",
12792        state: State::PA,
12793    },
12794    Municipio {
12795        ibge_code: 1508100,
12796        name: "Tucuruí",
12797        state: State::PA,
12798    },
12799    Municipio {
12800        ibge_code: 1508126,
12801        name: "Ulianópolis",
12802        state: State::PA,
12803    },
12804    Municipio {
12805        ibge_code: 1508159,
12806        name: "Uruará",
12807        state: State::PA,
12808    },
12809    Municipio {
12810        ibge_code: 1508209,
12811        name: "Vigia",
12812        state: State::PA,
12813    },
12814    Municipio {
12815        ibge_code: 1508308,
12816        name: "Viseu",
12817        state: State::PA,
12818    },
12819    Municipio {
12820        ibge_code: 1508357,
12821        name: "Vitória do Xingu",
12822        state: State::PA,
12823    },
12824    Municipio {
12825        ibge_code: 1508407,
12826        name: "Xinguara",
12827        state: State::PA,
12828    },
12829    Municipio {
12830        ibge_code: 1500347,
12831        name: "Água Azul do Norte",
12832        state: State::PA,
12833    },
12834    Municipio {
12835        ibge_code: 1505106,
12836        name: "Óbidos",
12837        state: State::PA,
12838    },
12839    Municipio {
12840        ibge_code: 2500205,
12841        name: "Aguiar",
12842        state: State::PB,
12843    },
12844    Municipio {
12845        ibge_code: 2500304,
12846        name: "Alagoa Grande",
12847        state: State::PB,
12848    },
12849    Municipio {
12850        ibge_code: 2500403,
12851        name: "Alagoa Nova",
12852        state: State::PB,
12853    },
12854    Municipio {
12855        ibge_code: 2500502,
12856        name: "Alagoinha",
12857        state: State::PB,
12858    },
12859    Municipio {
12860        ibge_code: 2500536,
12861        name: "Alcantil",
12862        state: State::PB,
12863    },
12864    Municipio {
12865        ibge_code: 2500577,
12866        name: "Algodão de Jandaíra",
12867        state: State::PB,
12868    },
12869    Municipio {
12870        ibge_code: 2500601,
12871        name: "Alhandra",
12872        state: State::PB,
12873    },
12874    Municipio {
12875        ibge_code: 2500734,
12876        name: "Amparo",
12877        state: State::PB,
12878    },
12879    Municipio {
12880        ibge_code: 2500775,
12881        name: "Aparecida",
12882        state: State::PB,
12883    },
12884    Municipio {
12885        ibge_code: 2500908,
12886        name: "Arara",
12887        state: State::PB,
12888    },
12889    Municipio {
12890        ibge_code: 2501005,
12891        name: "Araruna",
12892        state: State::PB,
12893    },
12894    Municipio {
12895        ibge_code: 2500809,
12896        name: "Araçagi",
12897        state: State::PB,
12898    },
12899    Municipio {
12900        ibge_code: 2501104,
12901        name: "Areia",
12902        state: State::PB,
12903    },
12904    Municipio {
12905        ibge_code: 2501153,
12906        name: "Areia de Baraúnas",
12907        state: State::PB,
12908    },
12909    Municipio {
12910        ibge_code: 2501203,
12911        name: "Areial",
12912        state: State::PB,
12913    },
12914    Municipio {
12915        ibge_code: 2501302,
12916        name: "Aroeiras",
12917        state: State::PB,
12918    },
12919    Municipio {
12920        ibge_code: 2501351,
12921        name: "Assunção",
12922        state: State::PB,
12923    },
12924    Municipio {
12925        ibge_code: 2501500,
12926        name: "Bananeiras",
12927        state: State::PB,
12928    },
12929    Municipio {
12930        ibge_code: 2501534,
12931        name: "Baraúna",
12932        state: State::PB,
12933    },
12934    Municipio {
12935        ibge_code: 2501609,
12936        name: "Barra de Santa Rosa",
12937        state: State::PB,
12938    },
12939    Municipio {
12940        ibge_code: 2501575,
12941        name: "Barra de Santana",
12942        state: State::PB,
12943    },
12944    Municipio {
12945        ibge_code: 2501708,
12946        name: "Barra de São Miguel",
12947        state: State::PB,
12948    },
12949    Municipio {
12950        ibge_code: 2501807,
12951        name: "Bayeux",
12952        state: State::PB,
12953    },
12954    Municipio {
12955        ibge_code: 2501401,
12956        name: "Baía da Traição",
12957        state: State::PB,
12958    },
12959    Municipio {
12960        ibge_code: 2501906,
12961        name: "Belém",
12962        state: State::PB,
12963    },
12964    Municipio {
12965        ibge_code: 2502003,
12966        name: "Belém do Brejo do Cruz",
12967        state: State::PB,
12968    },
12969    Municipio {
12970        ibge_code: 2502052,
12971        name: "Bernardino Batista",
12972        state: State::PB,
12973    },
12974    Municipio {
12975        ibge_code: 2502102,
12976        name: "Boa Ventura",
12977        state: State::PB,
12978    },
12979    Municipio {
12980        ibge_code: 2502151,
12981        name: "Boa Vista",
12982        state: State::PB,
12983    },
12984    Municipio {
12985        ibge_code: 2502201,
12986        name: "Bom Jesus",
12987        state: State::PB,
12988    },
12989    Municipio {
12990        ibge_code: 2502300,
12991        name: "Bom Sucesso",
12992        state: State::PB,
12993    },
12994    Municipio {
12995        ibge_code: 2502409,
12996        name: "Bonito de Santa Fé",
12997        state: State::PB,
12998    },
12999    Municipio {
13000        ibge_code: 2502508,
13001        name: "Boqueirão",
13002        state: State::PB,
13003    },
13004    Municipio {
13005        ibge_code: 2502706,
13006        name: "Borborema",
13007        state: State::PB,
13008    },
13009    Municipio {
13010        ibge_code: 2502805,
13011        name: "Brejo do Cruz",
13012        state: State::PB,
13013    },
13014    Municipio {
13015        ibge_code: 2502904,
13016        name: "Brejo dos Santos",
13017        state: State::PB,
13018    },
13019    Municipio {
13020        ibge_code: 2503001,
13021        name: "Caaporã",
13022        state: State::PB,
13023    },
13024    Municipio {
13025        ibge_code: 2503100,
13026        name: "Cabaceiras",
13027        state: State::PB,
13028    },
13029    Municipio {
13030        ibge_code: 2503209,
13031        name: "Cabedelo",
13032        state: State::PB,
13033    },
13034    Municipio {
13035        ibge_code: 2503308,
13036        name: "Cachoeira dos Índios",
13037        state: State::PB,
13038    },
13039    Municipio {
13040        ibge_code: 2503407,
13041        name: "Cacimba de Areia",
13042        state: State::PB,
13043    },
13044    Municipio {
13045        ibge_code: 2503506,
13046        name: "Cacimba de Dentro",
13047        state: State::PB,
13048    },
13049    Municipio {
13050        ibge_code: 2503555,
13051        name: "Cacimbas",
13052        state: State::PB,
13053    },
13054    Municipio {
13055        ibge_code: 2503605,
13056        name: "Caiçara",
13057        state: State::PB,
13058    },
13059    Municipio {
13060        ibge_code: 2503704,
13061        name: "Cajazeiras",
13062        state: State::PB,
13063    },
13064    Municipio {
13065        ibge_code: 2503753,
13066        name: "Cajazeirinhas",
13067        state: State::PB,
13068    },
13069    Municipio {
13070        ibge_code: 2503803,
13071        name: "Caldas Brandão",
13072        state: State::PB,
13073    },
13074    Municipio {
13075        ibge_code: 2503902,
13076        name: "Camalaú",
13077        state: State::PB,
13078    },
13079    Municipio {
13080        ibge_code: 2504009,
13081        name: "Campina Grande",
13082        state: State::PB,
13083    },
13084    Municipio {
13085        ibge_code: 2504033,
13086        name: "Capim",
13087        state: State::PB,
13088    },
13089    Municipio {
13090        ibge_code: 2504074,
13091        name: "Caraúbas",
13092        state: State::PB,
13093    },
13094    Municipio {
13095        ibge_code: 2504108,
13096        name: "Carrapateira",
13097        state: State::PB,
13098    },
13099    Municipio {
13100        ibge_code: 2504157,
13101        name: "Casserengue",
13102        state: State::PB,
13103    },
13104    Municipio {
13105        ibge_code: 2504207,
13106        name: "Catingueira",
13107        state: State::PB,
13108    },
13109    Municipio {
13110        ibge_code: 2504306,
13111        name: "Catolé do Rocha",
13112        state: State::PB,
13113    },
13114    Municipio {
13115        ibge_code: 2504355,
13116        name: "Caturité",
13117        state: State::PB,
13118    },
13119    Municipio {
13120        ibge_code: 2504405,
13121        name: "Conceição",
13122        state: State::PB,
13123    },
13124    Municipio {
13125        ibge_code: 2504504,
13126        name: "Condado",
13127        state: State::PB,
13128    },
13129    Municipio {
13130        ibge_code: 2504603,
13131        name: "Conde",
13132        state: State::PB,
13133    },
13134    Municipio {
13135        ibge_code: 2504702,
13136        name: "Congo",
13137        state: State::PB,
13138    },
13139    Municipio {
13140        ibge_code: 2504801,
13141        name: "Coremas",
13142        state: State::PB,
13143    },
13144    Municipio {
13145        ibge_code: 2504850,
13146        name: "Coxixola",
13147        state: State::PB,
13148    },
13149    Municipio {
13150        ibge_code: 2504900,
13151        name: "Cruz do Espírito Santo",
13152        state: State::PB,
13153    },
13154    Municipio {
13155        ibge_code: 2505006,
13156        name: "Cubati",
13157        state: State::PB,
13158    },
13159    Municipio {
13160        ibge_code: 2505204,
13161        name: "Cuitegi",
13162        state: State::PB,
13163    },
13164    Municipio {
13165        ibge_code: 2505105,
13166        name: "Cuité",
13167        state: State::PB,
13168    },
13169    Municipio {
13170        ibge_code: 2505238,
13171        name: "Cuité de Mamanguape",
13172        state: State::PB,
13173    },
13174    Municipio {
13175        ibge_code: 2505303,
13176        name: "Curral Velho",
13177        state: State::PB,
13178    },
13179    Municipio {
13180        ibge_code: 2505279,
13181        name: "Curral de Cima",
13182        state: State::PB,
13183    },
13184    Municipio {
13185        ibge_code: 2505352,
13186        name: "Damião",
13187        state: State::PB,
13188    },
13189    Municipio {
13190        ibge_code: 2505402,
13191        name: "Desterro",
13192        state: State::PB,
13193    },
13194    Municipio {
13195        ibge_code: 2505600,
13196        name: "Diamante",
13197        state: State::PB,
13198    },
13199    Municipio {
13200        ibge_code: 2505709,
13201        name: "Dona Inês",
13202        state: State::PB,
13203    },
13204    Municipio {
13205        ibge_code: 2505808,
13206        name: "Duas Estradas",
13207        state: State::PB,
13208    },
13209    Municipio {
13210        ibge_code: 2505907,
13211        name: "Emas",
13212        state: State::PB,
13213    },
13214    Municipio {
13215        ibge_code: 2506004,
13216        name: "Esperança",
13217        state: State::PB,
13218    },
13219    Municipio {
13220        ibge_code: 2506103,
13221        name: "Fagundes",
13222        state: State::PB,
13223    },
13224    Municipio {
13225        ibge_code: 2506202,
13226        name: "Frei Martinho",
13227        state: State::PB,
13228    },
13229    Municipio {
13230        ibge_code: 2506251,
13231        name: "Gado Bravo",
13232        state: State::PB,
13233    },
13234    Municipio {
13235        ibge_code: 2506301,
13236        name: "Guarabira",
13237        state: State::PB,
13238    },
13239    Municipio {
13240        ibge_code: 2506400,
13241        name: "Gurinhém",
13242        state: State::PB,
13243    },
13244    Municipio {
13245        ibge_code: 2506509,
13246        name: "Gurjão",
13247        state: State::PB,
13248    },
13249    Municipio {
13250        ibge_code: 2506608,
13251        name: "Ibiara",
13252        state: State::PB,
13253    },
13254    Municipio {
13255        ibge_code: 2502607,
13256        name: "Igaracy",
13257        state: State::PB,
13258    },
13259    Municipio {
13260        ibge_code: 2506707,
13261        name: "Imaculada",
13262        state: State::PB,
13263    },
13264    Municipio {
13265        ibge_code: 2506806,
13266        name: "Ingá",
13267        state: State::PB,
13268    },
13269    Municipio {
13270        ibge_code: 2506905,
13271        name: "Itabaiana",
13272        state: State::PB,
13273    },
13274    Municipio {
13275        ibge_code: 2507002,
13276        name: "Itaporanga",
13277        state: State::PB,
13278    },
13279    Municipio {
13280        ibge_code: 2507101,
13281        name: "Itapororoca",
13282        state: State::PB,
13283    },
13284    Municipio {
13285        ibge_code: 2507200,
13286        name: "Itatuba",
13287        state: State::PB,
13288    },
13289    Municipio {
13290        ibge_code: 2507309,
13291        name: "Jacaraú",
13292        state: State::PB,
13293    },
13294    Municipio {
13295        ibge_code: 2507408,
13296        name: "Jericó",
13297        state: State::PB,
13298    },
13299    Municipio {
13300        ibge_code: 2513653,
13301        name: "Joca Claudino",
13302        state: State::PB,
13303    },
13304    Municipio {
13305        ibge_code: 2507507,
13306        name: "João Pessoa",
13307        state: State::PB,
13308    },
13309    Municipio {
13310        ibge_code: 2507606,
13311        name: "Juarez Távora",
13312        state: State::PB,
13313    },
13314    Municipio {
13315        ibge_code: 2507705,
13316        name: "Juazeirinho",
13317        state: State::PB,
13318    },
13319    Municipio {
13320        ibge_code: 2507804,
13321        name: "Junco do Seridó",
13322        state: State::PB,
13323    },
13324    Municipio {
13325        ibge_code: 2507903,
13326        name: "Juripiranga",
13327        state: State::PB,
13328    },
13329    Municipio {
13330        ibge_code: 2508000,
13331        name: "Juru",
13332        state: State::PB,
13333    },
13334    Municipio {
13335        ibge_code: 2508109,
13336        name: "Lagoa",
13337        state: State::PB,
13338    },
13339    Municipio {
13340        ibge_code: 2508307,
13341        name: "Lagoa Seca",
13342        state: State::PB,
13343    },
13344    Municipio {
13345        ibge_code: 2508208,
13346        name: "Lagoa de Dentro",
13347        state: State::PB,
13348    },
13349    Municipio {
13350        ibge_code: 2508406,
13351        name: "Lastro",
13352        state: State::PB,
13353    },
13354    Municipio {
13355        ibge_code: 2508505,
13356        name: "Livramento",
13357        state: State::PB,
13358    },
13359    Municipio {
13360        ibge_code: 2508554,
13361        name: "Logradouro",
13362        state: State::PB,
13363    },
13364    Municipio {
13365        ibge_code: 2508604,
13366        name: "Lucena",
13367        state: State::PB,
13368    },
13369    Municipio {
13370        ibge_code: 2508802,
13371        name: "Malta",
13372        state: State::PB,
13373    },
13374    Municipio {
13375        ibge_code: 2508901,
13376        name: "Mamanguape",
13377        state: State::PB,
13378    },
13379    Municipio {
13380        ibge_code: 2509008,
13381        name: "Manaíra",
13382        state: State::PB,
13383    },
13384    Municipio {
13385        ibge_code: 2509057,
13386        name: "Marcação",
13387        state: State::PB,
13388    },
13389    Municipio {
13390        ibge_code: 2509107,
13391        name: "Mari",
13392        state: State::PB,
13393    },
13394    Municipio {
13395        ibge_code: 2509156,
13396        name: "Marizópolis",
13397        state: State::PB,
13398    },
13399    Municipio {
13400        ibge_code: 2509206,
13401        name: "Massaranduba",
13402        state: State::PB,
13403    },
13404    Municipio {
13405        ibge_code: 2509305,
13406        name: "Mataraca",
13407        state: State::PB,
13408    },
13409    Municipio {
13410        ibge_code: 2509339,
13411        name: "Matinhas",
13412        state: State::PB,
13413    },
13414    Municipio {
13415        ibge_code: 2509370,
13416        name: "Mato Grosso",
13417        state: State::PB,
13418    },
13419    Municipio {
13420        ibge_code: 2509396,
13421        name: "Maturéia",
13422        state: State::PB,
13423    },
13424    Municipio {
13425        ibge_code: 2509404,
13426        name: "Mogeiro",
13427        state: State::PB,
13428    },
13429    Municipio {
13430        ibge_code: 2509503,
13431        name: "Montadas",
13432        state: State::PB,
13433    },
13434    Municipio {
13435        ibge_code: 2509602,
13436        name: "Monte Horebe",
13437        state: State::PB,
13438    },
13439    Municipio {
13440        ibge_code: 2509701,
13441        name: "Monteiro",
13442        state: State::PB,
13443    },
13444    Municipio {
13445        ibge_code: 2509800,
13446        name: "Mulungu",
13447        state: State::PB,
13448    },
13449    Municipio {
13450        ibge_code: 2508703,
13451        name: "Mãe d'Água",
13452        state: State::PB,
13453    },
13454    Municipio {
13455        ibge_code: 2509909,
13456        name: "Natuba",
13457        state: State::PB,
13458    },
13459    Municipio {
13460        ibge_code: 2510006,
13461        name: "Nazarezinho",
13462        state: State::PB,
13463    },
13464    Municipio {
13465        ibge_code: 2510105,
13466        name: "Nova Floresta",
13467        state: State::PB,
13468    },
13469    Municipio {
13470        ibge_code: 2510204,
13471        name: "Nova Olinda",
13472        state: State::PB,
13473    },
13474    Municipio {
13475        ibge_code: 2510303,
13476        name: "Nova Palmeira",
13477        state: State::PB,
13478    },
13479    Municipio {
13480        ibge_code: 2510402,
13481        name: "Olho d'Água",
13482        state: State::PB,
13483    },
13484    Municipio {
13485        ibge_code: 2510501,
13486        name: "Olivedos",
13487        state: State::PB,
13488    },
13489    Municipio {
13490        ibge_code: 2510600,
13491        name: "Ouro Velho",
13492        state: State::PB,
13493    },
13494    Municipio {
13495        ibge_code: 2510659,
13496        name: "Parari",
13497        state: State::PB,
13498    },
13499    Municipio {
13500        ibge_code: 2510709,
13501        name: "Passagem",
13502        state: State::PB,
13503    },
13504    Municipio {
13505        ibge_code: 2510808,
13506        name: "Patos",
13507        state: State::PB,
13508    },
13509    Municipio {
13510        ibge_code: 2510907,
13511        name: "Paulista",
13512        state: State::PB,
13513    },
13514    Municipio {
13515        ibge_code: 2511004,
13516        name: "Pedra Branca",
13517        state: State::PB,
13518    },
13519    Municipio {
13520        ibge_code: 2511103,
13521        name: "Pedra Lavrada",
13522        state: State::PB,
13523    },
13524    Municipio {
13525        ibge_code: 2511202,
13526        name: "Pedras de Fogo",
13527        state: State::PB,
13528    },
13529    Municipio {
13530        ibge_code: 2512721,
13531        name: "Pedro Régis",
13532        state: State::PB,
13533    },
13534    Municipio {
13535        ibge_code: 2511301,
13536        name: "Piancó",
13537        state: State::PB,
13538    },
13539    Municipio {
13540        ibge_code: 2511400,
13541        name: "Picuí",
13542        state: State::PB,
13543    },
13544    Municipio {
13545        ibge_code: 2511509,
13546        name: "Pilar",
13547        state: State::PB,
13548    },
13549    Municipio {
13550        ibge_code: 2511608,
13551        name: "Pilões",
13552        state: State::PB,
13553    },
13554    Municipio {
13555        ibge_code: 2511707,
13556        name: "Pilõezinhos",
13557        state: State::PB,
13558    },
13559    Municipio {
13560        ibge_code: 2511806,
13561        name: "Pirpirituba",
13562        state: State::PB,
13563    },
13564    Municipio {
13565        ibge_code: 2511905,
13566        name: "Pitimbu",
13567        state: State::PB,
13568    },
13569    Municipio {
13570        ibge_code: 2512002,
13571        name: "Pocinhos",
13572        state: State::PB,
13573    },
13574    Municipio {
13575        ibge_code: 2512101,
13576        name: "Pombal",
13577        state: State::PB,
13578    },
13579    Municipio {
13580        ibge_code: 2512036,
13581        name: "Poço Dantas",
13582        state: State::PB,
13583    },
13584    Municipio {
13585        ibge_code: 2512077,
13586        name: "Poço de José de Moura",
13587        state: State::PB,
13588    },
13589    Municipio {
13590        ibge_code: 2512200,
13591        name: "Prata",
13592        state: State::PB,
13593    },
13594    Municipio {
13595        ibge_code: 2512309,
13596        name: "Princesa Isabel",
13597        state: State::PB,
13598    },
13599    Municipio {
13600        ibge_code: 2512408,
13601        name: "Puxinanã",
13602        state: State::PB,
13603    },
13604    Municipio {
13605        ibge_code: 2512507,
13606        name: "Queimadas",
13607        state: State::PB,
13608    },
13609    Municipio {
13610        ibge_code: 2512606,
13611        name: "Quixaba",
13612        state: State::PB,
13613    },
13614    Municipio {
13615        ibge_code: 2512705,
13616        name: "Remígio",
13617        state: State::PB,
13618    },
13619    Municipio {
13620        ibge_code: 2512788,
13621        name: "Riacho de Santo Antônio",
13622        state: State::PB,
13623    },
13624    Municipio {
13625        ibge_code: 2512804,
13626        name: "Riacho dos Cavalos",
13627        state: State::PB,
13628    },
13629    Municipio {
13630        ibge_code: 2512747,
13631        name: "Riachão",
13632        state: State::PB,
13633    },
13634    Municipio {
13635        ibge_code: 2512754,
13636        name: "Riachão do Bacamarte",
13637        state: State::PB,
13638    },
13639    Municipio {
13640        ibge_code: 2512762,
13641        name: "Riachão do Poço",
13642        state: State::PB,
13643    },
13644    Municipio {
13645        ibge_code: 2512903,
13646        name: "Rio Tinto",
13647        state: State::PB,
13648    },
13649    Municipio {
13650        ibge_code: 2513000,
13651        name: "Salgadinho",
13652        state: State::PB,
13653    },
13654    Municipio {
13655        ibge_code: 2513109,
13656        name: "Salgado de São Félix",
13657        state: State::PB,
13658    },
13659    Municipio {
13660        ibge_code: 2513158,
13661        name: "Santa Cecília",
13662        state: State::PB,
13663    },
13664    Municipio {
13665        ibge_code: 2513208,
13666        name: "Santa Cruz",
13667        state: State::PB,
13668    },
13669    Municipio {
13670        ibge_code: 2513307,
13671        name: "Santa Helena",
13672        state: State::PB,
13673    },
13674    Municipio {
13675        ibge_code: 2513356,
13676        name: "Santa Inês",
13677        state: State::PB,
13678    },
13679    Municipio {
13680        ibge_code: 2513406,
13681        name: "Santa Luzia",
13682        state: State::PB,
13683    },
13684    Municipio {
13685        ibge_code: 2513703,
13686        name: "Santa Rita",
13687        state: State::PB,
13688    },
13689    Municipio {
13690        ibge_code: 2513802,
13691        name: "Santa Teresinha",
13692        state: State::PB,
13693    },
13694    Municipio {
13695        ibge_code: 2513505,
13696        name: "Santana de Mangueira",
13697        state: State::PB,
13698    },
13699    Municipio {
13700        ibge_code: 2513604,
13701        name: "Santana dos Garrotes",
13702        state: State::PB,
13703    },
13704    Municipio {
13705        ibge_code: 2513851,
13706        name: "Santo André",
13707        state: State::PB,
13708    },
13709    Municipio {
13710        ibge_code: 2515302,
13711        name: "Sapé",
13712        state: State::PB,
13713    },
13714    Municipio {
13715        ibge_code: 2515500,
13716        name: "Serra Branca",
13717        state: State::PB,
13718    },
13719    Municipio {
13720        ibge_code: 2515708,
13721        name: "Serra Grande",
13722        state: State::PB,
13723    },
13724    Municipio {
13725        ibge_code: 2515807,
13726        name: "Serra Redonda",
13727        state: State::PB,
13728    },
13729    Municipio {
13730        ibge_code: 2515609,
13731        name: "Serra da Raiz",
13732        state: State::PB,
13733    },
13734    Municipio {
13735        ibge_code: 2515906,
13736        name: "Serraria",
13737        state: State::PB,
13738    },
13739    Municipio {
13740        ibge_code: 2515930,
13741        name: "Sertãozinho",
13742        state: State::PB,
13743    },
13744    Municipio {
13745        ibge_code: 2515971,
13746        name: "Sobrado",
13747        state: State::PB,
13748    },
13749    Municipio {
13750        ibge_code: 2516102,
13751        name: "Soledade",
13752        state: State::PB,
13753    },
13754    Municipio {
13755        ibge_code: 2516003,
13756        name: "Solânea",
13757        state: State::PB,
13758    },
13759    Municipio {
13760        ibge_code: 2516151,
13761        name: "Sossêgo",
13762        state: State::PB,
13763    },
13764    Municipio {
13765        ibge_code: 2516201,
13766        name: "Sousa",
13767        state: State::PB,
13768    },
13769    Municipio {
13770        ibge_code: 2516300,
13771        name: "Sumé",
13772        state: State::PB,
13773    },
13774    Municipio {
13775        ibge_code: 2513927,
13776        name: "São Bentinho",
13777        state: State::PB,
13778    },
13779    Municipio {
13780        ibge_code: 2513901,
13781        name: "São Bento",
13782        state: State::PB,
13783    },
13784    Municipio {
13785        ibge_code: 2513968,
13786        name: "São Domingos",
13787        state: State::PB,
13788    },
13789    Municipio {
13790        ibge_code: 2513943,
13791        name: "São Domingos do Cariri",
13792        state: State::PB,
13793    },
13794    Municipio {
13795        ibge_code: 2513984,
13796        name: "São Francisco",
13797        state: State::PB,
13798    },
13799    Municipio {
13800        ibge_code: 2514206,
13801        name: "São José da Lagoa Tapada",
13802        state: State::PB,
13803    },
13804    Municipio {
13805        ibge_code: 2514305,
13806        name: "São José de Caiana",
13807        state: State::PB,
13808    },
13809    Municipio {
13810        ibge_code: 2514404,
13811        name: "São José de Espinharas",
13812        state: State::PB,
13813    },
13814    Municipio {
13815        ibge_code: 2514503,
13816        name: "São José de Piranhas",
13817        state: State::PB,
13818    },
13819    Municipio {
13820        ibge_code: 2514552,
13821        name: "São José de Princesa",
13822        state: State::PB,
13823    },
13824    Municipio {
13825        ibge_code: 2514602,
13826        name: "São José do Bonfim",
13827        state: State::PB,
13828    },
13829    Municipio {
13830        ibge_code: 2514651,
13831        name: "São José do Brejo do Cruz",
13832        state: State::PB,
13833    },
13834    Municipio {
13835        ibge_code: 2514701,
13836        name: "São José do Sabugi",
13837        state: State::PB,
13838    },
13839    Municipio {
13840        ibge_code: 2514800,
13841        name: "São José dos Cordeiros",
13842        state: State::PB,
13843    },
13844    Municipio {
13845        ibge_code: 2514453,
13846        name: "São José dos Ramos",
13847        state: State::PB,
13848    },
13849    Municipio {
13850        ibge_code: 2514008,
13851        name: "São João do Cariri",
13852        state: State::PB,
13853    },
13854    Municipio {
13855        ibge_code: 2500700,
13856        name: "São João do Rio do Peixe",
13857        state: State::PB,
13858    },
13859    Municipio {
13860        ibge_code: 2514107,
13861        name: "São João do Tigre",
13862        state: State::PB,
13863    },
13864    Municipio {
13865        ibge_code: 2514909,
13866        name: "São Mamede",
13867        state: State::PB,
13868    },
13869    Municipio {
13870        ibge_code: 2515005,
13871        name: "São Miguel de Taipu",
13872        state: State::PB,
13873    },
13874    Municipio {
13875        ibge_code: 2515104,
13876        name: "São Sebastião de Lagoa de Roça",
13877        state: State::PB,
13878    },
13879    Municipio {
13880        ibge_code: 2515203,
13881        name: "São Sebastião do Umbuzeiro",
13882        state: State::PB,
13883    },
13884    Municipio {
13885        ibge_code: 2515401,
13886        name: "São Vicente do Seridó",
13887        state: State::PB,
13888    },
13889    Municipio {
13890        ibge_code: 2516409,
13891        name: "Tacima",
13892        state: State::PB,
13893    },
13894    Municipio {
13895        ibge_code: 2516508,
13896        name: "Taperoá",
13897        state: State::PB,
13898    },
13899    Municipio {
13900        ibge_code: 2516607,
13901        name: "Tavares",
13902        state: State::PB,
13903    },
13904    Municipio {
13905        ibge_code: 2516706,
13906        name: "Teixeira",
13907        state: State::PB,
13908    },
13909    Municipio {
13910        ibge_code: 2516755,
13911        name: "Tenório",
13912        state: State::PB,
13913    },
13914    Municipio {
13915        ibge_code: 2516805,
13916        name: "Triunfo",
13917        state: State::PB,
13918    },
13919    Municipio {
13920        ibge_code: 2516904,
13921        name: "Uiraúna",
13922        state: State::PB,
13923    },
13924    Municipio {
13925        ibge_code: 2517001,
13926        name: "Umbuzeiro",
13927        state: State::PB,
13928    },
13929    Municipio {
13930        ibge_code: 2517209,
13931        name: "Vieirópolis",
13932        state: State::PB,
13933    },
13934    Municipio {
13935        ibge_code: 2505501,
13936        name: "Vista Serrana",
13937        state: State::PB,
13938    },
13939    Municipio {
13940        ibge_code: 2517100,
13941        name: "Várzea",
13942        state: State::PB,
13943    },
13944    Municipio {
13945        ibge_code: 2517407,
13946        name: "Zabelê",
13947        state: State::PB,
13948    },
13949    Municipio {
13950        ibge_code: 2500106,
13951        name: "Água Branca",
13952        state: State::PB,
13953    },
13954    Municipio {
13955        ibge_code: 2600054,
13956        name: "Abreu e Lima",
13957        state: State::PE,
13958    },
13959    Municipio {
13960        ibge_code: 2600104,
13961        name: "Afogados da Ingazeira",
13962        state: State::PE,
13963    },
13964    Municipio {
13965        ibge_code: 2600203,
13966        name: "Afrânio",
13967        state: State::PE,
13968    },
13969    Municipio {
13970        ibge_code: 2600302,
13971        name: "Agrestina",
13972        state: State::PE,
13973    },
13974    Municipio {
13975        ibge_code: 2600609,
13976        name: "Alagoinha",
13977        state: State::PE,
13978    },
13979    Municipio {
13980        ibge_code: 2600708,
13981        name: "Aliança",
13982        state: State::PE,
13983    },
13984    Municipio {
13985        ibge_code: 2600807,
13986        name: "Altinho",
13987        state: State::PE,
13988    },
13989    Municipio {
13990        ibge_code: 2600906,
13991        name: "Amaraji",
13992        state: State::PE,
13993    },
13994    Municipio {
13995        ibge_code: 2601003,
13996        name: "Angelim",
13997        state: State::PE,
13998    },
13999    Municipio {
14000        ibge_code: 2601102,
14001        name: "Araripina",
14002        state: State::PE,
14003    },
14004    Municipio {
14005        ibge_code: 2601052,
14006        name: "Araçoiaba",
14007        state: State::PE,
14008    },
14009    Municipio {
14010        ibge_code: 2601201,
14011        name: "Arcoverde",
14012        state: State::PE,
14013    },
14014    Municipio {
14015        ibge_code: 2601300,
14016        name: "Barra de Guabiraba",
14017        state: State::PE,
14018    },
14019    Municipio {
14020        ibge_code: 2601409,
14021        name: "Barreiros",
14022        state: State::PE,
14023    },
14024    Municipio {
14025        ibge_code: 2601706,
14026        name: "Belo Jardim",
14027        state: State::PE,
14028    },
14029    Municipio {
14030        ibge_code: 2601508,
14031        name: "Belém de Maria",
14032        state: State::PE,
14033    },
14034    Municipio {
14035        ibge_code: 2601607,
14036        name: "Belém do São Francisco",
14037        state: State::PE,
14038    },
14039    Municipio {
14040        ibge_code: 2601805,
14041        name: "Betânia",
14042        state: State::PE,
14043    },
14044    Municipio {
14045        ibge_code: 2601904,
14046        name: "Bezerros",
14047        state: State::PE,
14048    },
14049    Municipio {
14050        ibge_code: 2602001,
14051        name: "Bodocó",
14052        state: State::PE,
14053    },
14054    Municipio {
14055        ibge_code: 2602100,
14056        name: "Bom Conselho",
14057        state: State::PE,
14058    },
14059    Municipio {
14060        ibge_code: 2602209,
14061        name: "Bom Jardim",
14062        state: State::PE,
14063    },
14064    Municipio {
14065        ibge_code: 2602308,
14066        name: "Bonito",
14067        state: State::PE,
14068    },
14069    Municipio {
14070        ibge_code: 2602506,
14071        name: "Brejinho",
14072        state: State::PE,
14073    },
14074    Municipio {
14075        ibge_code: 2602605,
14076        name: "Brejo da Madre de Deus",
14077        state: State::PE,
14078    },
14079    Municipio {
14080        ibge_code: 2602407,
14081        name: "Brejão",
14082        state: State::PE,
14083    },
14084    Municipio {
14085        ibge_code: 2602704,
14086        name: "Buenos Aires",
14087        state: State::PE,
14088    },
14089    Municipio {
14090        ibge_code: 2602803,
14091        name: "Buíque",
14092        state: State::PE,
14093    },
14094    Municipio {
14095        ibge_code: 2602902,
14096        name: "Cabo de Santo Agostinho",
14097        state: State::PE,
14098    },
14099    Municipio {
14100        ibge_code: 2603009,
14101        name: "Cabrobó",
14102        state: State::PE,
14103    },
14104    Municipio {
14105        ibge_code: 2603108,
14106        name: "Cachoeirinha",
14107        state: State::PE,
14108    },
14109    Municipio {
14110        ibge_code: 2603207,
14111        name: "Caetés",
14112        state: State::PE,
14113    },
14114    Municipio {
14115        ibge_code: 2603405,
14116        name: "Calumbi",
14117        state: State::PE,
14118    },
14119    Municipio {
14120        ibge_code: 2603306,
14121        name: "Calçado",
14122        state: State::PE,
14123    },
14124    Municipio {
14125        ibge_code: 2603454,
14126        name: "Camaragibe",
14127        state: State::PE,
14128    },
14129    Municipio {
14130        ibge_code: 2603504,
14131        name: "Camocim de São Félix",
14132        state: State::PE,
14133    },
14134    Municipio {
14135        ibge_code: 2603603,
14136        name: "Camutanga",
14137        state: State::PE,
14138    },
14139    Municipio {
14140        ibge_code: 2603702,
14141        name: "Canhotinho",
14142        state: State::PE,
14143    },
14144    Municipio {
14145        ibge_code: 2603801,
14146        name: "Capoeiras",
14147        state: State::PE,
14148    },
14149    Municipio {
14150        ibge_code: 2603926,
14151        name: "Carnaubeira da Penha",
14152        state: State::PE,
14153    },
14154    Municipio {
14155        ibge_code: 2603900,
14156        name: "Carnaíba",
14157        state: State::PE,
14158    },
14159    Municipio {
14160        ibge_code: 2604007,
14161        name: "Carpina",
14162        state: State::PE,
14163    },
14164    Municipio {
14165        ibge_code: 2604106,
14166        name: "Caruaru",
14167        state: State::PE,
14168    },
14169    Municipio {
14170        ibge_code: 2604155,
14171        name: "Casinhas",
14172        state: State::PE,
14173    },
14174    Municipio {
14175        ibge_code: 2604205,
14176        name: "Catende",
14177        state: State::PE,
14178    },
14179    Municipio {
14180        ibge_code: 2604304,
14181        name: "Cedro",
14182        state: State::PE,
14183    },
14184    Municipio {
14185        ibge_code: 2604502,
14186        name: "Chã Grande",
14187        state: State::PE,
14188    },
14189    Municipio {
14190        ibge_code: 2604403,
14191        name: "Chã de Alegria",
14192        state: State::PE,
14193    },
14194    Municipio {
14195        ibge_code: 2604601,
14196        name: "Condado",
14197        state: State::PE,
14198    },
14199    Municipio {
14200        ibge_code: 2604700,
14201        name: "Correntes",
14202        state: State::PE,
14203    },
14204    Municipio {
14205        ibge_code: 2604809,
14206        name: "Cortês",
14207        state: State::PE,
14208    },
14209    Municipio {
14210        ibge_code: 2604908,
14211        name: "Cumaru",
14212        state: State::PE,
14213    },
14214    Municipio {
14215        ibge_code: 2605004,
14216        name: "Cupira",
14217        state: State::PE,
14218    },
14219    Municipio {
14220        ibge_code: 2605103,
14221        name: "Custódia",
14222        state: State::PE,
14223    },
14224    Municipio {
14225        ibge_code: 2605152,
14226        name: "Dormentes",
14227        state: State::PE,
14228    },
14229    Municipio {
14230        ibge_code: 2605202,
14231        name: "Escada",
14232        state: State::PE,
14233    },
14234    Municipio {
14235        ibge_code: 2605301,
14236        name: "Exu",
14237        state: State::PE,
14238    },
14239    Municipio {
14240        ibge_code: 2605400,
14241        name: "Feira Nova",
14242        state: State::PE,
14243    },
14244    Municipio {
14245        ibge_code: 2605459,
14246        name: "Fernando de Noronha",
14247        state: State::PE,
14248    },
14249    Municipio {
14250        ibge_code: 2605509,
14251        name: "Ferreiros",
14252        state: State::PE,
14253    },
14254    Municipio {
14255        ibge_code: 2605608,
14256        name: "Flores",
14257        state: State::PE,
14258    },
14259    Municipio {
14260        ibge_code: 2605707,
14261        name: "Floresta",
14262        state: State::PE,
14263    },
14264    Municipio {
14265        ibge_code: 2605806,
14266        name: "Frei Miguelinho",
14267        state: State::PE,
14268    },
14269    Municipio {
14270        ibge_code: 2605905,
14271        name: "Gameleira",
14272        state: State::PE,
14273    },
14274    Municipio {
14275        ibge_code: 2606002,
14276        name: "Garanhuns",
14277        state: State::PE,
14278    },
14279    Municipio {
14280        ibge_code: 2606101,
14281        name: "Glória do Goitá",
14282        state: State::PE,
14283    },
14284    Municipio {
14285        ibge_code: 2606200,
14286        name: "Goiana",
14287        state: State::PE,
14288    },
14289    Municipio {
14290        ibge_code: 2606309,
14291        name: "Granito",
14292        state: State::PE,
14293    },
14294    Municipio {
14295        ibge_code: 2606408,
14296        name: "Gravatá",
14297        state: State::PE,
14298    },
14299    Municipio {
14300        ibge_code: 2606507,
14301        name: "Iati",
14302        state: State::PE,
14303    },
14304    Municipio {
14305        ibge_code: 2606606,
14306        name: "Ibimirim",
14307        state: State::PE,
14308    },
14309    Municipio {
14310        ibge_code: 2606705,
14311        name: "Ibirajuba",
14312        state: State::PE,
14313    },
14314    Municipio {
14315        ibge_code: 2606804,
14316        name: "Igarassu",
14317        state: State::PE,
14318    },
14319    Municipio {
14320        ibge_code: 2606903,
14321        name: "Iguaracy",
14322        state: State::PE,
14323    },
14324    Municipio {
14325        ibge_code: 2607604,
14326        name: "Ilha de Itamaracá",
14327        state: State::PE,
14328    },
14329    Municipio {
14330        ibge_code: 2607000,
14331        name: "Inajá",
14332        state: State::PE,
14333    },
14334    Municipio {
14335        ibge_code: 2607109,
14336        name: "Ingazeira",
14337        state: State::PE,
14338    },
14339    Municipio {
14340        ibge_code: 2607208,
14341        name: "Ipojuca",
14342        state: State::PE,
14343    },
14344    Municipio {
14345        ibge_code: 2607307,
14346        name: "Ipubi",
14347        state: State::PE,
14348    },
14349    Municipio {
14350        ibge_code: 2607406,
14351        name: "Itacuruba",
14352        state: State::PE,
14353    },
14354    Municipio {
14355        ibge_code: 2607653,
14356        name: "Itambé",
14357        state: State::PE,
14358    },
14359    Municipio {
14360        ibge_code: 2607703,
14361        name: "Itapetim",
14362        state: State::PE,
14363    },
14364    Municipio {
14365        ibge_code: 2607752,
14366        name: "Itapissuma",
14367        state: State::PE,
14368    },
14369    Municipio {
14370        ibge_code: 2607802,
14371        name: "Itaquitinga",
14372        state: State::PE,
14373    },
14374    Municipio {
14375        ibge_code: 2607505,
14376        name: "Itaíba",
14377        state: State::PE,
14378    },
14379    Municipio {
14380        ibge_code: 2607901,
14381        name: "Jaboatão dos Guararapes",
14382        state: State::PE,
14383    },
14384    Municipio {
14385        ibge_code: 2607950,
14386        name: "Jaqueira",
14387        state: State::PE,
14388    },
14389    Municipio {
14390        ibge_code: 2608008,
14391        name: "Jataúba",
14392        state: State::PE,
14393    },
14394    Municipio {
14395        ibge_code: 2608057,
14396        name: "Jatobá",
14397        state: State::PE,
14398    },
14399    Municipio {
14400        ibge_code: 2608206,
14401        name: "Joaquim Nabuco",
14402        state: State::PE,
14403    },
14404    Municipio {
14405        ibge_code: 2608107,
14406        name: "João Alfredo",
14407        state: State::PE,
14408    },
14409    Municipio {
14410        ibge_code: 2608255,
14411        name: "Jucati",
14412        state: State::PE,
14413    },
14414    Municipio {
14415        ibge_code: 2608305,
14416        name: "Jupi",
14417        state: State::PE,
14418    },
14419    Municipio {
14420        ibge_code: 2608404,
14421        name: "Jurema",
14422        state: State::PE,
14423    },
14424    Municipio {
14425        ibge_code: 2608750,
14426        name: "Lagoa Grande",
14427        state: State::PE,
14428    },
14429    Municipio {
14430        ibge_code: 2608503,
14431        name: "Lagoa de Itaenga",
14432        state: State::PE,
14433    },
14434    Municipio {
14435        ibge_code: 2608453,
14436        name: "Lagoa do Carro",
14437        state: State::PE,
14438    },
14439    Municipio {
14440        ibge_code: 2608602,
14441        name: "Lagoa do Ouro",
14442        state: State::PE,
14443    },
14444    Municipio {
14445        ibge_code: 2608701,
14446        name: "Lagoa dos Gatos",
14447        state: State::PE,
14448    },
14449    Municipio {
14450        ibge_code: 2608800,
14451        name: "Lajedo",
14452        state: State::PE,
14453    },
14454    Municipio {
14455        ibge_code: 2608909,
14456        name: "Limoeiro",
14457        state: State::PE,
14458    },
14459    Municipio {
14460        ibge_code: 2609006,
14461        name: "Macaparana",
14462        state: State::PE,
14463    },
14464    Municipio {
14465        ibge_code: 2609105,
14466        name: "Machados",
14467        state: State::PE,
14468    },
14469    Municipio {
14470        ibge_code: 2609154,
14471        name: "Manari",
14472        state: State::PE,
14473    },
14474    Municipio {
14475        ibge_code: 2609204,
14476        name: "Maraial",
14477        state: State::PE,
14478    },
14479    Municipio {
14480        ibge_code: 2609303,
14481        name: "Mirandiba",
14482        state: State::PE,
14483    },
14484    Municipio {
14485        ibge_code: 2614303,
14486        name: "Moreilândia",
14487        state: State::PE,
14488    },
14489    Municipio {
14490        ibge_code: 2609402,
14491        name: "Moreno",
14492        state: State::PE,
14493    },
14494    Municipio {
14495        ibge_code: 2609501,
14496        name: "Nazaré da Mata",
14497        state: State::PE,
14498    },
14499    Municipio {
14500        ibge_code: 2609600,
14501        name: "Olinda",
14502        state: State::PE,
14503    },
14504    Municipio {
14505        ibge_code: 2609709,
14506        name: "Orobó",
14507        state: State::PE,
14508    },
14509    Municipio {
14510        ibge_code: 2609808,
14511        name: "Orocó",
14512        state: State::PE,
14513    },
14514    Municipio {
14515        ibge_code: 2609907,
14516        name: "Ouricuri",
14517        state: State::PE,
14518    },
14519    Municipio {
14520        ibge_code: 2610004,
14521        name: "Palmares",
14522        state: State::PE,
14523    },
14524    Municipio {
14525        ibge_code: 2610103,
14526        name: "Palmeirina",
14527        state: State::PE,
14528    },
14529    Municipio {
14530        ibge_code: 2610202,
14531        name: "Panelas",
14532        state: State::PE,
14533    },
14534    Municipio {
14535        ibge_code: 2610301,
14536        name: "Paranatama",
14537        state: State::PE,
14538    },
14539    Municipio {
14540        ibge_code: 2610400,
14541        name: "Parnamirim",
14542        state: State::PE,
14543    },
14544    Municipio {
14545        ibge_code: 2610509,
14546        name: "Passira",
14547        state: State::PE,
14548    },
14549    Municipio {
14550        ibge_code: 2610608,
14551        name: "Paudalho",
14552        state: State::PE,
14553    },
14554    Municipio {
14555        ibge_code: 2610707,
14556        name: "Paulista",
14557        state: State::PE,
14558    },
14559    Municipio {
14560        ibge_code: 2610806,
14561        name: "Pedra",
14562        state: State::PE,
14563    },
14564    Municipio {
14565        ibge_code: 2610905,
14566        name: "Pesqueira",
14567        state: State::PE,
14568    },
14569    Municipio {
14570        ibge_code: 2611101,
14571        name: "Petrolina",
14572        state: State::PE,
14573    },
14574    Municipio {
14575        ibge_code: 2611002,
14576        name: "Petrolândia",
14577        state: State::PE,
14578    },
14579    Municipio {
14580        ibge_code: 2611309,
14581        name: "Pombos",
14582        state: State::PE,
14583    },
14584    Municipio {
14585        ibge_code: 2611200,
14586        name: "Poção",
14587        state: State::PE,
14588    },
14589    Municipio {
14590        ibge_code: 2611408,
14591        name: "Primavera",
14592        state: State::PE,
14593    },
14594    Municipio {
14595        ibge_code: 2611507,
14596        name: "Quipapá",
14597        state: State::PE,
14598    },
14599    Municipio {
14600        ibge_code: 2611533,
14601        name: "Quixaba",
14602        state: State::PE,
14603    },
14604    Municipio {
14605        ibge_code: 2611606,
14606        name: "Recife",
14607        state: State::PE,
14608    },
14609    Municipio {
14610        ibge_code: 2611705,
14611        name: "Riacho das Almas",
14612        state: State::PE,
14613    },
14614    Municipio {
14615        ibge_code: 2611804,
14616        name: "Ribeirão",
14617        state: State::PE,
14618    },
14619    Municipio {
14620        ibge_code: 2611903,
14621        name: "Rio Formoso",
14622        state: State::PE,
14623    },
14624    Municipio {
14625        ibge_code: 2612000,
14626        name: "Sairé",
14627        state: State::PE,
14628    },
14629    Municipio {
14630        ibge_code: 2612109,
14631        name: "Salgadinho",
14632        state: State::PE,
14633    },
14634    Municipio {
14635        ibge_code: 2612208,
14636        name: "Salgueiro",
14637        state: State::PE,
14638    },
14639    Municipio {
14640        ibge_code: 2612307,
14641        name: "Saloá",
14642        state: State::PE,
14643    },
14644    Municipio {
14645        ibge_code: 2612406,
14646        name: "Sanharó",
14647        state: State::PE,
14648    },
14649    Municipio {
14650        ibge_code: 2612455,
14651        name: "Santa Cruz",
14652        state: State::PE,
14653    },
14654    Municipio {
14655        ibge_code: 2612471,
14656        name: "Santa Cruz da Baixa Verde",
14657        state: State::PE,
14658    },
14659    Municipio {
14660        ibge_code: 2612505,
14661        name: "Santa Cruz do Capibaribe",
14662        state: State::PE,
14663    },
14664    Municipio {
14665        ibge_code: 2612554,
14666        name: "Santa Filomena",
14667        state: State::PE,
14668    },
14669    Municipio {
14670        ibge_code: 2612604,
14671        name: "Santa Maria da Boa Vista",
14672        state: State::PE,
14673    },
14674    Municipio {
14675        ibge_code: 2612703,
14676        name: "Santa Maria do Cambucá",
14677        state: State::PE,
14678    },
14679    Municipio {
14680        ibge_code: 2612802,
14681        name: "Santa Terezinha",
14682        state: State::PE,
14683    },
14684    Municipio {
14685        ibge_code: 2613909,
14686        name: "Serra Talhada",
14687        state: State::PE,
14688    },
14689    Municipio {
14690        ibge_code: 2614006,
14691        name: "Serrita",
14692        state: State::PE,
14693    },
14694    Municipio {
14695        ibge_code: 2614105,
14696        name: "Sertânia",
14697        state: State::PE,
14698    },
14699    Municipio {
14700        ibge_code: 2614204,
14701        name: "Sirinhaém",
14702        state: State::PE,
14703    },
14704    Municipio {
14705        ibge_code: 2614402,
14706        name: "Solidão",
14707        state: State::PE,
14708    },
14709    Municipio {
14710        ibge_code: 2614501,
14711        name: "Surubim",
14712        state: State::PE,
14713    },
14714    Municipio {
14715        ibge_code: 2612901,
14716        name: "São Benedito do Sul",
14717        state: State::PE,
14718    },
14719    Municipio {
14720        ibge_code: 2613008,
14721        name: "São Bento do Una",
14722        state: State::PE,
14723    },
14724    Municipio {
14725        ibge_code: 2613107,
14726        name: "São Caitano",
14727        state: State::PE,
14728    },
14729    Municipio {
14730        ibge_code: 2613305,
14731        name: "São Joaquim do Monte",
14732        state: State::PE,
14733    },
14734    Municipio {
14735        ibge_code: 2613404,
14736        name: "São José da Coroa Grande",
14737        state: State::PE,
14738    },
14739    Municipio {
14740        ibge_code: 2613503,
14741        name: "São José do Belmonte",
14742        state: State::PE,
14743    },
14744    Municipio {
14745        ibge_code: 2613602,
14746        name: "São José do Egito",
14747        state: State::PE,
14748    },
14749    Municipio {
14750        ibge_code: 2613206,
14751        name: "São João",
14752        state: State::PE,
14753    },
14754    Municipio {
14755        ibge_code: 2613701,
14756        name: "São Lourenço da Mata",
14757        state: State::PE,
14758    },
14759    Municipio {
14760        ibge_code: 2613800,
14761        name: "São Vicente Férrer",
14762        state: State::PE,
14763    },
14764    Municipio {
14765        ibge_code: 2614600,
14766        name: "Tabira",
14767        state: State::PE,
14768    },
14769    Municipio {
14770        ibge_code: 2614709,
14771        name: "Tacaimbó",
14772        state: State::PE,
14773    },
14774    Municipio {
14775        ibge_code: 2614808,
14776        name: "Tacaratu",
14777        state: State::PE,
14778    },
14779    Municipio {
14780        ibge_code: 2614857,
14781        name: "Tamandaré",
14782        state: State::PE,
14783    },
14784    Municipio {
14785        ibge_code: 2615003,
14786        name: "Taquaritinga do Norte",
14787        state: State::PE,
14788    },
14789    Municipio {
14790        ibge_code: 2615102,
14791        name: "Terezinha",
14792        state: State::PE,
14793    },
14794    Municipio {
14795        ibge_code: 2615201,
14796        name: "Terra Nova",
14797        state: State::PE,
14798    },
14799    Municipio {
14800        ibge_code: 2615300,
14801        name: "Timbaúba",
14802        state: State::PE,
14803    },
14804    Municipio {
14805        ibge_code: 2615409,
14806        name: "Toritama",
14807        state: State::PE,
14808    },
14809    Municipio {
14810        ibge_code: 2615508,
14811        name: "Tracunhaém",
14812        state: State::PE,
14813    },
14814    Municipio {
14815        ibge_code: 2615607,
14816        name: "Trindade",
14817        state: State::PE,
14818    },
14819    Municipio {
14820        ibge_code: 2615706,
14821        name: "Triunfo",
14822        state: State::PE,
14823    },
14824    Municipio {
14825        ibge_code: 2615805,
14826        name: "Tupanatinga",
14827        state: State::PE,
14828    },
14829    Municipio {
14830        ibge_code: 2615904,
14831        name: "Tuparetama",
14832        state: State::PE,
14833    },
14834    Municipio {
14835        ibge_code: 2616001,
14836        name: "Venturosa",
14837        state: State::PE,
14838    },
14839    Municipio {
14840        ibge_code: 2616100,
14841        name: "Verdejante",
14842        state: State::PE,
14843    },
14844    Municipio {
14845        ibge_code: 2616183,
14846        name: "Vertente do Lério",
14847        state: State::PE,
14848    },
14849    Municipio {
14850        ibge_code: 2616209,
14851        name: "Vertentes",
14852        state: State::PE,
14853    },
14854    Municipio {
14855        ibge_code: 2616308,
14856        name: "Vicência",
14857        state: State::PE,
14858    },
14859    Municipio {
14860        ibge_code: 2616407,
14861        name: "Vitória de Santo Antão",
14862        state: State::PE,
14863    },
14864    Municipio {
14865        ibge_code: 2616506,
14866        name: "Xexéu",
14867        state: State::PE,
14868    },
14869    Municipio {
14870        ibge_code: 2600401,
14871        name: "Água Preta",
14872        state: State::PE,
14873    },
14874    Municipio {
14875        ibge_code: 2600500,
14876        name: "Águas Belas",
14877        state: State::PE,
14878    },
14879    Municipio {
14880        ibge_code: 2200053,
14881        name: "Acauã",
14882        state: State::PI,
14883    },
14884    Municipio {
14885        ibge_code: 2200103,
14886        name: "Agricolândia",
14887        state: State::PI,
14888    },
14889    Municipio {
14890        ibge_code: 2200251,
14891        name: "Alagoinha do Piauí",
14892        state: State::PI,
14893    },
14894    Municipio {
14895        ibge_code: 2200277,
14896        name: "Alegrete do Piauí",
14897        state: State::PI,
14898    },
14899    Municipio {
14900        ibge_code: 2200301,
14901        name: "Alto Longá",
14902        state: State::PI,
14903    },
14904    Municipio {
14905        ibge_code: 2200400,
14906        name: "Altos",
14907        state: State::PI,
14908    },
14909    Municipio {
14910        ibge_code: 2200459,
14911        name: "Alvorada do Gurguéia",
14912        state: State::PI,
14913    },
14914    Municipio {
14915        ibge_code: 2200509,
14916        name: "Amarante",
14917        state: State::PI,
14918    },
14919    Municipio {
14920        ibge_code: 2200608,
14921        name: "Angical do Piauí",
14922        state: State::PI,
14923    },
14924    Municipio {
14925        ibge_code: 2200806,
14926        name: "Antônio Almeida",
14927        state: State::PI,
14928    },
14929    Municipio {
14930        ibge_code: 2200707,
14931        name: "Anísio de Abreu",
14932        state: State::PI,
14933    },
14934    Municipio {
14935        ibge_code: 2200905,
14936        name: "Aroazes",
14937        state: State::PI,
14938    },
14939    Municipio {
14940        ibge_code: 2200954,
14941        name: "Aroeiras do Itaim",
14942        state: State::PI,
14943    },
14944    Municipio {
14945        ibge_code: 2201002,
14946        name: "Arraial",
14947        state: State::PI,
14948    },
14949    Municipio {
14950        ibge_code: 2201051,
14951        name: "Assunção do Piauí",
14952        state: State::PI,
14953    },
14954    Municipio {
14955        ibge_code: 2201101,
14956        name: "Avelino Lopes",
14957        state: State::PI,
14958    },
14959    Municipio {
14960        ibge_code: 2201150,
14961        name: "Baixa Grande do Ribeiro",
14962        state: State::PI,
14963    },
14964    Municipio {
14965        ibge_code: 2201176,
14966        name: "Barra D'Alcântara",
14967        state: State::PI,
14968    },
14969    Municipio {
14970        ibge_code: 2201200,
14971        name: "Barras",
14972        state: State::PI,
14973    },
14974    Municipio {
14975        ibge_code: 2201309,
14976        name: "Barreiras do Piauí",
14977        state: State::PI,
14978    },
14979    Municipio {
14980        ibge_code: 2201408,
14981        name: "Barro Duro",
14982        state: State::PI,
14983    },
14984    Municipio {
14985        ibge_code: 2201507,
14986        name: "Batalha",
14987        state: State::PI,
14988    },
14989    Municipio {
14990        ibge_code: 2201556,
14991        name: "Bela Vista do Piauí",
14992        state: State::PI,
14993    },
14994    Municipio {
14995        ibge_code: 2201572,
14996        name: "Belém do Piauí",
14997        state: State::PI,
14998    },
14999    Municipio {
15000        ibge_code: 2201606,
15001        name: "Beneditinos",
15002        state: State::PI,
15003    },
15004    Municipio {
15005        ibge_code: 2201705,
15006        name: "Bertolínia",
15007        state: State::PI,
15008    },
15009    Municipio {
15010        ibge_code: 2201739,
15011        name: "Betânia do Piauí",
15012        state: State::PI,
15013    },
15014    Municipio {
15015        ibge_code: 2201770,
15016        name: "Boa Hora",
15017        state: State::PI,
15018    },
15019    Municipio {
15020        ibge_code: 2201804,
15021        name: "Bocaina",
15022        state: State::PI,
15023    },
15024    Municipio {
15025        ibge_code: 2201903,
15026        name: "Bom Jesus",
15027        state: State::PI,
15028    },
15029    Municipio {
15030        ibge_code: 2201919,
15031        name: "Bom Princípio do Piauí",
15032        state: State::PI,
15033    },
15034    Municipio {
15035        ibge_code: 2201929,
15036        name: "Bonfim do Piauí",
15037        state: State::PI,
15038    },
15039    Municipio {
15040        ibge_code: 2201945,
15041        name: "Boqueirão do Piauí",
15042        state: State::PI,
15043    },
15044    Municipio {
15045        ibge_code: 2201960,
15046        name: "Brasileira",
15047        state: State::PI,
15048    },
15049    Municipio {
15050        ibge_code: 2201988,
15051        name: "Brejo do Piauí",
15052        state: State::PI,
15053    },
15054    Municipio {
15055        ibge_code: 2202000,
15056        name: "Buriti dos Lopes",
15057        state: State::PI,
15058    },
15059    Municipio {
15060        ibge_code: 2202026,
15061        name: "Buriti dos Montes",
15062        state: State::PI,
15063    },
15064    Municipio {
15065        ibge_code: 2202059,
15066        name: "Cabeceiras do Piauí",
15067        state: State::PI,
15068    },
15069    Municipio {
15070        ibge_code: 2202075,
15071        name: "Cajazeiras do Piauí",
15072        state: State::PI,
15073    },
15074    Municipio {
15075        ibge_code: 2202083,
15076        name: "Cajueiro da Praia",
15077        state: State::PI,
15078    },
15079    Municipio {
15080        ibge_code: 2202091,
15081        name: "Caldeirão Grande do Piauí",
15082        state: State::PI,
15083    },
15084    Municipio {
15085        ibge_code: 2202109,
15086        name: "Campinas do Piauí",
15087        state: State::PI,
15088    },
15089    Municipio {
15090        ibge_code: 2202117,
15091        name: "Campo Alegre do Fidalgo",
15092        state: State::PI,
15093    },
15094    Municipio {
15095        ibge_code: 2202133,
15096        name: "Campo Grande do Piauí",
15097        state: State::PI,
15098    },
15099    Municipio {
15100        ibge_code: 2202174,
15101        name: "Campo Largo do Piauí",
15102        state: State::PI,
15103    },
15104    Municipio {
15105        ibge_code: 2202208,
15106        name: "Campo Maior",
15107        state: State::PI,
15108    },
15109    Municipio {
15110        ibge_code: 2202251,
15111        name: "Canavieira",
15112        state: State::PI,
15113    },
15114    Municipio {
15115        ibge_code: 2202307,
15116        name: "Canto do Buriti",
15117        state: State::PI,
15118    },
15119    Municipio {
15120        ibge_code: 2202455,
15121        name: "Capitão Gervásio Oliveira",
15122        state: State::PI,
15123    },
15124    Municipio {
15125        ibge_code: 2202406,
15126        name: "Capitão de Campos",
15127        state: State::PI,
15128    },
15129    Municipio {
15130        ibge_code: 2202505,
15131        name: "Caracol",
15132        state: State::PI,
15133    },
15134    Municipio {
15135        ibge_code: 2202539,
15136        name: "Caraúbas do Piauí",
15137        state: State::PI,
15138    },
15139    Municipio {
15140        ibge_code: 2202554,
15141        name: "Caridade do Piauí",
15142        state: State::PI,
15143    },
15144    Municipio {
15145        ibge_code: 2202604,
15146        name: "Castelo do Piauí",
15147        state: State::PI,
15148    },
15149    Municipio {
15150        ibge_code: 2202653,
15151        name: "Caxingó",
15152        state: State::PI,
15153    },
15154    Municipio {
15155        ibge_code: 2202703,
15156        name: "Cocal",
15157        state: State::PI,
15158    },
15159    Municipio {
15160        ibge_code: 2202711,
15161        name: "Cocal de Telha",
15162        state: State::PI,
15163    },
15164    Municipio {
15165        ibge_code: 2202729,
15166        name: "Cocal dos Alves",
15167        state: State::PI,
15168    },
15169    Municipio {
15170        ibge_code: 2202737,
15171        name: "Coivaras",
15172        state: State::PI,
15173    },
15174    Municipio {
15175        ibge_code: 2202752,
15176        name: "Colônia do Gurguéia",
15177        state: State::PI,
15178    },
15179    Municipio {
15180        ibge_code: 2202778,
15181        name: "Colônia do Piauí",
15182        state: State::PI,
15183    },
15184    Municipio {
15185        ibge_code: 2202802,
15186        name: "Conceição do Canindé",
15187        state: State::PI,
15188    },
15189    Municipio {
15190        ibge_code: 2202851,
15191        name: "Coronel José Dias",
15192        state: State::PI,
15193    },
15194    Municipio {
15195        ibge_code: 2202901,
15196        name: "Corrente",
15197        state: State::PI,
15198    },
15199    Municipio {
15200        ibge_code: 2203008,
15201        name: "Cristalândia do Piauí",
15202        state: State::PI,
15203    },
15204    Municipio {
15205        ibge_code: 2203107,
15206        name: "Cristino Castro",
15207        state: State::PI,
15208    },
15209    Municipio {
15210        ibge_code: 2203206,
15211        name: "Curimatá",
15212        state: State::PI,
15213    },
15214    Municipio {
15215        ibge_code: 2203230,
15216        name: "Currais",
15217        state: State::PI,
15218    },
15219    Municipio {
15220        ibge_code: 2203271,
15221        name: "Curral Novo do Piauí",
15222        state: State::PI,
15223    },
15224    Municipio {
15225        ibge_code: 2203255,
15226        name: "Curralinhos",
15227        state: State::PI,
15228    },
15229    Municipio {
15230        ibge_code: 2203305,
15231        name: "Demerval Lobão",
15232        state: State::PI,
15233    },
15234    Municipio {
15235        ibge_code: 2203354,
15236        name: "Dirceu Arcoverde",
15237        state: State::PI,
15238    },
15239    Municipio {
15240        ibge_code: 2203404,
15241        name: "Dom Expedito Lopes",
15242        state: State::PI,
15243    },
15244    Municipio {
15245        ibge_code: 2203453,
15246        name: "Dom Inocêncio",
15247        state: State::PI,
15248    },
15249    Municipio {
15250        ibge_code: 2203420,
15251        name: "Domingos Mourão",
15252        state: State::PI,
15253    },
15254    Municipio {
15255        ibge_code: 2203503,
15256        name: "Elesbão Veloso",
15257        state: State::PI,
15258    },
15259    Municipio {
15260        ibge_code: 2203602,
15261        name: "Eliseu Martins",
15262        state: State::PI,
15263    },
15264    Municipio {
15265        ibge_code: 2203701,
15266        name: "Esperantina",
15267        state: State::PI,
15268    },
15269    Municipio {
15270        ibge_code: 2203750,
15271        name: "Fartura do Piauí",
15272        state: State::PI,
15273    },
15274    Municipio {
15275        ibge_code: 2203800,
15276        name: "Flores do Piauí",
15277        state: State::PI,
15278    },
15279    Municipio {
15280        ibge_code: 2203859,
15281        name: "Floresta do Piauí",
15282        state: State::PI,
15283    },
15284    Municipio {
15285        ibge_code: 2203909,
15286        name: "Floriano",
15287        state: State::PI,
15288    },
15289    Municipio {
15290        ibge_code: 2204006,
15291        name: "Francinópolis",
15292        state: State::PI,
15293    },
15294    Municipio {
15295        ibge_code: 2204105,
15296        name: "Francisco Ayres",
15297        state: State::PI,
15298    },
15299    Municipio {
15300        ibge_code: 2204154,
15301        name: "Francisco Macedo",
15302        state: State::PI,
15303    },
15304    Municipio {
15305        ibge_code: 2204204,
15306        name: "Francisco Santos",
15307        state: State::PI,
15308    },
15309    Municipio {
15310        ibge_code: 2204303,
15311        name: "Fronteiras",
15312        state: State::PI,
15313    },
15314    Municipio {
15315        ibge_code: 2204352,
15316        name: "Geminiano",
15317        state: State::PI,
15318    },
15319    Municipio {
15320        ibge_code: 2204402,
15321        name: "Gilbués",
15322        state: State::PI,
15323    },
15324    Municipio {
15325        ibge_code: 2204501,
15326        name: "Guadalupe",
15327        state: State::PI,
15328    },
15329    Municipio {
15330        ibge_code: 2204550,
15331        name: "Guaribas",
15332        state: State::PI,
15333    },
15334    Municipio {
15335        ibge_code: 2204600,
15336        name: "Hugo Napoleão",
15337        state: State::PI,
15338    },
15339    Municipio {
15340        ibge_code: 2204659,
15341        name: "Ilha Grande",
15342        state: State::PI,
15343    },
15344    Municipio {
15345        ibge_code: 2204709,
15346        name: "Inhuma",
15347        state: State::PI,
15348    },
15349    Municipio {
15350        ibge_code: 2204808,
15351        name: "Ipiranga do Piauí",
15352        state: State::PI,
15353    },
15354    Municipio {
15355        ibge_code: 2204907,
15356        name: "Isaías Coelho",
15357        state: State::PI,
15358    },
15359    Municipio {
15360        ibge_code: 2205003,
15361        name: "Itainópolis",
15362        state: State::PI,
15363    },
15364    Municipio {
15365        ibge_code: 2205102,
15366        name: "Itaueira",
15367        state: State::PI,
15368    },
15369    Municipio {
15370        ibge_code: 2205151,
15371        name: "Jacobina do Piauí",
15372        state: State::PI,
15373    },
15374    Municipio {
15375        ibge_code: 2205201,
15376        name: "Jaicós",
15377        state: State::PI,
15378    },
15379    Municipio {
15380        ibge_code: 2205250,
15381        name: "Jardim do Mulato",
15382        state: State::PI,
15383    },
15384    Municipio {
15385        ibge_code: 2205276,
15386        name: "Jatobá do Piauí",
15387        state: State::PI,
15388    },
15389    Municipio {
15390        ibge_code: 2205300,
15391        name: "Jerumenha",
15392        state: State::PI,
15393    },
15394    Municipio {
15395        ibge_code: 2205409,
15396        name: "Joaquim Pires",
15397        state: State::PI,
15398    },
15399    Municipio {
15400        ibge_code: 2205458,
15401        name: "Joca Marques",
15402        state: State::PI,
15403    },
15404    Municipio {
15405        ibge_code: 2205508,
15406        name: "José de Freitas",
15407        state: State::PI,
15408    },
15409    Municipio {
15410        ibge_code: 2205359,
15411        name: "João Costa",
15412        state: State::PI,
15413    },
15414    Municipio {
15415        ibge_code: 2205516,
15416        name: "Juazeiro do Piauí",
15417        state: State::PI,
15418    },
15419    Municipio {
15420        ibge_code: 2205532,
15421        name: "Jurema",
15422        state: State::PI,
15423    },
15424    Municipio {
15425        ibge_code: 2205524,
15426        name: "Júlio Borges",
15427        state: State::PI,
15428    },
15429    Municipio {
15430        ibge_code: 2205557,
15431        name: "Lagoa Alegre",
15432        state: State::PI,
15433    },
15434    Municipio {
15435        ibge_code: 2205573,
15436        name: "Lagoa de São Francisco",
15437        state: State::PI,
15438    },
15439    Municipio {
15440        ibge_code: 2205565,
15441        name: "Lagoa do Barro do Piauí",
15442        state: State::PI,
15443    },
15444    Municipio {
15445        ibge_code: 2205581,
15446        name: "Lagoa do Piauí",
15447        state: State::PI,
15448    },
15449    Municipio {
15450        ibge_code: 2205599,
15451        name: "Lagoa do Sítio",
15452        state: State::PI,
15453    },
15454    Municipio {
15455        ibge_code: 2205540,
15456        name: "Lagoinha do Piauí",
15457        state: State::PI,
15458    },
15459    Municipio {
15460        ibge_code: 2205607,
15461        name: "Landri Sales",
15462        state: State::PI,
15463    },
15464    Municipio {
15465        ibge_code: 2205805,
15466        name: "Luzilândia",
15467        state: State::PI,
15468    },
15469    Municipio {
15470        ibge_code: 2205706,
15471        name: "Luís Correia",
15472        state: State::PI,
15473    },
15474    Municipio {
15475        ibge_code: 2205854,
15476        name: "Madeiro",
15477        state: State::PI,
15478    },
15479    Municipio {
15480        ibge_code: 2205904,
15481        name: "Manoel Emídio",
15482        state: State::PI,
15483    },
15484    Municipio {
15485        ibge_code: 2205953,
15486        name: "Marcolândia",
15487        state: State::PI,
15488    },
15489    Municipio {
15490        ibge_code: 2206001,
15491        name: "Marcos Parente",
15492        state: State::PI,
15493    },
15494    Municipio {
15495        ibge_code: 2206050,
15496        name: "Massapê do Piauí",
15497        state: State::PI,
15498    },
15499    Municipio {
15500        ibge_code: 2206100,
15501        name: "Matias Olímpio",
15502        state: State::PI,
15503    },
15504    Municipio {
15505        ibge_code: 2206209,
15506        name: "Miguel Alves",
15507        state: State::PI,
15508    },
15509    Municipio {
15510        ibge_code: 2206308,
15511        name: "Miguel Leão",
15512        state: State::PI,
15513    },
15514    Municipio {
15515        ibge_code: 2206357,
15516        name: "Milton Brandão",
15517        state: State::PI,
15518    },
15519    Municipio {
15520        ibge_code: 2206407,
15521        name: "Monsenhor Gil",
15522        state: State::PI,
15523    },
15524    Municipio {
15525        ibge_code: 2206506,
15526        name: "Monsenhor Hipólito",
15527        state: State::PI,
15528    },
15529    Municipio {
15530        ibge_code: 2206605,
15531        name: "Monte Alegre do Piauí",
15532        state: State::PI,
15533    },
15534    Municipio {
15535        ibge_code: 2206654,
15536        name: "Morro Cabeça no Tempo",
15537        state: State::PI,
15538    },
15539    Municipio {
15540        ibge_code: 2206670,
15541        name: "Morro do Chapéu do Piauí",
15542        state: State::PI,
15543    },
15544    Municipio {
15545        ibge_code: 2206696,
15546        name: "Murici dos Portelas",
15547        state: State::PI,
15548    },
15549    Municipio {
15550        ibge_code: 2206704,
15551        name: "Nazaré do Piauí",
15552        state: State::PI,
15553    },
15554    Municipio {
15555        ibge_code: 2206720,
15556        name: "Nazária",
15557        state: State::PI,
15558    },
15559    Municipio {
15560        ibge_code: 2206753,
15561        name: "Nossa Senhora de Nazaré",
15562        state: State::PI,
15563    },
15564    Municipio {
15565        ibge_code: 2206803,
15566        name: "Nossa Senhora dos Remédios",
15567        state: State::PI,
15568    },
15569    Municipio {
15570        ibge_code: 2207959,
15571        name: "Nova Santa Rita",
15572        state: State::PI,
15573    },
15574    Municipio {
15575        ibge_code: 2206902,
15576        name: "Novo Oriente do Piauí",
15577        state: State::PI,
15578    },
15579    Municipio {
15580        ibge_code: 2206951,
15581        name: "Novo Santo Antônio",
15582        state: State::PI,
15583    },
15584    Municipio {
15585        ibge_code: 2207009,
15586        name: "Oeiras",
15587        state: State::PI,
15588    },
15589    Municipio {
15590        ibge_code: 2207108,
15591        name: "Olho D'Água do Piauí",
15592        state: State::PI,
15593    },
15594    Municipio {
15595        ibge_code: 2207207,
15596        name: "Padre Marcos",
15597        state: State::PI,
15598    },
15599    Municipio {
15600        ibge_code: 2207306,
15601        name: "Paes Landim",
15602        state: State::PI,
15603    },
15604    Municipio {
15605        ibge_code: 2207355,
15606        name: "Pajeú do Piauí",
15607        state: State::PI,
15608    },
15609    Municipio {
15610        ibge_code: 2207405,
15611        name: "Palmeira do Piauí",
15612        state: State::PI,
15613    },
15614    Municipio {
15615        ibge_code: 2207504,
15616        name: "Palmeirais",
15617        state: State::PI,
15618    },
15619    Municipio {
15620        ibge_code: 2207553,
15621        name: "Paquetá",
15622        state: State::PI,
15623    },
15624    Municipio {
15625        ibge_code: 2207603,
15626        name: "Parnaguá",
15627        state: State::PI,
15628    },
15629    Municipio {
15630        ibge_code: 2207702,
15631        name: "Parnaíba",
15632        state: State::PI,
15633    },
15634    Municipio {
15635        ibge_code: 2207751,
15636        name: "Passagem Franca do Piauí",
15637        state: State::PI,
15638    },
15639    Municipio {
15640        ibge_code: 2207777,
15641        name: "Patos do Piauí",
15642        state: State::PI,
15643    },
15644    Municipio {
15645        ibge_code: 2207793,
15646        name: "Pau D'Arco do Piauí",
15647        state: State::PI,
15648    },
15649    Municipio {
15650        ibge_code: 2207801,
15651        name: "Paulistana",
15652        state: State::PI,
15653    },
15654    Municipio {
15655        ibge_code: 2207850,
15656        name: "Pavussu",
15657        state: State::PI,
15658    },
15659    Municipio {
15660        ibge_code: 2207900,
15661        name: "Pedro II",
15662        state: State::PI,
15663    },
15664    Municipio {
15665        ibge_code: 2207934,
15666        name: "Pedro Laurentino",
15667        state: State::PI,
15668    },
15669    Municipio {
15670        ibge_code: 2208007,
15671        name: "Picos",
15672        state: State::PI,
15673    },
15674    Municipio {
15675        ibge_code: 2208106,
15676        name: "Pimenteiras",
15677        state: State::PI,
15678    },
15679    Municipio {
15680        ibge_code: 2208205,
15681        name: "Pio IX",
15682        state: State::PI,
15683    },
15684    Municipio {
15685        ibge_code: 2208304,
15686        name: "Piracuruca",
15687        state: State::PI,
15688    },
15689    Municipio {
15690        ibge_code: 2208403,
15691        name: "Piripiri",
15692        state: State::PI,
15693    },
15694    Municipio {
15695        ibge_code: 2208502,
15696        name: "Porto",
15697        state: State::PI,
15698    },
15699    Municipio {
15700        ibge_code: 2208551,
15701        name: "Porto Alegre do Piauí",
15702        state: State::PI,
15703    },
15704    Municipio {
15705        ibge_code: 2208601,
15706        name: "Prata do Piauí",
15707        state: State::PI,
15708    },
15709    Municipio {
15710        ibge_code: 2208650,
15711        name: "Queimada Nova",
15712        state: State::PI,
15713    },
15714    Municipio {
15715        ibge_code: 2208700,
15716        name: "Redenção do Gurguéia",
15717        state: State::PI,
15718    },
15719    Municipio {
15720        ibge_code: 2208809,
15721        name: "Regeneração",
15722        state: State::PI,
15723    },
15724    Municipio {
15725        ibge_code: 2208858,
15726        name: "Riacho Frio",
15727        state: State::PI,
15728    },
15729    Municipio {
15730        ibge_code: 2208874,
15731        name: "Ribeira do Piauí",
15732        state: State::PI,
15733    },
15734    Municipio {
15735        ibge_code: 2208908,
15736        name: "Ribeiro Gonçalves",
15737        state: State::PI,
15738    },
15739    Municipio {
15740        ibge_code: 2209005,
15741        name: "Rio Grande do Piauí",
15742        state: State::PI,
15743    },
15744    Municipio {
15745        ibge_code: 2209104,
15746        name: "Santa Cruz do Piauí",
15747        state: State::PI,
15748    },
15749    Municipio {
15750        ibge_code: 2209153,
15751        name: "Santa Cruz dos Milagres",
15752        state: State::PI,
15753    },
15754    Municipio {
15755        ibge_code: 2209203,
15756        name: "Santa Filomena",
15757        state: State::PI,
15758    },
15759    Municipio {
15760        ibge_code: 2209302,
15761        name: "Santa Luz",
15762        state: State::PI,
15763    },
15764    Municipio {
15765        ibge_code: 2209377,
15766        name: "Santa Rosa do Piauí",
15767        state: State::PI,
15768    },
15769    Municipio {
15770        ibge_code: 2209351,
15771        name: "Santana do Piauí",
15772        state: State::PI,
15773    },
15774    Municipio {
15775        ibge_code: 2209401,
15776        name: "Santo Antônio de Lisboa",
15777        state: State::PI,
15778    },
15779    Municipio {
15780        ibge_code: 2209450,
15781        name: "Santo Antônio dos Milagres",
15782        state: State::PI,
15783    },
15784    Municipio {
15785        ibge_code: 2209500,
15786        name: "Santo Inácio do Piauí",
15787        state: State::PI,
15788    },
15789    Municipio {
15790        ibge_code: 2210623,
15791        name: "Sebastião Barros",
15792        state: State::PI,
15793    },
15794    Municipio {
15795        ibge_code: 2210631,
15796        name: "Sebastião Leal",
15797        state: State::PI,
15798    },
15799    Municipio {
15800        ibge_code: 2210656,
15801        name: "Sigefredo Pacheco",
15802        state: State::PI,
15803    },
15804    Municipio {
15805        ibge_code: 2210805,
15806        name: "Simplício Mendes",
15807        state: State::PI,
15808    },
15809    Municipio {
15810        ibge_code: 2210706,
15811        name: "Simões",
15812        state: State::PI,
15813    },
15814    Municipio {
15815        ibge_code: 2210904,
15816        name: "Socorro do Piauí",
15817        state: State::PI,
15818    },
15819    Municipio {
15820        ibge_code: 2210938,
15821        name: "Sussuapara",
15822        state: State::PI,
15823    },
15824    Municipio {
15825        ibge_code: 2209559,
15826        name: "São Braz do Piauí",
15827        state: State::PI,
15828    },
15829    Municipio {
15830        ibge_code: 2209658,
15831        name: "São Francisco de Assis do Piauí",
15832        state: State::PI,
15833    },
15834    Municipio {
15835        ibge_code: 2209708,
15836        name: "São Francisco do Piauí",
15837        state: State::PI,
15838    },
15839    Municipio {
15840        ibge_code: 2209609,
15841        name: "São Félix do Piauí",
15842        state: State::PI,
15843    },
15844    Municipio {
15845        ibge_code: 2209757,
15846        name: "São Gonçalo do Gurguéia",
15847        state: State::PI,
15848    },
15849    Municipio {
15850        ibge_code: 2209807,
15851        name: "São Gonçalo do Piauí",
15852        state: State::PI,
15853    },
15854    Municipio {
15855        ibge_code: 2210052,
15856        name: "São José do Divino",
15857        state: State::PI,
15858    },
15859    Municipio {
15860        ibge_code: 2210102,
15861        name: "São José do Peixe",
15862        state: State::PI,
15863    },
15864    Municipio {
15865        ibge_code: 2210201,
15866        name: "São José do Piauí",
15867        state: State::PI,
15868    },
15869    Municipio {
15870        ibge_code: 2209856,
15871        name: "São João da Canabrava",
15872        state: State::PI,
15873    },
15874    Municipio {
15875        ibge_code: 2209872,
15876        name: "São João da Fronteira",
15877        state: State::PI,
15878    },
15879    Municipio {
15880        ibge_code: 2209906,
15881        name: "São João da Serra",
15882        state: State::PI,
15883    },
15884    Municipio {
15885        ibge_code: 2209955,
15886        name: "São João da Varjota",
15887        state: State::PI,
15888    },
15889    Municipio {
15890        ibge_code: 2209971,
15891        name: "São João do Arraial",
15892        state: State::PI,
15893    },
15894    Municipio {
15895        ibge_code: 2210003,
15896        name: "São João do Piauí",
15897        state: State::PI,
15898    },
15899    Municipio {
15900        ibge_code: 2210300,
15901        name: "São Julião",
15902        state: State::PI,
15903    },
15904    Municipio {
15905        ibge_code: 2210359,
15906        name: "São Lourenço do Piauí",
15907        state: State::PI,
15908    },
15909    Municipio {
15910        ibge_code: 2210375,
15911        name: "São Luis do Piauí",
15912        state: State::PI,
15913    },
15914    Municipio {
15915        ibge_code: 2210383,
15916        name: "São Miguel da Baixa Grande",
15917        state: State::PI,
15918    },
15919    Municipio {
15920        ibge_code: 2210391,
15921        name: "São Miguel do Fidalgo",
15922        state: State::PI,
15923    },
15924    Municipio {
15925        ibge_code: 2210409,
15926        name: "São Miguel do Tapuio",
15927        state: State::PI,
15928    },
15929    Municipio {
15930        ibge_code: 2210508,
15931        name: "São Pedro do Piauí",
15932        state: State::PI,
15933    },
15934    Municipio {
15935        ibge_code: 2210607,
15936        name: "São Raimundo Nonato",
15937        state: State::PI,
15938    },
15939    Municipio {
15940        ibge_code: 2210953,
15941        name: "Tamboril do Piauí",
15942        state: State::PI,
15943    },
15944    Municipio {
15945        ibge_code: 2210979,
15946        name: "Tanque do Piauí",
15947        state: State::PI,
15948    },
15949    Municipio {
15950        ibge_code: 2211001,
15951        name: "Teresina",
15952        state: State::PI,
15953    },
15954    Municipio {
15955        ibge_code: 2211100,
15956        name: "União",
15957        state: State::PI,
15958    },
15959    Municipio {
15960        ibge_code: 2211209,
15961        name: "Uruçuí",
15962        state: State::PI,
15963    },
15964    Municipio {
15965        ibge_code: 2211308,
15966        name: "Valença do Piauí",
15967        state: State::PI,
15968    },
15969    Municipio {
15970        ibge_code: 2211506,
15971        name: "Vera Mendes",
15972        state: State::PI,
15973    },
15974    Municipio {
15975        ibge_code: 2211605,
15976        name: "Vila Nova do Piauí",
15977        state: State::PI,
15978    },
15979    Municipio {
15980        ibge_code: 2211357,
15981        name: "Várzea Branca",
15982        state: State::PI,
15983    },
15984    Municipio {
15985        ibge_code: 2211407,
15986        name: "Várzea Grande",
15987        state: State::PI,
15988    },
15989    Municipio {
15990        ibge_code: 2211704,
15991        name: "Wall Ferraz",
15992        state: State::PI,
15993    },
15994    Municipio {
15995        ibge_code: 2200202,
15996        name: "Água Branca",
15997        state: State::PI,
15998    },
15999    Municipio {
16000        ibge_code: 4100103,
16001        name: "Abatiá",
16002        state: State::PR,
16003    },
16004    Municipio {
16005        ibge_code: 4100202,
16006        name: "Adrianópolis",
16007        state: State::PR,
16008    },
16009    Municipio {
16010        ibge_code: 4100301,
16011        name: "Agudos do Sul",
16012        state: State::PR,
16013    },
16014    Municipio {
16015        ibge_code: 4100400,
16016        name: "Almirante Tamandaré",
16017        state: State::PR,
16018    },
16019    Municipio {
16020        ibge_code: 4100459,
16021        name: "Altamira do Paraná",
16022        state: State::PR,
16023    },
16024    Municipio {
16025        ibge_code: 4100608,
16026        name: "Alto Paraná",
16027        state: State::PR,
16028    },
16029    Municipio {
16030        ibge_code: 4128625,
16031        name: "Alto Paraíso",
16032        state: State::PR,
16033    },
16034    Municipio {
16035        ibge_code: 4100707,
16036        name: "Alto Piquiri",
16037        state: State::PR,
16038    },
16039    Municipio {
16040        ibge_code: 4100509,
16041        name: "Altônia",
16042        state: State::PR,
16043    },
16044    Municipio {
16045        ibge_code: 4100806,
16046        name: "Alvorada do Sul",
16047        state: State::PR,
16048    },
16049    Municipio {
16050        ibge_code: 4100905,
16051        name: "Amaporã",
16052        state: State::PR,
16053    },
16054    Municipio {
16055        ibge_code: 4101002,
16056        name: "Ampére",
16057        state: State::PR,
16058    },
16059    Municipio {
16060        ibge_code: 4101051,
16061        name: "Anahy",
16062        state: State::PR,
16063    },
16064    Municipio {
16065        ibge_code: 4101101,
16066        name: "Andirá",
16067        state: State::PR,
16068    },
16069    Municipio {
16070        ibge_code: 4101200,
16071        name: "Antonina",
16072        state: State::PR,
16073    },
16074    Municipio {
16075        ibge_code: 4101309,
16076        name: "Antônio Olinto",
16077        state: State::PR,
16078    },
16079    Municipio {
16080        ibge_code: 4101408,
16081        name: "Apucarana",
16082        state: State::PR,
16083    },
16084    Municipio {
16085        ibge_code: 4101507,
16086        name: "Arapongas",
16087        state: State::PR,
16088    },
16089    Municipio {
16090        ibge_code: 4101606,
16091        name: "Arapoti",
16092        state: State::PR,
16093    },
16094    Municipio {
16095        ibge_code: 4101655,
16096        name: "Arapuã",
16097        state: State::PR,
16098    },
16099    Municipio {
16100        ibge_code: 4101705,
16101        name: "Araruna",
16102        state: State::PR,
16103    },
16104    Municipio {
16105        ibge_code: 4101804,
16106        name: "Araucária",
16107        state: State::PR,
16108    },
16109    Municipio {
16110        ibge_code: 4101853,
16111        name: "Ariranha do Ivaí",
16112        state: State::PR,
16113    },
16114    Municipio {
16115        ibge_code: 4101903,
16116        name: "Assaí",
16117        state: State::PR,
16118    },
16119    Municipio {
16120        ibge_code: 4102000,
16121        name: "Assis Chateaubriand",
16122        state: State::PR,
16123    },
16124    Municipio {
16125        ibge_code: 4102109,
16126        name: "Astorga",
16127        state: State::PR,
16128    },
16129    Municipio {
16130        ibge_code: 4102208,
16131        name: "Atalaia",
16132        state: State::PR,
16133    },
16134    Municipio {
16135        ibge_code: 4102307,
16136        name: "Balsa Nova",
16137        state: State::PR,
16138    },
16139    Municipio {
16140        ibge_code: 4102406,
16141        name: "Bandeirantes",
16142        state: State::PR,
16143    },
16144    Municipio {
16145        ibge_code: 4102505,
16146        name: "Barbosa Ferraz",
16147        state: State::PR,
16148    },
16149    Municipio {
16150        ibge_code: 4102703,
16151        name: "Barra do Jacaré",
16152        state: State::PR,
16153    },
16154    Municipio {
16155        ibge_code: 4102604,
16156        name: "Barracão",
16157        state: State::PR,
16158    },
16159    Municipio {
16160        ibge_code: 4102752,
16161        name: "Bela Vista da Caroba",
16162        state: State::PR,
16163    },
16164    Municipio {
16165        ibge_code: 4102802,
16166        name: "Bela Vista do Paraíso",
16167        state: State::PR,
16168    },
16169    Municipio {
16170        ibge_code: 4102901,
16171        name: "Bituruna",
16172        state: State::PR,
16173    },
16174    Municipio {
16175        ibge_code: 4103008,
16176        name: "Boa Esperança",
16177        state: State::PR,
16178    },
16179    Municipio {
16180        ibge_code: 4103024,
16181        name: "Boa Esperança do Iguaçu",
16182        state: State::PR,
16183    },
16184    Municipio {
16185        ibge_code: 4103040,
16186        name: "Boa Ventura de São Roque",
16187        state: State::PR,
16188    },
16189    Municipio {
16190        ibge_code: 4103057,
16191        name: "Boa Vista da Aparecida",
16192        state: State::PR,
16193    },
16194    Municipio {
16195        ibge_code: 4103107,
16196        name: "Bocaiúva do Sul",
16197        state: State::PR,
16198    },
16199    Municipio {
16200        ibge_code: 4103156,
16201        name: "Bom Jesus do Sul",
16202        state: State::PR,
16203    },
16204    Municipio {
16205        ibge_code: 4103206,
16206        name: "Bom Sucesso",
16207        state: State::PR,
16208    },
16209    Municipio {
16210        ibge_code: 4103222,
16211        name: "Bom Sucesso do Sul",
16212        state: State::PR,
16213    },
16214    Municipio {
16215        ibge_code: 4103305,
16216        name: "Borrazópolis",
16217        state: State::PR,
16218    },
16219    Municipio {
16220        ibge_code: 4103354,
16221        name: "Braganey",
16222        state: State::PR,
16223    },
16224    Municipio {
16225        ibge_code: 4103370,
16226        name: "Brasilândia do Sul",
16227        state: State::PR,
16228    },
16229    Municipio {
16230        ibge_code: 4103404,
16231        name: "Cafeara",
16232        state: State::PR,
16233    },
16234    Municipio {
16235        ibge_code: 4103453,
16236        name: "Cafelândia",
16237        state: State::PR,
16238    },
16239    Municipio {
16240        ibge_code: 4103479,
16241        name: "Cafezal do Sul",
16242        state: State::PR,
16243    },
16244    Municipio {
16245        ibge_code: 4103503,
16246        name: "Califórnia",
16247        state: State::PR,
16248    },
16249    Municipio {
16250        ibge_code: 4103602,
16251        name: "Cambará",
16252        state: State::PR,
16253    },
16254    Municipio {
16255        ibge_code: 4103800,
16256        name: "Cambira",
16257        state: State::PR,
16258    },
16259    Municipio {
16260        ibge_code: 4103701,
16261        name: "Cambé",
16262        state: State::PR,
16263    },
16264    Municipio {
16265        ibge_code: 4104006,
16266        name: "Campina Grande do Sul",
16267        state: State::PR,
16268    },
16269    Municipio {
16270        ibge_code: 4103909,
16271        name: "Campina da Lagoa",
16272        state: State::PR,
16273    },
16274    Municipio {
16275        ibge_code: 4103958,
16276        name: "Campina do Simão",
16277        state: State::PR,
16278    },
16279    Municipio {
16280        ibge_code: 4104055,
16281        name: "Campo Bonito",
16282        state: State::PR,
16283    },
16284    Municipio {
16285        ibge_code: 4104204,
16286        name: "Campo Largo",
16287        state: State::PR,
16288    },
16289    Municipio {
16290        ibge_code: 4104253,
16291        name: "Campo Magro",
16292        state: State::PR,
16293    },
16294    Municipio {
16295        ibge_code: 4104303,
16296        name: "Campo Mourão",
16297        state: State::PR,
16298    },
16299    Municipio {
16300        ibge_code: 4104105,
16301        name: "Campo do Tenente",
16302        state: State::PR,
16303    },
16304    Municipio {
16305        ibge_code: 4104428,
16306        name: "Candói",
16307        state: State::PR,
16308    },
16309    Municipio {
16310        ibge_code: 4104451,
16311        name: "Cantagalo",
16312        state: State::PR,
16313    },
16314    Municipio {
16315        ibge_code: 4104501,
16316        name: "Capanema",
16317        state: State::PR,
16318    },
16319    Municipio {
16320        ibge_code: 4104600,
16321        name: "Capitão Leônidas Marques",
16322        state: State::PR,
16323    },
16324    Municipio {
16325        ibge_code: 4104659,
16326        name: "Carambeí",
16327        state: State::PR,
16328    },
16329    Municipio {
16330        ibge_code: 4104709,
16331        name: "Carlópolis",
16332        state: State::PR,
16333    },
16334    Municipio {
16335        ibge_code: 4104808,
16336        name: "Cascavel",
16337        state: State::PR,
16338    },
16339    Municipio {
16340        ibge_code: 4104907,
16341        name: "Castro",
16342        state: State::PR,
16343    },
16344    Municipio {
16345        ibge_code: 4105003,
16346        name: "Catanduvas",
16347        state: State::PR,
16348    },
16349    Municipio {
16350        ibge_code: 4105102,
16351        name: "Centenário do Sul",
16352        state: State::PR,
16353    },
16354    Municipio {
16355        ibge_code: 4105201,
16356        name: "Cerro Azul",
16357        state: State::PR,
16358    },
16359    Municipio {
16360        ibge_code: 4105409,
16361        name: "Chopinzinho",
16362        state: State::PR,
16363    },
16364    Municipio {
16365        ibge_code: 4105508,
16366        name: "Cianorte",
16367        state: State::PR,
16368    },
16369    Municipio {
16370        ibge_code: 4105607,
16371        name: "Cidade Gaúcha",
16372        state: State::PR,
16373    },
16374    Municipio {
16375        ibge_code: 4105706,
16376        name: "Clevelândia",
16377        state: State::PR,
16378    },
16379    Municipio {
16380        ibge_code: 4105805,
16381        name: "Colombo",
16382        state: State::PR,
16383    },
16384    Municipio {
16385        ibge_code: 4105904,
16386        name: "Colorado",
16387        state: State::PR,
16388    },
16389    Municipio {
16390        ibge_code: 4106001,
16391        name: "Congonhinhas",
16392        state: State::PR,
16393    },
16394    Municipio {
16395        ibge_code: 4106100,
16396        name: "Conselheiro Mairinck",
16397        state: State::PR,
16398    },
16399    Municipio {
16400        ibge_code: 4106209,
16401        name: "Contenda",
16402        state: State::PR,
16403    },
16404    Municipio {
16405        ibge_code: 4106308,
16406        name: "Corbélia",
16407        state: State::PR,
16408    },
16409    Municipio {
16410        ibge_code: 4106407,
16411        name: "Cornélio Procópio",
16412        state: State::PR,
16413    },
16414    Municipio {
16415        ibge_code: 4106456,
16416        name: "Coronel Domingos Soares",
16417        state: State::PR,
16418    },
16419    Municipio {
16420        ibge_code: 4106506,
16421        name: "Coronel Vivida",
16422        state: State::PR,
16423    },
16424    Municipio {
16425        ibge_code: 4106555,
16426        name: "Corumbataí do Sul",
16427        state: State::PR,
16428    },
16429    Municipio {
16430        ibge_code: 4106803,
16431        name: "Cruz Machado",
16432        state: State::PR,
16433    },
16434    Municipio {
16435        ibge_code: 4106571,
16436        name: "Cruzeiro do Iguaçu",
16437        state: State::PR,
16438    },
16439    Municipio {
16440        ibge_code: 4106605,
16441        name: "Cruzeiro do Oeste",
16442        state: State::PR,
16443    },
16444    Municipio {
16445        ibge_code: 4106704,
16446        name: "Cruzeiro do Sul",
16447        state: State::PR,
16448    },
16449    Municipio {
16450        ibge_code: 4106852,
16451        name: "Cruzmaltina",
16452        state: State::PR,
16453    },
16454    Municipio {
16455        ibge_code: 4106902,
16456        name: "Curitiba",
16457        state: State::PR,
16458    },
16459    Municipio {
16460        ibge_code: 4107009,
16461        name: "Curiúva",
16462        state: State::PR,
16463    },
16464    Municipio {
16465        ibge_code: 4104402,
16466        name: "Cândido de Abreu",
16467        state: State::PR,
16468    },
16469    Municipio {
16470        ibge_code: 4105300,
16471        name: "Céu Azul",
16472        state: State::PR,
16473    },
16474    Municipio {
16475        ibge_code: 4107157,
16476        name: "Diamante D'Oeste",
16477        state: State::PR,
16478    },
16479    Municipio {
16480        ibge_code: 4107108,
16481        name: "Diamante do Norte",
16482        state: State::PR,
16483    },
16484    Municipio {
16485        ibge_code: 4107124,
16486        name: "Diamante do Sul",
16487        state: State::PR,
16488    },
16489    Municipio {
16490        ibge_code: 4107207,
16491        name: "Dois Vizinhos",
16492        state: State::PR,
16493    },
16494    Municipio {
16495        ibge_code: 4107256,
16496        name: "Douradina",
16497        state: State::PR,
16498    },
16499    Municipio {
16500        ibge_code: 4107306,
16501        name: "Doutor Camargo",
16502        state: State::PR,
16503    },
16504    Municipio {
16505        ibge_code: 4128633,
16506        name: "Doutor Ulysses",
16507        state: State::PR,
16508    },
16509    Municipio {
16510        ibge_code: 4107504,
16511        name: "Engenheiro Beltrão",
16512        state: State::PR,
16513    },
16514    Municipio {
16515        ibge_code: 4107538,
16516        name: "Entre Rios do Oeste",
16517        state: State::PR,
16518    },
16519    Municipio {
16520        ibge_code: 4107405,
16521        name: "Enéas Marques",
16522        state: State::PR,
16523    },
16524    Municipio {
16525        ibge_code: 4107520,
16526        name: "Esperança Nova",
16527        state: State::PR,
16528    },
16529    Municipio {
16530        ibge_code: 4107546,
16531        name: "Espigão Alto do Iguaçu",
16532        state: State::PR,
16533    },
16534    Municipio {
16535        ibge_code: 4107553,
16536        name: "Farol",
16537        state: State::PR,
16538    },
16539    Municipio {
16540        ibge_code: 4107603,
16541        name: "Faxinal",
16542        state: State::PR,
16543    },
16544    Municipio {
16545        ibge_code: 4107652,
16546        name: "Fazenda Rio Grande",
16547        state: State::PR,
16548    },
16549    Municipio {
16550        ibge_code: 4107736,
16551        name: "Fernandes Pinheiro",
16552        state: State::PR,
16553    },
16554    Municipio {
16555        ibge_code: 4107751,
16556        name: "Figueira",
16557        state: State::PR,
16558    },
16559    Municipio {
16560        ibge_code: 4107850,
16561        name: "Flor da Serra do Sul",
16562        state: State::PR,
16563    },
16564    Municipio {
16565        ibge_code: 4107801,
16566        name: "Floraí",
16567        state: State::PR,
16568    },
16569    Municipio {
16570        ibge_code: 4107900,
16571        name: "Floresta",
16572        state: State::PR,
16573    },
16574    Municipio {
16575        ibge_code: 4108007,
16576        name: "Florestópolis",
16577        state: State::PR,
16578    },
16579    Municipio {
16580        ibge_code: 4108106,
16581        name: "Flórida",
16582        state: State::PR,
16583    },
16584    Municipio {
16585        ibge_code: 4108205,
16586        name: "Formosa do Oeste",
16587        state: State::PR,
16588    },
16589    Municipio {
16590        ibge_code: 4108304,
16591        name: "Foz do Iguaçu",
16592        state: State::PR,
16593    },
16594    Municipio {
16595        ibge_code: 4108452,
16596        name: "Foz do Jordão",
16597        state: State::PR,
16598    },
16599    Municipio {
16600        ibge_code: 4108320,
16601        name: "Francisco Alves",
16602        state: State::PR,
16603    },
16604    Municipio {
16605        ibge_code: 4108403,
16606        name: "Francisco Beltrão",
16607        state: State::PR,
16608    },
16609    Municipio {
16610        ibge_code: 4107702,
16611        name: "Fênix",
16612        state: State::PR,
16613    },
16614    Municipio {
16615        ibge_code: 4108502,
16616        name: "General Carneiro",
16617        state: State::PR,
16618    },
16619    Municipio {
16620        ibge_code: 4108551,
16621        name: "Godoy Moreira",
16622        state: State::PR,
16623    },
16624    Municipio {
16625        ibge_code: 4108601,
16626        name: "Goioerê",
16627        state: State::PR,
16628    },
16629    Municipio {
16630        ibge_code: 4108650,
16631        name: "Goioxim",
16632        state: State::PR,
16633    },
16634    Municipio {
16635        ibge_code: 4108700,
16636        name: "Grandes Rios",
16637        state: State::PR,
16638    },
16639    Municipio {
16640        ibge_code: 4108908,
16641        name: "Guairaçá",
16642        state: State::PR,
16643    },
16644    Municipio {
16645        ibge_code: 4108957,
16646        name: "Guamiranga",
16647        state: State::PR,
16648    },
16649    Municipio {
16650        ibge_code: 4109005,
16651        name: "Guapirama",
16652        state: State::PR,
16653    },
16654    Municipio {
16655        ibge_code: 4109104,
16656        name: "Guaporema",
16657        state: State::PR,
16658    },
16659    Municipio {
16660        ibge_code: 4109203,
16661        name: "Guaraci",
16662        state: State::PR,
16663    },
16664    Municipio {
16665        ibge_code: 4109302,
16666        name: "Guaraniaçu",
16667        state: State::PR,
16668    },
16669    Municipio {
16670        ibge_code: 4109401,
16671        name: "Guarapuava",
16672        state: State::PR,
16673    },
16674    Municipio {
16675        ibge_code: 4109500,
16676        name: "Guaraqueçaba",
16677        state: State::PR,
16678    },
16679    Municipio {
16680        ibge_code: 4109609,
16681        name: "Guaratuba",
16682        state: State::PR,
16683    },
16684    Municipio {
16685        ibge_code: 4108809,
16686        name: "Guaíra",
16687        state: State::PR,
16688    },
16689    Municipio {
16690        ibge_code: 4109658,
16691        name: "Honório Serpa",
16692        state: State::PR,
16693    },
16694    Municipio {
16695        ibge_code: 4109708,
16696        name: "Ibaiti",
16697        state: State::PR,
16698    },
16699    Municipio {
16700        ibge_code: 4109757,
16701        name: "Ibema",
16702        state: State::PR,
16703    },
16704    Municipio {
16705        ibge_code: 4109807,
16706        name: "Ibiporã",
16707        state: State::PR,
16708    },
16709    Municipio {
16710        ibge_code: 4109906,
16711        name: "Icaraíma",
16712        state: State::PR,
16713    },
16714    Municipio {
16715        ibge_code: 4110003,
16716        name: "Iguaraçu",
16717        state: State::PR,
16718    },
16719    Municipio {
16720        ibge_code: 4110052,
16721        name: "Iguatu",
16722        state: State::PR,
16723    },
16724    Municipio {
16725        ibge_code: 4110078,
16726        name: "Imbaú",
16727        state: State::PR,
16728    },
16729    Municipio {
16730        ibge_code: 4110102,
16731        name: "Imbituva",
16732        state: State::PR,
16733    },
16734    Municipio {
16735        ibge_code: 4110300,
16736        name: "Inajá",
16737        state: State::PR,
16738    },
16739    Municipio {
16740        ibge_code: 4110409,
16741        name: "Indianópolis",
16742        state: State::PR,
16743    },
16744    Municipio {
16745        ibge_code: 4110201,
16746        name: "Inácio Martins",
16747        state: State::PR,
16748    },
16749    Municipio {
16750        ibge_code: 4110508,
16751        name: "Ipiranga",
16752        state: State::PR,
16753    },
16754    Municipio {
16755        ibge_code: 4110607,
16756        name: "Iporã",
16757        state: State::PR,
16758    },
16759    Municipio {
16760        ibge_code: 4110656,
16761        name: "Iracema do Oeste",
16762        state: State::PR,
16763    },
16764    Municipio {
16765        ibge_code: 4110706,
16766        name: "Irati",
16767        state: State::PR,
16768    },
16769    Municipio {
16770        ibge_code: 4110805,
16771        name: "Iretama",
16772        state: State::PR,
16773    },
16774    Municipio {
16775        ibge_code: 4110904,
16776        name: "Itaguajé",
16777        state: State::PR,
16778    },
16779    Municipio {
16780        ibge_code: 4110953,
16781        name: "Itaipulândia",
16782        state: State::PR,
16783    },
16784    Municipio {
16785        ibge_code: 4111001,
16786        name: "Itambaracá",
16787        state: State::PR,
16788    },
16789    Municipio {
16790        ibge_code: 4111100,
16791        name: "Itambé",
16792        state: State::PR,
16793    },
16794    Municipio {
16795        ibge_code: 4111209,
16796        name: "Itapejara d'Oeste",
16797        state: State::PR,
16798    },
16799    Municipio {
16800        ibge_code: 4111258,
16801        name: "Itaperuçu",
16802        state: State::PR,
16803    },
16804    Municipio {
16805        ibge_code: 4111308,
16806        name: "Itaúna do Sul",
16807        state: State::PR,
16808    },
16809    Municipio {
16810        ibge_code: 4111506,
16811        name: "Ivaiporã",
16812        state: State::PR,
16813    },
16814    Municipio {
16815        ibge_code: 4111605,
16816        name: "Ivatuba",
16817        state: State::PR,
16818    },
16819    Municipio {
16820        ibge_code: 4111555,
16821        name: "Ivaté",
16822        state: State::PR,
16823    },
16824    Municipio {
16825        ibge_code: 4111407,
16826        name: "Ivaí",
16827        state: State::PR,
16828    },
16829    Municipio {
16830        ibge_code: 4111704,
16831        name: "Jaboti",
16832        state: State::PR,
16833    },
16834    Municipio {
16835        ibge_code: 4111803,
16836        name: "Jacarezinho",
16837        state: State::PR,
16838    },
16839    Municipio {
16840        ibge_code: 4111902,
16841        name: "Jaguapitã",
16842        state: State::PR,
16843    },
16844    Municipio {
16845        ibge_code: 4112009,
16846        name: "Jaguariaíva",
16847        state: State::PR,
16848    },
16849    Municipio {
16850        ibge_code: 4112108,
16851        name: "Jandaia do Sul",
16852        state: State::PR,
16853    },
16854    Municipio {
16855        ibge_code: 4112207,
16856        name: "Janiópolis",
16857        state: State::PR,
16858    },
16859    Municipio {
16860        ibge_code: 4112306,
16861        name: "Japira",
16862        state: State::PR,
16863    },
16864    Municipio {
16865        ibge_code: 4112405,
16866        name: "Japurá",
16867        state: State::PR,
16868    },
16869    Municipio {
16870        ibge_code: 4112504,
16871        name: "Jardim Alegre",
16872        state: State::PR,
16873    },
16874    Municipio {
16875        ibge_code: 4112603,
16876        name: "Jardim Olinda",
16877        state: State::PR,
16878    },
16879    Municipio {
16880        ibge_code: 4112702,
16881        name: "Jataizinho",
16882        state: State::PR,
16883    },
16884    Municipio {
16885        ibge_code: 4112751,
16886        name: "Jesuítas",
16887        state: State::PR,
16888    },
16889    Municipio {
16890        ibge_code: 4112801,
16891        name: "Joaquim Távora",
16892        state: State::PR,
16893    },
16894    Municipio {
16895        ibge_code: 4112900,
16896        name: "Jundiaí do Sul",
16897        state: State::PR,
16898    },
16899    Municipio {
16900        ibge_code: 4112959,
16901        name: "Juranda",
16902        state: State::PR,
16903    },
16904    Municipio {
16905        ibge_code: 4113007,
16906        name: "Jussara",
16907        state: State::PR,
16908    },
16909    Municipio {
16910        ibge_code: 4113106,
16911        name: "Kaloré",
16912        state: State::PR,
16913    },
16914    Municipio {
16915        ibge_code: 4113205,
16916        name: "Lapa",
16917        state: State::PR,
16918    },
16919    Municipio {
16920        ibge_code: 4113254,
16921        name: "Laranjal",
16922        state: State::PR,
16923    },
16924    Municipio {
16925        ibge_code: 4113304,
16926        name: "Laranjeiras do Sul",
16927        state: State::PR,
16928    },
16929    Municipio {
16930        ibge_code: 4113403,
16931        name: "Leópolis",
16932        state: State::PR,
16933    },
16934    Municipio {
16935        ibge_code: 4113429,
16936        name: "Lidianópolis",
16937        state: State::PR,
16938    },
16939    Municipio {
16940        ibge_code: 4113452,
16941        name: "Lindoeste",
16942        state: State::PR,
16943    },
16944    Municipio {
16945        ibge_code: 4113502,
16946        name: "Loanda",
16947        state: State::PR,
16948    },
16949    Municipio {
16950        ibge_code: 4113601,
16951        name: "Lobato",
16952        state: State::PR,
16953    },
16954    Municipio {
16955        ibge_code: 4113700,
16956        name: "Londrina",
16957        state: State::PR,
16958    },
16959    Municipio {
16960        ibge_code: 4113734,
16961        name: "Luiziana",
16962        state: State::PR,
16963    },
16964    Municipio {
16965        ibge_code: 4113759,
16966        name: "Lunardelli",
16967        state: State::PR,
16968    },
16969    Municipio {
16970        ibge_code: 4113809,
16971        name: "Lupionópolis",
16972        state: State::PR,
16973    },
16974    Municipio {
16975        ibge_code: 4113908,
16976        name: "Mallet",
16977        state: State::PR,
16978    },
16979    Municipio {
16980        ibge_code: 4114005,
16981        name: "Mamborê",
16982        state: State::PR,
16983    },
16984    Municipio {
16985        ibge_code: 4114203,
16986        name: "Mandaguari",
16987        state: State::PR,
16988    },
16989    Municipio {
16990        ibge_code: 4114104,
16991        name: "Mandaguaçu",
16992        state: State::PR,
16993    },
16994    Municipio {
16995        ibge_code: 4114302,
16996        name: "Mandirituba",
16997        state: State::PR,
16998    },
16999    Municipio {
17000        ibge_code: 4114351,
17001        name: "Manfrinópolis",
17002        state: State::PR,
17003    },
17004    Municipio {
17005        ibge_code: 4114401,
17006        name: "Mangueirinha",
17007        state: State::PR,
17008    },
17009    Municipio {
17010        ibge_code: 4114500,
17011        name: "Manoel Ribas",
17012        state: State::PR,
17013    },
17014    Municipio {
17015        ibge_code: 4114609,
17016        name: "Marechal Cândido Rondon",
17017        state: State::PR,
17018    },
17019    Municipio {
17020        ibge_code: 4114708,
17021        name: "Maria Helena",
17022        state: State::PR,
17023    },
17024    Municipio {
17025        ibge_code: 4114807,
17026        name: "Marialva",
17027        state: State::PR,
17028    },
17029    Municipio {
17030        ibge_code: 4115002,
17031        name: "Marilena",
17032        state: State::PR,
17033    },
17034    Municipio {
17035        ibge_code: 4115101,
17036        name: "Mariluz",
17037        state: State::PR,
17038    },
17039    Municipio {
17040        ibge_code: 4114906,
17041        name: "Marilândia do Sul",
17042        state: State::PR,
17043    },
17044    Municipio {
17045        ibge_code: 4115200,
17046        name: "Maringá",
17047        state: State::PR,
17048    },
17049    Municipio {
17050        ibge_code: 4115358,
17051        name: "Maripá",
17052        state: State::PR,
17053    },
17054    Municipio {
17055        ibge_code: 4115309,
17056        name: "Mariópolis",
17057        state: State::PR,
17058    },
17059    Municipio {
17060        ibge_code: 4115408,
17061        name: "Marmeleiro",
17062        state: State::PR,
17063    },
17064    Municipio {
17065        ibge_code: 4115457,
17066        name: "Marquinho",
17067        state: State::PR,
17068    },
17069    Municipio {
17070        ibge_code: 4115507,
17071        name: "Marumbi",
17072        state: State::PR,
17073    },
17074    Municipio {
17075        ibge_code: 4115606,
17076        name: "Matelândia",
17077        state: State::PR,
17078    },
17079    Municipio {
17080        ibge_code: 4115705,
17081        name: "Matinhos",
17082        state: State::PR,
17083    },
17084    Municipio {
17085        ibge_code: 4115739,
17086        name: "Mato Rico",
17087        state: State::PR,
17088    },
17089    Municipio {
17090        ibge_code: 4115754,
17091        name: "Mauá da Serra",
17092        state: State::PR,
17093    },
17094    Municipio {
17095        ibge_code: 4115804,
17096        name: "Medianeira",
17097        state: State::PR,
17098    },
17099    Municipio {
17100        ibge_code: 4115853,
17101        name: "Mercedes",
17102        state: State::PR,
17103    },
17104    Municipio {
17105        ibge_code: 4115903,
17106        name: "Mirador",
17107        state: State::PR,
17108    },
17109    Municipio {
17110        ibge_code: 4116000,
17111        name: "Miraselva",
17112        state: State::PR,
17113    },
17114    Municipio {
17115        ibge_code: 4116059,
17116        name: "Missal",
17117        state: State::PR,
17118    },
17119    Municipio {
17120        ibge_code: 4116109,
17121        name: "Moreira Sales",
17122        state: State::PR,
17123    },
17124    Municipio {
17125        ibge_code: 4116208,
17126        name: "Morretes",
17127        state: State::PR,
17128    },
17129    Municipio {
17130        ibge_code: 4116307,
17131        name: "Munhoz de Melo",
17132        state: State::PR,
17133    },
17134    Municipio {
17135        ibge_code: 4116406,
17136        name: "Nossa Senhora das Graças",
17137        state: State::PR,
17138    },
17139    Municipio {
17140        ibge_code: 4116505,
17141        name: "Nova Aliança do Ivaí",
17142        state: State::PR,
17143    },
17144    Municipio {
17145        ibge_code: 4116604,
17146        name: "Nova América da Colina",
17147        state: State::PR,
17148    },
17149    Municipio {
17150        ibge_code: 4116703,
17151        name: "Nova Aurora",
17152        state: State::PR,
17153    },
17154    Municipio {
17155        ibge_code: 4116802,
17156        name: "Nova Cantu",
17157        state: State::PR,
17158    },
17159    Municipio {
17160        ibge_code: 4116901,
17161        name: "Nova Esperança",
17162        state: State::PR,
17163    },
17164    Municipio {
17165        ibge_code: 4116950,
17166        name: "Nova Esperança do Sudoeste",
17167        state: State::PR,
17168    },
17169    Municipio {
17170        ibge_code: 4117008,
17171        name: "Nova Fátima",
17172        state: State::PR,
17173    },
17174    Municipio {
17175        ibge_code: 4117057,
17176        name: "Nova Laranjeiras",
17177        state: State::PR,
17178    },
17179    Municipio {
17180        ibge_code: 4117107,
17181        name: "Nova Londrina",
17182        state: State::PR,
17183    },
17184    Municipio {
17185        ibge_code: 4117206,
17186        name: "Nova Olímpia",
17187        state: State::PR,
17188    },
17189    Municipio {
17190        ibge_code: 4117255,
17191        name: "Nova Prata do Iguaçu",
17192        state: State::PR,
17193    },
17194    Municipio {
17195        ibge_code: 4117214,
17196        name: "Nova Santa Bárbara",
17197        state: State::PR,
17198    },
17199    Municipio {
17200        ibge_code: 4117222,
17201        name: "Nova Santa Rosa",
17202        state: State::PR,
17203    },
17204    Municipio {
17205        ibge_code: 4117271,
17206        name: "Nova Tebas",
17207        state: State::PR,
17208    },
17209    Municipio {
17210        ibge_code: 4117297,
17211        name: "Novo Itacolomi",
17212        state: State::PR,
17213    },
17214    Municipio {
17215        ibge_code: 4117305,
17216        name: "Ortigueira",
17217        state: State::PR,
17218    },
17219    Municipio {
17220        ibge_code: 4117404,
17221        name: "Ourizona",
17222        state: State::PR,
17223    },
17224    Municipio {
17225        ibge_code: 4117453,
17226        name: "Ouro Verde do Oeste",
17227        state: State::PR,
17228    },
17229    Municipio {
17230        ibge_code: 4117503,
17231        name: "Paiçandu",
17232        state: State::PR,
17233    },
17234    Municipio {
17235        ibge_code: 4117602,
17236        name: "Palmas",
17237        state: State::PR,
17238    },
17239    Municipio {
17240        ibge_code: 4117701,
17241        name: "Palmeira",
17242        state: State::PR,
17243    },
17244    Municipio {
17245        ibge_code: 4117800,
17246        name: "Palmital",
17247        state: State::PR,
17248    },
17249    Municipio {
17250        ibge_code: 4117909,
17251        name: "Palotina",
17252        state: State::PR,
17253    },
17254    Municipio {
17255        ibge_code: 4118105,
17256        name: "Paranacity",
17257        state: State::PR,
17258    },
17259    Municipio {
17260        ibge_code: 4118204,
17261        name: "Paranaguá",
17262        state: State::PR,
17263    },
17264    Municipio {
17265        ibge_code: 4118303,
17266        name: "Paranapoema",
17267        state: State::PR,
17268    },
17269    Municipio {
17270        ibge_code: 4118402,
17271        name: "Paranavaí",
17272        state: State::PR,
17273    },
17274    Municipio {
17275        ibge_code: 4118006,
17276        name: "Paraíso do Norte",
17277        state: State::PR,
17278    },
17279    Municipio {
17280        ibge_code: 4118451,
17281        name: "Pato Bragado",
17282        state: State::PR,
17283    },
17284    Municipio {
17285        ibge_code: 4118501,
17286        name: "Pato Branco",
17287        state: State::PR,
17288    },
17289    Municipio {
17290        ibge_code: 4118600,
17291        name: "Paula Freitas",
17292        state: State::PR,
17293    },
17294    Municipio {
17295        ibge_code: 4118709,
17296        name: "Paulo Frontin",
17297        state: State::PR,
17298    },
17299    Municipio {
17300        ibge_code: 4118808,
17301        name: "Peabiru",
17302        state: State::PR,
17303    },
17304    Municipio {
17305        ibge_code: 4118857,
17306        name: "Perobal",
17307        state: State::PR,
17308    },
17309    Municipio {
17310        ibge_code: 4119152,
17311        name: "Pinhais",
17312        state: State::PR,
17313    },
17314    Municipio {
17315        ibge_code: 4119251,
17316        name: "Pinhal de São Bento",
17317        state: State::PR,
17318    },
17319    Municipio {
17320        ibge_code: 4119202,
17321        name: "Pinhalão",
17322        state: State::PR,
17323    },
17324    Municipio {
17325        ibge_code: 4119301,
17326        name: "Pinhão",
17327        state: State::PR,
17328    },
17329    Municipio {
17330        ibge_code: 4119509,
17331        name: "Piraquara",
17332        state: State::PR,
17333    },
17334    Municipio {
17335        ibge_code: 4119400,
17336        name: "Piraí do Sul",
17337        state: State::PR,
17338    },
17339    Municipio {
17340        ibge_code: 4119608,
17341        name: "Pitanga",
17342        state: State::PR,
17343    },
17344    Municipio {
17345        ibge_code: 4119657,
17346        name: "Pitangueiras",
17347        state: State::PR,
17348    },
17349    Municipio {
17350        ibge_code: 4119103,
17351        name: "Piên",
17352        state: State::PR,
17353    },
17354    Municipio {
17355        ibge_code: 4119707,
17356        name: "Planaltina do Paraná",
17357        state: State::PR,
17358    },
17359    Municipio {
17360        ibge_code: 4119806,
17361        name: "Planalto",
17362        state: State::PR,
17363    },
17364    Municipio {
17365        ibge_code: 4119905,
17366        name: "Ponta Grossa",
17367        state: State::PR,
17368    },
17369    Municipio {
17370        ibge_code: 4119954,
17371        name: "Pontal do Paraná",
17372        state: State::PR,
17373    },
17374    Municipio {
17375        ibge_code: 4120002,
17376        name: "Porecatu",
17377        state: State::PR,
17378    },
17379    Municipio {
17380        ibge_code: 4120101,
17381        name: "Porto Amazonas",
17382        state: State::PR,
17383    },
17384    Municipio {
17385        ibge_code: 4120150,
17386        name: "Porto Barreiro",
17387        state: State::PR,
17388    },
17389    Municipio {
17390        ibge_code: 4120200,
17391        name: "Porto Rico",
17392        state: State::PR,
17393    },
17394    Municipio {
17395        ibge_code: 4120309,
17396        name: "Porto Vitória",
17397        state: State::PR,
17398    },
17399    Municipio {
17400        ibge_code: 4120333,
17401        name: "Prado Ferreira",
17402        state: State::PR,
17403    },
17404    Municipio {
17405        ibge_code: 4120358,
17406        name: "Pranchita",
17407        state: State::PR,
17408    },
17409    Municipio {
17410        ibge_code: 4120408,
17411        name: "Presidente Castelo Branco",
17412        state: State::PR,
17413    },
17414    Municipio {
17415        ibge_code: 4120507,
17416        name: "Primeiro de Maio",
17417        state: State::PR,
17418    },
17419    Municipio {
17420        ibge_code: 4120606,
17421        name: "Prudentópolis",
17422        state: State::PR,
17423    },
17424    Municipio {
17425        ibge_code: 4118907,
17426        name: "Pérola",
17427        state: State::PR,
17428    },
17429    Municipio {
17430        ibge_code: 4119004,
17431        name: "Pérola d'Oeste",
17432        state: State::PR,
17433    },
17434    Municipio {
17435        ibge_code: 4120655,
17436        name: "Quarto Centenário",
17437        state: State::PR,
17438    },
17439    Municipio {
17440        ibge_code: 4120705,
17441        name: "Quatiguá",
17442        state: State::PR,
17443    },
17444    Municipio {
17445        ibge_code: 4120804,
17446        name: "Quatro Barras",
17447        state: State::PR,
17448    },
17449    Municipio {
17450        ibge_code: 4120853,
17451        name: "Quatro Pontes",
17452        state: State::PR,
17453    },
17454    Municipio {
17455        ibge_code: 4120903,
17456        name: "Quedas do Iguaçu",
17457        state: State::PR,
17458    },
17459    Municipio {
17460        ibge_code: 4121000,
17461        name: "Querência do Norte",
17462        state: State::PR,
17463    },
17464    Municipio {
17465        ibge_code: 4121109,
17466        name: "Quinta do Sol",
17467        state: State::PR,
17468    },
17469    Municipio {
17470        ibge_code: 4121208,
17471        name: "Quitandinha",
17472        state: State::PR,
17473    },
17474    Municipio {
17475        ibge_code: 4121257,
17476        name: "Ramilândia",
17477        state: State::PR,
17478    },
17479    Municipio {
17480        ibge_code: 4121307,
17481        name: "Rancho Alegre",
17482        state: State::PR,
17483    },
17484    Municipio {
17485        ibge_code: 4121356,
17486        name: "Rancho Alegre D'Oeste",
17487        state: State::PR,
17488    },
17489    Municipio {
17490        ibge_code: 4121406,
17491        name: "Realeza",
17492        state: State::PR,
17493    },
17494    Municipio {
17495        ibge_code: 4121505,
17496        name: "Rebouças",
17497        state: State::PR,
17498    },
17499    Municipio {
17500        ibge_code: 4121604,
17501        name: "Renascença",
17502        state: State::PR,
17503    },
17504    Municipio {
17505        ibge_code: 4121703,
17506        name: "Reserva",
17507        state: State::PR,
17508    },
17509    Municipio {
17510        ibge_code: 4121752,
17511        name: "Reserva do Iguaçu",
17512        state: State::PR,
17513    },
17514    Municipio {
17515        ibge_code: 4121802,
17516        name: "Ribeirão Claro",
17517        state: State::PR,
17518    },
17519    Municipio {
17520        ibge_code: 4121901,
17521        name: "Ribeirão do Pinhal",
17522        state: State::PR,
17523    },
17524    Municipio {
17525        ibge_code: 4122008,
17526        name: "Rio Azul",
17527        state: State::PR,
17528    },
17529    Municipio {
17530        ibge_code: 4122107,
17531        name: "Rio Bom",
17532        state: State::PR,
17533    },
17534    Municipio {
17535        ibge_code: 4122156,
17536        name: "Rio Bonito do Iguaçu",
17537        state: State::PR,
17538    },
17539    Municipio {
17540        ibge_code: 4122172,
17541        name: "Rio Branco do Ivaí",
17542        state: State::PR,
17543    },
17544    Municipio {
17545        ibge_code: 4122206,
17546        name: "Rio Branco do Sul",
17547        state: State::PR,
17548    },
17549    Municipio {
17550        ibge_code: 4122305,
17551        name: "Rio Negro",
17552        state: State::PR,
17553    },
17554    Municipio {
17555        ibge_code: 4122404,
17556        name: "Rolândia",
17557        state: State::PR,
17558    },
17559    Municipio {
17560        ibge_code: 4122503,
17561        name: "Roncador",
17562        state: State::PR,
17563    },
17564    Municipio {
17565        ibge_code: 4122602,
17566        name: "Rondon",
17567        state: State::PR,
17568    },
17569    Municipio {
17570        ibge_code: 4122651,
17571        name: "Rosário do Ivaí",
17572        state: State::PR,
17573    },
17574    Municipio {
17575        ibge_code: 4122701,
17576        name: "Sabáudia",
17577        state: State::PR,
17578    },
17579    Municipio {
17580        ibge_code: 4122800,
17581        name: "Salgado Filho",
17582        state: State::PR,
17583    },
17584    Municipio {
17585        ibge_code: 4122909,
17586        name: "Salto do Itararé",
17587        state: State::PR,
17588    },
17589    Municipio {
17590        ibge_code: 4123006,
17591        name: "Salto do Lontra",
17592        state: State::PR,
17593    },
17594    Municipio {
17595        ibge_code: 4123105,
17596        name: "Santa Amélia",
17597        state: State::PR,
17598    },
17599    Municipio {
17600        ibge_code: 4123204,
17601        name: "Santa Cecília do Pavão",
17602        state: State::PR,
17603    },
17604    Municipio {
17605        ibge_code: 4123303,
17606        name: "Santa Cruz de Monte Castelo",
17607        state: State::PR,
17608    },
17609    Municipio {
17610        ibge_code: 4123402,
17611        name: "Santa Fé",
17612        state: State::PR,
17613    },
17614    Municipio {
17615        ibge_code: 4123501,
17616        name: "Santa Helena",
17617        state: State::PR,
17618    },
17619    Municipio {
17620        ibge_code: 4123600,
17621        name: "Santa Inês",
17622        state: State::PR,
17623    },
17624    Municipio {
17625        ibge_code: 4123709,
17626        name: "Santa Isabel do Ivaí",
17627        state: State::PR,
17628    },
17629    Municipio {
17630        ibge_code: 4123808,
17631        name: "Santa Izabel do Oeste",
17632        state: State::PR,
17633    },
17634    Municipio {
17635        ibge_code: 4123824,
17636        name: "Santa Lúcia",
17637        state: State::PR,
17638    },
17639    Municipio {
17640        ibge_code: 4123857,
17641        name: "Santa Maria do Oeste",
17642        state: State::PR,
17643    },
17644    Municipio {
17645        ibge_code: 4123907,
17646        name: "Santa Mariana",
17647        state: State::PR,
17648    },
17649    Municipio {
17650        ibge_code: 4123956,
17651        name: "Santa Mônica",
17652        state: State::PR,
17653    },
17654    Municipio {
17655        ibge_code: 4124020,
17656        name: "Santa Tereza do Oeste",
17657        state: State::PR,
17658    },
17659    Municipio {
17660        ibge_code: 4124053,
17661        name: "Santa Terezinha de Itaipu",
17662        state: State::PR,
17663    },
17664    Municipio {
17665        ibge_code: 4124004,
17666        name: "Santana do Itararé",
17667        state: State::PR,
17668    },
17669    Municipio {
17670        ibge_code: 4124103,
17671        name: "Santo Antônio da Platina",
17672        state: State::PR,
17673    },
17674    Municipio {
17675        ibge_code: 4124202,
17676        name: "Santo Antônio do Caiuá",
17677        state: State::PR,
17678    },
17679    Municipio {
17680        ibge_code: 4124301,
17681        name: "Santo Antônio do Paraíso",
17682        state: State::PR,
17683    },
17684    Municipio {
17685        ibge_code: 4124400,
17686        name: "Santo Antônio do Sudoeste",
17687        state: State::PR,
17688    },
17689    Municipio {
17690        ibge_code: 4124509,
17691        name: "Santo Inácio",
17692        state: State::PR,
17693    },
17694    Municipio {
17695        ibge_code: 4126207,
17696        name: "Sapopema",
17697        state: State::PR,
17698    },
17699    Municipio {
17700        ibge_code: 4126256,
17701        name: "Sarandi",
17702        state: State::PR,
17703    },
17704    Municipio {
17705        ibge_code: 4126272,
17706        name: "Saudade do Iguaçu",
17707        state: State::PR,
17708    },
17709    Municipio {
17710        ibge_code: 4126306,
17711        name: "Sengés",
17712        state: State::PR,
17713    },
17714    Municipio {
17715        ibge_code: 4126355,
17716        name: "Serranópolis do Iguaçu",
17717        state: State::PR,
17718    },
17719    Municipio {
17720        ibge_code: 4126405,
17721        name: "Sertaneja",
17722        state: State::PR,
17723    },
17724    Municipio {
17725        ibge_code: 4126504,
17726        name: "Sertanópolis",
17727        state: State::PR,
17728    },
17729    Municipio {
17730        ibge_code: 4126603,
17731        name: "Siqueira Campos",
17732        state: State::PR,
17733    },
17734    Municipio {
17735        ibge_code: 4126652,
17736        name: "Sulina",
17737        state: State::PR,
17738    },
17739    Municipio {
17740        ibge_code: 4124608,
17741        name: "São Carlos do Ivaí",
17742        state: State::PR,
17743    },
17744    Municipio {
17745        ibge_code: 4124707,
17746        name: "São Jerônimo da Serra",
17747        state: State::PR,
17748    },
17749    Municipio {
17750        ibge_code: 4125209,
17751        name: "São Jorge d'Oeste",
17752        state: State::PR,
17753    },
17754    Municipio {
17755        ibge_code: 4125308,
17756        name: "São Jorge do Ivaí",
17757        state: State::PR,
17758    },
17759    Municipio {
17760        ibge_code: 4125357,
17761        name: "São Jorge do Patrocínio",
17762        state: State::PR,
17763    },
17764    Municipio {
17765        ibge_code: 4125407,
17766        name: "São José da Boa Vista",
17767        state: State::PR,
17768    },
17769    Municipio {
17770        ibge_code: 4125456,
17771        name: "São José das Palmeiras",
17772        state: State::PR,
17773    },
17774    Municipio {
17775        ibge_code: 4125506,
17776        name: "São José dos Pinhais",
17777        state: State::PR,
17778    },
17779    Municipio {
17780        ibge_code: 4124806,
17781        name: "São João",
17782        state: State::PR,
17783    },
17784    Municipio {
17785        ibge_code: 4124905,
17786        name: "São João do Caiuá",
17787        state: State::PR,
17788    },
17789    Municipio {
17790        ibge_code: 4125001,
17791        name: "São João do Ivaí",
17792        state: State::PR,
17793    },
17794    Municipio {
17795        ibge_code: 4125100,
17796        name: "São João do Triunfo",
17797        state: State::PR,
17798    },
17799    Municipio {
17800        ibge_code: 4125555,
17801        name: "São Manoel do Paraná",
17802        state: State::PR,
17803    },
17804    Municipio {
17805        ibge_code: 4125605,
17806        name: "São Mateus do Sul",
17807        state: State::PR,
17808    },
17809    Municipio {
17810        ibge_code: 4125704,
17811        name: "São Miguel do Iguaçu",
17812        state: State::PR,
17813    },
17814    Municipio {
17815        ibge_code: 4125753,
17816        name: "São Pedro do Iguaçu",
17817        state: State::PR,
17818    },
17819    Municipio {
17820        ibge_code: 4125803,
17821        name: "São Pedro do Ivaí",
17822        state: State::PR,
17823    },
17824    Municipio {
17825        ibge_code: 4125902,
17826        name: "São Pedro do Paraná",
17827        state: State::PR,
17828    },
17829    Municipio {
17830        ibge_code: 4126009,
17831        name: "São Sebastião da Amoreira",
17832        state: State::PR,
17833    },
17834    Municipio {
17835        ibge_code: 4126108,
17836        name: "São Tomé",
17837        state: State::PR,
17838    },
17839    Municipio {
17840        ibge_code: 4126678,
17841        name: "Tamarana",
17842        state: State::PR,
17843    },
17844    Municipio {
17845        ibge_code: 4126702,
17846        name: "Tamboara",
17847        state: State::PR,
17848    },
17849    Municipio {
17850        ibge_code: 4126801,
17851        name: "Tapejara",
17852        state: State::PR,
17853    },
17854    Municipio {
17855        ibge_code: 4126900,
17856        name: "Tapira",
17857        state: State::PR,
17858    },
17859    Municipio {
17860        ibge_code: 4127007,
17861        name: "Teixeira Soares",
17862        state: State::PR,
17863    },
17864    Municipio {
17865        ibge_code: 4127106,
17866        name: "Telêmaco Borba",
17867        state: State::PR,
17868    },
17869    Municipio {
17870        ibge_code: 4127205,
17871        name: "Terra Boa",
17872        state: State::PR,
17873    },
17874    Municipio {
17875        ibge_code: 4127304,
17876        name: "Terra Rica",
17877        state: State::PR,
17878    },
17879    Municipio {
17880        ibge_code: 4127403,
17881        name: "Terra Roxa",
17882        state: State::PR,
17883    },
17884    Municipio {
17885        ibge_code: 4127502,
17886        name: "Tibagi",
17887        state: State::PR,
17888    },
17889    Municipio {
17890        ibge_code: 4127601,
17891        name: "Tijucas do Sul",
17892        state: State::PR,
17893    },
17894    Municipio {
17895        ibge_code: 4127700,
17896        name: "Toledo",
17897        state: State::PR,
17898    },
17899    Municipio {
17900        ibge_code: 4127809,
17901        name: "Tomazina",
17902        state: State::PR,
17903    },
17904    Municipio {
17905        ibge_code: 4127858,
17906        name: "Três Barras do Paraná",
17907        state: State::PR,
17908    },
17909    Municipio {
17910        ibge_code: 4127882,
17911        name: "Tunas do Paraná",
17912        state: State::PR,
17913    },
17914    Municipio {
17915        ibge_code: 4127908,
17916        name: "Tuneiras do Oeste",
17917        state: State::PR,
17918    },
17919    Municipio {
17920        ibge_code: 4127957,
17921        name: "Tupãssi",
17922        state: State::PR,
17923    },
17924    Municipio {
17925        ibge_code: 4127965,
17926        name: "Turvo",
17927        state: State::PR,
17928    },
17929    Municipio {
17930        ibge_code: 4128005,
17931        name: "Ubiratã",
17932        state: State::PR,
17933    },
17934    Municipio {
17935        ibge_code: 4128104,
17936        name: "Umuarama",
17937        state: State::PR,
17938    },
17939    Municipio {
17940        ibge_code: 4128302,
17941        name: "Uniflor",
17942        state: State::PR,
17943    },
17944    Municipio {
17945        ibge_code: 4128203,
17946        name: "União da Vitória",
17947        state: State::PR,
17948    },
17949    Municipio {
17950        ibge_code: 4128401,
17951        name: "Uraí",
17952        state: State::PR,
17953    },
17954    Municipio {
17955        ibge_code: 4128534,
17956        name: "Ventania",
17957        state: State::PR,
17958    },
17959    Municipio {
17960        ibge_code: 4128559,
17961        name: "Vera Cruz do Oeste",
17962        state: State::PR,
17963    },
17964    Municipio {
17965        ibge_code: 4128609,
17966        name: "Verê",
17967        state: State::PR,
17968    },
17969    Municipio {
17970        ibge_code: 4128658,
17971        name: "Virmond",
17972        state: State::PR,
17973    },
17974    Municipio {
17975        ibge_code: 4128708,
17976        name: "Vitorino",
17977        state: State::PR,
17978    },
17979    Municipio {
17980        ibge_code: 4128500,
17981        name: "Wenceslau Braz",
17982        state: State::PR,
17983    },
17984    Municipio {
17985        ibge_code: 4128807,
17986        name: "Xambrê",
17987        state: State::PR,
17988    },
17989    Municipio {
17990        ibge_code: 4101150,
17991        name: "Ângulo",
17992        state: State::PR,
17993    },
17994    Municipio {
17995        ibge_code: 3300100,
17996        name: "Angra dos Reis",
17997        state: State::RJ,
17998    },
17999    Municipio {
18000        ibge_code: 3300159,
18001        name: "Aperibé",
18002        state: State::RJ,
18003    },
18004    Municipio {
18005        ibge_code: 3300209,
18006        name: "Araruama",
18007        state: State::RJ,
18008    },
18009    Municipio {
18010        ibge_code: 3300225,
18011        name: "Areal",
18012        state: State::RJ,
18013    },
18014    Municipio {
18015        ibge_code: 3300233,
18016        name: "Armação dos Búzios",
18017        state: State::RJ,
18018    },
18019    Municipio {
18020        ibge_code: 3300258,
18021        name: "Arraial do Cabo",
18022        state: State::RJ,
18023    },
18024    Municipio {
18025        ibge_code: 3300407,
18026        name: "Barra Mansa",
18027        state: State::RJ,
18028    },
18029    Municipio {
18030        ibge_code: 3300308,
18031        name: "Barra do Piraí",
18032        state: State::RJ,
18033    },
18034    Municipio {
18035        ibge_code: 3300456,
18036        name: "Belford Roxo",
18037        state: State::RJ,
18038    },
18039    Municipio {
18040        ibge_code: 3300506,
18041        name: "Bom Jardim",
18042        state: State::RJ,
18043    },
18044    Municipio {
18045        ibge_code: 3300605,
18046        name: "Bom Jesus do Itabapoana",
18047        state: State::RJ,
18048    },
18049    Municipio {
18050        ibge_code: 3300704,
18051        name: "Cabo Frio",
18052        state: State::RJ,
18053    },
18054    Municipio {
18055        ibge_code: 3300803,
18056        name: "Cachoeiras de Macacu",
18057        state: State::RJ,
18058    },
18059    Municipio {
18060        ibge_code: 3300902,
18061        name: "Cambuci",
18062        state: State::RJ,
18063    },
18064    Municipio {
18065        ibge_code: 3301009,
18066        name: "Campos dos Goytacazes",
18067        state: State::RJ,
18068    },
18069    Municipio {
18070        ibge_code: 3301108,
18071        name: "Cantagalo",
18072        state: State::RJ,
18073    },
18074    Municipio {
18075        ibge_code: 3300936,
18076        name: "Carapebus",
18077        state: State::RJ,
18078    },
18079    Municipio {
18080        ibge_code: 3301157,
18081        name: "Cardoso Moreira",
18082        state: State::RJ,
18083    },
18084    Municipio {
18085        ibge_code: 3301207,
18086        name: "Carmo",
18087        state: State::RJ,
18088    },
18089    Municipio {
18090        ibge_code: 3301306,
18091        name: "Casimiro de Abreu",
18092        state: State::RJ,
18093    },
18094    Municipio {
18095        ibge_code: 3300951,
18096        name: "Comendador Levy Gasparian",
18097        state: State::RJ,
18098    },
18099    Municipio {
18100        ibge_code: 3301405,
18101        name: "Conceição de Macabu",
18102        state: State::RJ,
18103    },
18104    Municipio {
18105        ibge_code: 3301504,
18106        name: "Cordeiro",
18107        state: State::RJ,
18108    },
18109    Municipio {
18110        ibge_code: 3301603,
18111        name: "Duas Barras",
18112        state: State::RJ,
18113    },
18114    Municipio {
18115        ibge_code: 3301702,
18116        name: "Duque de Caxias",
18117        state: State::RJ,
18118    },
18119    Municipio {
18120        ibge_code: 3301801,
18121        name: "Engenheiro Paulo de Frontin",
18122        state: State::RJ,
18123    },
18124    Municipio {
18125        ibge_code: 3301850,
18126        name: "Guapimirim",
18127        state: State::RJ,
18128    },
18129    Municipio {
18130        ibge_code: 3301876,
18131        name: "Iguaba Grande",
18132        state: State::RJ,
18133    },
18134    Municipio {
18135        ibge_code: 3301900,
18136        name: "Itaboraí",
18137        state: State::RJ,
18138    },
18139    Municipio {
18140        ibge_code: 3302007,
18141        name: "Itaguaí",
18142        state: State::RJ,
18143    },
18144    Municipio {
18145        ibge_code: 3302056,
18146        name: "Italva",
18147        state: State::RJ,
18148    },
18149    Municipio {
18150        ibge_code: 3302106,
18151        name: "Itaocara",
18152        state: State::RJ,
18153    },
18154    Municipio {
18155        ibge_code: 3302205,
18156        name: "Itaperuna",
18157        state: State::RJ,
18158    },
18159    Municipio {
18160        ibge_code: 3302254,
18161        name: "Itatiaia",
18162        state: State::RJ,
18163    },
18164    Municipio {
18165        ibge_code: 3302270,
18166        name: "Japeri",
18167        state: State::RJ,
18168    },
18169    Municipio {
18170        ibge_code: 3302304,
18171        name: "Laje do Muriaé",
18172        state: State::RJ,
18173    },
18174    Municipio {
18175        ibge_code: 3302403,
18176        name: "Macaé",
18177        state: State::RJ,
18178    },
18179    Municipio {
18180        ibge_code: 3302452,
18181        name: "Macuco",
18182        state: State::RJ,
18183    },
18184    Municipio {
18185        ibge_code: 3302502,
18186        name: "Magé",
18187        state: State::RJ,
18188    },
18189    Municipio {
18190        ibge_code: 3302601,
18191        name: "Mangaratiba",
18192        state: State::RJ,
18193    },
18194    Municipio {
18195        ibge_code: 3302700,
18196        name: "Maricá",
18197        state: State::RJ,
18198    },
18199    Municipio {
18200        ibge_code: 3302809,
18201        name: "Mendes",
18202        state: State::RJ,
18203    },
18204    Municipio {
18205        ibge_code: 3302858,
18206        name: "Mesquita",
18207        state: State::RJ,
18208    },
18209    Municipio {
18210        ibge_code: 3302908,
18211        name: "Miguel Pereira",
18212        state: State::RJ,
18213    },
18214    Municipio {
18215        ibge_code: 3303005,
18216        name: "Miracema",
18217        state: State::RJ,
18218    },
18219    Municipio {
18220        ibge_code: 3303104,
18221        name: "Natividade",
18222        state: State::RJ,
18223    },
18224    Municipio {
18225        ibge_code: 3303203,
18226        name: "Nilópolis",
18227        state: State::RJ,
18228    },
18229    Municipio {
18230        ibge_code: 3303302,
18231        name: "Niterói",
18232        state: State::RJ,
18233    },
18234    Municipio {
18235        ibge_code: 3303401,
18236        name: "Nova Friburgo",
18237        state: State::RJ,
18238    },
18239    Municipio {
18240        ibge_code: 3303500,
18241        name: "Nova Iguaçu",
18242        state: State::RJ,
18243    },
18244    Municipio {
18245        ibge_code: 3303609,
18246        name: "Paracambi",
18247        state: State::RJ,
18248    },
18249    Municipio {
18250        ibge_code: 3303807,
18251        name: "Paraty",
18252        state: State::RJ,
18253    },
18254    Municipio {
18255        ibge_code: 3303708,
18256        name: "Paraíba do Sul",
18257        state: State::RJ,
18258    },
18259    Municipio {
18260        ibge_code: 3303856,
18261        name: "Paty do Alferes",
18262        state: State::RJ,
18263    },
18264    Municipio {
18265        ibge_code: 3303906,
18266        name: "Petrópolis",
18267        state: State::RJ,
18268    },
18269    Municipio {
18270        ibge_code: 3303955,
18271        name: "Pinheiral",
18272        state: State::RJ,
18273    },
18274    Municipio {
18275        ibge_code: 3304003,
18276        name: "Piraí",
18277        state: State::RJ,
18278    },
18279    Municipio {
18280        ibge_code: 3304102,
18281        name: "Porciúncula",
18282        state: State::RJ,
18283    },
18284    Municipio {
18285        ibge_code: 3304110,
18286        name: "Porto Real",
18287        state: State::RJ,
18288    },
18289    Municipio {
18290        ibge_code: 3304128,
18291        name: "Quatis",
18292        state: State::RJ,
18293    },
18294    Municipio {
18295        ibge_code: 3304144,
18296        name: "Queimados",
18297        state: State::RJ,
18298    },
18299    Municipio {
18300        ibge_code: 3304151,
18301        name: "Quissamã",
18302        state: State::RJ,
18303    },
18304    Municipio {
18305        ibge_code: 3304201,
18306        name: "Resende",
18307        state: State::RJ,
18308    },
18309    Municipio {
18310        ibge_code: 3304300,
18311        name: "Rio Bonito",
18312        state: State::RJ,
18313    },
18314    Municipio {
18315        ibge_code: 3304409,
18316        name: "Rio Claro",
18317        state: State::RJ,
18318    },
18319    Municipio {
18320        ibge_code: 3304508,
18321        name: "Rio das Flores",
18322        state: State::RJ,
18323    },
18324    Municipio {
18325        ibge_code: 3304524,
18326        name: "Rio das Ostras",
18327        state: State::RJ,
18328    },
18329    Municipio {
18330        ibge_code: 3304557,
18331        name: "Rio de Janeiro",
18332        state: State::RJ,
18333    },
18334    Municipio {
18335        ibge_code: 3304607,
18336        name: "Santa Maria Madalena",
18337        state: State::RJ,
18338    },
18339    Municipio {
18340        ibge_code: 3304706,
18341        name: "Santo Antônio de Pádua",
18342        state: State::RJ,
18343    },
18344    Municipio {
18345        ibge_code: 3305406,
18346        name: "Sapucaia",
18347        state: State::RJ,
18348    },
18349    Municipio {
18350        ibge_code: 3305505,
18351        name: "Saquarema",
18352        state: State::RJ,
18353    },
18354    Municipio {
18355        ibge_code: 3305554,
18356        name: "Seropédica",
18357        state: State::RJ,
18358    },
18359    Municipio {
18360        ibge_code: 3305604,
18361        name: "Silva Jardim",
18362        state: State::RJ,
18363    },
18364    Municipio {
18365        ibge_code: 3305703,
18366        name: "Sumidouro",
18367        state: State::RJ,
18368    },
18369    Municipio {
18370        ibge_code: 3304805,
18371        name: "São Fidélis",
18372        state: State::RJ,
18373    },
18374    Municipio {
18375        ibge_code: 3304755,
18376        name: "São Francisco de Itabapoana",
18377        state: State::RJ,
18378    },
18379    Municipio {
18380        ibge_code: 3304904,
18381        name: "São Gonçalo",
18382        state: State::RJ,
18383    },
18384    Municipio {
18385        ibge_code: 3305133,
18386        name: "São José de Ubá",
18387        state: State::RJ,
18388    },
18389    Municipio {
18390        ibge_code: 3305158,
18391        name: "São José do Vale do Rio Preto",
18392        state: State::RJ,
18393    },
18394    Municipio {
18395        ibge_code: 3305000,
18396        name: "São João da Barra",
18397        state: State::RJ,
18398    },
18399    Municipio {
18400        ibge_code: 3305109,
18401        name: "São João de Meriti",
18402        state: State::RJ,
18403    },
18404    Municipio {
18405        ibge_code: 3305208,
18406        name: "São Pedro da Aldeia",
18407        state: State::RJ,
18408    },
18409    Municipio {
18410        ibge_code: 3305307,
18411        name: "São Sebastião do Alto",
18412        state: State::RJ,
18413    },
18414    Municipio {
18415        ibge_code: 3305752,
18416        name: "Tanguá",
18417        state: State::RJ,
18418    },
18419    Municipio {
18420        ibge_code: 3305802,
18421        name: "Teresópolis",
18422        state: State::RJ,
18423    },
18424    Municipio {
18425        ibge_code: 3305901,
18426        name: "Trajano de Moraes",
18427        state: State::RJ,
18428    },
18429    Municipio {
18430        ibge_code: 3306008,
18431        name: "Três Rios",
18432        state: State::RJ,
18433    },
18434    Municipio {
18435        ibge_code: 3306107,
18436        name: "Valença",
18437        state: State::RJ,
18438    },
18439    Municipio {
18440        ibge_code: 3306156,
18441        name: "Varre-Sai",
18442        state: State::RJ,
18443    },
18444    Municipio {
18445        ibge_code: 3306206,
18446        name: "Vassouras",
18447        state: State::RJ,
18448    },
18449    Municipio {
18450        ibge_code: 3306305,
18451        name: "Volta Redonda",
18452        state: State::RJ,
18453    },
18454    Municipio {
18455        ibge_code: 2400109,
18456        name: "Acari",
18457        state: State::RN,
18458    },
18459    Municipio {
18460        ibge_code: 2400307,
18461        name: "Afonso Bezerra",
18462        state: State::RN,
18463    },
18464    Municipio {
18465        ibge_code: 2400505,
18466        name: "Alexandria",
18467        state: State::RN,
18468    },
18469    Municipio {
18470        ibge_code: 2400604,
18471        name: "Almino Afonso",
18472        state: State::RN,
18473    },
18474    Municipio {
18475        ibge_code: 2400703,
18476        name: "Alto do Rodrigues",
18477        state: State::RN,
18478    },
18479    Municipio {
18480        ibge_code: 2400802,
18481        name: "Angicos",
18482        state: State::RN,
18483    },
18484    Municipio {
18485        ibge_code: 2400901,
18486        name: "Antônio Martins",
18487        state: State::RN,
18488    },
18489    Municipio {
18490        ibge_code: 2401008,
18491        name: "Apodi",
18492        state: State::RN,
18493    },
18494    Municipio {
18495        ibge_code: 2401107,
18496        name: "Areia Branca",
18497        state: State::RN,
18498    },
18499    Municipio {
18500        ibge_code: 2401206,
18501        name: "Arez",
18502        state: State::RN,
18503    },
18504    Municipio {
18505        ibge_code: 2400208,
18506        name: "Assú",
18507        state: State::RN,
18508    },
18509    Municipio {
18510        ibge_code: 2401453,
18511        name: "Baraúna",
18512        state: State::RN,
18513    },
18514    Municipio {
18515        ibge_code: 2401503,
18516        name: "Barcelona",
18517        state: State::RN,
18518    },
18519    Municipio {
18520        ibge_code: 2401404,
18521        name: "Baía Formosa",
18522        state: State::RN,
18523    },
18524    Municipio {
18525        ibge_code: 2401602,
18526        name: "Bento Fernandes",
18527        state: State::RN,
18528    },
18529    Municipio {
18530        ibge_code: 2401651,
18531        name: "Bodó",
18532        state: State::RN,
18533    },
18534    Municipio {
18535        ibge_code: 2401701,
18536        name: "Bom Jesus",
18537        state: State::RN,
18538    },
18539    Municipio {
18540        ibge_code: 2401800,
18541        name: "Brejinho",
18542        state: State::RN,
18543    },
18544    Municipio {
18545        ibge_code: 2402006,
18546        name: "Caicó",
18547        state: State::RN,
18548    },
18549    Municipio {
18550        ibge_code: 2401859,
18551        name: "Caiçara do Norte",
18552        state: State::RN,
18553    },
18554    Municipio {
18555        ibge_code: 2401909,
18556        name: "Caiçara do Rio do Vento",
18557        state: State::RN,
18558    },
18559    Municipio {
18560        ibge_code: 2401305,
18561        name: "Campo Grande",
18562        state: State::RN,
18563    },
18564    Municipio {
18565        ibge_code: 2402105,
18566        name: "Campo Redondo",
18567        state: State::RN,
18568    },
18569    Municipio {
18570        ibge_code: 2402204,
18571        name: "Canguaretama",
18572        state: State::RN,
18573    },
18574    Municipio {
18575        ibge_code: 2402303,
18576        name: "Caraúbas",
18577        state: State::RN,
18578    },
18579    Municipio {
18580        ibge_code: 2402501,
18581        name: "Carnaubais",
18582        state: State::RN,
18583    },
18584    Municipio {
18585        ibge_code: 2402402,
18586        name: "Carnaúba dos Dantas",
18587        state: State::RN,
18588    },
18589    Municipio {
18590        ibge_code: 2402600,
18591        name: "Ceará-Mirim",
18592        state: State::RN,
18593    },
18594    Municipio {
18595        ibge_code: 2402709,
18596        name: "Cerro Corá",
18597        state: State::RN,
18598    },
18599    Municipio {
18600        ibge_code: 2402808,
18601        name: "Coronel Ezequiel",
18602        state: State::RN,
18603    },
18604    Municipio {
18605        ibge_code: 2402907,
18606        name: "Coronel João Pessoa",
18607        state: State::RN,
18608    },
18609    Municipio {
18610        ibge_code: 2403004,
18611        name: "Cruzeta",
18612        state: State::RN,
18613    },
18614    Municipio {
18615        ibge_code: 2403103,
18616        name: "Currais Novos",
18617        state: State::RN,
18618    },
18619    Municipio {
18620        ibge_code: 2403202,
18621        name: "Doutor Severiano",
18622        state: State::RN,
18623    },
18624    Municipio {
18625        ibge_code: 2403301,
18626        name: "Encanto",
18627        state: State::RN,
18628    },
18629    Municipio {
18630        ibge_code: 2403400,
18631        name: "Equador",
18632        state: State::RN,
18633    },
18634    Municipio {
18635        ibge_code: 2403509,
18636        name: "Espírito Santo",
18637        state: State::RN,
18638    },
18639    Municipio {
18640        ibge_code: 2403608,
18641        name: "Extremoz",
18642        state: State::RN,
18643    },
18644    Municipio {
18645        ibge_code: 2403707,
18646        name: "Felipe Guerra",
18647        state: State::RN,
18648    },
18649    Municipio {
18650        ibge_code: 2403756,
18651        name: "Fernando Pedroza",
18652        state: State::RN,
18653    },
18654    Municipio {
18655        ibge_code: 2403806,
18656        name: "Florânia",
18657        state: State::RN,
18658    },
18659    Municipio {
18660        ibge_code: 2403905,
18661        name: "Francisco Dantas",
18662        state: State::RN,
18663    },
18664    Municipio {
18665        ibge_code: 2404002,
18666        name: "Frutuoso Gomes",
18667        state: State::RN,
18668    },
18669    Municipio {
18670        ibge_code: 2404101,
18671        name: "Galinhos",
18672        state: State::RN,
18673    },
18674    Municipio {
18675        ibge_code: 2404200,
18676        name: "Goianinha",
18677        state: State::RN,
18678    },
18679    Municipio {
18680        ibge_code: 2404309,
18681        name: "Governador Dix-Sept Rosado",
18682        state: State::RN,
18683    },
18684    Municipio {
18685        ibge_code: 2404408,
18686        name: "Grossos",
18687        state: State::RN,
18688    },
18689    Municipio {
18690        ibge_code: 2404507,
18691        name: "Guamaré",
18692        state: State::RN,
18693    },
18694    Municipio {
18695        ibge_code: 2404606,
18696        name: "Ielmo Marinho",
18697        state: State::RN,
18698    },
18699    Municipio {
18700        ibge_code: 2404705,
18701        name: "Ipanguaçu",
18702        state: State::RN,
18703    },
18704    Municipio {
18705        ibge_code: 2404804,
18706        name: "Ipueira",
18707        state: State::RN,
18708    },
18709    Municipio {
18710        ibge_code: 2404853,
18711        name: "Itajá",
18712        state: State::RN,
18713    },
18714    Municipio {
18715        ibge_code: 2404903,
18716        name: "Itaú",
18717        state: State::RN,
18718    },
18719    Municipio {
18720        ibge_code: 2405108,
18721        name: "Jandaíra",
18722        state: State::RN,
18723    },
18724    Municipio {
18725        ibge_code: 2405207,
18726        name: "Janduís",
18727        state: State::RN,
18728    },
18729    Municipio {
18730        ibge_code: 2405306,
18731        name: "Januário Cicco",
18732        state: State::RN,
18733    },
18734    Municipio {
18735        ibge_code: 2405405,
18736        name: "Japi",
18737        state: State::RN,
18738    },
18739    Municipio {
18740        ibge_code: 2405504,
18741        name: "Jardim de Angicos",
18742        state: State::RN,
18743    },
18744    Municipio {
18745        ibge_code: 2405603,
18746        name: "Jardim de Piranhas",
18747        state: State::RN,
18748    },
18749    Municipio {
18750        ibge_code: 2405702,
18751        name: "Jardim do Seridó",
18752        state: State::RN,
18753    },
18754    Municipio {
18755        ibge_code: 2405009,
18756        name: "Jaçanã",
18757        state: State::RN,
18758    },
18759    Municipio {
18760        ibge_code: 2406007,
18761        name: "José da Penha",
18762        state: State::RN,
18763    },
18764    Municipio {
18765        ibge_code: 2405801,
18766        name: "João Câmara",
18767        state: State::RN,
18768    },
18769    Municipio {
18770        ibge_code: 2405900,
18771        name: "João Dias",
18772        state: State::RN,
18773    },
18774    Municipio {
18775        ibge_code: 2406106,
18776        name: "Jucurutu",
18777        state: State::RN,
18778    },
18779    Municipio {
18780        ibge_code: 2406155,
18781        name: "Jundiá",
18782        state: State::RN,
18783    },
18784    Municipio {
18785        ibge_code: 2406502,
18786        name: "Lagoa Nova",
18787        state: State::RN,
18788    },
18789    Municipio {
18790        ibge_code: 2406601,
18791        name: "Lagoa Salgada",
18792        state: State::RN,
18793    },
18794    Municipio {
18795        ibge_code: 2406205,
18796        name: "Lagoa d'Anta",
18797        state: State::RN,
18798    },
18799    Municipio {
18800        ibge_code: 2406304,
18801        name: "Lagoa de Pedras",
18802        state: State::RN,
18803    },
18804    Municipio {
18805        ibge_code: 2406403,
18806        name: "Lagoa de Velhos",
18807        state: State::RN,
18808    },
18809    Municipio {
18810        ibge_code: 2406700,
18811        name: "Lajes",
18812        state: State::RN,
18813    },
18814    Municipio {
18815        ibge_code: 2406809,
18816        name: "Lajes Pintadas",
18817        state: State::RN,
18818    },
18819    Municipio {
18820        ibge_code: 2406908,
18821        name: "Lucrécia",
18822        state: State::RN,
18823    },
18824    Municipio {
18825        ibge_code: 2407005,
18826        name: "Luís Gomes",
18827        state: State::RN,
18828    },
18829    Municipio {
18830        ibge_code: 2407203,
18831        name: "Macau",
18832        state: State::RN,
18833    },
18834    Municipio {
18835        ibge_code: 2407104,
18836        name: "Macaíba",
18837        state: State::RN,
18838    },
18839    Municipio {
18840        ibge_code: 2407252,
18841        name: "Major Sales",
18842        state: State::RN,
18843    },
18844    Municipio {
18845        ibge_code: 2407302,
18846        name: "Marcelino Vieira",
18847        state: State::RN,
18848    },
18849    Municipio {
18850        ibge_code: 2407401,
18851        name: "Martins",
18852        state: State::RN,
18853    },
18854    Municipio {
18855        ibge_code: 2407500,
18856        name: "Maxaranguape",
18857        state: State::RN,
18858    },
18859    Municipio {
18860        ibge_code: 2407609,
18861        name: "Messias Targino",
18862        state: State::RN,
18863    },
18864    Municipio {
18865        ibge_code: 2407708,
18866        name: "Montanhas",
18867        state: State::RN,
18868    },
18869    Municipio {
18870        ibge_code: 2407807,
18871        name: "Monte Alegre",
18872        state: State::RN,
18873    },
18874    Municipio {
18875        ibge_code: 2407906,
18876        name: "Monte das Gameleiras",
18877        state: State::RN,
18878    },
18879    Municipio {
18880        ibge_code: 2408003,
18881        name: "Mossoró",
18882        state: State::RN,
18883    },
18884    Municipio {
18885        ibge_code: 2408102,
18886        name: "Natal",
18887        state: State::RN,
18888    },
18889    Municipio {
18890        ibge_code: 2408300,
18891        name: "Nova Cruz",
18892        state: State::RN,
18893    },
18894    Municipio {
18895        ibge_code: 2408201,
18896        name: "Nísia Floresta",
18897        state: State::RN,
18898    },
18899    Municipio {
18900        ibge_code: 2408409,
18901        name: "Olho d'Água do Borges",
18902        state: State::RN,
18903    },
18904    Municipio {
18905        ibge_code: 2408508,
18906        name: "Ouro Branco",
18907        state: State::RN,
18908    },
18909    Municipio {
18910        ibge_code: 2408607,
18911        name: "Paraná",
18912        state: State::RN,
18913    },
18914    Municipio {
18915        ibge_code: 2408805,
18916        name: "Parazinho",
18917        state: State::RN,
18918    },
18919    Municipio {
18920        ibge_code: 2408706,
18921        name: "Paraú",
18922        state: State::RN,
18923    },
18924    Municipio {
18925        ibge_code: 2408904,
18926        name: "Parelhas",
18927        state: State::RN,
18928    },
18929    Municipio {
18930        ibge_code: 2403251,
18931        name: "Parnamirim",
18932        state: State::RN,
18933    },
18934    Municipio {
18935        ibge_code: 2409100,
18936        name: "Passa e Fica",
18937        state: State::RN,
18938    },
18939    Municipio {
18940        ibge_code: 2409209,
18941        name: "Passagem",
18942        state: State::RN,
18943    },
18944    Municipio {
18945        ibge_code: 2409308,
18946        name: "Patu",
18947        state: State::RN,
18948    },
18949    Municipio {
18950        ibge_code: 2409407,
18951        name: "Pau dos Ferros",
18952        state: State::RN,
18953    },
18954    Municipio {
18955        ibge_code: 2409506,
18956        name: "Pedra Grande",
18957        state: State::RN,
18958    },
18959    Municipio {
18960        ibge_code: 2409605,
18961        name: "Pedra Preta",
18962        state: State::RN,
18963    },
18964    Municipio {
18965        ibge_code: 2409704,
18966        name: "Pedro Avelino",
18967        state: State::RN,
18968    },
18969    Municipio {
18970        ibge_code: 2409803,
18971        name: "Pedro Velho",
18972        state: State::RN,
18973    },
18974    Municipio {
18975        ibge_code: 2409902,
18976        name: "Pendências",
18977        state: State::RN,
18978    },
18979    Municipio {
18980        ibge_code: 2410009,
18981        name: "Pilões",
18982        state: State::RN,
18983    },
18984    Municipio {
18985        ibge_code: 2410207,
18986        name: "Portalegre",
18987        state: State::RN,
18988    },
18989    Municipio {
18990        ibge_code: 2410256,
18991        name: "Porto do Mangue",
18992        state: State::RN,
18993    },
18994    Municipio {
18995        ibge_code: 2410108,
18996        name: "Poço Branco",
18997        state: State::RN,
18998    },
18999    Municipio {
19000        ibge_code: 2410405,
19001        name: "Pureza",
19002        state: State::RN,
19003    },
19004    Municipio {
19005        ibge_code: 2410504,
19006        name: "Rafael Fernandes",
19007        state: State::RN,
19008    },
19009    Municipio {
19010        ibge_code: 2410603,
19011        name: "Rafael Godeiro",
19012        state: State::RN,
19013    },
19014    Municipio {
19015        ibge_code: 2410702,
19016        name: "Riacho da Cruz",
19017        state: State::RN,
19018    },
19019    Municipio {
19020        ibge_code: 2410801,
19021        name: "Riacho de Santana",
19022        state: State::RN,
19023    },
19024    Municipio {
19025        ibge_code: 2410900,
19026        name: "Riachuelo",
19027        state: State::RN,
19028    },
19029    Municipio {
19030        ibge_code: 2408953,
19031        name: "Rio do Fogo",
19032        state: State::RN,
19033    },
19034    Municipio {
19035        ibge_code: 2411007,
19036        name: "Rodolfo Fernandes",
19037        state: State::RN,
19038    },
19039    Municipio {
19040        ibge_code: 2411106,
19041        name: "Ruy Barbosa",
19042        state: State::RN,
19043    },
19044    Municipio {
19045        ibge_code: 2411205,
19046        name: "Santa Cruz",
19047        state: State::RN,
19048    },
19049    Municipio {
19050        ibge_code: 2409332,
19051        name: "Santa Maria",
19052        state: State::RN,
19053    },
19054    Municipio {
19055        ibge_code: 2411403,
19056        name: "Santana do Matos",
19057        state: State::RN,
19058    },
19059    Municipio {
19060        ibge_code: 2411429,
19061        name: "Santana do Seridó",
19062        state: State::RN,
19063    },
19064    Municipio {
19065        ibge_code: 2411502,
19066        name: "Santo Antônio",
19067        state: State::RN,
19068    },
19069    Municipio {
19070        ibge_code: 2413102,
19071        name: "Senador Elói de Souza",
19072        state: State::RN,
19073    },
19074    Municipio {
19075        ibge_code: 2413201,
19076        name: "Senador Georgino Avelino",
19077        state: State::RN,
19078    },
19079    Municipio {
19080        ibge_code: 2410306,
19081        name: "Serra Caiada",
19082        state: State::RN,
19083    },
19084    Municipio {
19085        ibge_code: 2413409,
19086        name: "Serra Negra do Norte",
19087        state: State::RN,
19088    },
19089    Municipio {
19090        ibge_code: 2413300,
19091        name: "Serra de São Bento",
19092        state: State::RN,
19093    },
19094    Municipio {
19095        ibge_code: 2413359,
19096        name: "Serra do Mel",
19097        state: State::RN,
19098    },
19099    Municipio {
19100        ibge_code: 2413508,
19101        name: "Serrinha",
19102        state: State::RN,
19103    },
19104    Municipio {
19105        ibge_code: 2413557,
19106        name: "Serrinha dos Pintos",
19107        state: State::RN,
19108    },
19109    Municipio {
19110        ibge_code: 2413607,
19111        name: "Severiano Melo",
19112        state: State::RN,
19113    },
19114    Municipio {
19115        ibge_code: 2411601,
19116        name: "São Bento do Norte",
19117        state: State::RN,
19118    },
19119    Municipio {
19120        ibge_code: 2411700,
19121        name: "São Bento do Trairí",
19122        state: State::RN,
19123    },
19124    Municipio {
19125        ibge_code: 2411809,
19126        name: "São Fernando",
19127        state: State::RN,
19128    },
19129    Municipio {
19130        ibge_code: 2411908,
19131        name: "São Francisco do Oeste",
19132        state: State::RN,
19133    },
19134    Municipio {
19135        ibge_code: 2412005,
19136        name: "São Gonçalo do Amarante",
19137        state: State::RN,
19138    },
19139    Municipio {
19140        ibge_code: 2412203,
19141        name: "São José de Mipibu",
19142        state: State::RN,
19143    },
19144    Municipio {
19145        ibge_code: 2412302,
19146        name: "São José do Campestre",
19147        state: State::RN,
19148    },
19149    Municipio {
19150        ibge_code: 2412401,
19151        name: "São José do Seridó",
19152        state: State::RN,
19153    },
19154    Municipio {
19155        ibge_code: 2412104,
19156        name: "São João do Sabugi",
19157        state: State::RN,
19158    },
19159    Municipio {
19160        ibge_code: 2412500,
19161        name: "São Miguel",
19162        state: State::RN,
19163    },
19164    Municipio {
19165        ibge_code: 2412559,
19166        name: "São Miguel do Gostoso",
19167        state: State::RN,
19168    },
19169    Municipio {
19170        ibge_code: 2412609,
19171        name: "São Paulo do Potengi",
19172        state: State::RN,
19173    },
19174    Municipio {
19175        ibge_code: 2412708,
19176        name: "São Pedro",
19177        state: State::RN,
19178    },
19179    Municipio {
19180        ibge_code: 2412807,
19181        name: "São Rafael",
19182        state: State::RN,
19183    },
19184    Municipio {
19185        ibge_code: 2412906,
19186        name: "São Tomé",
19187        state: State::RN,
19188    },
19189    Municipio {
19190        ibge_code: 2413003,
19191        name: "São Vicente",
19192        state: State::RN,
19193    },
19194    Municipio {
19195        ibge_code: 2413706,
19196        name: "Sítio Novo",
19197        state: State::RN,
19198    },
19199    Municipio {
19200        ibge_code: 2413805,
19201        name: "Taboleiro Grande",
19202        state: State::RN,
19203    },
19204    Municipio {
19205        ibge_code: 2413904,
19206        name: "Taipu",
19207        state: State::RN,
19208    },
19209    Municipio {
19210        ibge_code: 2414001,
19211        name: "Tangará",
19212        state: State::RN,
19213    },
19214    Municipio {
19215        ibge_code: 2414100,
19216        name: "Tenente Ananias",
19217        state: State::RN,
19218    },
19219    Municipio {
19220        ibge_code: 2414159,
19221        name: "Tenente Laurentino Cruz",
19222        state: State::RN,
19223    },
19224    Municipio {
19225        ibge_code: 2411056,
19226        name: "Tibau",
19227        state: State::RN,
19228    },
19229    Municipio {
19230        ibge_code: 2414209,
19231        name: "Tibau do Sul",
19232        state: State::RN,
19233    },
19234    Municipio {
19235        ibge_code: 2414308,
19236        name: "Timbaúba dos Batistas",
19237        state: State::RN,
19238    },
19239    Municipio {
19240        ibge_code: 2414407,
19241        name: "Touros",
19242        state: State::RN,
19243    },
19244    Municipio {
19245        ibge_code: 2414456,
19246        name: "Triunfo Potiguar",
19247        state: State::RN,
19248    },
19249    Municipio {
19250        ibge_code: 2414506,
19251        name: "Umarizal",
19252        state: State::RN,
19253    },
19254    Municipio {
19255        ibge_code: 2414605,
19256        name: "Upanema",
19257        state: State::RN,
19258    },
19259    Municipio {
19260        ibge_code: 2414753,
19261        name: "Venha-Ver",
19262        state: State::RN,
19263    },
19264    Municipio {
19265        ibge_code: 2414803,
19266        name: "Vera Cruz",
19267        state: State::RN,
19268    },
19269    Municipio {
19270        ibge_code: 2415008,
19271        name: "Vila Flor",
19272        state: State::RN,
19273    },
19274    Municipio {
19275        ibge_code: 2414902,
19276        name: "Viçosa",
19277        state: State::RN,
19278    },
19279    Municipio {
19280        ibge_code: 2414704,
19281        name: "Várzea",
19282        state: State::RN,
19283    },
19284    Municipio {
19285        ibge_code: 2400406,
19286        name: "Água Nova",
19287        state: State::RN,
19288    },
19289    Municipio {
19290        ibge_code: 1100015,
19291        name: "Alta Floresta D'Oeste",
19292        state: State::RO,
19293    },
19294    Municipio {
19295        ibge_code: 1100379,
19296        name: "Alto Alegre dos Parecis",
19297        state: State::RO,
19298    },
19299    Municipio {
19300        ibge_code: 1100403,
19301        name: "Alto Paraíso",
19302        state: State::RO,
19303    },
19304    Municipio {
19305        ibge_code: 1100346,
19306        name: "Alvorada D'Oeste",
19307        state: State::RO,
19308    },
19309    Municipio {
19310        ibge_code: 1100023,
19311        name: "Ariquemes",
19312        state: State::RO,
19313    },
19314    Municipio {
19315        ibge_code: 1100452,
19316        name: "Buritis",
19317        state: State::RO,
19318    },
19319    Municipio {
19320        ibge_code: 1100031,
19321        name: "Cabixi",
19322        state: State::RO,
19323    },
19324    Municipio {
19325        ibge_code: 1100601,
19326        name: "Cacaulândia",
19327        state: State::RO,
19328    },
19329    Municipio {
19330        ibge_code: 1100049,
19331        name: "Cacoal",
19332        state: State::RO,
19333    },
19334    Municipio {
19335        ibge_code: 1100700,
19336        name: "Campo Novo de Rondônia",
19337        state: State::RO,
19338    },
19339    Municipio {
19340        ibge_code: 1100809,
19341        name: "Candeias do Jamari",
19342        state: State::RO,
19343    },
19344    Municipio {
19345        ibge_code: 1100908,
19346        name: "Castanheiras",
19347        state: State::RO,
19348    },
19349    Municipio {
19350        ibge_code: 1100056,
19351        name: "Cerejeiras",
19352        state: State::RO,
19353    },
19354    Municipio {
19355        ibge_code: 1100924,
19356        name: "Chupinguaia",
19357        state: State::RO,
19358    },
19359    Municipio {
19360        ibge_code: 1100064,
19361        name: "Colorado do Oeste",
19362        state: State::RO,
19363    },
19364    Municipio {
19365        ibge_code: 1100072,
19366        name: "Corumbiara",
19367        state: State::RO,
19368    },
19369    Municipio {
19370        ibge_code: 1100080,
19371        name: "Costa Marques",
19372        state: State::RO,
19373    },
19374    Municipio {
19375        ibge_code: 1100940,
19376        name: "Cujubim",
19377        state: State::RO,
19378    },
19379    Municipio {
19380        ibge_code: 1100098,
19381        name: "Espigão D'Oeste",
19382        state: State::RO,
19383    },
19384    Municipio {
19385        ibge_code: 1101005,
19386        name: "Governador Jorge Teixeira",
19387        state: State::RO,
19388    },
19389    Municipio {
19390        ibge_code: 1100106,
19391        name: "Guajará-Mirim",
19392        state: State::RO,
19393    },
19394    Municipio {
19395        ibge_code: 1101104,
19396        name: "Itapuã do Oeste",
19397        state: State::RO,
19398    },
19399    Municipio {
19400        ibge_code: 1100114,
19401        name: "Jaru",
19402        state: State::RO,
19403    },
19404    Municipio {
19405        ibge_code: 1100122,
19406        name: "Ji-Paraná",
19407        state: State::RO,
19408    },
19409    Municipio {
19410        ibge_code: 1100130,
19411        name: "Machadinho D'Oeste",
19412        state: State::RO,
19413    },
19414    Municipio {
19415        ibge_code: 1101203,
19416        name: "Ministro Andreazza",
19417        state: State::RO,
19418    },
19419    Municipio {
19420        ibge_code: 1101302,
19421        name: "Mirante da Serra",
19422        state: State::RO,
19423    },
19424    Municipio {
19425        ibge_code: 1101401,
19426        name: "Monte Negro",
19427        state: State::RO,
19428    },
19429    Municipio {
19430        ibge_code: 1100148,
19431        name: "Nova Brasilândia D'Oeste",
19432        state: State::RO,
19433    },
19434    Municipio {
19435        ibge_code: 1100338,
19436        name: "Nova Mamoré",
19437        state: State::RO,
19438    },
19439    Municipio {
19440        ibge_code: 1101435,
19441        name: "Nova União",
19442        state: State::RO,
19443    },
19444    Municipio {
19445        ibge_code: 1100502,
19446        name: "Novo Horizonte do Oeste",
19447        state: State::RO,
19448    },
19449    Municipio {
19450        ibge_code: 1100155,
19451        name: "Ouro Preto do Oeste",
19452        state: State::RO,
19453    },
19454    Municipio {
19455        ibge_code: 1101450,
19456        name: "Parecis",
19457        state: State::RO,
19458    },
19459    Municipio {
19460        ibge_code: 1100189,
19461        name: "Pimenta Bueno",
19462        state: State::RO,
19463    },
19464    Municipio {
19465        ibge_code: 1101468,
19466        name: "Pimenteiras do Oeste",
19467        state: State::RO,
19468    },
19469    Municipio {
19470        ibge_code: 1100205,
19471        name: "Porto Velho",
19472        state: State::RO,
19473    },
19474    Municipio {
19475        ibge_code: 1100254,
19476        name: "Presidente Médici",
19477        state: State::RO,
19478    },
19479    Municipio {
19480        ibge_code: 1101476,
19481        name: "Primavera de Rondônia",
19482        state: State::RO,
19483    },
19484    Municipio {
19485        ibge_code: 1100262,
19486        name: "Rio Crespo",
19487        state: State::RO,
19488    },
19489    Municipio {
19490        ibge_code: 1100288,
19491        name: "Rolim de Moura",
19492        state: State::RO,
19493    },
19494    Municipio {
19495        ibge_code: 1100296,
19496        name: "Santa Luzia D'Oeste",
19497        state: State::RO,
19498    },
19499    Municipio {
19500        ibge_code: 1101500,
19501        name: "Seringueiras",
19502        state: State::RO,
19503    },
19504    Municipio {
19505        ibge_code: 1101484,
19506        name: "São Felipe D'Oeste",
19507        state: State::RO,
19508    },
19509    Municipio {
19510        ibge_code: 1101492,
19511        name: "São Francisco do Guaporé",
19512        state: State::RO,
19513    },
19514    Municipio {
19515        ibge_code: 1100320,
19516        name: "São Miguel do Guaporé",
19517        state: State::RO,
19518    },
19519    Municipio {
19520        ibge_code: 1101559,
19521        name: "Teixeirópolis",
19522        state: State::RO,
19523    },
19524    Municipio {
19525        ibge_code: 1101609,
19526        name: "Theobroma",
19527        state: State::RO,
19528    },
19529    Municipio {
19530        ibge_code: 1101708,
19531        name: "Urupá",
19532        state: State::RO,
19533    },
19534    Municipio {
19535        ibge_code: 1101757,
19536        name: "Vale do Anari",
19537        state: State::RO,
19538    },
19539    Municipio {
19540        ibge_code: 1101807,
19541        name: "Vale do Paraíso",
19542        state: State::RO,
19543    },
19544    Municipio {
19545        ibge_code: 1100304,
19546        name: "Vilhena",
19547        state: State::RO,
19548    },
19549    Municipio {
19550        ibge_code: 1400050,
19551        name: "Alto Alegre",
19552        state: State::RR,
19553    },
19554    Municipio {
19555        ibge_code: 1400027,
19556        name: "Amajari",
19557        state: State::RR,
19558    },
19559    Municipio {
19560        ibge_code: 1400100,
19561        name: "Boa Vista",
19562        state: State::RR,
19563    },
19564    Municipio {
19565        ibge_code: 1400159,
19566        name: "Bonfim",
19567        state: State::RR,
19568    },
19569    Municipio {
19570        ibge_code: 1400175,
19571        name: "Cantá",
19572        state: State::RR,
19573    },
19574    Municipio {
19575        ibge_code: 1400209,
19576        name: "Caracaraí",
19577        state: State::RR,
19578    },
19579    Municipio {
19580        ibge_code: 1400233,
19581        name: "Caroebe",
19582        state: State::RR,
19583    },
19584    Municipio {
19585        ibge_code: 1400282,
19586        name: "Iracema",
19587        state: State::RR,
19588    },
19589    Municipio {
19590        ibge_code: 1400308,
19591        name: "Mucajaí",
19592        state: State::RR,
19593    },
19594    Municipio {
19595        ibge_code: 1400407,
19596        name: "Normandia",
19597        state: State::RR,
19598    },
19599    Municipio {
19600        ibge_code: 1400456,
19601        name: "Pacaraima",
19602        state: State::RR,
19603    },
19604    Municipio {
19605        ibge_code: 1400472,
19606        name: "Rorainópolis",
19607        state: State::RR,
19608    },
19609    Municipio {
19610        ibge_code: 1400506,
19611        name: "São João da Baliza",
19612        state: State::RR,
19613    },
19614    Municipio {
19615        ibge_code: 1400605,
19616        name: "São Luiz do Anauá",
19617        state: State::RR,
19618    },
19619    Municipio {
19620        ibge_code: 1400704,
19621        name: "Uiramutã",
19622        state: State::RR,
19623    },
19624    Municipio {
19625        ibge_code: 4300034,
19626        name: "Aceguá",
19627        state: State::RS,
19628    },
19629    Municipio {
19630        ibge_code: 4300109,
19631        name: "Agudo",
19632        state: State::RS,
19633    },
19634    Municipio {
19635        ibge_code: 4300208,
19636        name: "Ajuricaba",
19637        state: State::RS,
19638    },
19639    Municipio {
19640        ibge_code: 4300307,
19641        name: "Alecrim",
19642        state: State::RS,
19643    },
19644    Municipio {
19645        ibge_code: 4300406,
19646        name: "Alegrete",
19647        state: State::RS,
19648    },
19649    Municipio {
19650        ibge_code: 4300455,
19651        name: "Alegria",
19652        state: State::RS,
19653    },
19654    Municipio {
19655        ibge_code: 4300471,
19656        name: "Almirante Tamandaré do Sul",
19657        state: State::RS,
19658    },
19659    Municipio {
19660        ibge_code: 4300505,
19661        name: "Alpestre",
19662        state: State::RS,
19663    },
19664    Municipio {
19665        ibge_code: 4300554,
19666        name: "Alto Alegre",
19667        state: State::RS,
19668    },
19669    Municipio {
19670        ibge_code: 4300570,
19671        name: "Alto Feliz",
19672        state: State::RS,
19673    },
19674    Municipio {
19675        ibge_code: 4300604,
19676        name: "Alvorada",
19677        state: State::RS,
19678    },
19679    Municipio {
19680        ibge_code: 4300638,
19681        name: "Amaral Ferrador",
19682        state: State::RS,
19683    },
19684    Municipio {
19685        ibge_code: 4300646,
19686        name: "Ametista do Sul",
19687        state: State::RS,
19688    },
19689    Municipio {
19690        ibge_code: 4300661,
19691        name: "André da Rocha",
19692        state: State::RS,
19693    },
19694    Municipio {
19695        ibge_code: 4300703,
19696        name: "Anta Gorda",
19697        state: State::RS,
19698    },
19699    Municipio {
19700        ibge_code: 4300802,
19701        name: "Antônio Prado",
19702        state: State::RS,
19703    },
19704    Municipio {
19705        ibge_code: 4300851,
19706        name: "Arambaré",
19707        state: State::RS,
19708    },
19709    Municipio {
19710        ibge_code: 4300877,
19711        name: "Araricá",
19712        state: State::RS,
19713    },
19714    Municipio {
19715        ibge_code: 4300901,
19716        name: "Aratiba",
19717        state: State::RS,
19718    },
19719    Municipio {
19720        ibge_code: 4301305,
19721        name: "Arroio Grande",
19722        state: State::RS,
19723    },
19724    Municipio {
19725        ibge_code: 4301008,
19726        name: "Arroio do Meio",
19727        state: State::RS,
19728    },
19729    Municipio {
19730        ibge_code: 4301073,
19731        name: "Arroio do Padre",
19732        state: State::RS,
19733    },
19734    Municipio {
19735        ibge_code: 4301057,
19736        name: "Arroio do Sal",
19737        state: State::RS,
19738    },
19739    Municipio {
19740        ibge_code: 4301206,
19741        name: "Arroio do Tigre",
19742        state: State::RS,
19743    },
19744    Municipio {
19745        ibge_code: 4301107,
19746        name: "Arroio dos Ratos",
19747        state: State::RS,
19748    },
19749    Municipio {
19750        ibge_code: 4301404,
19751        name: "Arvorezinha",
19752        state: State::RS,
19753    },
19754    Municipio {
19755        ibge_code: 4301503,
19756        name: "Augusto Pestana",
19757        state: State::RS,
19758    },
19759    Municipio {
19760        ibge_code: 4301602,
19761        name: "Bagé",
19762        state: State::RS,
19763    },
19764    Municipio {
19765        ibge_code: 4301636,
19766        name: "Balneário Pinhal",
19767        state: State::RS,
19768    },
19769    Municipio {
19770        ibge_code: 4301958,
19771        name: "Barra Funda",
19772        state: State::RS,
19773    },
19774    Municipio {
19775        ibge_code: 4301859,
19776        name: "Barra do Guarita",
19777        state: State::RS,
19778    },
19779    Municipio {
19780        ibge_code: 4301875,
19781        name: "Barra do Quaraí",
19782        state: State::RS,
19783    },
19784    Municipio {
19785        ibge_code: 4301909,
19786        name: "Barra do Ribeiro",
19787        state: State::RS,
19788    },
19789    Municipio {
19790        ibge_code: 4301925,
19791        name: "Barra do Rio Azul",
19792        state: State::RS,
19793    },
19794    Municipio {
19795        ibge_code: 4301800,
19796        name: "Barracão",
19797        state: State::RS,
19798    },
19799    Municipio {
19800        ibge_code: 4302006,
19801        name: "Barros Cassal",
19802        state: State::RS,
19803    },
19804    Municipio {
19805        ibge_code: 4301651,
19806        name: "Barão",
19807        state: State::RS,
19808    },
19809    Municipio {
19810        ibge_code: 4301701,
19811        name: "Barão de Cotegipe",
19812        state: State::RS,
19813    },
19814    Municipio {
19815        ibge_code: 4301750,
19816        name: "Barão do Triunfo",
19817        state: State::RS,
19818    },
19819    Municipio {
19820        ibge_code: 4302055,
19821        name: "Benjamin Constant do Sul",
19822        state: State::RS,
19823    },
19824    Municipio {
19825        ibge_code: 4302105,
19826        name: "Bento Gonçalves",
19827        state: State::RS,
19828    },
19829    Municipio {
19830        ibge_code: 4302154,
19831        name: "Boa Vista das Missões",
19832        state: State::RS,
19833    },
19834    Municipio {
19835        ibge_code: 4302204,
19836        name: "Boa Vista do Buricá",
19837        state: State::RS,
19838    },
19839    Municipio {
19840        ibge_code: 4302220,
19841        name: "Boa Vista do Cadeado",
19842        state: State::RS,
19843    },
19844    Municipio {
19845        ibge_code: 4302238,
19846        name: "Boa Vista do Incra",
19847        state: State::RS,
19848    },
19849    Municipio {
19850        ibge_code: 4302253,
19851        name: "Boa Vista do Sul",
19852        state: State::RS,
19853    },
19854    Municipio {
19855        ibge_code: 4302303,
19856        name: "Bom Jesus",
19857        state: State::RS,
19858    },
19859    Municipio {
19860        ibge_code: 4302352,
19861        name: "Bom Princípio",
19862        state: State::RS,
19863    },
19864    Municipio {
19865        ibge_code: 4302378,
19866        name: "Bom Progresso",
19867        state: State::RS,
19868    },
19869    Municipio {
19870        ibge_code: 4302402,
19871        name: "Bom Retiro do Sul",
19872        state: State::RS,
19873    },
19874    Municipio {
19875        ibge_code: 4302451,
19876        name: "Boqueirão do Leão",
19877        state: State::RS,
19878    },
19879    Municipio {
19880        ibge_code: 4302501,
19881        name: "Bossoroca",
19882        state: State::RS,
19883    },
19884    Municipio {
19885        ibge_code: 4302584,
19886        name: "Bozano",
19887        state: State::RS,
19888    },
19889    Municipio {
19890        ibge_code: 4302600,
19891        name: "Braga",
19892        state: State::RS,
19893    },
19894    Municipio {
19895        ibge_code: 4302659,
19896        name: "Brochier",
19897        state: State::RS,
19898    },
19899    Municipio {
19900        ibge_code: 4302709,
19901        name: "Butiá",
19902        state: State::RS,
19903    },
19904    Municipio {
19905        ibge_code: 4302907,
19906        name: "Cacequi",
19907        state: State::RS,
19908    },
19909    Municipio {
19910        ibge_code: 4303004,
19911        name: "Cachoeira do Sul",
19912        state: State::RS,
19913    },
19914    Municipio {
19915        ibge_code: 4303103,
19916        name: "Cachoeirinha",
19917        state: State::RS,
19918    },
19919    Municipio {
19920        ibge_code: 4303202,
19921        name: "Cacique Doble",
19922        state: State::RS,
19923    },
19924    Municipio {
19925        ibge_code: 4303301,
19926        name: "Caibaté",
19927        state: State::RS,
19928    },
19929    Municipio {
19930        ibge_code: 4303400,
19931        name: "Caiçara",
19932        state: State::RS,
19933    },
19934    Municipio {
19935        ibge_code: 4303509,
19936        name: "Camaquã",
19937        state: State::RS,
19938    },
19939    Municipio {
19940        ibge_code: 4303558,
19941        name: "Camargo",
19942        state: State::RS,
19943    },
19944    Municipio {
19945        ibge_code: 4303608,
19946        name: "Cambará do Sul",
19947        state: State::RS,
19948    },
19949    Municipio {
19950        ibge_code: 4303673,
19951        name: "Campestre da Serra",
19952        state: State::RS,
19953    },
19954    Municipio {
19955        ibge_code: 4303707,
19956        name: "Campina das Missões",
19957        state: State::RS,
19958    },
19959    Municipio {
19960        ibge_code: 4303806,
19961        name: "Campinas do Sul",
19962        state: State::RS,
19963    },
19964    Municipio {
19965        ibge_code: 4303905,
19966        name: "Campo Bom",
19967        state: State::RS,
19968    },
19969    Municipio {
19970        ibge_code: 4304002,
19971        name: "Campo Novo",
19972        state: State::RS,
19973    },
19974    Municipio {
19975        ibge_code: 4304101,
19976        name: "Campos Borges",
19977        state: State::RS,
19978    },
19979    Municipio {
19980        ibge_code: 4304200,
19981        name: "Candelária",
19982        state: State::RS,
19983    },
19984    Municipio {
19985        ibge_code: 4304358,
19986        name: "Candiota",
19987        state: State::RS,
19988    },
19989    Municipio {
19990        ibge_code: 4304408,
19991        name: "Canela",
19992        state: State::RS,
19993    },
19994    Municipio {
19995        ibge_code: 4304507,
19996        name: "Canguçu",
19997        state: State::RS,
19998    },
19999    Municipio {
20000        ibge_code: 4304606,
20001        name: "Canoas",
20002        state: State::RS,
20003    },
20004    Municipio {
20005        ibge_code: 4304614,
20006        name: "Canudos do Vale",
20007        state: State::RS,
20008    },
20009    Municipio {
20010        ibge_code: 4304689,
20011        name: "Capela de Santana",
20012        state: State::RS,
20013    },
20014    Municipio {
20015        ibge_code: 4304697,
20016        name: "Capitão",
20017        state: State::RS,
20018    },
20019    Municipio {
20020        ibge_code: 4304671,
20021        name: "Capivari do Sul",
20022        state: State::RS,
20023    },
20024    Municipio {
20025        ibge_code: 4304622,
20026        name: "Capão Bonito do Sul",
20027        state: State::RS,
20028    },
20029    Municipio {
20030        ibge_code: 4304630,
20031        name: "Capão da Canoa",
20032        state: State::RS,
20033    },
20034    Municipio {
20035        ibge_code: 4304655,
20036        name: "Capão do Cipó",
20037        state: State::RS,
20038    },
20039    Municipio {
20040        ibge_code: 4304663,
20041        name: "Capão do Leão",
20042        state: State::RS,
20043    },
20044    Municipio {
20045        ibge_code: 4304705,
20046        name: "Carazinho",
20047        state: State::RS,
20048    },
20049    Municipio {
20050        ibge_code: 4304713,
20051        name: "Caraá",
20052        state: State::RS,
20053    },
20054    Municipio {
20055        ibge_code: 4304804,
20056        name: "Carlos Barbosa",
20057        state: State::RS,
20058    },
20059    Municipio {
20060        ibge_code: 4304853,
20061        name: "Carlos Gomes",
20062        state: State::RS,
20063    },
20064    Municipio {
20065        ibge_code: 4304903,
20066        name: "Casca",
20067        state: State::RS,
20068    },
20069    Municipio {
20070        ibge_code: 4304952,
20071        name: "Caseiros",
20072        state: State::RS,
20073    },
20074    Municipio {
20075        ibge_code: 4305009,
20076        name: "Catuípe",
20077        state: State::RS,
20078    },
20079    Municipio {
20080        ibge_code: 4305108,
20081        name: "Caxias do Sul",
20082        state: State::RS,
20083    },
20084    Municipio {
20085        ibge_code: 4302808,
20086        name: "Caçapava do Sul",
20087        state: State::RS,
20088    },
20089    Municipio {
20090        ibge_code: 4305116,
20091        name: "Centenário",
20092        state: State::RS,
20093    },
20094    Municipio {
20095        ibge_code: 4305124,
20096        name: "Cerrito",
20097        state: State::RS,
20098    },
20099    Municipio {
20100        ibge_code: 4305132,
20101        name: "Cerro Branco",
20102        state: State::RS,
20103    },
20104    Municipio {
20105        ibge_code: 4305157,
20106        name: "Cerro Grande",
20107        state: State::RS,
20108    },
20109    Municipio {
20110        ibge_code: 4305173,
20111        name: "Cerro Grande do Sul",
20112        state: State::RS,
20113    },
20114    Municipio {
20115        ibge_code: 4305207,
20116        name: "Cerro Largo",
20117        state: State::RS,
20118    },
20119    Municipio {
20120        ibge_code: 4305306,
20121        name: "Chapada",
20122        state: State::RS,
20123    },
20124    Municipio {
20125        ibge_code: 4305355,
20126        name: "Charqueadas",
20127        state: State::RS,
20128    },
20129    Municipio {
20130        ibge_code: 4305371,
20131        name: "Charrua",
20132        state: State::RS,
20133    },
20134    Municipio {
20135        ibge_code: 4305405,
20136        name: "Chiapetta",
20137        state: State::RS,
20138    },
20139    Municipio {
20140        ibge_code: 4305447,
20141        name: "Chuvisca",
20142        state: State::RS,
20143    },
20144    Municipio {
20145        ibge_code: 4305439,
20146        name: "Chuí",
20147        state: State::RS,
20148    },
20149    Municipio {
20150        ibge_code: 4305454,
20151        name: "Cidreira",
20152        state: State::RS,
20153    },
20154    Municipio {
20155        ibge_code: 4305504,
20156        name: "Ciríaco",
20157        state: State::RS,
20158    },
20159    Municipio {
20160        ibge_code: 4305587,
20161        name: "Colinas",
20162        state: State::RS,
20163    },
20164    Municipio {
20165        ibge_code: 4305603,
20166        name: "Colorado",
20167        state: State::RS,
20168    },
20169    Municipio {
20170        ibge_code: 4305702,
20171        name: "Condor",
20172        state: State::RS,
20173    },
20174    Municipio {
20175        ibge_code: 4305801,
20176        name: "Constantina",
20177        state: State::RS,
20178    },
20179    Municipio {
20180        ibge_code: 4305835,
20181        name: "Coqueiro Baixo",
20182        state: State::RS,
20183    },
20184    Municipio {
20185        ibge_code: 4305850,
20186        name: "Coqueiros do Sul",
20187        state: State::RS,
20188    },
20189    Municipio {
20190        ibge_code: 4305871,
20191        name: "Coronel Barros",
20192        state: State::RS,
20193    },
20194    Municipio {
20195        ibge_code: 4305900,
20196        name: "Coronel Bicaco",
20197        state: State::RS,
20198    },
20199    Municipio {
20200        ibge_code: 4305934,
20201        name: "Coronel Pilar",
20202        state: State::RS,
20203    },
20204    Municipio {
20205        ibge_code: 4305959,
20206        name: "Cotiporã",
20207        state: State::RS,
20208    },
20209    Municipio {
20210        ibge_code: 4305975,
20211        name: "Coxilha",
20212        state: State::RS,
20213    },
20214    Municipio {
20215        ibge_code: 4306007,
20216        name: "Crissiumal",
20217        state: State::RS,
20218    },
20219    Municipio {
20220        ibge_code: 4306056,
20221        name: "Cristal",
20222        state: State::RS,
20223    },
20224    Municipio {
20225        ibge_code: 4306072,
20226        name: "Cristal do Sul",
20227        state: State::RS,
20228    },
20229    Municipio {
20230        ibge_code: 4306106,
20231        name: "Cruz Alta",
20232        state: State::RS,
20233    },
20234    Municipio {
20235        ibge_code: 4306130,
20236        name: "Cruzaltense",
20237        state: State::RS,
20238    },
20239    Municipio {
20240        ibge_code: 4306205,
20241        name: "Cruzeiro do Sul",
20242        state: State::RS,
20243    },
20244    Municipio {
20245        ibge_code: 4304309,
20246        name: "Cândido Godói",
20247        state: State::RS,
20248    },
20249    Municipio {
20250        ibge_code: 4306304,
20251        name: "David Canabarro",
20252        state: State::RS,
20253    },
20254    Municipio {
20255        ibge_code: 4306320,
20256        name: "Derrubadas",
20257        state: State::RS,
20258    },
20259    Municipio {
20260        ibge_code: 4306353,
20261        name: "Dezesseis de Novembro",
20262        state: State::RS,
20263    },
20264    Municipio {
20265        ibge_code: 4306379,
20266        name: "Dilermando de Aguiar",
20267        state: State::RS,
20268    },
20269    Municipio {
20270        ibge_code: 4306403,
20271        name: "Dois Irmãos",
20272        state: State::RS,
20273    },
20274    Municipio {
20275        ibge_code: 4306429,
20276        name: "Dois Irmãos das Missões",
20277        state: State::RS,
20278    },
20279    Municipio {
20280        ibge_code: 4306452,
20281        name: "Dois Lajeados",
20282        state: State::RS,
20283    },
20284    Municipio {
20285        ibge_code: 4306502,
20286        name: "Dom Feliciano",
20287        state: State::RS,
20288    },
20289    Municipio {
20290        ibge_code: 4306601,
20291        name: "Dom Pedrito",
20292        state: State::RS,
20293    },
20294    Municipio {
20295        ibge_code: 4306551,
20296        name: "Dom Pedro de Alcântara",
20297        state: State::RS,
20298    },
20299    Municipio {
20300        ibge_code: 4306700,
20301        name: "Dona Francisca",
20302        state: State::RS,
20303    },
20304    Municipio {
20305        ibge_code: 4306734,
20306        name: "Doutor Maurício Cardoso",
20307        state: State::RS,
20308    },
20309    Municipio {
20310        ibge_code: 4306759,
20311        name: "Doutor Ricardo",
20312        state: State::RS,
20313    },
20314    Municipio {
20315        ibge_code: 4306767,
20316        name: "Eldorado do Sul",
20317        state: State::RS,
20318    },
20319    Municipio {
20320        ibge_code: 4306809,
20321        name: "Encantado",
20322        state: State::RS,
20323    },
20324    Municipio {
20325        ibge_code: 4306908,
20326        name: "Encruzilhada do Sul",
20327        state: State::RS,
20328    },
20329    Municipio {
20330        ibge_code: 4306924,
20331        name: "Engenho Velho",
20332        state: State::RS,
20333    },
20334    Municipio {
20335        ibge_code: 4306957,
20336        name: "Entre Rios do Sul",
20337        state: State::RS,
20338    },
20339    Municipio {
20340        ibge_code: 4306932,
20341        name: "Entre-Ijuís",
20342        state: State::RS,
20343    },
20344    Municipio {
20345        ibge_code: 4306973,
20346        name: "Erebango",
20347        state: State::RS,
20348    },
20349    Municipio {
20350        ibge_code: 4307005,
20351        name: "Erechim",
20352        state: State::RS,
20353    },
20354    Municipio {
20355        ibge_code: 4307054,
20356        name: "Ernestina",
20357        state: State::RS,
20358    },
20359    Municipio {
20360        ibge_code: 4307203,
20361        name: "Erval Grande",
20362        state: State::RS,
20363    },
20364    Municipio {
20365        ibge_code: 4307302,
20366        name: "Erval Seco",
20367        state: State::RS,
20368    },
20369    Municipio {
20370        ibge_code: 4307401,
20371        name: "Esmeralda",
20372        state: State::RS,
20373    },
20374    Municipio {
20375        ibge_code: 4307450,
20376        name: "Esperança do Sul",
20377        state: State::RS,
20378    },
20379    Municipio {
20380        ibge_code: 4307500,
20381        name: "Espumoso",
20382        state: State::RS,
20383    },
20384    Municipio {
20385        ibge_code: 4307559,
20386        name: "Estação",
20387        state: State::RS,
20388    },
20389    Municipio {
20390        ibge_code: 4307708,
20391        name: "Esteio",
20392        state: State::RS,
20393    },
20394    Municipio {
20395        ibge_code: 4307807,
20396        name: "Estrela",
20397        state: State::RS,
20398    },
20399    Municipio {
20400        ibge_code: 4307815,
20401        name: "Estrela Velha",
20402        state: State::RS,
20403    },
20404    Municipio {
20405        ibge_code: 4307609,
20406        name: "Estância Velha",
20407        state: State::RS,
20408    },
20409    Municipio {
20410        ibge_code: 4307831,
20411        name: "Eugênio de Castro",
20412        state: State::RS,
20413    },
20414    Municipio {
20415        ibge_code: 4307864,
20416        name: "Fagundes Varela",
20417        state: State::RS,
20418    },
20419    Municipio {
20420        ibge_code: 4307906,
20421        name: "Farroupilha",
20422        state: State::RS,
20423    },
20424    Municipio {
20425        ibge_code: 4308003,
20426        name: "Faxinal do Soturno",
20427        state: State::RS,
20428    },
20429    Municipio {
20430        ibge_code: 4308052,
20431        name: "Faxinalzinho",
20432        state: State::RS,
20433    },
20434    Municipio {
20435        ibge_code: 4308078,
20436        name: "Fazenda Vilanova",
20437        state: State::RS,
20438    },
20439    Municipio {
20440        ibge_code: 4308102,
20441        name: "Feliz",
20442        state: State::RS,
20443    },
20444    Municipio {
20445        ibge_code: 4308201,
20446        name: "Flores da Cunha",
20447        state: State::RS,
20448    },
20449    Municipio {
20450        ibge_code: 4308250,
20451        name: "Floriano Peixoto",
20452        state: State::RS,
20453    },
20454    Municipio {
20455        ibge_code: 4308300,
20456        name: "Fontoura Xavier",
20457        state: State::RS,
20458    },
20459    Municipio {
20460        ibge_code: 4308409,
20461        name: "Formigueiro",
20462        state: State::RS,
20463    },
20464    Municipio {
20465        ibge_code: 4308433,
20466        name: "Forquetinha",
20467        state: State::RS,
20468    },
20469    Municipio {
20470        ibge_code: 4308458,
20471        name: "Fortaleza dos Valos",
20472        state: State::RS,
20473    },
20474    Municipio {
20475        ibge_code: 4308508,
20476        name: "Frederico Westphalen",
20477        state: State::RS,
20478    },
20479    Municipio {
20480        ibge_code: 4308607,
20481        name: "Garibaldi",
20482        state: State::RS,
20483    },
20484    Municipio {
20485        ibge_code: 4308656,
20486        name: "Garruchos",
20487        state: State::RS,
20488    },
20489    Municipio {
20490        ibge_code: 4308706,
20491        name: "Gaurama",
20492        state: State::RS,
20493    },
20494    Municipio {
20495        ibge_code: 4308805,
20496        name: "General Câmara",
20497        state: State::RS,
20498    },
20499    Municipio {
20500        ibge_code: 4308854,
20501        name: "Gentil",
20502        state: State::RS,
20503    },
20504    Municipio {
20505        ibge_code: 4308904,
20506        name: "Getúlio Vargas",
20507        state: State::RS,
20508    },
20509    Municipio {
20510        ibge_code: 4309001,
20511        name: "Giruá",
20512        state: State::RS,
20513    },
20514    Municipio {
20515        ibge_code: 4309050,
20516        name: "Glorinha",
20517        state: State::RS,
20518    },
20519    Municipio {
20520        ibge_code: 4309100,
20521        name: "Gramado",
20522        state: State::RS,
20523    },
20524    Municipio {
20525        ibge_code: 4309159,
20526        name: "Gramado Xavier",
20527        state: State::RS,
20528    },
20529    Municipio {
20530        ibge_code: 4309126,
20531        name: "Gramado dos Loureiros",
20532        state: State::RS,
20533    },
20534    Municipio {
20535        ibge_code: 4309209,
20536        name: "Gravataí",
20537        state: State::RS,
20538    },
20539    Municipio {
20540        ibge_code: 4309258,
20541        name: "Guabiju",
20542        state: State::RS,
20543    },
20544    Municipio {
20545        ibge_code: 4309407,
20546        name: "Guaporé",
20547        state: State::RS,
20548    },
20549    Municipio {
20550        ibge_code: 4309506,
20551        name: "Guarani das Missões",
20552        state: State::RS,
20553    },
20554    Municipio {
20555        ibge_code: 4309308,
20556        name: "Guaíba",
20557        state: State::RS,
20558    },
20559    Municipio {
20560        ibge_code: 4309555,
20561        name: "Harmonia",
20562        state: State::RS,
20563    },
20564    Municipio {
20565        ibge_code: 4307104,
20566        name: "Herval",
20567        state: State::RS,
20568    },
20569    Municipio {
20570        ibge_code: 4309571,
20571        name: "Herveiras",
20572        state: State::RS,
20573    },
20574    Municipio {
20575        ibge_code: 4309605,
20576        name: "Horizontina",
20577        state: State::RS,
20578    },
20579    Municipio {
20580        ibge_code: 4309654,
20581        name: "Hulha Negra",
20582        state: State::RS,
20583    },
20584    Municipio {
20585        ibge_code: 4309704,
20586        name: "Humaitá",
20587        state: State::RS,
20588    },
20589    Municipio {
20590        ibge_code: 4309753,
20591        name: "Ibarama",
20592        state: State::RS,
20593    },
20594    Municipio {
20595        ibge_code: 4309803,
20596        name: "Ibiaçá",
20597        state: State::RS,
20598    },
20599    Municipio {
20600        ibge_code: 4309902,
20601        name: "Ibiraiaras",
20602        state: State::RS,
20603    },
20604    Municipio {
20605        ibge_code: 4309951,
20606        name: "Ibirapuitã",
20607        state: State::RS,
20608    },
20609    Municipio {
20610        ibge_code: 4310009,
20611        name: "Ibirubá",
20612        state: State::RS,
20613    },
20614    Municipio {
20615        ibge_code: 4310108,
20616        name: "Igrejinha",
20617        state: State::RS,
20618    },
20619    Municipio {
20620        ibge_code: 4310207,
20621        name: "Ijuí",
20622        state: State::RS,
20623    },
20624    Municipio {
20625        ibge_code: 4310306,
20626        name: "Ilópolis",
20627        state: State::RS,
20628    },
20629    Municipio {
20630        ibge_code: 4310330,
20631        name: "Imbé",
20632        state: State::RS,
20633    },
20634    Municipio {
20635        ibge_code: 4310363,
20636        name: "Imigrante",
20637        state: State::RS,
20638    },
20639    Municipio {
20640        ibge_code: 4310405,
20641        name: "Independência",
20642        state: State::RS,
20643    },
20644    Municipio {
20645        ibge_code: 4310413,
20646        name: "Inhacorá",
20647        state: State::RS,
20648    },
20649    Municipio {
20650        ibge_code: 4310462,
20651        name: "Ipiranga do Sul",
20652        state: State::RS,
20653    },
20654    Municipio {
20655        ibge_code: 4310439,
20656        name: "Ipê",
20657        state: State::RS,
20658    },
20659    Municipio {
20660        ibge_code: 4310504,
20661        name: "Iraí",
20662        state: State::RS,
20663    },
20664    Municipio {
20665        ibge_code: 4310538,
20666        name: "Itaara",
20667        state: State::RS,
20668    },
20669    Municipio {
20670        ibge_code: 4310553,
20671        name: "Itacurubi",
20672        state: State::RS,
20673    },
20674    Municipio {
20675        ibge_code: 4310579,
20676        name: "Itapuca",
20677        state: State::RS,
20678    },
20679    Municipio {
20680        ibge_code: 4310603,
20681        name: "Itaqui",
20682        state: State::RS,
20683    },
20684    Municipio {
20685        ibge_code: 4310652,
20686        name: "Itati",
20687        state: State::RS,
20688    },
20689    Municipio {
20690        ibge_code: 4310702,
20691        name: "Itatiba do Sul",
20692        state: State::RS,
20693    },
20694    Municipio {
20695        ibge_code: 4310751,
20696        name: "Ivorá",
20697        state: State::RS,
20698    },
20699    Municipio {
20700        ibge_code: 4310801,
20701        name: "Ivoti",
20702        state: State::RS,
20703    },
20704    Municipio {
20705        ibge_code: 4310850,
20706        name: "Jaboticaba",
20707        state: State::RS,
20708    },
20709    Municipio {
20710        ibge_code: 4310876,
20711        name: "Jacuizinho",
20712        state: State::RS,
20713    },
20714    Municipio {
20715        ibge_code: 4310900,
20716        name: "Jacutinga",
20717        state: State::RS,
20718    },
20719    Municipio {
20720        ibge_code: 4311106,
20721        name: "Jaguari",
20722        state: State::RS,
20723    },
20724    Municipio {
20725        ibge_code: 4311007,
20726        name: "Jaguarão",
20727        state: State::RS,
20728    },
20729    Municipio {
20730        ibge_code: 4311122,
20731        name: "Jaquirana",
20732        state: State::RS,
20733    },
20734    Municipio {
20735        ibge_code: 4311130,
20736        name: "Jari",
20737        state: State::RS,
20738    },
20739    Municipio {
20740        ibge_code: 4311155,
20741        name: "Jóia",
20742        state: State::RS,
20743    },
20744    Municipio {
20745        ibge_code: 4311205,
20746        name: "Júlio de Castilhos",
20747        state: State::RS,
20748    },
20749    Municipio {
20750        ibge_code: 4311239,
20751        name: "Lagoa Bonita do Sul",
20752        state: State::RS,
20753    },
20754    Municipio {
20755        ibge_code: 4311304,
20756        name: "Lagoa Vermelha",
20757        state: State::RS,
20758    },
20759    Municipio {
20760        ibge_code: 4311270,
20761        name: "Lagoa dos Três Cantos",
20762        state: State::RS,
20763    },
20764    Municipio {
20765        ibge_code: 4311254,
20766        name: "Lagoão",
20767        state: State::RS,
20768    },
20769    Municipio {
20770        ibge_code: 4311403,
20771        name: "Lajeado",
20772        state: State::RS,
20773    },
20774    Municipio {
20775        ibge_code: 4311429,
20776        name: "Lajeado do Bugre",
20777        state: State::RS,
20778    },
20779    Municipio {
20780        ibge_code: 4311502,
20781        name: "Lavras do Sul",
20782        state: State::RS,
20783    },
20784    Municipio {
20785        ibge_code: 4311601,
20786        name: "Liberato Salzano",
20787        state: State::RS,
20788    },
20789    Municipio {
20790        ibge_code: 4311627,
20791        name: "Lindolfo Collor",
20792        state: State::RS,
20793    },
20794    Municipio {
20795        ibge_code: 4311643,
20796        name: "Linha Nova",
20797        state: State::RS,
20798    },
20799    Municipio {
20800        ibge_code: 4311700,
20801        name: "Machadinho",
20802        state: State::RS,
20803    },
20804    Municipio {
20805        ibge_code: 4311734,
20806        name: "Mampituba",
20807        state: State::RS,
20808    },
20809    Municipio {
20810        ibge_code: 4311759,
20811        name: "Manoel Viana",
20812        state: State::RS,
20813    },
20814    Municipio {
20815        ibge_code: 4311775,
20816        name: "Maquiné",
20817        state: State::RS,
20818    },
20819    Municipio {
20820        ibge_code: 4311791,
20821        name: "Maratá",
20822        state: State::RS,
20823    },
20824    Municipio {
20825        ibge_code: 4311809,
20826        name: "Marau",
20827        state: State::RS,
20828    },
20829    Municipio {
20830        ibge_code: 4311908,
20831        name: "Marcelino Ramos",
20832        state: State::RS,
20833    },
20834    Municipio {
20835        ibge_code: 4311981,
20836        name: "Mariana Pimentel",
20837        state: State::RS,
20838    },
20839    Municipio {
20840        ibge_code: 4312005,
20841        name: "Mariano Moro",
20842        state: State::RS,
20843    },
20844    Municipio {
20845        ibge_code: 4312054,
20846        name: "Marques de Souza",
20847        state: State::RS,
20848    },
20849    Municipio {
20850        ibge_code: 4312104,
20851        name: "Mata",
20852        state: State::RS,
20853    },
20854    Municipio {
20855        ibge_code: 4312138,
20856        name: "Mato Castelhano",
20857        state: State::RS,
20858    },
20859    Municipio {
20860        ibge_code: 4312153,
20861        name: "Mato Leitão",
20862        state: State::RS,
20863    },
20864    Municipio {
20865        ibge_code: 4312179,
20866        name: "Mato Queimado",
20867        state: State::RS,
20868    },
20869    Municipio {
20870        ibge_code: 4312203,
20871        name: "Maximiliano de Almeida",
20872        state: State::RS,
20873    },
20874    Municipio {
20875        ibge_code: 4311718,
20876        name: "Maçambará",
20877        state: State::RS,
20878    },
20879    Municipio {
20880        ibge_code: 4312252,
20881        name: "Minas do Leão",
20882        state: State::RS,
20883    },
20884    Municipio {
20885        ibge_code: 4312302,
20886        name: "Miraguaí",
20887        state: State::RS,
20888    },
20889    Municipio {
20890        ibge_code: 4312351,
20891        name: "Montauri",
20892        state: State::RS,
20893    },
20894    Municipio {
20895        ibge_code: 4312377,
20896        name: "Monte Alegre dos Campos",
20897        state: State::RS,
20898    },
20899    Municipio {
20900        ibge_code: 4312385,
20901        name: "Monte Belo do Sul",
20902        state: State::RS,
20903    },
20904    Municipio {
20905        ibge_code: 4312401,
20906        name: "Montenegro",
20907        state: State::RS,
20908    },
20909    Municipio {
20910        ibge_code: 4312427,
20911        name: "Mormaço",
20912        state: State::RS,
20913    },
20914    Municipio {
20915        ibge_code: 4312443,
20916        name: "Morrinhos do Sul",
20917        state: State::RS,
20918    },
20919    Municipio {
20920        ibge_code: 4312450,
20921        name: "Morro Redondo",
20922        state: State::RS,
20923    },
20924    Municipio {
20925        ibge_code: 4312476,
20926        name: "Morro Reuter",
20927        state: State::RS,
20928    },
20929    Municipio {
20930        ibge_code: 4312500,
20931        name: "Mostardas",
20932        state: State::RS,
20933    },
20934    Municipio {
20935        ibge_code: 4312617,
20936        name: "Muitos Capões",
20937        state: State::RS,
20938    },
20939    Municipio {
20940        ibge_code: 4312625,
20941        name: "Muliterno",
20942        state: State::RS,
20943    },
20944    Municipio {
20945        ibge_code: 4312609,
20946        name: "Muçum",
20947        state: State::RS,
20948    },
20949    Municipio {
20950        ibge_code: 4312674,
20951        name: "Nicolau Vergueiro",
20952        state: State::RS,
20953    },
20954    Municipio {
20955        ibge_code: 4312708,
20956        name: "Nonoai",
20957        state: State::RS,
20958    },
20959    Municipio {
20960        ibge_code: 4312757,
20961        name: "Nova Alvorada",
20962        state: State::RS,
20963    },
20964    Municipio {
20965        ibge_code: 4312807,
20966        name: "Nova Araçá",
20967        state: State::RS,
20968    },
20969    Municipio {
20970        ibge_code: 4312906,
20971        name: "Nova Bassano",
20972        state: State::RS,
20973    },
20974    Municipio {
20975        ibge_code: 4312955,
20976        name: "Nova Boa Vista",
20977        state: State::RS,
20978    },
20979    Municipio {
20980        ibge_code: 4313003,
20981        name: "Nova Bréscia",
20982        state: State::RS,
20983    },
20984    Municipio {
20985        ibge_code: 4313011,
20986        name: "Nova Candelária",
20987        state: State::RS,
20988    },
20989    Municipio {
20990        ibge_code: 4313037,
20991        name: "Nova Esperança do Sul",
20992        state: State::RS,
20993    },
20994    Municipio {
20995        ibge_code: 4313060,
20996        name: "Nova Hartz",
20997        state: State::RS,
20998    },
20999    Municipio {
21000        ibge_code: 4313102,
21001        name: "Nova Palma",
21002        state: State::RS,
21003    },
21004    Municipio {
21005        ibge_code: 4313201,
21006        name: "Nova Petrópolis",
21007        state: State::RS,
21008    },
21009    Municipio {
21010        ibge_code: 4313300,
21011        name: "Nova Prata",
21012        state: State::RS,
21013    },
21014    Municipio {
21015        ibge_code: 4313086,
21016        name: "Nova Pádua",
21017        state: State::RS,
21018    },
21019    Municipio {
21020        ibge_code: 4313334,
21021        name: "Nova Ramada",
21022        state: State::RS,
21023    },
21024    Municipio {
21025        ibge_code: 4313359,
21026        name: "Nova Roma do Sul",
21027        state: State::RS,
21028    },
21029    Municipio {
21030        ibge_code: 4313375,
21031        name: "Nova Santa Rita",
21032        state: State::RS,
21033    },
21034    Municipio {
21035        ibge_code: 4313490,
21036        name: "Novo Barreiro",
21037        state: State::RS,
21038    },
21039    Municipio {
21040        ibge_code: 4313391,
21041        name: "Novo Cabrais",
21042        state: State::RS,
21043    },
21044    Municipio {
21045        ibge_code: 4313409,
21046        name: "Novo Hamburgo",
21047        state: State::RS,
21048    },
21049    Municipio {
21050        ibge_code: 4313425,
21051        name: "Novo Machado",
21052        state: State::RS,
21053    },
21054    Municipio {
21055        ibge_code: 4313441,
21056        name: "Novo Tiradentes",
21057        state: State::RS,
21058    },
21059    Municipio {
21060        ibge_code: 4313466,
21061        name: "Novo Xingu",
21062        state: State::RS,
21063    },
21064    Municipio {
21065        ibge_code: 4312658,
21066        name: "Não-Me-Toque",
21067        state: State::RS,
21068    },
21069    Municipio {
21070        ibge_code: 4313508,
21071        name: "Osório",
21072        state: State::RS,
21073    },
21074    Municipio {
21075        ibge_code: 4313607,
21076        name: "Paim Filho",
21077        state: State::RS,
21078    },
21079    Municipio {
21080        ibge_code: 4313656,
21081        name: "Palmares do Sul",
21082        state: State::RS,
21083    },
21084    Municipio {
21085        ibge_code: 4313706,
21086        name: "Palmeira das Missões",
21087        state: State::RS,
21088    },
21089    Municipio {
21090        ibge_code: 4313805,
21091        name: "Palmitinho",
21092        state: State::RS,
21093    },
21094    Municipio {
21095        ibge_code: 4313904,
21096        name: "Panambi",
21097        state: State::RS,
21098    },
21099    Municipio {
21100        ibge_code: 4313953,
21101        name: "Pantano Grande",
21102        state: State::RS,
21103    },
21104    Municipio {
21105        ibge_code: 4314001,
21106        name: "Paraí",
21107        state: State::RS,
21108    },
21109    Municipio {
21110        ibge_code: 4314027,
21111        name: "Paraíso do Sul",
21112        state: State::RS,
21113    },
21114    Municipio {
21115        ibge_code: 4314035,
21116        name: "Pareci Novo",
21117        state: State::RS,
21118    },
21119    Municipio {
21120        ibge_code: 4314050,
21121        name: "Parobé",
21122        state: State::RS,
21123    },
21124    Municipio {
21125        ibge_code: 4314068,
21126        name: "Passa Sete",
21127        state: State::RS,
21128    },
21129    Municipio {
21130        ibge_code: 4314100,
21131        name: "Passo Fundo",
21132        state: State::RS,
21133    },
21134    Municipio {
21135        ibge_code: 4314076,
21136        name: "Passo do Sobrado",
21137        state: State::RS,
21138    },
21139    Municipio {
21140        ibge_code: 4314134,
21141        name: "Paulo Bento",
21142        state: State::RS,
21143    },
21144    Municipio {
21145        ibge_code: 4314159,
21146        name: "Paverama",
21147        state: State::RS,
21148    },
21149    Municipio {
21150        ibge_code: 4314175,
21151        name: "Pedras Altas",
21152        state: State::RS,
21153    },
21154    Municipio {
21155        ibge_code: 4314209,
21156        name: "Pedro Osório",
21157        state: State::RS,
21158    },
21159    Municipio {
21160        ibge_code: 4314308,
21161        name: "Pejuçara",
21162        state: State::RS,
21163    },
21164    Municipio {
21165        ibge_code: 4314407,
21166        name: "Pelotas",
21167        state: State::RS,
21168    },
21169    Municipio {
21170        ibge_code: 4314423,
21171        name: "Picada Café",
21172        state: State::RS,
21173    },
21174    Municipio {
21175        ibge_code: 4314456,
21176        name: "Pinhal",
21177        state: State::RS,
21178    },
21179    Municipio {
21180        ibge_code: 4314472,
21181        name: "Pinhal Grande",
21182        state: State::RS,
21183    },
21184    Municipio {
21185        ibge_code: 4314464,
21186        name: "Pinhal da Serra",
21187        state: State::RS,
21188    },
21189    Municipio {
21190        ibge_code: 4314498,
21191        name: "Pinheirinho do Vale",
21192        state: State::RS,
21193    },
21194    Municipio {
21195        ibge_code: 4314506,
21196        name: "Pinheiro Machado",
21197        state: State::RS,
21198    },
21199    Municipio {
21200        ibge_code: 4314548,
21201        name: "Pinto Bandeira",
21202        state: State::RS,
21203    },
21204    Municipio {
21205        ibge_code: 4314555,
21206        name: "Pirapó",
21207        state: State::RS,
21208    },
21209    Municipio {
21210        ibge_code: 4314605,
21211        name: "Piratini",
21212        state: State::RS,
21213    },
21214    Municipio {
21215        ibge_code: 4314704,
21216        name: "Planalto",
21217        state: State::RS,
21218    },
21219    Municipio {
21220        ibge_code: 4314787,
21221        name: "Ponte Preta",
21222        state: State::RS,
21223    },
21224    Municipio {
21225        ibge_code: 4314779,
21226        name: "Pontão",
21227        state: State::RS,
21228    },
21229    Municipio {
21230        ibge_code: 4314902,
21231        name: "Porto Alegre",
21232        state: State::RS,
21233    },
21234    Municipio {
21235        ibge_code: 4315008,
21236        name: "Porto Lucena",
21237        state: State::RS,
21238    },
21239    Municipio {
21240        ibge_code: 4315057,
21241        name: "Porto Mauá",
21242        state: State::RS,
21243    },
21244    Municipio {
21245        ibge_code: 4315073,
21246        name: "Porto Vera Cruz",
21247        state: State::RS,
21248    },
21249    Municipio {
21250        ibge_code: 4315107,
21251        name: "Porto Xavier",
21252        state: State::RS,
21253    },
21254    Municipio {
21255        ibge_code: 4314803,
21256        name: "Portão",
21257        state: State::RS,
21258    },
21259    Municipio {
21260        ibge_code: 4315131,
21261        name: "Pouso Novo",
21262        state: State::RS,
21263    },
21264    Municipio {
21265        ibge_code: 4314753,
21266        name: "Poço das Antas",
21267        state: State::RS,
21268    },
21269    Municipio {
21270        ibge_code: 4315149,
21271        name: "Presidente Lucena",
21272        state: State::RS,
21273    },
21274    Municipio {
21275        ibge_code: 4315156,
21276        name: "Progresso",
21277        state: State::RS,
21278    },
21279    Municipio {
21280        ibge_code: 4315172,
21281        name: "Protásio Alves",
21282        state: State::RS,
21283    },
21284    Municipio {
21285        ibge_code: 4315206,
21286        name: "Putinga",
21287        state: State::RS,
21288    },
21289    Municipio {
21290        ibge_code: 4315305,
21291        name: "Quaraí",
21292        state: State::RS,
21293    },
21294    Municipio {
21295        ibge_code: 4315313,
21296        name: "Quatro Irmãos",
21297        state: State::RS,
21298    },
21299    Municipio {
21300        ibge_code: 4315321,
21301        name: "Quevedos",
21302        state: State::RS,
21303    },
21304    Municipio {
21305        ibge_code: 4315354,
21306        name: "Quinze de Novembro",
21307        state: State::RS,
21308    },
21309    Municipio {
21310        ibge_code: 4315404,
21311        name: "Redentora",
21312        state: State::RS,
21313    },
21314    Municipio {
21315        ibge_code: 4315453,
21316        name: "Relvado",
21317        state: State::RS,
21318    },
21319    Municipio {
21320        ibge_code: 4315503,
21321        name: "Restinga Sêca",
21322        state: State::RS,
21323    },
21324    Municipio {
21325        ibge_code: 4315602,
21326        name: "Rio Grande",
21327        state: State::RS,
21328    },
21329    Municipio {
21330        ibge_code: 4315701,
21331        name: "Rio Pardo",
21332        state: State::RS,
21333    },
21334    Municipio {
21335        ibge_code: 4315552,
21336        name: "Rio dos Índios",
21337        state: State::RS,
21338    },
21339    Municipio {
21340        ibge_code: 4315750,
21341        name: "Riozinho",
21342        state: State::RS,
21343    },
21344    Municipio {
21345        ibge_code: 4315800,
21346        name: "Roca Sales",
21347        state: State::RS,
21348    },
21349    Municipio {
21350        ibge_code: 4315909,
21351        name: "Rodeio Bonito",
21352        state: State::RS,
21353    },
21354    Municipio {
21355        ibge_code: 4315958,
21356        name: "Rolador",
21357        state: State::RS,
21358    },
21359    Municipio {
21360        ibge_code: 4316006,
21361        name: "Rolante",
21362        state: State::RS,
21363    },
21364    Municipio {
21365        ibge_code: 4316105,
21366        name: "Ronda Alta",
21367        state: State::RS,
21368    },
21369    Municipio {
21370        ibge_code: 4316204,
21371        name: "Rondinha",
21372        state: State::RS,
21373    },
21374    Municipio {
21375        ibge_code: 4316303,
21376        name: "Roque Gonzales",
21377        state: State::RS,
21378    },
21379    Municipio {
21380        ibge_code: 4316402,
21381        name: "Rosário do Sul",
21382        state: State::RS,
21383    },
21384    Municipio {
21385        ibge_code: 4316428,
21386        name: "Sagrada Família",
21387        state: State::RS,
21388    },
21389    Municipio {
21390        ibge_code: 4316436,
21391        name: "Saldanha Marinho",
21392        state: State::RS,
21393    },
21394    Municipio {
21395        ibge_code: 4316451,
21396        name: "Salto do Jacuí",
21397        state: State::RS,
21398    },
21399    Municipio {
21400        ibge_code: 4316477,
21401        name: "Salvador das Missões",
21402        state: State::RS,
21403    },
21404    Municipio {
21405        ibge_code: 4316501,
21406        name: "Salvador do Sul",
21407        state: State::RS,
21408    },
21409    Municipio {
21410        ibge_code: 4316600,
21411        name: "Sananduva",
21412        state: State::RS,
21413    },
21414    Municipio {
21415        ibge_code: 4317103,
21416        name: "Sant'Ana do Livramento",
21417        state: State::RS,
21418    },
21419    Municipio {
21420        ibge_code: 4316709,
21421        name: "Santa Bárbara do Sul",
21422        state: State::RS,
21423    },
21424    Municipio {
21425        ibge_code: 4316733,
21426        name: "Santa Cecília do Sul",
21427        state: State::RS,
21428    },
21429    Municipio {
21430        ibge_code: 4316758,
21431        name: "Santa Clara do Sul",
21432        state: State::RS,
21433    },
21434    Municipio {
21435        ibge_code: 4316808,
21436        name: "Santa Cruz do Sul",
21437        state: State::RS,
21438    },
21439    Municipio {
21440        ibge_code: 4316972,
21441        name: "Santa Margarida do Sul",
21442        state: State::RS,
21443    },
21444    Municipio {
21445        ibge_code: 4316907,
21446        name: "Santa Maria",
21447        state: State::RS,
21448    },
21449    Municipio {
21450        ibge_code: 4316956,
21451        name: "Santa Maria do Herval",
21452        state: State::RS,
21453    },
21454    Municipio {
21455        ibge_code: 4317202,
21456        name: "Santa Rosa",
21457        state: State::RS,
21458    },
21459    Municipio {
21460        ibge_code: 4317251,
21461        name: "Santa Tereza",
21462        state: State::RS,
21463    },
21464    Municipio {
21465        ibge_code: 4317301,
21466        name: "Santa Vitória do Palmar",
21467        state: State::RS,
21468    },
21469    Municipio {
21470        ibge_code: 4317004,
21471        name: "Santana da Boa Vista",
21472        state: State::RS,
21473    },
21474    Municipio {
21475        ibge_code: 4317400,
21476        name: "Santiago",
21477        state: State::RS,
21478    },
21479    Municipio {
21480        ibge_code: 4317608,
21481        name: "Santo Antônio da Patrulha",
21482        state: State::RS,
21483    },
21484    Municipio {
21485        ibge_code: 4317707,
21486        name: "Santo Antônio das Missões",
21487        state: State::RS,
21488    },
21489    Municipio {
21490        ibge_code: 4317558,
21491        name: "Santo Antônio do Palma",
21492        state: State::RS,
21493    },
21494    Municipio {
21495        ibge_code: 4317756,
21496        name: "Santo Antônio do Planalto",
21497        state: State::RS,
21498    },
21499    Municipio {
21500        ibge_code: 4317806,
21501        name: "Santo Augusto",
21502        state: State::RS,
21503    },
21504    Municipio {
21505        ibge_code: 4317905,
21506        name: "Santo Cristo",
21507        state: State::RS,
21508    },
21509    Municipio {
21510        ibge_code: 4317954,
21511        name: "Santo Expedito do Sul",
21512        state: State::RS,
21513    },
21514    Municipio {
21515        ibge_code: 4317509,
21516        name: "Santo Ângelo",
21517        state: State::RS,
21518    },
21519    Municipio {
21520        ibge_code: 4319901,
21521        name: "Sapiranga",
21522        state: State::RS,
21523    },
21524    Municipio {
21525        ibge_code: 4320008,
21526        name: "Sapucaia do Sul",
21527        state: State::RS,
21528    },
21529    Municipio {
21530        ibge_code: 4320107,
21531        name: "Sarandi",
21532        state: State::RS,
21533    },
21534    Municipio {
21535        ibge_code: 4320206,
21536        name: "Seberi",
21537        state: State::RS,
21538    },
21539    Municipio {
21540        ibge_code: 4320230,
21541        name: "Sede Nova",
21542        state: State::RS,
21543    },
21544    Municipio {
21545        ibge_code: 4320263,
21546        name: "Segredo",
21547        state: State::RS,
21548    },
21549    Municipio {
21550        ibge_code: 4320305,
21551        name: "Selbach",
21552        state: State::RS,
21553    },
21554    Municipio {
21555        ibge_code: 4320321,
21556        name: "Senador Salgado Filho",
21557        state: State::RS,
21558    },
21559    Municipio {
21560        ibge_code: 4320354,
21561        name: "Sentinela do Sul",
21562        state: State::RS,
21563    },
21564    Municipio {
21565        ibge_code: 4320404,
21566        name: "Serafina Corrêa",
21567        state: State::RS,
21568    },
21569    Municipio {
21570        ibge_code: 4320503,
21571        name: "Sertão",
21572        state: State::RS,
21573    },
21574    Municipio {
21575        ibge_code: 4320552,
21576        name: "Sertão Santana",
21577        state: State::RS,
21578    },
21579    Municipio {
21580        ibge_code: 4320578,
21581        name: "Sete de Setembro",
21582        state: State::RS,
21583    },
21584    Municipio {
21585        ibge_code: 4320602,
21586        name: "Severiano de Almeida",
21587        state: State::RS,
21588    },
21589    Municipio {
21590        ibge_code: 4320651,
21591        name: "Silveira Martins",
21592        state: State::RS,
21593    },
21594    Municipio {
21595        ibge_code: 4320677,
21596        name: "Sinimbu",
21597        state: State::RS,
21598    },
21599    Municipio {
21600        ibge_code: 4320701,
21601        name: "Sobradinho",
21602        state: State::RS,
21603    },
21604    Municipio {
21605        ibge_code: 4320800,
21606        name: "Soledade",
21607        state: State::RS,
21608    },
21609    Municipio {
21610        ibge_code: 4318002,
21611        name: "São Borja",
21612        state: State::RS,
21613    },
21614    Municipio {
21615        ibge_code: 4318051,
21616        name: "São Domingos do Sul",
21617        state: State::RS,
21618    },
21619    Municipio {
21620        ibge_code: 4318101,
21621        name: "São Francisco de Assis",
21622        state: State::RS,
21623    },
21624    Municipio {
21625        ibge_code: 4318200,
21626        name: "São Francisco de Paula",
21627        state: State::RS,
21628    },
21629    Municipio {
21630        ibge_code: 4318309,
21631        name: "São Gabriel",
21632        state: State::RS,
21633    },
21634    Municipio {
21635        ibge_code: 4318408,
21636        name: "São Jerônimo",
21637        state: State::RS,
21638    },
21639    Municipio {
21640        ibge_code: 4318440,
21641        name: "São Jorge",
21642        state: State::RS,
21643    },
21644    Municipio {
21645        ibge_code: 4318457,
21646        name: "São José das Missões",
21647        state: State::RS,
21648    },
21649    Municipio {
21650        ibge_code: 4318465,
21651        name: "São José do Herval",
21652        state: State::RS,
21653    },
21654    Municipio {
21655        ibge_code: 4318481,
21656        name: "São José do Hortêncio",
21657        state: State::RS,
21658    },
21659    Municipio {
21660        ibge_code: 4318499,
21661        name: "São José do Inhacorá",
21662        state: State::RS,
21663    },
21664    Municipio {
21665        ibge_code: 4318507,
21666        name: "São José do Norte",
21667        state: State::RS,
21668    },
21669    Municipio {
21670        ibge_code: 4318606,
21671        name: "São José do Ouro",
21672        state: State::RS,
21673    },
21674    Municipio {
21675        ibge_code: 4318614,
21676        name: "São José do Sul",
21677        state: State::RS,
21678    },
21679    Municipio {
21680        ibge_code: 4318622,
21681        name: "São José dos Ausentes",
21682        state: State::RS,
21683    },
21684    Municipio {
21685        ibge_code: 4318424,
21686        name: "São João da Urtiga",
21687        state: State::RS,
21688    },
21689    Municipio {
21690        ibge_code: 4318432,
21691        name: "São João do Polêsine",
21692        state: State::RS,
21693    },
21694    Municipio {
21695        ibge_code: 4318705,
21696        name: "São Leopoldo",
21697        state: State::RS,
21698    },
21699    Municipio {
21700        ibge_code: 4318804,
21701        name: "São Lourenço do Sul",
21702        state: State::RS,
21703    },
21704    Municipio {
21705        ibge_code: 4318903,
21706        name: "São Luiz Gonzaga",
21707        state: State::RS,
21708    },
21709    Municipio {
21710        ibge_code: 4319000,
21711        name: "São Marcos",
21712        state: State::RS,
21713    },
21714    Municipio {
21715        ibge_code: 4319109,
21716        name: "São Martinho",
21717        state: State::RS,
21718    },
21719    Municipio {
21720        ibge_code: 4319125,
21721        name: "São Martinho da Serra",
21722        state: State::RS,
21723    },
21724    Municipio {
21725        ibge_code: 4319158,
21726        name: "São Miguel das Missões",
21727        state: State::RS,
21728    },
21729    Municipio {
21730        ibge_code: 4319208,
21731        name: "São Nicolau",
21732        state: State::RS,
21733    },
21734    Municipio {
21735        ibge_code: 4319307,
21736        name: "São Paulo das Missões",
21737        state: State::RS,
21738    },
21739    Municipio {
21740        ibge_code: 4319356,
21741        name: "São Pedro da Serra",
21742        state: State::RS,
21743    },
21744    Municipio {
21745        ibge_code: 4319364,
21746        name: "São Pedro das Missões",
21747        state: State::RS,
21748    },
21749    Municipio {
21750        ibge_code: 4319372,
21751        name: "São Pedro do Butiá",
21752        state: State::RS,
21753    },
21754    Municipio {
21755        ibge_code: 4319406,
21756        name: "São Pedro do Sul",
21757        state: State::RS,
21758    },
21759    Municipio {
21760        ibge_code: 4319505,
21761        name: "São Sebastião do Caí",
21762        state: State::RS,
21763    },
21764    Municipio {
21765        ibge_code: 4319604,
21766        name: "São Sepé",
21767        state: State::RS,
21768    },
21769    Municipio {
21770        ibge_code: 4319703,
21771        name: "São Valentim",
21772        state: State::RS,
21773    },
21774    Municipio {
21775        ibge_code: 4319711,
21776        name: "São Valentim do Sul",
21777        state: State::RS,
21778    },
21779    Municipio {
21780        ibge_code: 4319737,
21781        name: "São Valério do Sul",
21782        state: State::RS,
21783    },
21784    Municipio {
21785        ibge_code: 4319752,
21786        name: "São Vendelino",
21787        state: State::RS,
21788    },
21789    Municipio {
21790        ibge_code: 4319802,
21791        name: "São Vicente do Sul",
21792        state: State::RS,
21793    },
21794    Municipio {
21795        ibge_code: 4320453,
21796        name: "Sério",
21797        state: State::RS,
21798    },
21799    Municipio {
21800        ibge_code: 4320859,
21801        name: "Tabaí",
21802        state: State::RS,
21803    },
21804    Municipio {
21805        ibge_code: 4320909,
21806        name: "Tapejara",
21807        state: State::RS,
21808    },
21809    Municipio {
21810        ibge_code: 4321006,
21811        name: "Tapera",
21812        state: State::RS,
21813    },
21814    Municipio {
21815        ibge_code: 4321105,
21816        name: "Tapes",
21817        state: State::RS,
21818    },
21819    Municipio {
21820        ibge_code: 4321204,
21821        name: "Taquara",
21822        state: State::RS,
21823    },
21824    Municipio {
21825        ibge_code: 4321303,
21826        name: "Taquari",
21827        state: State::RS,
21828    },
21829    Municipio {
21830        ibge_code: 4321329,
21831        name: "Taquaruçu do Sul",
21832        state: State::RS,
21833    },
21834    Municipio {
21835        ibge_code: 4321352,
21836        name: "Tavares",
21837        state: State::RS,
21838    },
21839    Municipio {
21840        ibge_code: 4321402,
21841        name: "Tenente Portela",
21842        state: State::RS,
21843    },
21844    Municipio {
21845        ibge_code: 4321436,
21846        name: "Terra de Areia",
21847        state: State::RS,
21848    },
21849    Municipio {
21850        ibge_code: 4321451,
21851        name: "Teutônia",
21852        state: State::RS,
21853    },
21854    Municipio {
21855        ibge_code: 4321469,
21856        name: "Tio Hugo",
21857        state: State::RS,
21858    },
21859    Municipio {
21860        ibge_code: 4321477,
21861        name: "Tiradentes do Sul",
21862        state: State::RS,
21863    },
21864    Municipio {
21865        ibge_code: 4321493,
21866        name: "Toropi",
21867        state: State::RS,
21868    },
21869    Municipio {
21870        ibge_code: 4321501,
21871        name: "Torres",
21872        state: State::RS,
21873    },
21874    Municipio {
21875        ibge_code: 4321600,
21876        name: "Tramandaí",
21877        state: State::RS,
21878    },
21879    Municipio {
21880        ibge_code: 4321626,
21881        name: "Travesseiro",
21882        state: State::RS,
21883    },
21884    Municipio {
21885        ibge_code: 4321956,
21886        name: "Trindade do Sul",
21887        state: State::RS,
21888    },
21889    Municipio {
21890        ibge_code: 4322004,
21891        name: "Triunfo",
21892        state: State::RS,
21893    },
21894    Municipio {
21895        ibge_code: 4321634,
21896        name: "Três Arroios",
21897        state: State::RS,
21898    },
21899    Municipio {
21900        ibge_code: 4321667,
21901        name: "Três Cachoeiras",
21902        state: State::RS,
21903    },
21904    Municipio {
21905        ibge_code: 4321709,
21906        name: "Três Coroas",
21907        state: State::RS,
21908    },
21909    Municipio {
21910        ibge_code: 4321832,
21911        name: "Três Forquilhas",
21912        state: State::RS,
21913    },
21914    Municipio {
21915        ibge_code: 4321857,
21916        name: "Três Palmeiras",
21917        state: State::RS,
21918    },
21919    Municipio {
21920        ibge_code: 4321907,
21921        name: "Três Passos",
21922        state: State::RS,
21923    },
21924    Municipio {
21925        ibge_code: 4321808,
21926        name: "Três de Maio",
21927        state: State::RS,
21928    },
21929    Municipio {
21930        ibge_code: 4322103,
21931        name: "Tucunduva",
21932        state: State::RS,
21933    },
21934    Municipio {
21935        ibge_code: 4322152,
21936        name: "Tunas",
21937        state: State::RS,
21938    },
21939    Municipio {
21940        ibge_code: 4322186,
21941        name: "Tupanci do Sul",
21942        state: State::RS,
21943    },
21944    Municipio {
21945        ibge_code: 4322202,
21946        name: "Tupanciretã",
21947        state: State::RS,
21948    },
21949    Municipio {
21950        ibge_code: 4322251,
21951        name: "Tupandi",
21952        state: State::RS,
21953    },
21954    Municipio {
21955        ibge_code: 4322301,
21956        name: "Tuparendi",
21957        state: State::RS,
21958    },
21959    Municipio {
21960        ibge_code: 4322327,
21961        name: "Turuçu",
21962        state: State::RS,
21963    },
21964    Municipio {
21965        ibge_code: 4322343,
21966        name: "Ubiretama",
21967        state: State::RS,
21968    },
21969    Municipio {
21970        ibge_code: 4322376,
21971        name: "Unistalda",
21972        state: State::RS,
21973    },
21974    Municipio {
21975        ibge_code: 4322350,
21976        name: "União da Serra",
21977        state: State::RS,
21978    },
21979    Municipio {
21980        ibge_code: 4322400,
21981        name: "Uruguaiana",
21982        state: State::RS,
21983    },
21984    Municipio {
21985        ibge_code: 4322509,
21986        name: "Vacaria",
21987        state: State::RS,
21988    },
21989    Municipio {
21990        ibge_code: 4322541,
21991        name: "Vale Real",
21992        state: State::RS,
21993    },
21994    Municipio {
21995        ibge_code: 4322525,
21996        name: "Vale Verde",
21997        state: State::RS,
21998    },
21999    Municipio {
22000        ibge_code: 4322533,
22001        name: "Vale do Sol",
22002        state: State::RS,
22003    },
22004    Municipio {
22005        ibge_code: 4322558,
22006        name: "Vanini",
22007        state: State::RS,
22008    },
22009    Municipio {
22010        ibge_code: 4322608,
22011        name: "Venâncio Aires",
22012        state: State::RS,
22013    },
22014    Municipio {
22015        ibge_code: 4322707,
22016        name: "Vera Cruz",
22017        state: State::RS,
22018    },
22019    Municipio {
22020        ibge_code: 4322806,
22021        name: "Veranópolis",
22022        state: State::RS,
22023    },
22024    Municipio {
22025        ibge_code: 4322855,
22026        name: "Vespasiano Corrêa",
22027        state: State::RS,
22028    },
22029    Municipio {
22030        ibge_code: 4322905,
22031        name: "Viadutos",
22032        state: State::RS,
22033    },
22034    Municipio {
22035        ibge_code: 4323002,
22036        name: "Viamão",
22037        state: State::RS,
22038    },
22039    Municipio {
22040        ibge_code: 4323101,
22041        name: "Vicente Dutra",
22042        state: State::RS,
22043    },
22044    Municipio {
22045        ibge_code: 4323200,
22046        name: "Victor Graeff",
22047        state: State::RS,
22048    },
22049    Municipio {
22050        ibge_code: 4323309,
22051        name: "Vila Flores",
22052        state: State::RS,
22053    },
22054    Municipio {
22055        ibge_code: 4323358,
22056        name: "Vila Lângaro",
22057        state: State::RS,
22058    },
22059    Municipio {
22060        ibge_code: 4323408,
22061        name: "Vila Maria",
22062        state: State::RS,
22063    },
22064    Municipio {
22065        ibge_code: 4323457,
22066        name: "Vila Nova do Sul",
22067        state: State::RS,
22068    },
22069    Municipio {
22070        ibge_code: 4323507,
22071        name: "Vista Alegre",
22072        state: State::RS,
22073    },
22074    Municipio {
22075        ibge_code: 4323606,
22076        name: "Vista Alegre do Prata",
22077        state: State::RS,
22078    },
22079    Municipio {
22080        ibge_code: 4323705,
22081        name: "Vista Gaúcha",
22082        state: State::RS,
22083    },
22084    Municipio {
22085        ibge_code: 4323754,
22086        name: "Vitória das Missões",
22087        state: State::RS,
22088    },
22089    Municipio {
22090        ibge_code: 4323770,
22091        name: "Westfália",
22092        state: State::RS,
22093    },
22094    Municipio {
22095        ibge_code: 4323804,
22096        name: "Xangri-lá",
22097        state: State::RS,
22098    },
22099    Municipio {
22100        ibge_code: 4300059,
22101        name: "Água Santa",
22102        state: State::RS,
22103    },
22104    Municipio {
22105        ibge_code: 4301552,
22106        name: "Áurea",
22107        state: State::RS,
22108    },
22109    Municipio {
22110        ibge_code: 4200051,
22111        name: "Abdon Batista",
22112        state: State::SC,
22113    },
22114    Municipio {
22115        ibge_code: 4200101,
22116        name: "Abelardo Luz",
22117        state: State::SC,
22118    },
22119    Municipio {
22120        ibge_code: 4200200,
22121        name: "Agrolândia",
22122        state: State::SC,
22123    },
22124    Municipio {
22125        ibge_code: 4200309,
22126        name: "Agronômica",
22127        state: State::SC,
22128    },
22129    Municipio {
22130        ibge_code: 4200705,
22131        name: "Alfredo Wagner",
22132        state: State::SC,
22133    },
22134    Municipio {
22135        ibge_code: 4200754,
22136        name: "Alto Bela Vista",
22137        state: State::SC,
22138    },
22139    Municipio {
22140        ibge_code: 4200804,
22141        name: "Anchieta",
22142        state: State::SC,
22143    },
22144    Municipio {
22145        ibge_code: 4200903,
22146        name: "Angelina",
22147        state: State::SC,
22148    },
22149    Municipio {
22150        ibge_code: 4201000,
22151        name: "Anita Garibaldi",
22152        state: State::SC,
22153    },
22154    Municipio {
22155        ibge_code: 4201109,
22156        name: "Anitápolis",
22157        state: State::SC,
22158    },
22159    Municipio {
22160        ibge_code: 4201208,
22161        name: "Antônio Carlos",
22162        state: State::SC,
22163    },
22164    Municipio {
22165        ibge_code: 4201257,
22166        name: "Apiúna",
22167        state: State::SC,
22168    },
22169    Municipio {
22170        ibge_code: 4201273,
22171        name: "Arabutã",
22172        state: State::SC,
22173    },
22174    Municipio {
22175        ibge_code: 4201307,
22176        name: "Araquari",
22177        state: State::SC,
22178    },
22179    Municipio {
22180        ibge_code: 4201406,
22181        name: "Araranguá",
22182        state: State::SC,
22183    },
22184    Municipio {
22185        ibge_code: 4201505,
22186        name: "Armazém",
22187        state: State::SC,
22188    },
22189    Municipio {
22190        ibge_code: 4201604,
22191        name: "Arroio Trinta",
22192        state: State::SC,
22193    },
22194    Municipio {
22195        ibge_code: 4201653,
22196        name: "Arvoredo",
22197        state: State::SC,
22198    },
22199    Municipio {
22200        ibge_code: 4201703,
22201        name: "Ascurra",
22202        state: State::SC,
22203    },
22204    Municipio {
22205        ibge_code: 4201802,
22206        name: "Atalanta",
22207        state: State::SC,
22208    },
22209    Municipio {
22210        ibge_code: 4201901,
22211        name: "Aurora",
22212        state: State::SC,
22213    },
22214    Municipio {
22215        ibge_code: 4201950,
22216        name: "Balneário Arroio do Silva",
22217        state: State::SC,
22218    },
22219    Municipio {
22220        ibge_code: 4202057,
22221        name: "Balneário Barra do Sul",
22222        state: State::SC,
22223    },
22224    Municipio {
22225        ibge_code: 4202008,
22226        name: "Balneário Camboriú",
22227        state: State::SC,
22228    },
22229    Municipio {
22230        ibge_code: 4202073,
22231        name: "Balneário Gaivota",
22232        state: State::SC,
22233    },
22234    Municipio {
22235        ibge_code: 4212809,
22236        name: "Balneário Piçarras",
22237        state: State::SC,
22238    },
22239    Municipio {
22240        ibge_code: 4220000,
22241        name: "Balneário Rincão",
22242        state: State::SC,
22243    },
22244    Municipio {
22245        ibge_code: 4202081,
22246        name: "Bandeirante",
22247        state: State::SC,
22248    },
22249    Municipio {
22250        ibge_code: 4202099,
22251        name: "Barra Bonita",
22252        state: State::SC,
22253    },
22254    Municipio {
22255        ibge_code: 4202107,
22256        name: "Barra Velha",
22257        state: State::SC,
22258    },
22259    Municipio {
22260        ibge_code: 4202131,
22261        name: "Bela Vista do Toldo",
22262        state: State::SC,
22263    },
22264    Municipio {
22265        ibge_code: 4202156,
22266        name: "Belmonte",
22267        state: State::SC,
22268    },
22269    Municipio {
22270        ibge_code: 4202206,
22271        name: "Benedito Novo",
22272        state: State::SC,
22273    },
22274    Municipio {
22275        ibge_code: 4202305,
22276        name: "Biguaçu",
22277        state: State::SC,
22278    },
22279    Municipio {
22280        ibge_code: 4202404,
22281        name: "Blumenau",
22282        state: State::SC,
22283    },
22284    Municipio {
22285        ibge_code: 4202438,
22286        name: "Bocaina do Sul",
22287        state: State::SC,
22288    },
22289    Municipio {
22290        ibge_code: 4202503,
22291        name: "Bom Jardim da Serra",
22292        state: State::SC,
22293    },
22294    Municipio {
22295        ibge_code: 4202537,
22296        name: "Bom Jesus",
22297        state: State::SC,
22298    },
22299    Municipio {
22300        ibge_code: 4202578,
22301        name: "Bom Jesus do Oeste",
22302        state: State::SC,
22303    },
22304    Municipio {
22305        ibge_code: 4202602,
22306        name: "Bom Retiro",
22307        state: State::SC,
22308    },
22309    Municipio {
22310        ibge_code: 4202453,
22311        name: "Bombinhas",
22312        state: State::SC,
22313    },
22314    Municipio {
22315        ibge_code: 4202701,
22316        name: "Botuverá",
22317        state: State::SC,
22318    },
22319    Municipio {
22320        ibge_code: 4202800,
22321        name: "Braço do Norte",
22322        state: State::SC,
22323    },
22324    Municipio {
22325        ibge_code: 4202859,
22326        name: "Braço do Trombudo",
22327        state: State::SC,
22328    },
22329    Municipio {
22330        ibge_code: 4202875,
22331        name: "Brunópolis",
22332        state: State::SC,
22333    },
22334    Municipio {
22335        ibge_code: 4202909,
22336        name: "Brusque",
22337        state: State::SC,
22338    },
22339    Municipio {
22340        ibge_code: 4203105,
22341        name: "Caibi",
22342        state: State::SC,
22343    },
22344    Municipio {
22345        ibge_code: 4203154,
22346        name: "Calmon",
22347        state: State::SC,
22348    },
22349    Municipio {
22350        ibge_code: 4203204,
22351        name: "Camboriú",
22352        state: State::SC,
22353    },
22354    Municipio {
22355        ibge_code: 4203303,
22356        name: "Campo Alegre",
22357        state: State::SC,
22358    },
22359    Municipio {
22360        ibge_code: 4203402,
22361        name: "Campo Belo do Sul",
22362        state: State::SC,
22363    },
22364    Municipio {
22365        ibge_code: 4203501,
22366        name: "Campo Erê",
22367        state: State::SC,
22368    },
22369    Municipio {
22370        ibge_code: 4203600,
22371        name: "Campos Novos",
22372        state: State::SC,
22373    },
22374    Municipio {
22375        ibge_code: 4203709,
22376        name: "Canelinha",
22377        state: State::SC,
22378    },
22379    Municipio {
22380        ibge_code: 4203808,
22381        name: "Canoinhas",
22382        state: State::SC,
22383    },
22384    Municipio {
22385        ibge_code: 4203907,
22386        name: "Capinzal",
22387        state: State::SC,
22388    },
22389    Municipio {
22390        ibge_code: 4203956,
22391        name: "Capivari de Baixo",
22392        state: State::SC,
22393    },
22394    Municipio {
22395        ibge_code: 4203253,
22396        name: "Capão Alto",
22397        state: State::SC,
22398    },
22399    Municipio {
22400        ibge_code: 4204004,
22401        name: "Catanduvas",
22402        state: State::SC,
22403    },
22404    Municipio {
22405        ibge_code: 4204103,
22406        name: "Caxambu do Sul",
22407        state: State::SC,
22408    },
22409    Municipio {
22410        ibge_code: 4203006,
22411        name: "Caçador",
22412        state: State::SC,
22413    },
22414    Municipio {
22415        ibge_code: 4204152,
22416        name: "Celso Ramos",
22417        state: State::SC,
22418    },
22419    Municipio {
22420        ibge_code: 4204178,
22421        name: "Cerro Negro",
22422        state: State::SC,
22423    },
22424    Municipio {
22425        ibge_code: 4204194,
22426        name: "Chapadão do Lageado",
22427        state: State::SC,
22428    },
22429    Municipio {
22430        ibge_code: 4204202,
22431        name: "Chapecó",
22432        state: State::SC,
22433    },
22434    Municipio {
22435        ibge_code: 4204251,
22436        name: "Cocal do Sul",
22437        state: State::SC,
22438    },
22439    Municipio {
22440        ibge_code: 4204301,
22441        name: "Concórdia",
22442        state: State::SC,
22443    },
22444    Municipio {
22445        ibge_code: 4204350,
22446        name: "Cordilheira Alta",
22447        state: State::SC,
22448    },
22449    Municipio {
22450        ibge_code: 4204400,
22451        name: "Coronel Freitas",
22452        state: State::SC,
22453    },
22454    Municipio {
22455        ibge_code: 4204459,
22456        name: "Coronel Martins",
22457        state: State::SC,
22458    },
22459    Municipio {
22460        ibge_code: 4204558,
22461        name: "Correia Pinto",
22462        state: State::SC,
22463    },
22464    Municipio {
22465        ibge_code: 4204509,
22466        name: "Corupá",
22467        state: State::SC,
22468    },
22469    Municipio {
22470        ibge_code: 4204608,
22471        name: "Criciúma",
22472        state: State::SC,
22473    },
22474    Municipio {
22475        ibge_code: 4204707,
22476        name: "Cunha Porã",
22477        state: State::SC,
22478    },
22479    Municipio {
22480        ibge_code: 4204756,
22481        name: "Cunhataí",
22482        state: State::SC,
22483    },
22484    Municipio {
22485        ibge_code: 4204806,
22486        name: "Curitibanos",
22487        state: State::SC,
22488    },
22489    Municipio {
22490        ibge_code: 4204905,
22491        name: "Descanso",
22492        state: State::SC,
22493    },
22494    Municipio {
22495        ibge_code: 4205001,
22496        name: "Dionísio Cerqueira",
22497        state: State::SC,
22498    },
22499    Municipio {
22500        ibge_code: 4205100,
22501        name: "Dona Emma",
22502        state: State::SC,
22503    },
22504    Municipio {
22505        ibge_code: 4205159,
22506        name: "Doutor Pedrinho",
22507        state: State::SC,
22508    },
22509    Municipio {
22510        ibge_code: 4205175,
22511        name: "Entre Rios",
22512        state: State::SC,
22513    },
22514    Municipio {
22515        ibge_code: 4205191,
22516        name: "Ermo",
22517        state: State::SC,
22518    },
22519    Municipio {
22520        ibge_code: 4205209,
22521        name: "Erval Velho",
22522        state: State::SC,
22523    },
22524    Municipio {
22525        ibge_code: 4205308,
22526        name: "Faxinal dos Guedes",
22527        state: State::SC,
22528    },
22529    Municipio {
22530        ibge_code: 4205357,
22531        name: "Flor do Sertão",
22532        state: State::SC,
22533    },
22534    Municipio {
22535        ibge_code: 4205407,
22536        name: "Florianópolis",
22537        state: State::SC,
22538    },
22539    Municipio {
22540        ibge_code: 4205431,
22541        name: "Formosa do Sul",
22542        state: State::SC,
22543    },
22544    Municipio {
22545        ibge_code: 4205456,
22546        name: "Forquilhinha",
22547        state: State::SC,
22548    },
22549    Municipio {
22550        ibge_code: 4205506,
22551        name: "Fraiburgo",
22552        state: State::SC,
22553    },
22554    Municipio {
22555        ibge_code: 4205555,
22556        name: "Frei Rogério",
22557        state: State::SC,
22558    },
22559    Municipio {
22560        ibge_code: 4205605,
22561        name: "Galvão",
22562        state: State::SC,
22563    },
22564    Municipio {
22565        ibge_code: 4205704,
22566        name: "Garopaba",
22567        state: State::SC,
22568    },
22569    Municipio {
22570        ibge_code: 4205803,
22571        name: "Garuva",
22572        state: State::SC,
22573    },
22574    Municipio {
22575        ibge_code: 4205902,
22576        name: "Gaspar",
22577        state: State::SC,
22578    },
22579    Municipio {
22580        ibge_code: 4206009,
22581        name: "Governador Celso Ramos",
22582        state: State::SC,
22583    },
22584    Municipio {
22585        ibge_code: 4206207,
22586        name: "Gravatal",
22587        state: State::SC,
22588    },
22589    Municipio {
22590        ibge_code: 4206108,
22591        name: "Grão-Pará",
22592        state: State::SC,
22593    },
22594    Municipio {
22595        ibge_code: 4206306,
22596        name: "Guabiruba",
22597        state: State::SC,
22598    },
22599    Municipio {
22600        ibge_code: 4206405,
22601        name: "Guaraciaba",
22602        state: State::SC,
22603    },
22604    Municipio {
22605        ibge_code: 4206504,
22606        name: "Guaramirim",
22607        state: State::SC,
22608    },
22609    Municipio {
22610        ibge_code: 4206603,
22611        name: "Guarujá do Sul",
22612        state: State::SC,
22613    },
22614    Municipio {
22615        ibge_code: 4206652,
22616        name: "Guatambú",
22617        state: State::SC,
22618    },
22619    Municipio {
22620        ibge_code: 4206702,
22621        name: "Herval d'Oeste",
22622        state: State::SC,
22623    },
22624    Municipio {
22625        ibge_code: 4206751,
22626        name: "Ibiam",
22627        state: State::SC,
22628    },
22629    Municipio {
22630        ibge_code: 4206801,
22631        name: "Ibicaré",
22632        state: State::SC,
22633    },
22634    Municipio {
22635        ibge_code: 4206900,
22636        name: "Ibirama",
22637        state: State::SC,
22638    },
22639    Municipio {
22640        ibge_code: 4207106,
22641        name: "Ilhota",
22642        state: State::SC,
22643    },
22644    Municipio {
22645        ibge_code: 4207205,
22646        name: "Imaruí",
22647        state: State::SC,
22648    },
22649    Municipio {
22650        ibge_code: 4207304,
22651        name: "Imbituba",
22652        state: State::SC,
22653    },
22654    Municipio {
22655        ibge_code: 4207403,
22656        name: "Imbuia",
22657        state: State::SC,
22658    },
22659    Municipio {
22660        ibge_code: 4207502,
22661        name: "Indaial",
22662        state: State::SC,
22663    },
22664    Municipio {
22665        ibge_code: 4207577,
22666        name: "Iomerê",
22667        state: State::SC,
22668    },
22669    Municipio {
22670        ibge_code: 4207601,
22671        name: "Ipira",
22672        state: State::SC,
22673    },
22674    Municipio {
22675        ibge_code: 4207650,
22676        name: "Iporã do Oeste",
22677        state: State::SC,
22678    },
22679    Municipio {
22680        ibge_code: 4207684,
22681        name: "Ipuaçu",
22682        state: State::SC,
22683    },
22684    Municipio {
22685        ibge_code: 4207700,
22686        name: "Ipumirim",
22687        state: State::SC,
22688    },
22689    Municipio {
22690        ibge_code: 4207759,
22691        name: "Iraceminha",
22692        state: State::SC,
22693    },
22694    Municipio {
22695        ibge_code: 4207809,
22696        name: "Irani",
22697        state: State::SC,
22698    },
22699    Municipio {
22700        ibge_code: 4207858,
22701        name: "Irati",
22702        state: State::SC,
22703    },
22704    Municipio {
22705        ibge_code: 4207908,
22706        name: "Irineópolis",
22707        state: State::SC,
22708    },
22709    Municipio {
22710        ibge_code: 4208104,
22711        name: "Itaiópolis",
22712        state: State::SC,
22713    },
22714    Municipio {
22715        ibge_code: 4208203,
22716        name: "Itajaí",
22717        state: State::SC,
22718    },
22719    Municipio {
22720        ibge_code: 4208302,
22721        name: "Itapema",
22722        state: State::SC,
22723    },
22724    Municipio {
22725        ibge_code: 4208401,
22726        name: "Itapiranga",
22727        state: State::SC,
22728    },
22729    Municipio {
22730        ibge_code: 4208450,
22731        name: "Itapoá",
22732        state: State::SC,
22733    },
22734    Municipio {
22735        ibge_code: 4208500,
22736        name: "Ituporanga",
22737        state: State::SC,
22738    },
22739    Municipio {
22740        ibge_code: 4208005,
22741        name: "Itá",
22742        state: State::SC,
22743    },
22744    Municipio {
22745        ibge_code: 4207007,
22746        name: "Içara",
22747        state: State::SC,
22748    },
22749    Municipio {
22750        ibge_code: 4208609,
22751        name: "Jaborá",
22752        state: State::SC,
22753    },
22754    Municipio {
22755        ibge_code: 4208708,
22756        name: "Jacinto Machado",
22757        state: State::SC,
22758    },
22759    Municipio {
22760        ibge_code: 4208807,
22761        name: "Jaguaruna",
22762        state: State::SC,
22763    },
22764    Municipio {
22765        ibge_code: 4208906,
22766        name: "Jaraguá do Sul",
22767        state: State::SC,
22768    },
22769    Municipio {
22770        ibge_code: 4208955,
22771        name: "Jardinópolis",
22772        state: State::SC,
22773    },
22774    Municipio {
22775        ibge_code: 4209003,
22776        name: "Joaçaba",
22777        state: State::SC,
22778    },
22779    Municipio {
22780        ibge_code: 4209102,
22781        name: "Joinville",
22782        state: State::SC,
22783    },
22784    Municipio {
22785        ibge_code: 4209151,
22786        name: "José Boiteux",
22787        state: State::SC,
22788    },
22789    Municipio {
22790        ibge_code: 4209177,
22791        name: "Jupiá",
22792        state: State::SC,
22793    },
22794    Municipio {
22795        ibge_code: 4209201,
22796        name: "Lacerdópolis",
22797        state: State::SC,
22798    },
22799    Municipio {
22800        ibge_code: 4209300,
22801        name: "Lages",
22802        state: State::SC,
22803    },
22804    Municipio {
22805        ibge_code: 4209409,
22806        name: "Laguna",
22807        state: State::SC,
22808    },
22809    Municipio {
22810        ibge_code: 4209458,
22811        name: "Lajeado Grande",
22812        state: State::SC,
22813    },
22814    Municipio {
22815        ibge_code: 4209508,
22816        name: "Laurentino",
22817        state: State::SC,
22818    },
22819    Municipio {
22820        ibge_code: 4209607,
22821        name: "Lauro Müller",
22822        state: State::SC,
22823    },
22824    Municipio {
22825        ibge_code: 4209706,
22826        name: "Lebon Régis",
22827        state: State::SC,
22828    },
22829    Municipio {
22830        ibge_code: 4209805,
22831        name: "Leoberto Leal",
22832        state: State::SC,
22833    },
22834    Municipio {
22835        ibge_code: 4209854,
22836        name: "Lindóia do Sul",
22837        state: State::SC,
22838    },
22839    Municipio {
22840        ibge_code: 4209904,
22841        name: "Lontras",
22842        state: State::SC,
22843    },
22844    Municipio {
22845        ibge_code: 4210001,
22846        name: "Luiz Alves",
22847        state: State::SC,
22848    },
22849    Municipio {
22850        ibge_code: 4210035,
22851        name: "Luzerna",
22852        state: State::SC,
22853    },
22854    Municipio {
22855        ibge_code: 4210050,
22856        name: "Macieira",
22857        state: State::SC,
22858    },
22859    Municipio {
22860        ibge_code: 4210100,
22861        name: "Mafra",
22862        state: State::SC,
22863    },
22864    Municipio {
22865        ibge_code: 4210209,
22866        name: "Major Gercino",
22867        state: State::SC,
22868    },
22869    Municipio {
22870        ibge_code: 4210308,
22871        name: "Major Vieira",
22872        state: State::SC,
22873    },
22874    Municipio {
22875        ibge_code: 4210407,
22876        name: "Maracajá",
22877        state: State::SC,
22878    },
22879    Municipio {
22880        ibge_code: 4210506,
22881        name: "Maravilha",
22882        state: State::SC,
22883    },
22884    Municipio {
22885        ibge_code: 4210555,
22886        name: "Marema",
22887        state: State::SC,
22888    },
22889    Municipio {
22890        ibge_code: 4210605,
22891        name: "Massaranduba",
22892        state: State::SC,
22893    },
22894    Municipio {
22895        ibge_code: 4210704,
22896        name: "Matos Costa",
22897        state: State::SC,
22898    },
22899    Municipio {
22900        ibge_code: 4210803,
22901        name: "Meleiro",
22902        state: State::SC,
22903    },
22904    Municipio {
22905        ibge_code: 4210852,
22906        name: "Mirim Doce",
22907        state: State::SC,
22908    },
22909    Municipio {
22910        ibge_code: 4210902,
22911        name: "Modelo",
22912        state: State::SC,
22913    },
22914    Municipio {
22915        ibge_code: 4211009,
22916        name: "Mondaí",
22917        state: State::SC,
22918    },
22919    Municipio {
22920        ibge_code: 4211058,
22921        name: "Monte Carlo",
22922        state: State::SC,
22923    },
22924    Municipio {
22925        ibge_code: 4211108,
22926        name: "Monte Castelo",
22927        state: State::SC,
22928    },
22929    Municipio {
22930        ibge_code: 4211256,
22931        name: "Morro Grande",
22932        state: State::SC,
22933    },
22934    Municipio {
22935        ibge_code: 4211207,
22936        name: "Morro da Fumaça",
22937        state: State::SC,
22938    },
22939    Municipio {
22940        ibge_code: 4211306,
22941        name: "Navegantes",
22942        state: State::SC,
22943    },
22944    Municipio {
22945        ibge_code: 4211405,
22946        name: "Nova Erechim",
22947        state: State::SC,
22948    },
22949    Municipio {
22950        ibge_code: 4211454,
22951        name: "Nova Itaberaba",
22952        state: State::SC,
22953    },
22954    Municipio {
22955        ibge_code: 4211504,
22956        name: "Nova Trento",
22957        state: State::SC,
22958    },
22959    Municipio {
22960        ibge_code: 4211603,
22961        name: "Nova Veneza",
22962        state: State::SC,
22963    },
22964    Municipio {
22965        ibge_code: 4211652,
22966        name: "Novo Horizonte",
22967        state: State::SC,
22968    },
22969    Municipio {
22970        ibge_code: 4211702,
22971        name: "Orleans",
22972        state: State::SC,
22973    },
22974    Municipio {
22975        ibge_code: 4211751,
22976        name: "Otacílio Costa",
22977        state: State::SC,
22978    },
22979    Municipio {
22980        ibge_code: 4211801,
22981        name: "Ouro",
22982        state: State::SC,
22983    },
22984    Municipio {
22985        ibge_code: 4211850,
22986        name: "Ouro Verde",
22987        state: State::SC,
22988    },
22989    Municipio {
22990        ibge_code: 4211876,
22991        name: "Paial",
22992        state: State::SC,
22993    },
22994    Municipio {
22995        ibge_code: 4211892,
22996        name: "Painel",
22997        state: State::SC,
22998    },
22999    Municipio {
23000        ibge_code: 4211900,
23001        name: "Palhoça",
23002        state: State::SC,
23003    },
23004    Municipio {
23005        ibge_code: 4212007,
23006        name: "Palma Sola",
23007        state: State::SC,
23008    },
23009    Municipio {
23010        ibge_code: 4212056,
23011        name: "Palmeira",
23012        state: State::SC,
23013    },
23014    Municipio {
23015        ibge_code: 4212106,
23016        name: "Palmitos",
23017        state: State::SC,
23018    },
23019    Municipio {
23020        ibge_code: 4212205,
23021        name: "Papanduva",
23022        state: State::SC,
23023    },
23024    Municipio {
23025        ibge_code: 4212239,
23026        name: "Paraíso",
23027        state: State::SC,
23028    },
23029    Municipio {
23030        ibge_code: 4212254,
23031        name: "Passo de Torres",
23032        state: State::SC,
23033    },
23034    Municipio {
23035        ibge_code: 4212270,
23036        name: "Passos Maia",
23037        state: State::SC,
23038    },
23039    Municipio {
23040        ibge_code: 4212304,
23041        name: "Paulo Lopes",
23042        state: State::SC,
23043    },
23044    Municipio {
23045        ibge_code: 4212403,
23046        name: "Pedras Grandes",
23047        state: State::SC,
23048    },
23049    Municipio {
23050        ibge_code: 4212502,
23051        name: "Penha",
23052        state: State::SC,
23053    },
23054    Municipio {
23055        ibge_code: 4212601,
23056        name: "Peritiba",
23057        state: State::SC,
23058    },
23059    Municipio {
23060        ibge_code: 4212650,
23061        name: "Pescaria Brava",
23062        state: State::SC,
23063    },
23064    Municipio {
23065        ibge_code: 4212700,
23066        name: "Petrolândia",
23067        state: State::SC,
23068    },
23069    Municipio {
23070        ibge_code: 4212908,
23071        name: "Pinhalzinho",
23072        state: State::SC,
23073    },
23074    Municipio {
23075        ibge_code: 4213005,
23076        name: "Pinheiro Preto",
23077        state: State::SC,
23078    },
23079    Municipio {
23080        ibge_code: 4213104,
23081        name: "Piratuba",
23082        state: State::SC,
23083    },
23084    Municipio {
23085        ibge_code: 4213153,
23086        name: "Planalto Alegre",
23087        state: State::SC,
23088    },
23089    Municipio {
23090        ibge_code: 4213203,
23091        name: "Pomerode",
23092        state: State::SC,
23093    },
23094    Municipio {
23095        ibge_code: 4213302,
23096        name: "Ponte Alta",
23097        state: State::SC,
23098    },
23099    Municipio {
23100        ibge_code: 4213351,
23101        name: "Ponte Alta do Norte",
23102        state: State::SC,
23103    },
23104    Municipio {
23105        ibge_code: 4213401,
23106        name: "Ponte Serrada",
23107        state: State::SC,
23108    },
23109    Municipio {
23110        ibge_code: 4213500,
23111        name: "Porto Belo",
23112        state: State::SC,
23113    },
23114    Municipio {
23115        ibge_code: 4213609,
23116        name: "Porto União",
23117        state: State::SC,
23118    },
23119    Municipio {
23120        ibge_code: 4213708,
23121        name: "Pouso Redondo",
23122        state: State::SC,
23123    },
23124    Municipio {
23125        ibge_code: 4213807,
23126        name: "Praia Grande",
23127        state: State::SC,
23128    },
23129    Municipio {
23130        ibge_code: 4213906,
23131        name: "Presidente Castello Branco",
23132        state: State::SC,
23133    },
23134    Municipio {
23135        ibge_code: 4214003,
23136        name: "Presidente Getúlio",
23137        state: State::SC,
23138    },
23139    Municipio {
23140        ibge_code: 4214102,
23141        name: "Presidente Nereu",
23142        state: State::SC,
23143    },
23144    Municipio {
23145        ibge_code: 4214151,
23146        name: "Princesa",
23147        state: State::SC,
23148    },
23149    Municipio {
23150        ibge_code: 4214201,
23151        name: "Quilombo",
23152        state: State::SC,
23153    },
23154    Municipio {
23155        ibge_code: 4214300,
23156        name: "Rancho Queimado",
23157        state: State::SC,
23158    },
23159    Municipio {
23160        ibge_code: 4214904,
23161        name: "Rio Fortuna",
23162        state: State::SC,
23163    },
23164    Municipio {
23165        ibge_code: 4215000,
23166        name: "Rio Negrinho",
23167        state: State::SC,
23168    },
23169    Municipio {
23170        ibge_code: 4215059,
23171        name: "Rio Rufino",
23172        state: State::SC,
23173    },
23174    Municipio {
23175        ibge_code: 4214409,
23176        name: "Rio das Antas",
23177        state: State::SC,
23178    },
23179    Municipio {
23180        ibge_code: 4214508,
23181        name: "Rio do Campo",
23182        state: State::SC,
23183    },
23184    Municipio {
23185        ibge_code: 4214607,
23186        name: "Rio do Oeste",
23187        state: State::SC,
23188    },
23189    Municipio {
23190        ibge_code: 4214805,
23191        name: "Rio do Sul",
23192        state: State::SC,
23193    },
23194    Municipio {
23195        ibge_code: 4214706,
23196        name: "Rio dos Cedros",
23197        state: State::SC,
23198    },
23199    Municipio {
23200        ibge_code: 4215075,
23201        name: "Riqueza",
23202        state: State::SC,
23203    },
23204    Municipio {
23205        ibge_code: 4215109,
23206        name: "Rodeio",
23207        state: State::SC,
23208    },
23209    Municipio {
23210        ibge_code: 4215208,
23211        name: "Romelândia",
23212        state: State::SC,
23213    },
23214    Municipio {
23215        ibge_code: 4215307,
23216        name: "Salete",
23217        state: State::SC,
23218    },
23219    Municipio {
23220        ibge_code: 4215356,
23221        name: "Saltinho",
23222        state: State::SC,
23223    },
23224    Municipio {
23225        ibge_code: 4215406,
23226        name: "Salto Veloso",
23227        state: State::SC,
23228    },
23229    Municipio {
23230        ibge_code: 4215455,
23231        name: "Sangão",
23232        state: State::SC,
23233    },
23234    Municipio {
23235        ibge_code: 4215505,
23236        name: "Santa Cecília",
23237        state: State::SC,
23238    },
23239    Municipio {
23240        ibge_code: 4215554,
23241        name: "Santa Helena",
23242        state: State::SC,
23243    },
23244    Municipio {
23245        ibge_code: 4215604,
23246        name: "Santa Rosa de Lima",
23247        state: State::SC,
23248    },
23249    Municipio {
23250        ibge_code: 4215653,
23251        name: "Santa Rosa do Sul",
23252        state: State::SC,
23253    },
23254    Municipio {
23255        ibge_code: 4215679,
23256        name: "Santa Terezinha",
23257        state: State::SC,
23258    },
23259    Municipio {
23260        ibge_code: 4215687,
23261        name: "Santa Terezinha do Progresso",
23262        state: State::SC,
23263    },
23264    Municipio {
23265        ibge_code: 4215695,
23266        name: "Santiago do Sul",
23267        state: State::SC,
23268    },
23269    Municipio {
23270        ibge_code: 4215703,
23271        name: "Santo Amaro da Imperatriz",
23272        state: State::SC,
23273    },
23274    Municipio {
23275        ibge_code: 4217303,
23276        name: "Saudades",
23277        state: State::SC,
23278    },
23279    Municipio {
23280        ibge_code: 4217402,
23281        name: "Schroeder",
23282        state: State::SC,
23283    },
23284    Municipio {
23285        ibge_code: 4217501,
23286        name: "Seara",
23287        state: State::SC,
23288    },
23289    Municipio {
23290        ibge_code: 4217550,
23291        name: "Serra Alta",
23292        state: State::SC,
23293    },
23294    Municipio {
23295        ibge_code: 4217600,
23296        name: "Siderópolis",
23297        state: State::SC,
23298    },
23299    Municipio {
23300        ibge_code: 4217709,
23301        name: "Sombrio",
23302        state: State::SC,
23303    },
23304    Municipio {
23305        ibge_code: 4217758,
23306        name: "Sul Brasil",
23307        state: State::SC,
23308    },
23309    Municipio {
23310        ibge_code: 4215802,
23311        name: "São Bento do Sul",
23312        state: State::SC,
23313    },
23314    Municipio {
23315        ibge_code: 4215752,
23316        name: "São Bernardino",
23317        state: State::SC,
23318    },
23319    Municipio {
23320        ibge_code: 4215901,
23321        name: "São Bonifácio",
23322        state: State::SC,
23323    },
23324    Municipio {
23325        ibge_code: 4216008,
23326        name: "São Carlos",
23327        state: State::SC,
23328    },
23329    Municipio {
23330        ibge_code: 4216057,
23331        name: "São Cristóvão do Sul",
23332        state: State::SC,
23333    },
23334    Municipio {
23335        ibge_code: 4216107,
23336        name: "São Domingos",
23337        state: State::SC,
23338    },
23339    Municipio {
23340        ibge_code: 4216206,
23341        name: "São Francisco do Sul",
23342        state: State::SC,
23343    },
23344    Municipio {
23345        ibge_code: 4216503,
23346        name: "São Joaquim",
23347        state: State::SC,
23348    },
23349    Municipio {
23350        ibge_code: 4216602,
23351        name: "São José",
23352        state: State::SC,
23353    },
23354    Municipio {
23355        ibge_code: 4216701,
23356        name: "São José do Cedro",
23357        state: State::SC,
23358    },
23359    Municipio {
23360        ibge_code: 4216800,
23361        name: "São José do Cerrito",
23362        state: State::SC,
23363    },
23364    Municipio {
23365        ibge_code: 4216305,
23366        name: "São João Batista",
23367        state: State::SC,
23368    },
23369    Municipio {
23370        ibge_code: 4216354,
23371        name: "São João do Itaperiú",
23372        state: State::SC,
23373    },
23374    Municipio {
23375        ibge_code: 4216255,
23376        name: "São João do Oeste",
23377        state: State::SC,
23378    },
23379    Municipio {
23380        ibge_code: 4216404,
23381        name: "São João do Sul",
23382        state: State::SC,
23383    },
23384    Municipio {
23385        ibge_code: 4216909,
23386        name: "São Lourenço do Oeste",
23387        state: State::SC,
23388    },
23389    Municipio {
23390        ibge_code: 4217006,
23391        name: "São Ludgero",
23392        state: State::SC,
23393    },
23394    Municipio {
23395        ibge_code: 4217105,
23396        name: "São Martinho",
23397        state: State::SC,
23398    },
23399    Municipio {
23400        ibge_code: 4217154,
23401        name: "São Miguel da Boa Vista",
23402        state: State::SC,
23403    },
23404    Municipio {
23405        ibge_code: 4217204,
23406        name: "São Miguel do Oeste",
23407        state: State::SC,
23408    },
23409    Municipio {
23410        ibge_code: 4217253,
23411        name: "São Pedro de Alcântara",
23412        state: State::SC,
23413    },
23414    Municipio {
23415        ibge_code: 4217808,
23416        name: "Taió",
23417        state: State::SC,
23418    },
23419    Municipio {
23420        ibge_code: 4217907,
23421        name: "Tangará",
23422        state: State::SC,
23423    },
23424    Municipio {
23425        ibge_code: 4217956,
23426        name: "Tigrinhos",
23427        state: State::SC,
23428    },
23429    Municipio {
23430        ibge_code: 4218004,
23431        name: "Tijucas",
23432        state: State::SC,
23433    },
23434    Municipio {
23435        ibge_code: 4218103,
23436        name: "Timbé do Sul",
23437        state: State::SC,
23438    },
23439    Municipio {
23440        ibge_code: 4218202,
23441        name: "Timbó",
23442        state: State::SC,
23443    },
23444    Municipio {
23445        ibge_code: 4218251,
23446        name: "Timbó Grande",
23447        state: State::SC,
23448    },
23449    Municipio {
23450        ibge_code: 4218350,
23451        name: "Treviso",
23452        state: State::SC,
23453    },
23454    Municipio {
23455        ibge_code: 4218509,
23456        name: "Treze Tílias",
23457        state: State::SC,
23458    },
23459    Municipio {
23460        ibge_code: 4218400,
23461        name: "Treze de Maio",
23462        state: State::SC,
23463    },
23464    Municipio {
23465        ibge_code: 4218608,
23466        name: "Trombudo Central",
23467        state: State::SC,
23468    },
23469    Municipio {
23470        ibge_code: 4218301,
23471        name: "Três Barras",
23472        state: State::SC,
23473    },
23474    Municipio {
23475        ibge_code: 4218707,
23476        name: "Tubarão",
23477        state: State::SC,
23478    },
23479    Municipio {
23480        ibge_code: 4218756,
23481        name: "Tunápolis",
23482        state: State::SC,
23483    },
23484    Municipio {
23485        ibge_code: 4218806,
23486        name: "Turvo",
23487        state: State::SC,
23488    },
23489    Municipio {
23490        ibge_code: 4218855,
23491        name: "União do Oeste",
23492        state: State::SC,
23493    },
23494    Municipio {
23495        ibge_code: 4218905,
23496        name: "Urubici",
23497        state: State::SC,
23498    },
23499    Municipio {
23500        ibge_code: 4218954,
23501        name: "Urupema",
23502        state: State::SC,
23503    },
23504    Municipio {
23505        ibge_code: 4219002,
23506        name: "Urussanga",
23507        state: State::SC,
23508    },
23509    Municipio {
23510        ibge_code: 4219150,
23511        name: "Vargem",
23512        state: State::SC,
23513    },
23514    Municipio {
23515        ibge_code: 4219176,
23516        name: "Vargem Bonita",
23517        state: State::SC,
23518    },
23519    Municipio {
23520        ibge_code: 4219101,
23521        name: "Vargeão",
23522        state: State::SC,
23523    },
23524    Municipio {
23525        ibge_code: 4219200,
23526        name: "Vidal Ramos",
23527        state: State::SC,
23528    },
23529    Municipio {
23530        ibge_code: 4219309,
23531        name: "Videira",
23532        state: State::SC,
23533    },
23534    Municipio {
23535        ibge_code: 4219358,
23536        name: "Vitor Meireles",
23537        state: State::SC,
23538    },
23539    Municipio {
23540        ibge_code: 4219408,
23541        name: "Witmarsum",
23542        state: State::SC,
23543    },
23544    Municipio {
23545        ibge_code: 4219507,
23546        name: "Xanxerê",
23547        state: State::SC,
23548    },
23549    Municipio {
23550        ibge_code: 4219606,
23551        name: "Xavantina",
23552        state: State::SC,
23553    },
23554    Municipio {
23555        ibge_code: 4219705,
23556        name: "Xaxim",
23557        state: State::SC,
23558    },
23559    Municipio {
23560        ibge_code: 4219853,
23561        name: "Zortéa",
23562        state: State::SC,
23563    },
23564    Municipio {
23565        ibge_code: 4200408,
23566        name: "Água Doce",
23567        state: State::SC,
23568    },
23569    Municipio {
23570        ibge_code: 4200556,
23571        name: "Águas Frias",
23572        state: State::SC,
23573    },
23574    Municipio {
23575        ibge_code: 4200606,
23576        name: "Águas Mornas",
23577        state: State::SC,
23578    },
23579    Municipio {
23580        ibge_code: 4200507,
23581        name: "Águas de Chapecó",
23582        state: State::SC,
23583    },
23584    Municipio {
23585        ibge_code: 2800100,
23586        name: "Amparo do São Francisco",
23587        state: State::SE,
23588    },
23589    Municipio {
23590        ibge_code: 2800209,
23591        name: "Aquidabã",
23592        state: State::SE,
23593    },
23594    Municipio {
23595        ibge_code: 2800308,
23596        name: "Aracaju",
23597        state: State::SE,
23598    },
23599    Municipio {
23600        ibge_code: 2800407,
23601        name: "Arauá",
23602        state: State::SE,
23603    },
23604    Municipio {
23605        ibge_code: 2800506,
23606        name: "Areia Branca",
23607        state: State::SE,
23608    },
23609    Municipio {
23610        ibge_code: 2800605,
23611        name: "Barra dos Coqueiros",
23612        state: State::SE,
23613    },
23614    Municipio {
23615        ibge_code: 2800670,
23616        name: "Boquim",
23617        state: State::SE,
23618    },
23619    Municipio {
23620        ibge_code: 2800704,
23621        name: "Brejo Grande",
23622        state: State::SE,
23623    },
23624    Municipio {
23625        ibge_code: 2801009,
23626        name: "Campo do Brito",
23627        state: State::SE,
23628    },
23629    Municipio {
23630        ibge_code: 2801108,
23631        name: "Canhoba",
23632        state: State::SE,
23633    },
23634    Municipio {
23635        ibge_code: 2801207,
23636        name: "Canindé de São Francisco",
23637        state: State::SE,
23638    },
23639    Municipio {
23640        ibge_code: 2801306,
23641        name: "Capela",
23642        state: State::SE,
23643    },
23644    Municipio {
23645        ibge_code: 2801405,
23646        name: "Carira",
23647        state: State::SE,
23648    },
23649    Municipio {
23650        ibge_code: 2801504,
23651        name: "Carmópolis",
23652        state: State::SE,
23653    },
23654    Municipio {
23655        ibge_code: 2801603,
23656        name: "Cedro de São João",
23657        state: State::SE,
23658    },
23659    Municipio {
23660        ibge_code: 2801702,
23661        name: "Cristinápolis",
23662        state: State::SE,
23663    },
23664    Municipio {
23665        ibge_code: 2801900,
23666        name: "Cumbe",
23667        state: State::SE,
23668    },
23669    Municipio {
23670        ibge_code: 2802007,
23671        name: "Divina Pastora",
23672        state: State::SE,
23673    },
23674    Municipio {
23675        ibge_code: 2802106,
23676        name: "Estância",
23677        state: State::SE,
23678    },
23679    Municipio {
23680        ibge_code: 2802205,
23681        name: "Feira Nova",
23682        state: State::SE,
23683    },
23684    Municipio {
23685        ibge_code: 2802304,
23686        name: "Frei Paulo",
23687        state: State::SE,
23688    },
23689    Municipio {
23690        ibge_code: 2802403,
23691        name: "Gararu",
23692        state: State::SE,
23693    },
23694    Municipio {
23695        ibge_code: 2802502,
23696        name: "General Maynard",
23697        state: State::SE,
23698    },
23699    Municipio {
23700        ibge_code: 2802601,
23701        name: "Graccho Cardoso",
23702        state: State::SE,
23703    },
23704    Municipio {
23705        ibge_code: 2802700,
23706        name: "Ilha das Flores",
23707        state: State::SE,
23708    },
23709    Municipio {
23710        ibge_code: 2802809,
23711        name: "Indiaroba",
23712        state: State::SE,
23713    },
23714    Municipio {
23715        ibge_code: 2802908,
23716        name: "Itabaiana",
23717        state: State::SE,
23718    },
23719    Municipio {
23720        ibge_code: 2803005,
23721        name: "Itabaianinha",
23722        state: State::SE,
23723    },
23724    Municipio {
23725        ibge_code: 2803104,
23726        name: "Itabi",
23727        state: State::SE,
23728    },
23729    Municipio {
23730        ibge_code: 2803203,
23731        name: "Itaporanga d'Ajuda",
23732        state: State::SE,
23733    },
23734    Municipio {
23735        ibge_code: 2803302,
23736        name: "Japaratuba",
23737        state: State::SE,
23738    },
23739    Municipio {
23740        ibge_code: 2803401,
23741        name: "Japoatã",
23742        state: State::SE,
23743    },
23744    Municipio {
23745        ibge_code: 2803500,
23746        name: "Lagarto",
23747        state: State::SE,
23748    },
23749    Municipio {
23750        ibge_code: 2803609,
23751        name: "Laranjeiras",
23752        state: State::SE,
23753    },
23754    Municipio {
23755        ibge_code: 2803708,
23756        name: "Macambira",
23757        state: State::SE,
23758    },
23759    Municipio {
23760        ibge_code: 2803807,
23761        name: "Malhada dos Bois",
23762        state: State::SE,
23763    },
23764    Municipio {
23765        ibge_code: 2803906,
23766        name: "Malhador",
23767        state: State::SE,
23768    },
23769    Municipio {
23770        ibge_code: 2804003,
23771        name: "Maruim",
23772        state: State::SE,
23773    },
23774    Municipio {
23775        ibge_code: 2804102,
23776        name: "Moita Bonita",
23777        state: State::SE,
23778    },
23779    Municipio {
23780        ibge_code: 2804201,
23781        name: "Monte Alegre de Sergipe",
23782        state: State::SE,
23783    },
23784    Municipio {
23785        ibge_code: 2804300,
23786        name: "Muribeca",
23787        state: State::SE,
23788    },
23789    Municipio {
23790        ibge_code: 2804409,
23791        name: "Neópolis",
23792        state: State::SE,
23793    },
23794    Municipio {
23795        ibge_code: 2804458,
23796        name: "Nossa Senhora Aparecida",
23797        state: State::SE,
23798    },
23799    Municipio {
23800        ibge_code: 2804508,
23801        name: "Nossa Senhora da Glória",
23802        state: State::SE,
23803    },
23804    Municipio {
23805        ibge_code: 2804607,
23806        name: "Nossa Senhora das Dores",
23807        state: State::SE,
23808    },
23809    Municipio {
23810        ibge_code: 2804706,
23811        name: "Nossa Senhora de Lourdes",
23812        state: State::SE,
23813    },
23814    Municipio {
23815        ibge_code: 2804805,
23816        name: "Nossa Senhora do Socorro",
23817        state: State::SE,
23818    },
23819    Municipio {
23820        ibge_code: 2804904,
23821        name: "Pacatuba",
23822        state: State::SE,
23823    },
23824    Municipio {
23825        ibge_code: 2805000,
23826        name: "Pedra Mole",
23827        state: State::SE,
23828    },
23829    Municipio {
23830        ibge_code: 2805109,
23831        name: "Pedrinhas",
23832        state: State::SE,
23833    },
23834    Municipio {
23835        ibge_code: 2805208,
23836        name: "Pinhão",
23837        state: State::SE,
23838    },
23839    Municipio {
23840        ibge_code: 2805307,
23841        name: "Pirambu",
23842        state: State::SE,
23843    },
23844    Municipio {
23845        ibge_code: 2805604,
23846        name: "Porto da Folha",
23847        state: State::SE,
23848    },
23849    Municipio {
23850        ibge_code: 2805406,
23851        name: "Poço Redondo",
23852        state: State::SE,
23853    },
23854    Municipio {
23855        ibge_code: 2805505,
23856        name: "Poço Verde",
23857        state: State::SE,
23858    },
23859    Municipio {
23860        ibge_code: 2805703,
23861        name: "Propriá",
23862        state: State::SE,
23863    },
23864    Municipio {
23865        ibge_code: 2805901,
23866        name: "Riachuelo",
23867        state: State::SE,
23868    },
23869    Municipio {
23870        ibge_code: 2805802,
23871        name: "Riachão do Dantas",
23872        state: State::SE,
23873    },
23874    Municipio {
23875        ibge_code: 2806008,
23876        name: "Ribeirópolis",
23877        state: State::SE,
23878    },
23879    Municipio {
23880        ibge_code: 2806107,
23881        name: "Rosário do Catete",
23882        state: State::SE,
23883    },
23884    Municipio {
23885        ibge_code: 2806206,
23886        name: "Salgado",
23887        state: State::SE,
23888    },
23889    Municipio {
23890        ibge_code: 2806305,
23891        name: "Santa Luzia do Itanhy",
23892        state: State::SE,
23893    },
23894    Municipio {
23895        ibge_code: 2806503,
23896        name: "Santa Rosa de Lima",
23897        state: State::SE,
23898    },
23899    Municipio {
23900        ibge_code: 2806404,
23901        name: "Santana do São Francisco",
23902        state: State::SE,
23903    },
23904    Municipio {
23905        ibge_code: 2806602,
23906        name: "Santo Amaro das Brotas",
23907        state: State::SE,
23908    },
23909    Municipio {
23910        ibge_code: 2807105,
23911        name: "Simão Dias",
23912        state: State::SE,
23913    },
23914    Municipio {
23915        ibge_code: 2807204,
23916        name: "Siriri",
23917        state: State::SE,
23918    },
23919    Municipio {
23920        ibge_code: 2806701,
23921        name: "São Cristóvão",
23922        state: State::SE,
23923    },
23924    Municipio {
23925        ibge_code: 2806800,
23926        name: "São Domingos",
23927        state: State::SE,
23928    },
23929    Municipio {
23930        ibge_code: 2806909,
23931        name: "São Francisco",
23932        state: State::SE,
23933    },
23934    Municipio {
23935        ibge_code: 2807006,
23936        name: "São Miguel do Aleixo",
23937        state: State::SE,
23938    },
23939    Municipio {
23940        ibge_code: 2807303,
23941        name: "Telha",
23942        state: State::SE,
23943    },
23944    Municipio {
23945        ibge_code: 2807402,
23946        name: "Tobias Barreto",
23947        state: State::SE,
23948    },
23949    Municipio {
23950        ibge_code: 2807501,
23951        name: "Tomar do Geru",
23952        state: State::SE,
23953    },
23954    Municipio {
23955        ibge_code: 2807600,
23956        name: "Umbaúba",
23957        state: State::SE,
23958    },
23959    Municipio {
23960        ibge_code: 3500105,
23961        name: "Adamantina",
23962        state: State::SP,
23963    },
23964    Municipio {
23965        ibge_code: 3500204,
23966        name: "Adolfo",
23967        state: State::SP,
23968    },
23969    Municipio {
23970        ibge_code: 3500303,
23971        name: "Aguaí",
23972        state: State::SP,
23973    },
23974    Municipio {
23975        ibge_code: 3500709,
23976        name: "Agudos",
23977        state: State::SP,
23978    },
23979    Municipio {
23980        ibge_code: 3500758,
23981        name: "Alambari",
23982        state: State::SP,
23983    },
23984    Municipio {
23985        ibge_code: 3500808,
23986        name: "Alfredo Marcondes",
23987        state: State::SP,
23988    },
23989    Municipio {
23990        ibge_code: 3500907,
23991        name: "Altair",
23992        state: State::SP,
23993    },
23994    Municipio {
23995        ibge_code: 3501004,
23996        name: "Altinópolis",
23997        state: State::SP,
23998    },
23999    Municipio {
24000        ibge_code: 3501103,
24001        name: "Alto Alegre",
24002        state: State::SP,
24003    },
24004    Municipio {
24005        ibge_code: 3501152,
24006        name: "Alumínio",
24007        state: State::SP,
24008    },
24009    Municipio {
24010        ibge_code: 3501509,
24011        name: "Alvinlândia",
24012        state: State::SP,
24013    },
24014    Municipio {
24015        ibge_code: 3501608,
24016        name: "Americana",
24017        state: State::SP,
24018    },
24019    Municipio {
24020        ibge_code: 3501905,
24021        name: "Amparo",
24022        state: State::SP,
24023    },
24024    Municipio {
24025        ibge_code: 3501707,
24026        name: "Américo Brasiliense",
24027        state: State::SP,
24028    },
24029    Municipio {
24030        ibge_code: 3501806,
24031        name: "Américo de Campos",
24032        state: State::SP,
24033    },
24034    Municipio {
24035        ibge_code: 3502002,
24036        name: "Analândia",
24037        state: State::SP,
24038    },
24039    Municipio {
24040        ibge_code: 3502101,
24041        name: "Andradina",
24042        state: State::SP,
24043    },
24044    Municipio {
24045        ibge_code: 3502200,
24046        name: "Angatuba",
24047        state: State::SP,
24048    },
24049    Municipio {
24050        ibge_code: 3502309,
24051        name: "Anhembi",
24052        state: State::SP,
24053    },
24054    Municipio {
24055        ibge_code: 3502408,
24056        name: "Anhumas",
24057        state: State::SP,
24058    },
24059    Municipio {
24060        ibge_code: 3502507,
24061        name: "Aparecida",
24062        state: State::SP,
24063    },
24064    Municipio {
24065        ibge_code: 3502606,
24066        name: "Aparecida d'Oeste",
24067        state: State::SP,
24068    },
24069    Municipio {
24070        ibge_code: 3502705,
24071        name: "Apiaí",
24072        state: State::SP,
24073    },
24074    Municipio {
24075        ibge_code: 3503000,
24076        name: "Aramina",
24077        state: State::SP,
24078    },
24079    Municipio {
24080        ibge_code: 3503109,
24081        name: "Arandu",
24082        state: State::SP,
24083    },
24084    Municipio {
24085        ibge_code: 3503158,
24086        name: "Arapeí",
24087        state: State::SP,
24088    },
24089    Municipio {
24090        ibge_code: 3503208,
24091        name: "Araraquara",
24092        state: State::SP,
24093    },
24094    Municipio {
24095        ibge_code: 3503307,
24096        name: "Araras",
24097        state: State::SP,
24098    },
24099    Municipio {
24100        ibge_code: 3502754,
24101        name: "Araçariguama",
24102        state: State::SP,
24103    },
24104    Municipio {
24105        ibge_code: 3502804,
24106        name: "Araçatuba",
24107        state: State::SP,
24108    },
24109    Municipio {
24110        ibge_code: 3502903,
24111        name: "Araçoiaba da Serra",
24112        state: State::SP,
24113    },
24114    Municipio {
24115        ibge_code: 3503356,
24116        name: "Arco-Íris",
24117        state: State::SP,
24118    },
24119    Municipio {
24120        ibge_code: 3503406,
24121        name: "Arealva",
24122        state: State::SP,
24123    },
24124    Municipio {
24125        ibge_code: 3503505,
24126        name: "Areias",
24127        state: State::SP,
24128    },
24129    Municipio {
24130        ibge_code: 3503604,
24131        name: "Areiópolis",
24132        state: State::SP,
24133    },
24134    Municipio {
24135        ibge_code: 3503703,
24136        name: "Ariranha",
24137        state: State::SP,
24138    },
24139    Municipio {
24140        ibge_code: 3503802,
24141        name: "Artur Nogueira",
24142        state: State::SP,
24143    },
24144    Municipio {
24145        ibge_code: 3503901,
24146        name: "Arujá",
24147        state: State::SP,
24148    },
24149    Municipio {
24150        ibge_code: 3503950,
24151        name: "Aspásia",
24152        state: State::SP,
24153    },
24154    Municipio {
24155        ibge_code: 3504008,
24156        name: "Assis",
24157        state: State::SP,
24158    },
24159    Municipio {
24160        ibge_code: 3504107,
24161        name: "Atibaia",
24162        state: State::SP,
24163    },
24164    Municipio {
24165        ibge_code: 3504206,
24166        name: "Auriflama",
24167        state: State::SP,
24168    },
24169    Municipio {
24170        ibge_code: 3504404,
24171        name: "Avanhandava",
24172        state: State::SP,
24173    },
24174    Municipio {
24175        ibge_code: 3504503,
24176        name: "Avaré",
24177        state: State::SP,
24178    },
24179    Municipio {
24180        ibge_code: 3504305,
24181        name: "Avaí",
24182        state: State::SP,
24183    },
24184    Municipio {
24185        ibge_code: 3504602,
24186        name: "Bady Bassitt",
24187        state: State::SP,
24188    },
24189    Municipio {
24190        ibge_code: 3504701,
24191        name: "Balbinos",
24192        state: State::SP,
24193    },
24194    Municipio {
24195        ibge_code: 3504909,
24196        name: "Bananal",
24197        state: State::SP,
24198    },
24199    Municipio {
24200        ibge_code: 3505104,
24201        name: "Barbosa",
24202        state: State::SP,
24203    },
24204    Municipio {
24205        ibge_code: 3505203,
24206        name: "Bariri",
24207        state: State::SP,
24208    },
24209    Municipio {
24210        ibge_code: 3505302,
24211        name: "Barra Bonita",
24212        state: State::SP,
24213    },
24214    Municipio {
24215        ibge_code: 3505351,
24216        name: "Barra do Chapéu",
24217        state: State::SP,
24218    },
24219    Municipio {
24220        ibge_code: 3505401,
24221        name: "Barra do Turvo",
24222        state: State::SP,
24223    },
24224    Municipio {
24225        ibge_code: 3505500,
24226        name: "Barretos",
24227        state: State::SP,
24228    },
24229    Municipio {
24230        ibge_code: 3505609,
24231        name: "Barrinha",
24232        state: State::SP,
24233    },
24234    Municipio {
24235        ibge_code: 3505708,
24236        name: "Barueri",
24237        state: State::SP,
24238    },
24239    Municipio {
24240        ibge_code: 3505005,
24241        name: "Barão de Antonina",
24242        state: State::SP,
24243    },
24244    Municipio {
24245        ibge_code: 3505807,
24246        name: "Bastos",
24247        state: State::SP,
24248    },
24249    Municipio {
24250        ibge_code: 3505906,
24251        name: "Batatais",
24252        state: State::SP,
24253    },
24254    Municipio {
24255        ibge_code: 3506003,
24256        name: "Bauru",
24257        state: State::SP,
24258    },
24259    Municipio {
24260        ibge_code: 3506102,
24261        name: "Bebedouro",
24262        state: State::SP,
24263    },
24264    Municipio {
24265        ibge_code: 3506201,
24266        name: "Bento de Abreu",
24267        state: State::SP,
24268    },
24269    Municipio {
24270        ibge_code: 3506300,
24271        name: "Bernardino de Campos",
24272        state: State::SP,
24273    },
24274    Municipio {
24275        ibge_code: 3506359,
24276        name: "Bertioga",
24277        state: State::SP,
24278    },
24279    Municipio {
24280        ibge_code: 3506409,
24281        name: "Bilac",
24282        state: State::SP,
24283    },
24284    Municipio {
24285        ibge_code: 3506508,
24286        name: "Birigui",
24287        state: State::SP,
24288    },
24289    Municipio {
24290        ibge_code: 3506607,
24291        name: "Biritiba Mirim",
24292        state: State::SP,
24293    },
24294    Municipio {
24295        ibge_code: 3506706,
24296        name: "Boa Esperança do Sul",
24297        state: State::SP,
24298    },
24299    Municipio {
24300        ibge_code: 3506805,
24301        name: "Bocaina",
24302        state: State::SP,
24303    },
24304    Municipio {
24305        ibge_code: 3506904,
24306        name: "Bofete",
24307        state: State::SP,
24308    },
24309    Municipio {
24310        ibge_code: 3507001,
24311        name: "Boituva",
24312        state: State::SP,
24313    },
24314    Municipio {
24315        ibge_code: 3507100,
24316        name: "Bom Jesus dos Perdões",
24317        state: State::SP,
24318    },
24319    Municipio {
24320        ibge_code: 3507159,
24321        name: "Bom Sucesso de Itararé",
24322        state: State::SP,
24323    },
24324    Municipio {
24325        ibge_code: 3507308,
24326        name: "Boracéia",
24327        state: State::SP,
24328    },
24329    Municipio {
24330        ibge_code: 3507407,
24331        name: "Borborema",
24332        state: State::SP,
24333    },
24334    Municipio {
24335        ibge_code: 3507456,
24336        name: "Borebi",
24337        state: State::SP,
24338    },
24339    Municipio {
24340        ibge_code: 3507209,
24341        name: "Borá",
24342        state: State::SP,
24343    },
24344    Municipio {
24345        ibge_code: 3507506,
24346        name: "Botucatu",
24347        state: State::SP,
24348    },
24349    Municipio {
24350        ibge_code: 3507605,
24351        name: "Bragança Paulista",
24352        state: State::SP,
24353    },
24354    Municipio {
24355        ibge_code: 3507704,
24356        name: "Braúna",
24357        state: State::SP,
24358    },
24359    Municipio {
24360        ibge_code: 3507753,
24361        name: "Brejo Alegre",
24362        state: State::SP,
24363    },
24364    Municipio {
24365        ibge_code: 3507803,
24366        name: "Brodowski",
24367        state: State::SP,
24368    },
24369    Municipio {
24370        ibge_code: 3507902,
24371        name: "Brotas",
24372        state: State::SP,
24373    },
24374    Municipio {
24375        ibge_code: 3508009,
24376        name: "Buri",
24377        state: State::SP,
24378    },
24379    Municipio {
24380        ibge_code: 3508108,
24381        name: "Buritama",
24382        state: State::SP,
24383    },
24384    Municipio {
24385        ibge_code: 3508207,
24386        name: "Buritizal",
24387        state: State::SP,
24388    },
24389    Municipio {
24390        ibge_code: 3504800,
24391        name: "Bálsamo",
24392        state: State::SP,
24393    },
24394    Municipio {
24395        ibge_code: 3508405,
24396        name: "Cabreúva",
24397        state: State::SP,
24398    },
24399    Municipio {
24400        ibge_code: 3508306,
24401        name: "Cabrália Paulista",
24402        state: State::SP,
24403    },
24404    Municipio {
24405        ibge_code: 3508603,
24406        name: "Cachoeira Paulista",
24407        state: State::SP,
24408    },
24409    Municipio {
24410        ibge_code: 3508702,
24411        name: "Caconde",
24412        state: State::SP,
24413    },
24414    Municipio {
24415        ibge_code: 3508801,
24416        name: "Cafelândia",
24417        state: State::SP,
24418    },
24419    Municipio {
24420        ibge_code: 3508900,
24421        name: "Caiabu",
24422        state: State::SP,
24423    },
24424    Municipio {
24425        ibge_code: 3509007,
24426        name: "Caieiras",
24427        state: State::SP,
24428    },
24429    Municipio {
24430        ibge_code: 3509106,
24431        name: "Caiuá",
24432        state: State::SP,
24433    },
24434    Municipio {
24435        ibge_code: 3509205,
24436        name: "Cajamar",
24437        state: State::SP,
24438    },
24439    Municipio {
24440        ibge_code: 3509254,
24441        name: "Cajati",
24442        state: State::SP,
24443    },
24444    Municipio {
24445        ibge_code: 3509304,
24446        name: "Cajobi",
24447        state: State::SP,
24448    },
24449    Municipio {
24450        ibge_code: 3509403,
24451        name: "Cajuru",
24452        state: State::SP,
24453    },
24454    Municipio {
24455        ibge_code: 3509452,
24456        name: "Campina do Monte Alegre",
24457        state: State::SP,
24458    },
24459    Municipio {
24460        ibge_code: 3509502,
24461        name: "Campinas",
24462        state: State::SP,
24463    },
24464    Municipio {
24465        ibge_code: 3509601,
24466        name: "Campo Limpo Paulista",
24467        state: State::SP,
24468    },
24469    Municipio {
24470        ibge_code: 3509809,
24471        name: "Campos Novos Paulista",
24472        state: State::SP,
24473    },
24474    Municipio {
24475        ibge_code: 3509700,
24476        name: "Campos do Jordão",
24477        state: State::SP,
24478    },
24479    Municipio {
24480        ibge_code: 3509908,
24481        name: "Cananéia",
24482        state: State::SP,
24483    },
24484    Municipio {
24485        ibge_code: 3509957,
24486        name: "Canas",
24487        state: State::SP,
24488    },
24489    Municipio {
24490        ibge_code: 3510153,
24491        name: "Canitar",
24492        state: State::SP,
24493    },
24494    Municipio {
24495        ibge_code: 3510302,
24496        name: "Capela do Alto",
24497        state: State::SP,
24498    },
24499    Municipio {
24500        ibge_code: 3510401,
24501        name: "Capivari",
24502        state: State::SP,
24503    },
24504    Municipio {
24505        ibge_code: 3510203,
24506        name: "Capão Bonito",
24507        state: State::SP,
24508    },
24509    Municipio {
24510        ibge_code: 3510500,
24511        name: "Caraguatatuba",
24512        state: State::SP,
24513    },
24514    Municipio {
24515        ibge_code: 3510609,
24516        name: "Carapicuíba",
24517        state: State::SP,
24518    },
24519    Municipio {
24520        ibge_code: 3510708,
24521        name: "Cardoso",
24522        state: State::SP,
24523    },
24524    Municipio {
24525        ibge_code: 3510807,
24526        name: "Casa Branca",
24527        state: State::SP,
24528    },
24529    Municipio {
24530        ibge_code: 3511003,
24531        name: "Castilho",
24532        state: State::SP,
24533    },
24534    Municipio {
24535        ibge_code: 3511102,
24536        name: "Catanduva",
24537        state: State::SP,
24538    },
24539    Municipio {
24540        ibge_code: 3511201,
24541        name: "Catiguá",
24542        state: State::SP,
24543    },
24544    Municipio {
24545        ibge_code: 3508504,
24546        name: "Caçapava",
24547        state: State::SP,
24548    },
24549    Municipio {
24550        ibge_code: 3511300,
24551        name: "Cedral",
24552        state: State::SP,
24553    },
24554    Municipio {
24555        ibge_code: 3511409,
24556        name: "Cerqueira César",
24557        state: State::SP,
24558    },
24559    Municipio {
24560        ibge_code: 3511508,
24561        name: "Cerquilho",
24562        state: State::SP,
24563    },
24564    Municipio {
24565        ibge_code: 3511607,
24566        name: "Cesário Lange",
24567        state: State::SP,
24568    },
24569    Municipio {
24570        ibge_code: 3511706,
24571        name: "Charqueada",
24572        state: State::SP,
24573    },
24574    Municipio {
24575        ibge_code: 3557204,
24576        name: "Chavantes",
24577        state: State::SP,
24578    },
24579    Municipio {
24580        ibge_code: 3511904,
24581        name: "Clementina",
24582        state: State::SP,
24583    },
24584    Municipio {
24585        ibge_code: 3512001,
24586        name: "Colina",
24587        state: State::SP,
24588    },
24589    Municipio {
24590        ibge_code: 3512100,
24591        name: "Colômbia",
24592        state: State::SP,
24593    },
24594    Municipio {
24595        ibge_code: 3512209,
24596        name: "Conchal",
24597        state: State::SP,
24598    },
24599    Municipio {
24600        ibge_code: 3512308,
24601        name: "Conchas",
24602        state: State::SP,
24603    },
24604    Municipio {
24605        ibge_code: 3512407,
24606        name: "Cordeirópolis",
24607        state: State::SP,
24608    },
24609    Municipio {
24610        ibge_code: 3512506,
24611        name: "Coroados",
24612        state: State::SP,
24613    },
24614    Municipio {
24615        ibge_code: 3512605,
24616        name: "Coronel Macedo",
24617        state: State::SP,
24618    },
24619    Municipio {
24620        ibge_code: 3512704,
24621        name: "Corumbataí",
24622        state: State::SP,
24623    },
24624    Municipio {
24625        ibge_code: 3512902,
24626        name: "Cosmorama",
24627        state: State::SP,
24628    },
24629    Municipio {
24630        ibge_code: 3512803,
24631        name: "Cosmópolis",
24632        state: State::SP,
24633    },
24634    Municipio {
24635        ibge_code: 3513009,
24636        name: "Cotia",
24637        state: State::SP,
24638    },
24639    Municipio {
24640        ibge_code: 3513108,
24641        name: "Cravinhos",
24642        state: State::SP,
24643    },
24644    Municipio {
24645        ibge_code: 3513207,
24646        name: "Cristais Paulista",
24647        state: State::SP,
24648    },
24649    Municipio {
24650        ibge_code: 3513405,
24651        name: "Cruzeiro",
24652        state: State::SP,
24653    },
24654    Municipio {
24655        ibge_code: 3513306,
24656        name: "Cruzália",
24657        state: State::SP,
24658    },
24659    Municipio {
24660        ibge_code: 3513504,
24661        name: "Cubatão",
24662        state: State::SP,
24663    },
24664    Municipio {
24665        ibge_code: 3513603,
24666        name: "Cunha",
24667        state: State::SP,
24668    },
24669    Municipio {
24670        ibge_code: 3510906,
24671        name: "Cássia dos Coqueiros",
24672        state: State::SP,
24673    },
24674    Municipio {
24675        ibge_code: 3510005,
24676        name: "Cândido Mota",
24677        state: State::SP,
24678    },
24679    Municipio {
24680        ibge_code: 3510104,
24681        name: "Cândido Rodrigues",
24682        state: State::SP,
24683    },
24684    Municipio {
24685        ibge_code: 3513702,
24686        name: "Descalvado",
24687        state: State::SP,
24688    },
24689    Municipio {
24690        ibge_code: 3513801,
24691        name: "Diadema",
24692        state: State::SP,
24693    },
24694    Municipio {
24695        ibge_code: 3513850,
24696        name: "Dirce Reis",
24697        state: State::SP,
24698    },
24699    Municipio {
24700        ibge_code: 3513900,
24701        name: "Divinolândia",
24702        state: State::SP,
24703    },
24704    Municipio {
24705        ibge_code: 3514007,
24706        name: "Dobrada",
24707        state: State::SP,
24708    },
24709    Municipio {
24710        ibge_code: 3514106,
24711        name: "Dois Córregos",
24712        state: State::SP,
24713    },
24714    Municipio {
24715        ibge_code: 3514205,
24716        name: "Dolcinópolis",
24717        state: State::SP,
24718    },
24719    Municipio {
24720        ibge_code: 3514304,
24721        name: "Dourado",
24722        state: State::SP,
24723    },
24724    Municipio {
24725        ibge_code: 3514403,
24726        name: "Dracena",
24727        state: State::SP,
24728    },
24729    Municipio {
24730        ibge_code: 3514502,
24731        name: "Duartina",
24732        state: State::SP,
24733    },
24734    Municipio {
24735        ibge_code: 3514601,
24736        name: "Dumont",
24737        state: State::SP,
24738    },
24739    Municipio {
24740        ibge_code: 3514700,
24741        name: "Echaporã",
24742        state: State::SP,
24743    },
24744    Municipio {
24745        ibge_code: 3514809,
24746        name: "Eldorado",
24747        state: State::SP,
24748    },
24749    Municipio {
24750        ibge_code: 3514908,
24751        name: "Elias Fausto",
24752        state: State::SP,
24753    },
24754    Municipio {
24755        ibge_code: 3514924,
24756        name: "Elisiário",
24757        state: State::SP,
24758    },
24759    Municipio {
24760        ibge_code: 3514957,
24761        name: "Embaúba",
24762        state: State::SP,
24763    },
24764    Municipio {
24765        ibge_code: 3515004,
24766        name: "Embu das Artes",
24767        state: State::SP,
24768    },
24769    Municipio {
24770        ibge_code: 3515103,
24771        name: "Embu-Guaçu",
24772        state: State::SP,
24773    },
24774    Municipio {
24775        ibge_code: 3515129,
24776        name: "Emilianópolis",
24777        state: State::SP,
24778    },
24779    Municipio {
24780        ibge_code: 3515152,
24781        name: "Engenheiro Coelho",
24782        state: State::SP,
24783    },
24784    Municipio {
24785        ibge_code: 3515186,
24786        name: "Espírito Santo do Pinhal",
24787        state: State::SP,
24788    },
24789    Municipio {
24790        ibge_code: 3515194,
24791        name: "Espírito Santo do Turvo",
24792        state: State::SP,
24793    },
24794    Municipio {
24795        ibge_code: 3557303,
24796        name: "Estiva Gerbi",
24797        state: State::SP,
24798    },
24799    Municipio {
24800        ibge_code: 3515202,
24801        name: "Estrela d'Oeste",
24802        state: State::SP,
24803    },
24804    Municipio {
24805        ibge_code: 3515301,
24806        name: "Estrela do Norte",
24807        state: State::SP,
24808    },
24809    Municipio {
24810        ibge_code: 3515350,
24811        name: "Euclides da Cunha Paulista",
24812        state: State::SP,
24813    },
24814    Municipio {
24815        ibge_code: 3515400,
24816        name: "Fartura",
24817        state: State::SP,
24818    },
24819    Municipio {
24820        ibge_code: 3515608,
24821        name: "Fernando Prestes",
24822        state: State::SP,
24823    },
24824    Municipio {
24825        ibge_code: 3515509,
24826        name: "Fernandópolis",
24827        state: State::SP,
24828    },
24829    Municipio {
24830        ibge_code: 3515657,
24831        name: "Fernão",
24832        state: State::SP,
24833    },
24834    Municipio {
24835        ibge_code: 3515707,
24836        name: "Ferraz de Vasconcelos",
24837        state: State::SP,
24838    },
24839    Municipio {
24840        ibge_code: 3515806,
24841        name: "Flora Rica",
24842        state: State::SP,
24843    },
24844    Municipio {
24845        ibge_code: 3515905,
24846        name: "Floreal",
24847        state: State::SP,
24848    },
24849    Municipio {
24850        ibge_code: 3516101,
24851        name: "Florínea",
24852        state: State::SP,
24853    },
24854    Municipio {
24855        ibge_code: 3516002,
24856        name: "Flórida Paulista",
24857        state: State::SP,
24858    },
24859    Municipio {
24860        ibge_code: 3516200,
24861        name: "Franca",
24862        state: State::SP,
24863    },
24864    Municipio {
24865        ibge_code: 3516309,
24866        name: "Francisco Morato",
24867        state: State::SP,
24868    },
24869    Municipio {
24870        ibge_code: 3516408,
24871        name: "Franco da Rocha",
24872        state: State::SP,
24873    },
24874    Municipio {
24875        ibge_code: 3516507,
24876        name: "Gabriel Monteiro",
24877        state: State::SP,
24878    },
24879    Municipio {
24880        ibge_code: 3516705,
24881        name: "Garça",
24882        state: State::SP,
24883    },
24884    Municipio {
24885        ibge_code: 3516804,
24886        name: "Gastão Vidigal",
24887        state: State::SP,
24888    },
24889    Municipio {
24890        ibge_code: 3516853,
24891        name: "Gavião Peixoto",
24892        state: State::SP,
24893    },
24894    Municipio {
24895        ibge_code: 3516903,
24896        name: "General Salgado",
24897        state: State::SP,
24898    },
24899    Municipio {
24900        ibge_code: 3517000,
24901        name: "Getulina",
24902        state: State::SP,
24903    },
24904    Municipio {
24905        ibge_code: 3517109,
24906        name: "Glicério",
24907        state: State::SP,
24908    },
24909    Municipio {
24910        ibge_code: 3517307,
24911        name: "Guaimbê",
24912        state: State::SP,
24913    },
24914    Municipio {
24915        ibge_code: 3517208,
24916        name: "Guaiçara",
24917        state: State::SP,
24918    },
24919    Municipio {
24920        ibge_code: 3517604,
24921        name: "Guapiara",
24922        state: State::SP,
24923    },
24924    Municipio {
24925        ibge_code: 3517505,
24926        name: "Guapiaçu",
24927        state: State::SP,
24928    },
24929    Municipio {
24930        ibge_code: 3517901,
24931        name: "Guaraci",
24932        state: State::SP,
24933    },
24934    Municipio {
24935        ibge_code: 3518008,
24936        name: "Guarani d'Oeste",
24937        state: State::SP,
24938    },
24939    Municipio {
24940        ibge_code: 3518107,
24941        name: "Guarantã",
24942        state: State::SP,
24943    },
24944    Municipio {
24945        ibge_code: 3518206,
24946        name: "Guararapes",
24947        state: State::SP,
24948    },
24949    Municipio {
24950        ibge_code: 3518305,
24951        name: "Guararema",
24952        state: State::SP,
24953    },
24954    Municipio {
24955        ibge_code: 3518404,
24956        name: "Guaratinguetá",
24957        state: State::SP,
24958    },
24959    Municipio {
24960        ibge_code: 3517802,
24961        name: "Guaraçaí",
24962        state: State::SP,
24963    },
24964    Municipio {
24965        ibge_code: 3518503,
24966        name: "Guareí",
24967        state: State::SP,
24968    },
24969    Municipio {
24970        ibge_code: 3518602,
24971        name: "Guariba",
24972        state: State::SP,
24973    },
24974    Municipio {
24975        ibge_code: 3518701,
24976        name: "Guarujá",
24977        state: State::SP,
24978    },
24979    Municipio {
24980        ibge_code: 3518800,
24981        name: "Guarulhos",
24982        state: State::SP,
24983    },
24984    Municipio {
24985        ibge_code: 3517703,
24986        name: "Guará",
24987        state: State::SP,
24988    },
24989    Municipio {
24990        ibge_code: 3518859,
24991        name: "Guatapará",
24992        state: State::SP,
24993    },
24994    Municipio {
24995        ibge_code: 3517406,
24996        name: "Guaíra",
24997        state: State::SP,
24998    },
24999    Municipio {
25000        ibge_code: 3518909,
25001        name: "Guzolândia",
25002        state: State::SP,
25003    },
25004    Municipio {
25005        ibge_code: 3516606,
25006        name: "Gália",
25007        state: State::SP,
25008    },
25009    Municipio {
25010        ibge_code: 3519006,
25011        name: "Herculândia",
25012        state: State::SP,
25013    },
25014    Municipio {
25015        ibge_code: 3519055,
25016        name: "Holambra",
25017        state: State::SP,
25018    },
25019    Municipio {
25020        ibge_code: 3519071,
25021        name: "Hortolândia",
25022        state: State::SP,
25023    },
25024    Municipio {
25025        ibge_code: 3519105,
25026        name: "Iacanga",
25027        state: State::SP,
25028    },
25029    Municipio {
25030        ibge_code: 3519204,
25031        name: "Iacri",
25032        state: State::SP,
25033    },
25034    Municipio {
25035        ibge_code: 3519253,
25036        name: "Iaras",
25037        state: State::SP,
25038    },
25039    Municipio {
25040        ibge_code: 3519303,
25041        name: "Ibaté",
25042        state: State::SP,
25043    },
25044    Municipio {
25045        ibge_code: 3519501,
25046        name: "Ibirarema",
25047        state: State::SP,
25048    },
25049    Municipio {
25050        ibge_code: 3519402,
25051        name: "Ibirá",
25052        state: State::SP,
25053    },
25054    Municipio {
25055        ibge_code: 3519600,
25056        name: "Ibitinga",
25057        state: State::SP,
25058    },
25059    Municipio {
25060        ibge_code: 3519709,
25061        name: "Ibiúna",
25062        state: State::SP,
25063    },
25064    Municipio {
25065        ibge_code: 3519808,
25066        name: "Icém",
25067        state: State::SP,
25068    },
25069    Municipio {
25070        ibge_code: 3519907,
25071        name: "Iepê",
25072        state: State::SP,
25073    },
25074    Municipio {
25075        ibge_code: 3520103,
25076        name: "Igarapava",
25077        state: State::SP,
25078    },
25079    Municipio {
25080        ibge_code: 3520202,
25081        name: "Igaratá",
25082        state: State::SP,
25083    },
25084    Municipio {
25085        ibge_code: 3520004,
25086        name: "Igaraçu do Tietê",
25087        state: State::SP,
25088    },
25089    Municipio {
25090        ibge_code: 3520301,
25091        name: "Iguape",
25092        state: State::SP,
25093    },
25094    Municipio {
25095        ibge_code: 3520426,
25096        name: "Ilha Comprida",
25097        state: State::SP,
25098    },
25099    Municipio {
25100        ibge_code: 3520442,
25101        name: "Ilha Solteira",
25102        state: State::SP,
25103    },
25104    Municipio {
25105        ibge_code: 3520400,
25106        name: "Ilhabela",
25107        state: State::SP,
25108    },
25109    Municipio {
25110        ibge_code: 3520509,
25111        name: "Indaiatuba",
25112        state: State::SP,
25113    },
25114    Municipio {
25115        ibge_code: 3520608,
25116        name: "Indiana",
25117        state: State::SP,
25118    },
25119    Municipio {
25120        ibge_code: 3520707,
25121        name: "Indiaporã",
25122        state: State::SP,
25123    },
25124    Municipio {
25125        ibge_code: 3520806,
25126        name: "Inúbia Paulista",
25127        state: State::SP,
25128    },
25129    Municipio {
25130        ibge_code: 3520905,
25131        name: "Ipaussu",
25132        state: State::SP,
25133    },
25134    Municipio {
25135        ibge_code: 3521002,
25136        name: "Iperó",
25137        state: State::SP,
25138    },
25139    Municipio {
25140        ibge_code: 3521101,
25141        name: "Ipeúna",
25142        state: State::SP,
25143    },
25144    Municipio {
25145        ibge_code: 3521150,
25146        name: "Ipiguá",
25147        state: State::SP,
25148    },
25149    Municipio {
25150        ibge_code: 3521200,
25151        name: "Iporanga",
25152        state: State::SP,
25153    },
25154    Municipio {
25155        ibge_code: 3521309,
25156        name: "Ipuã",
25157        state: State::SP,
25158    },
25159    Municipio {
25160        ibge_code: 3521408,
25161        name: "Iracemápolis",
25162        state: State::SP,
25163    },
25164    Municipio {
25165        ibge_code: 3521606,
25166        name: "Irapuru",
25167        state: State::SP,
25168    },
25169    Municipio {
25170        ibge_code: 3521507,
25171        name: "Irapuã",
25172        state: State::SP,
25173    },
25174    Municipio {
25175        ibge_code: 3521705,
25176        name: "Itaberá",
25177        state: State::SP,
25178    },
25179    Municipio {
25180        ibge_code: 3521903,
25181        name: "Itajobi",
25182        state: State::SP,
25183    },
25184    Municipio {
25185        ibge_code: 3522000,
25186        name: "Itaju",
25187        state: State::SP,
25188    },
25189    Municipio {
25190        ibge_code: 3522109,
25191        name: "Itanhaém",
25192        state: State::SP,
25193    },
25194    Municipio {
25195        ibge_code: 3522158,
25196        name: "Itaoca",
25197        state: State::SP,
25198    },
25199    Municipio {
25200        ibge_code: 3522208,
25201        name: "Itapecerica da Serra",
25202        state: State::SP,
25203    },
25204    Municipio {
25205        ibge_code: 3522307,
25206        name: "Itapetininga",
25207        state: State::SP,
25208    },
25209    Municipio {
25210        ibge_code: 3522406,
25211        name: "Itapeva",
25212        state: State::SP,
25213    },
25214    Municipio {
25215        ibge_code: 3522505,
25216        name: "Itapevi",
25217        state: State::SP,
25218    },
25219    Municipio {
25220        ibge_code: 3522604,
25221        name: "Itapira",
25222        state: State::SP,
25223    },
25224    Municipio {
25225        ibge_code: 3522653,
25226        name: "Itapirapuã Paulista",
25227        state: State::SP,
25228    },
25229    Municipio {
25230        ibge_code: 3522802,
25231        name: "Itaporanga",
25232        state: State::SP,
25233    },
25234    Municipio {
25235        ibge_code: 3523008,
25236        name: "Itapura",
25237        state: State::SP,
25238    },
25239    Municipio {
25240        ibge_code: 3522901,
25241        name: "Itapuí",
25242        state: State::SP,
25243    },
25244    Municipio {
25245        ibge_code: 3523107,
25246        name: "Itaquaquecetuba",
25247        state: State::SP,
25248    },
25249    Municipio {
25250        ibge_code: 3523206,
25251        name: "Itararé",
25252        state: State::SP,
25253    },
25254    Municipio {
25255        ibge_code: 3523305,
25256        name: "Itariri",
25257        state: State::SP,
25258    },
25259    Municipio {
25260        ibge_code: 3523404,
25261        name: "Itatiba",
25262        state: State::SP,
25263    },
25264    Municipio {
25265        ibge_code: 3523503,
25266        name: "Itatinga",
25267        state: State::SP,
25268    },
25269    Municipio {
25270        ibge_code: 3521804,
25271        name: "Itaí",
25272        state: State::SP,
25273    },
25274    Municipio {
25275        ibge_code: 3523602,
25276        name: "Itirapina",
25277        state: State::SP,
25278    },
25279    Municipio {
25280        ibge_code: 3523701,
25281        name: "Itirapuã",
25282        state: State::SP,
25283    },
25284    Municipio {
25285        ibge_code: 3523800,
25286        name: "Itobi",
25287        state: State::SP,
25288    },
25289    Municipio {
25290        ibge_code: 3523909,
25291        name: "Itu",
25292        state: State::SP,
25293    },
25294    Municipio {
25295        ibge_code: 3524006,
25296        name: "Itupeva",
25297        state: State::SP,
25298    },
25299    Municipio {
25300        ibge_code: 3524105,
25301        name: "Ituverava",
25302        state: State::SP,
25303    },
25304    Municipio {
25305        ibge_code: 3522703,
25306        name: "Itápolis",
25307        state: State::SP,
25308    },
25309    Municipio {
25310        ibge_code: 3524204,
25311        name: "Jaborandi",
25312        state: State::SP,
25313    },
25314    Municipio {
25315        ibge_code: 3524303,
25316        name: "Jaboticabal",
25317        state: State::SP,
25318    },
25319    Municipio {
25320        ibge_code: 3524402,
25321        name: "Jacareí",
25322        state: State::SP,
25323    },
25324    Municipio {
25325        ibge_code: 3524501,
25326        name: "Jaci",
25327        state: State::SP,
25328    },
25329    Municipio {
25330        ibge_code: 3524600,
25331        name: "Jacupiranga",
25332        state: State::SP,
25333    },
25334    Municipio {
25335        ibge_code: 3524709,
25336        name: "Jaguariúna",
25337        state: State::SP,
25338    },
25339    Municipio {
25340        ibge_code: 3524808,
25341        name: "Jales",
25342        state: State::SP,
25343    },
25344    Municipio {
25345        ibge_code: 3524907,
25346        name: "Jambeiro",
25347        state: State::SP,
25348    },
25349    Municipio {
25350        ibge_code: 3525003,
25351        name: "Jandira",
25352        state: State::SP,
25353    },
25354    Municipio {
25355        ibge_code: 3525102,
25356        name: "Jardinópolis",
25357        state: State::SP,
25358    },
25359    Municipio {
25360        ibge_code: 3525201,
25361        name: "Jarinu",
25362        state: State::SP,
25363    },
25364    Municipio {
25365        ibge_code: 3525300,
25366        name: "Jaú",
25367        state: State::SP,
25368    },
25369    Municipio {
25370        ibge_code: 3525409,
25371        name: "Jeriquara",
25372        state: State::SP,
25373    },
25374    Municipio {
25375        ibge_code: 3525508,
25376        name: "Joanópolis",
25377        state: State::SP,
25378    },
25379    Municipio {
25380        ibge_code: 3525706,
25381        name: "José Bonifácio",
25382        state: State::SP,
25383    },
25384    Municipio {
25385        ibge_code: 3525607,
25386        name: "João Ramalho",
25387        state: State::SP,
25388    },
25389    Municipio {
25390        ibge_code: 3525854,
25391        name: "Jumirim",
25392        state: State::SP,
25393    },
25394    Municipio {
25395        ibge_code: 3525904,
25396        name: "Jundiaí",
25397        state: State::SP,
25398    },
25399    Municipio {
25400        ibge_code: 3526001,
25401        name: "Junqueirópolis",
25402        state: State::SP,
25403    },
25404    Municipio {
25405        ibge_code: 3526209,
25406        name: "Juquitiba",
25407        state: State::SP,
25408    },
25409    Municipio {
25410        ibge_code: 3526100,
25411        name: "Juquiá",
25412        state: State::SP,
25413    },
25414    Municipio {
25415        ibge_code: 3525805,
25416        name: "Júlio Mesquita",
25417        state: State::SP,
25418    },
25419    Municipio {
25420        ibge_code: 3526308,
25421        name: "Lagoinha",
25422        state: State::SP,
25423    },
25424    Municipio {
25425        ibge_code: 3526407,
25426        name: "Laranjal Paulista",
25427        state: State::SP,
25428    },
25429    Municipio {
25430        ibge_code: 3526605,
25431        name: "Lavrinhas",
25432        state: State::SP,
25433    },
25434    Municipio {
25435        ibge_code: 3526506,
25436        name: "Lavínia",
25437        state: State::SP,
25438    },
25439    Municipio {
25440        ibge_code: 3526704,
25441        name: "Leme",
25442        state: State::SP,
25443    },
25444    Municipio {
25445        ibge_code: 3526803,
25446        name: "Lençóis Paulista",
25447        state: State::SP,
25448    },
25449    Municipio {
25450        ibge_code: 3526902,
25451        name: "Limeira",
25452        state: State::SP,
25453    },
25454    Municipio {
25455        ibge_code: 3527009,
25456        name: "Lindóia",
25457        state: State::SP,
25458    },
25459    Municipio {
25460        ibge_code: 3527108,
25461        name: "Lins",
25462        state: State::SP,
25463    },
25464    Municipio {
25465        ibge_code: 3527207,
25466        name: "Lorena",
25467        state: State::SP,
25468    },
25469    Municipio {
25470        ibge_code: 3527256,
25471        name: "Lourdes",
25472        state: State::SP,
25473    },
25474    Municipio {
25475        ibge_code: 3527306,
25476        name: "Louveira",
25477        state: State::SP,
25478    },
25479    Municipio {
25480        ibge_code: 3527504,
25481        name: "Lucianópolis",
25482        state: State::SP,
25483    },
25484    Municipio {
25485        ibge_code: 3527405,
25486        name: "Lucélia",
25487        state: State::SP,
25488    },
25489    Municipio {
25490        ibge_code: 3527702,
25491        name: "Luiziânia",
25492        state: State::SP,
25493    },
25494    Municipio {
25495        ibge_code: 3527801,
25496        name: "Lupércio",
25497        state: State::SP,
25498    },
25499    Municipio {
25500        ibge_code: 3527900,
25501        name: "Lutécia",
25502        state: State::SP,
25503    },
25504    Municipio {
25505        ibge_code: 3527603,
25506        name: "Luís Antônio",
25507        state: State::SP,
25508    },
25509    Municipio {
25510        ibge_code: 3528007,
25511        name: "Macatuba",
25512        state: State::SP,
25513    },
25514    Municipio {
25515        ibge_code: 3528106,
25516        name: "Macaubal",
25517        state: State::SP,
25518    },
25519    Municipio {
25520        ibge_code: 3528205,
25521        name: "Macedônia",
25522        state: State::SP,
25523    },
25524    Municipio {
25525        ibge_code: 3528304,
25526        name: "Magda",
25527        state: State::SP,
25528    },
25529    Municipio {
25530        ibge_code: 3528403,
25531        name: "Mairinque",
25532        state: State::SP,
25533    },
25534    Municipio {
25535        ibge_code: 3528502,
25536        name: "Mairiporã",
25537        state: State::SP,
25538    },
25539    Municipio {
25540        ibge_code: 3528601,
25541        name: "Manduri",
25542        state: State::SP,
25543    },
25544    Municipio {
25545        ibge_code: 3528700,
25546        name: "Marabá Paulista",
25547        state: State::SP,
25548    },
25549    Municipio {
25550        ibge_code: 3528809,
25551        name: "Maracaí",
25552        state: State::SP,
25553    },
25554    Municipio {
25555        ibge_code: 3528858,
25556        name: "Marapoama",
25557        state: State::SP,
25558    },
25559    Municipio {
25560        ibge_code: 3529104,
25561        name: "Marinópolis",
25562        state: State::SP,
25563    },
25564    Municipio {
25565        ibge_code: 3528908,
25566        name: "Mariápolis",
25567        state: State::SP,
25568    },
25569    Municipio {
25570        ibge_code: 3529203,
25571        name: "Martinópolis",
25572        state: State::SP,
25573    },
25574    Municipio {
25575        ibge_code: 3529005,
25576        name: "Marília",
25577        state: State::SP,
25578    },
25579    Municipio {
25580        ibge_code: 3529302,
25581        name: "Matão",
25582        state: State::SP,
25583    },
25584    Municipio {
25585        ibge_code: 3529401,
25586        name: "Mauá",
25587        state: State::SP,
25588    },
25589    Municipio {
25590        ibge_code: 3529500,
25591        name: "Mendonça",
25592        state: State::SP,
25593    },
25594    Municipio {
25595        ibge_code: 3529609,
25596        name: "Meridiano",
25597        state: State::SP,
25598    },
25599    Municipio {
25600        ibge_code: 3529658,
25601        name: "Mesópolis",
25602        state: State::SP,
25603    },
25604    Municipio {
25605        ibge_code: 3529708,
25606        name: "Miguelópolis",
25607        state: State::SP,
25608    },
25609    Municipio {
25610        ibge_code: 3529807,
25611        name: "Mineiros do Tietê",
25612        state: State::SP,
25613    },
25614    Municipio {
25615        ibge_code: 3530003,
25616        name: "Mira Estrela",
25617        state: State::SP,
25618    },
25619    Municipio {
25620        ibge_code: 3529906,
25621        name: "Miracatu",
25622        state: State::SP,
25623    },
25624    Municipio {
25625        ibge_code: 3530102,
25626        name: "Mirandópolis",
25627        state: State::SP,
25628    },
25629    Municipio {
25630        ibge_code: 3530201,
25631        name: "Mirante do Paranapanema",
25632        state: State::SP,
25633    },
25634    Municipio {
25635        ibge_code: 3530300,
25636        name: "Mirassol",
25637        state: State::SP,
25638    },
25639    Municipio {
25640        ibge_code: 3530409,
25641        name: "Mirassolândia",
25642        state: State::SP,
25643    },
25644    Municipio {
25645        ibge_code: 3530508,
25646        name: "Mococa",
25647        state: State::SP,
25648    },
25649    Municipio {
25650        ibge_code: 3530706,
25651        name: "Mogi Guaçu",
25652        state: State::SP,
25653    },
25654    Municipio {
25655        ibge_code: 3530805,
25656        name: "Mogi Mirim",
25657        state: State::SP,
25658    },
25659    Municipio {
25660        ibge_code: 3530607,
25661        name: "Mogi das Cruzes",
25662        state: State::SP,
25663    },
25664    Municipio {
25665        ibge_code: 3530904,
25666        name: "Mombuca",
25667        state: State::SP,
25668    },
25669    Municipio {
25670        ibge_code: 3531100,
25671        name: "Mongaguá",
25672        state: State::SP,
25673    },
25674    Municipio {
25675        ibge_code: 3531209,
25676        name: "Monte Alegre do Sul",
25677        state: State::SP,
25678    },
25679    Municipio {
25680        ibge_code: 3531308,
25681        name: "Monte Alto",
25682        state: State::SP,
25683    },
25684    Municipio {
25685        ibge_code: 3531407,
25686        name: "Monte Aprazível",
25687        state: State::SP,
25688    },
25689    Municipio {
25690        ibge_code: 3531506,
25691        name: "Monte Azul Paulista",
25692        state: State::SP,
25693    },
25694    Municipio {
25695        ibge_code: 3531605,
25696        name: "Monte Castelo",
25697        state: State::SP,
25698    },
25699    Municipio {
25700        ibge_code: 3531803,
25701        name: "Monte Mor",
25702        state: State::SP,
25703    },
25704    Municipio {
25705        ibge_code: 3531704,
25706        name: "Monteiro Lobato",
25707        state: State::SP,
25708    },
25709    Municipio {
25710        ibge_code: 3531001,
25711        name: "Monções",
25712        state: State::SP,
25713    },
25714    Municipio {
25715        ibge_code: 3531902,
25716        name: "Morro Agudo",
25717        state: State::SP,
25718    },
25719    Municipio {
25720        ibge_code: 3532009,
25721        name: "Morungaba",
25722        state: State::SP,
25723    },
25724    Municipio {
25725        ibge_code: 3532058,
25726        name: "Motuca",
25727        state: State::SP,
25728    },
25729    Municipio {
25730        ibge_code: 3532108,
25731        name: "Murutinga do Sul",
25732        state: State::SP,
25733    },
25734    Municipio {
25735        ibge_code: 3532157,
25736        name: "Nantes",
25737        state: State::SP,
25738    },
25739    Municipio {
25740        ibge_code: 3532207,
25741        name: "Narandiba",
25742        state: State::SP,
25743    },
25744    Municipio {
25745        ibge_code: 3532306,
25746        name: "Natividade da Serra",
25747        state: State::SP,
25748    },
25749    Municipio {
25750        ibge_code: 3532405,
25751        name: "Nazaré Paulista",
25752        state: State::SP,
25753    },
25754    Municipio {
25755        ibge_code: 3532504,
25756        name: "Neves Paulista",
25757        state: State::SP,
25758    },
25759    Municipio {
25760        ibge_code: 3532603,
25761        name: "Nhandeara",
25762        state: State::SP,
25763    },
25764    Municipio {
25765        ibge_code: 3532702,
25766        name: "Nipoã",
25767        state: State::SP,
25768    },
25769    Municipio {
25770        ibge_code: 3532801,
25771        name: "Nova Aliança",
25772        state: State::SP,
25773    },
25774    Municipio {
25775        ibge_code: 3532827,
25776        name: "Nova Campina",
25777        state: State::SP,
25778    },
25779    Municipio {
25780        ibge_code: 3532843,
25781        name: "Nova Canaã Paulista",
25782        state: State::SP,
25783    },
25784    Municipio {
25785        ibge_code: 3532868,
25786        name: "Nova Castilho",
25787        state: State::SP,
25788    },
25789    Municipio {
25790        ibge_code: 3532900,
25791        name: "Nova Europa",
25792        state: State::SP,
25793    },
25794    Municipio {
25795        ibge_code: 3533007,
25796        name: "Nova Granada",
25797        state: State::SP,
25798    },
25799    Municipio {
25800        ibge_code: 3533106,
25801        name: "Nova Guataporanga",
25802        state: State::SP,
25803    },
25804    Municipio {
25805        ibge_code: 3533205,
25806        name: "Nova Independência",
25807        state: State::SP,
25808    },
25809    Municipio {
25810        ibge_code: 3533304,
25811        name: "Nova Luzitânia",
25812        state: State::SP,
25813    },
25814    Municipio {
25815        ibge_code: 3533403,
25816        name: "Nova Odessa",
25817        state: State::SP,
25818    },
25819    Municipio {
25820        ibge_code: 3533254,
25821        name: "Novais",
25822        state: State::SP,
25823    },
25824    Municipio {
25825        ibge_code: 3533502,
25826        name: "Novo Horizonte",
25827        state: State::SP,
25828    },
25829    Municipio {
25830        ibge_code: 3533601,
25831        name: "Nuporanga",
25832        state: State::SP,
25833    },
25834    Municipio {
25835        ibge_code: 3533700,
25836        name: "Ocauçu",
25837        state: State::SP,
25838    },
25839    Municipio {
25840        ibge_code: 3533908,
25841        name: "Olímpia",
25842        state: State::SP,
25843    },
25844    Municipio {
25845        ibge_code: 3534005,
25846        name: "Onda Verde",
25847        state: State::SP,
25848    },
25849    Municipio {
25850        ibge_code: 3534104,
25851        name: "Oriente",
25852        state: State::SP,
25853    },
25854    Municipio {
25855        ibge_code: 3534203,
25856        name: "Orindiúva",
25857        state: State::SP,
25858    },
25859    Municipio {
25860        ibge_code: 3534302,
25861        name: "Orlândia",
25862        state: State::SP,
25863    },
25864    Municipio {
25865        ibge_code: 3534401,
25866        name: "Osasco",
25867        state: State::SP,
25868    },
25869    Municipio {
25870        ibge_code: 3534500,
25871        name: "Oscar Bressane",
25872        state: State::SP,
25873    },
25874    Municipio {
25875        ibge_code: 3534609,
25876        name: "Osvaldo Cruz",
25877        state: State::SP,
25878    },
25879    Municipio {
25880        ibge_code: 3534708,
25881        name: "Ourinhos",
25882        state: State::SP,
25883    },
25884    Municipio {
25885        ibge_code: 3534807,
25886        name: "Ouro Verde",
25887        state: State::SP,
25888    },
25889    Municipio {
25890        ibge_code: 3534757,
25891        name: "Ouroeste",
25892        state: State::SP,
25893    },
25894    Municipio {
25895        ibge_code: 3534906,
25896        name: "Pacaembu",
25897        state: State::SP,
25898    },
25899    Municipio {
25900        ibge_code: 3535002,
25901        name: "Palestina",
25902        state: State::SP,
25903    },
25904    Municipio {
25905        ibge_code: 3535101,
25906        name: "Palmares Paulista",
25907        state: State::SP,
25908    },
25909    Municipio {
25910        ibge_code: 3535200,
25911        name: "Palmeira d'Oeste",
25912        state: State::SP,
25913    },
25914    Municipio {
25915        ibge_code: 3535309,
25916        name: "Palmital",
25917        state: State::SP,
25918    },
25919    Municipio {
25920        ibge_code: 3535408,
25921        name: "Panorama",
25922        state: State::SP,
25923    },
25924    Municipio {
25925        ibge_code: 3535507,
25926        name: "Paraguaçu Paulista",
25927        state: State::SP,
25928    },
25929    Municipio {
25930        ibge_code: 3535606,
25931        name: "Paraibuna",
25932        state: State::SP,
25933    },
25934    Municipio {
25935        ibge_code: 3535804,
25936        name: "Paranapanema",
25937        state: State::SP,
25938    },
25939    Municipio {
25940        ibge_code: 3535903,
25941        name: "Paranapuã",
25942        state: State::SP,
25943    },
25944    Municipio {
25945        ibge_code: 3536000,
25946        name: "Parapuã",
25947        state: State::SP,
25948    },
25949    Municipio {
25950        ibge_code: 3535705,
25951        name: "Paraíso",
25952        state: State::SP,
25953    },
25954    Municipio {
25955        ibge_code: 3536109,
25956        name: "Pardinho",
25957        state: State::SP,
25958    },
25959    Municipio {
25960        ibge_code: 3536208,
25961        name: "Pariquera-Açu",
25962        state: State::SP,
25963    },
25964    Municipio {
25965        ibge_code: 3536257,
25966        name: "Parisi",
25967        state: State::SP,
25968    },
25969    Municipio {
25970        ibge_code: 3536307,
25971        name: "Patrocínio Paulista",
25972        state: State::SP,
25973    },
25974    Municipio {
25975        ibge_code: 3536406,
25976        name: "Paulicéia",
25977        state: State::SP,
25978    },
25979    Municipio {
25980        ibge_code: 3536570,
25981        name: "Paulistânia",
25982        state: State::SP,
25983    },
25984    Municipio {
25985        ibge_code: 3536604,
25986        name: "Paulo de Faria",
25987        state: State::SP,
25988    },
25989    Municipio {
25990        ibge_code: 3536505,
25991        name: "Paulínia",
25992        state: State::SP,
25993    },
25994    Municipio {
25995        ibge_code: 3536703,
25996        name: "Pederneiras",
25997        state: State::SP,
25998    },
25999    Municipio {
26000        ibge_code: 3536802,
26001        name: "Pedra Bela",
26002        state: State::SP,
26003    },
26004    Municipio {
26005        ibge_code: 3536901,
26006        name: "Pedranópolis",
26007        state: State::SP,
26008    },
26009    Municipio {
26010        ibge_code: 3537008,
26011        name: "Pedregulho",
26012        state: State::SP,
26013    },
26014    Municipio {
26015        ibge_code: 3537107,
26016        name: "Pedreira",
26017        state: State::SP,
26018    },
26019    Municipio {
26020        ibge_code: 3537156,
26021        name: "Pedrinhas Paulista",
26022        state: State::SP,
26023    },
26024    Municipio {
26025        ibge_code: 3537206,
26026        name: "Pedro de Toledo",
26027        state: State::SP,
26028    },
26029    Municipio {
26030        ibge_code: 3537305,
26031        name: "Penápolis",
26032        state: State::SP,
26033    },
26034    Municipio {
26035        ibge_code: 3537404,
26036        name: "Pereira Barreto",
26037        state: State::SP,
26038    },
26039    Municipio {
26040        ibge_code: 3537503,
26041        name: "Pereiras",
26042        state: State::SP,
26043    },
26044    Municipio {
26045        ibge_code: 3537602,
26046        name: "Peruíbe",
26047        state: State::SP,
26048    },
26049    Municipio {
26050        ibge_code: 3537701,
26051        name: "Piacatu",
26052        state: State::SP,
26053    },
26054    Municipio {
26055        ibge_code: 3537800,
26056        name: "Piedade",
26057        state: State::SP,
26058    },
26059    Municipio {
26060        ibge_code: 3537909,
26061        name: "Pilar do Sul",
26062        state: State::SP,
26063    },
26064    Municipio {
26065        ibge_code: 3538006,
26066        name: "Pindamonhangaba",
26067        state: State::SP,
26068    },
26069    Municipio {
26070        ibge_code: 3538105,
26071        name: "Pindorama",
26072        state: State::SP,
26073    },
26074    Municipio {
26075        ibge_code: 3538204,
26076        name: "Pinhalzinho",
26077        state: State::SP,
26078    },
26079    Municipio {
26080        ibge_code: 3538303,
26081        name: "Piquerobi",
26082        state: State::SP,
26083    },
26084    Municipio {
26085        ibge_code: 3538501,
26086        name: "Piquete",
26087        state: State::SP,
26088    },
26089    Municipio {
26090        ibge_code: 3538600,
26091        name: "Piracaia",
26092        state: State::SP,
26093    },
26094    Municipio {
26095        ibge_code: 3538709,
26096        name: "Piracicaba",
26097        state: State::SP,
26098    },
26099    Municipio {
26100        ibge_code: 3538808,
26101        name: "Piraju",
26102        state: State::SP,
26103    },
26104    Municipio {
26105        ibge_code: 3538907,
26106        name: "Pirajuí",
26107        state: State::SP,
26108    },
26109    Municipio {
26110        ibge_code: 3539004,
26111        name: "Pirangi",
26112        state: State::SP,
26113    },
26114    Municipio {
26115        ibge_code: 3539103,
26116        name: "Pirapora do Bom Jesus",
26117        state: State::SP,
26118    },
26119    Municipio {
26120        ibge_code: 3539202,
26121        name: "Pirapozinho",
26122        state: State::SP,
26123    },
26124    Municipio {
26125        ibge_code: 3539301,
26126        name: "Pirassununga",
26127        state: State::SP,
26128    },
26129    Municipio {
26130        ibge_code: 3539400,
26131        name: "Piratininga",
26132        state: State::SP,
26133    },
26134    Municipio {
26135        ibge_code: 3539509,
26136        name: "Pitangueiras",
26137        state: State::SP,
26138    },
26139    Municipio {
26140        ibge_code: 3539608,
26141        name: "Planalto",
26142        state: State::SP,
26143    },
26144    Municipio {
26145        ibge_code: 3539707,
26146        name: "Platina",
26147        state: State::SP,
26148    },
26149    Municipio {
26150        ibge_code: 3539905,
26151        name: "Poloni",
26152        state: State::SP,
26153    },
26154    Municipio {
26155        ibge_code: 3540002,
26156        name: "Pompéia",
26157        state: State::SP,
26158    },
26159    Municipio {
26160        ibge_code: 3540101,
26161        name: "Pongaí",
26162        state: State::SP,
26163    },
26164    Municipio {
26165        ibge_code: 3540200,
26166        name: "Pontal",
26167        state: State::SP,
26168    },
26169    Municipio {
26170        ibge_code: 3540259,
26171        name: "Pontalinda",
26172        state: State::SP,
26173    },
26174    Municipio {
26175        ibge_code: 3540309,
26176        name: "Pontes Gestal",
26177        state: State::SP,
26178    },
26179    Municipio {
26180        ibge_code: 3540408,
26181        name: "Populina",
26182        state: State::SP,
26183    },
26184    Municipio {
26185        ibge_code: 3540507,
26186        name: "Porangaba",
26187        state: State::SP,
26188    },
26189    Municipio {
26190        ibge_code: 3540606,
26191        name: "Porto Feliz",
26192        state: State::SP,
26193    },
26194    Municipio {
26195        ibge_code: 3540705,
26196        name: "Porto Ferreira",
26197        state: State::SP,
26198    },
26199    Municipio {
26200        ibge_code: 3540754,
26201        name: "Potim",
26202        state: State::SP,
26203    },
26204    Municipio {
26205        ibge_code: 3540804,
26206        name: "Potirendaba",
26207        state: State::SP,
26208    },
26209    Municipio {
26210        ibge_code: 3539806,
26211        name: "Poá",
26212        state: State::SP,
26213    },
26214    Municipio {
26215        ibge_code: 3540853,
26216        name: "Pracinha",
26217        state: State::SP,
26218    },
26219    Municipio {
26220        ibge_code: 3540903,
26221        name: "Pradópolis",
26222        state: State::SP,
26223    },
26224    Municipio {
26225        ibge_code: 3541000,
26226        name: "Praia Grande",
26227        state: State::SP,
26228    },
26229    Municipio {
26230        ibge_code: 3541059,
26231        name: "Pratânia",
26232        state: State::SP,
26233    },
26234    Municipio {
26235        ibge_code: 3541109,
26236        name: "Presidente Alves",
26237        state: State::SP,
26238    },
26239    Municipio {
26240        ibge_code: 3541208,
26241        name: "Presidente Bernardes",
26242        state: State::SP,
26243    },
26244    Municipio {
26245        ibge_code: 3541307,
26246        name: "Presidente Epitácio",
26247        state: State::SP,
26248    },
26249    Municipio {
26250        ibge_code: 3541406,
26251        name: "Presidente Prudente",
26252        state: State::SP,
26253    },
26254    Municipio {
26255        ibge_code: 3541505,
26256        name: "Presidente Venceslau",
26257        state: State::SP,
26258    },
26259    Municipio {
26260        ibge_code: 3541604,
26261        name: "Promissão",
26262        state: State::SP,
26263    },
26264    Municipio {
26265        ibge_code: 3541653,
26266        name: "Quadra",
26267        state: State::SP,
26268    },
26269    Municipio {
26270        ibge_code: 3541703,
26271        name: "Quatá",
26272        state: State::SP,
26273    },
26274    Municipio {
26275        ibge_code: 3541802,
26276        name: "Queiroz",
26277        state: State::SP,
26278    },
26279    Municipio {
26280        ibge_code: 3541901,
26281        name: "Queluz",
26282        state: State::SP,
26283    },
26284    Municipio {
26285        ibge_code: 3542008,
26286        name: "Quintana",
26287        state: State::SP,
26288    },
26289    Municipio {
26290        ibge_code: 3542107,
26291        name: "Rafard",
26292        state: State::SP,
26293    },
26294    Municipio {
26295        ibge_code: 3542206,
26296        name: "Rancharia",
26297        state: State::SP,
26298    },
26299    Municipio {
26300        ibge_code: 3542305,
26301        name: "Redenção da Serra",
26302        state: State::SP,
26303    },
26304    Municipio {
26305        ibge_code: 3542404,
26306        name: "Regente Feijó",
26307        state: State::SP,
26308    },
26309    Municipio {
26310        ibge_code: 3542503,
26311        name: "Reginópolis",
26312        state: State::SP,
26313    },
26314    Municipio {
26315        ibge_code: 3542602,
26316        name: "Registro",
26317        state: State::SP,
26318    },
26319    Municipio {
26320        ibge_code: 3542701,
26321        name: "Restinga",
26322        state: State::SP,
26323    },
26324    Municipio {
26325        ibge_code: 3542800,
26326        name: "Ribeira",
26327        state: State::SP,
26328    },
26329    Municipio {
26330        ibge_code: 3542909,
26331        name: "Ribeirão Bonito",
26332        state: State::SP,
26333    },
26334    Municipio {
26335        ibge_code: 3543006,
26336        name: "Ribeirão Branco",
26337        state: State::SP,
26338    },
26339    Municipio {
26340        ibge_code: 3543105,
26341        name: "Ribeirão Corrente",
26342        state: State::SP,
26343    },
26344    Municipio {
26345        ibge_code: 3543253,
26346        name: "Ribeirão Grande",
26347        state: State::SP,
26348    },
26349    Municipio {
26350        ibge_code: 3543303,
26351        name: "Ribeirão Pires",
26352        state: State::SP,
26353    },
26354    Municipio {
26355        ibge_code: 3543402,
26356        name: "Ribeirão Preto",
26357        state: State::SP,
26358    },
26359    Municipio {
26360        ibge_code: 3543204,
26361        name: "Ribeirão do Sul",
26362        state: State::SP,
26363    },
26364    Municipio {
26365        ibge_code: 3543238,
26366        name: "Ribeirão dos Índios",
26367        state: State::SP,
26368    },
26369    Municipio {
26370        ibge_code: 3543600,
26371        name: "Rifaina",
26372        state: State::SP,
26373    },
26374    Municipio {
26375        ibge_code: 3543709,
26376        name: "Rincão",
26377        state: State::SP,
26378    },
26379    Municipio {
26380        ibge_code: 3543808,
26381        name: "Rinópolis",
26382        state: State::SP,
26383    },
26384    Municipio {
26385        ibge_code: 3543907,
26386        name: "Rio Claro",
26387        state: State::SP,
26388    },
26389    Municipio {
26390        ibge_code: 3544103,
26391        name: "Rio Grande da Serra",
26392        state: State::SP,
26393    },
26394    Municipio {
26395        ibge_code: 3544004,
26396        name: "Rio das Pedras",
26397        state: State::SP,
26398    },
26399    Municipio {
26400        ibge_code: 3544202,
26401        name: "Riolândia",
26402        state: State::SP,
26403    },
26404    Municipio {
26405        ibge_code: 3543501,
26406        name: "Riversul",
26407        state: State::SP,
26408    },
26409    Municipio {
26410        ibge_code: 3544251,
26411        name: "Rosana",
26412        state: State::SP,
26413    },
26414    Municipio {
26415        ibge_code: 3544301,
26416        name: "Roseira",
26417        state: State::SP,
26418    },
26419    Municipio {
26420        ibge_code: 3544509,
26421        name: "Rubinéia",
26422        state: State::SP,
26423    },
26424    Municipio {
26425        ibge_code: 3544400,
26426        name: "Rubiácea",
26427        state: State::SP,
26428    },
26429    Municipio {
26430        ibge_code: 3544608,
26431        name: "Sabino",
26432        state: State::SP,
26433    },
26434    Municipio {
26435        ibge_code: 3544707,
26436        name: "Sagres",
26437        state: State::SP,
26438    },
26439    Municipio {
26440        ibge_code: 3544806,
26441        name: "Sales",
26442        state: State::SP,
26443    },
26444    Municipio {
26445        ibge_code: 3544905,
26446        name: "Sales Oliveira",
26447        state: State::SP,
26448    },
26449    Municipio {
26450        ibge_code: 3545001,
26451        name: "Salesópolis",
26452        state: State::SP,
26453    },
26454    Municipio {
26455        ibge_code: 3545100,
26456        name: "Salmourão",
26457        state: State::SP,
26458    },
26459    Municipio {
26460        ibge_code: 3545159,
26461        name: "Saltinho",
26462        state: State::SP,
26463    },
26464    Municipio {
26465        ibge_code: 3545209,
26466        name: "Salto",
26467        state: State::SP,
26468    },
26469    Municipio {
26470        ibge_code: 3545407,
26471        name: "Salto Grande",
26472        state: State::SP,
26473    },
26474    Municipio {
26475        ibge_code: 3545308,
26476        name: "Salto de Pirapora",
26477        state: State::SP,
26478    },
26479    Municipio {
26480        ibge_code: 3545506,
26481        name: "Sandovalina",
26482        state: State::SP,
26483    },
26484    Municipio {
26485        ibge_code: 3545605,
26486        name: "Santa Adélia",
26487        state: State::SP,
26488    },
26489    Municipio {
26490        ibge_code: 3545704,
26491        name: "Santa Albertina",
26492        state: State::SP,
26493    },
26494    Municipio {
26495        ibge_code: 3546009,
26496        name: "Santa Branca",
26497        state: State::SP,
26498    },
26499    Municipio {
26500        ibge_code: 3545803,
26501        name: "Santa Bárbara d'Oeste",
26502        state: State::SP,
26503    },
26504    Municipio {
26505        ibge_code: 3546108,
26506        name: "Santa Clara d'Oeste",
26507        state: State::SP,
26508    },
26509    Municipio {
26510        ibge_code: 3546207,
26511        name: "Santa Cruz da Conceição",
26512        state: State::SP,
26513    },
26514    Municipio {
26515        ibge_code: 3546256,
26516        name: "Santa Cruz da Esperança",
26517        state: State::SP,
26518    },
26519    Municipio {
26520        ibge_code: 3546306,
26521        name: "Santa Cruz das Palmeiras",
26522        state: State::SP,
26523    },
26524    Municipio {
26525        ibge_code: 3546405,
26526        name: "Santa Cruz do Rio Pardo",
26527        state: State::SP,
26528    },
26529    Municipio {
26530        ibge_code: 3546504,
26531        name: "Santa Ernestina",
26532        state: State::SP,
26533    },
26534    Municipio {
26535        ibge_code: 3546603,
26536        name: "Santa Fé do Sul",
26537        state: State::SP,
26538    },
26539    Municipio {
26540        ibge_code: 3546702,
26541        name: "Santa Gertrudes",
26542        state: State::SP,
26543    },
26544    Municipio {
26545        ibge_code: 3546801,
26546        name: "Santa Isabel",
26547        state: State::SP,
26548    },
26549    Municipio {
26550        ibge_code: 3546900,
26551        name: "Santa Lúcia",
26552        state: State::SP,
26553    },
26554    Municipio {
26555        ibge_code: 3547007,
26556        name: "Santa Maria da Serra",
26557        state: State::SP,
26558    },
26559    Municipio {
26560        ibge_code: 3547106,
26561        name: "Santa Mercedes",
26562        state: State::SP,
26563    },
26564    Municipio {
26565        ibge_code: 3547403,
26566        name: "Santa Rita d'Oeste",
26567        state: State::SP,
26568    },
26569    Municipio {
26570        ibge_code: 3547502,
26571        name: "Santa Rita do Passa Quatro",
26572        state: State::SP,
26573    },
26574    Municipio {
26575        ibge_code: 3547601,
26576        name: "Santa Rosa de Viterbo",
26577        state: State::SP,
26578    },
26579    Municipio {
26580        ibge_code: 3547650,
26581        name: "Santa Salete",
26582        state: State::SP,
26583    },
26584    Municipio {
26585        ibge_code: 3547205,
26586        name: "Santana da Ponte Pensa",
26587        state: State::SP,
26588    },
26589    Municipio {
26590        ibge_code: 3547304,
26591        name: "Santana de Parnaíba",
26592        state: State::SP,
26593    },
26594    Municipio {
26595        ibge_code: 3547700,
26596        name: "Santo Anastácio",
26597        state: State::SP,
26598    },
26599    Municipio {
26600        ibge_code: 3547809,
26601        name: "Santo André",
26602        state: State::SP,
26603    },
26604    Municipio {
26605        ibge_code: 3547908,
26606        name: "Santo Antônio da Alegria",
26607        state: State::SP,
26608    },
26609    Municipio {
26610        ibge_code: 3548005,
26611        name: "Santo Antônio de Posse",
26612        state: State::SP,
26613    },
26614    Municipio {
26615        ibge_code: 3548054,
26616        name: "Santo Antônio do Aracanguá",
26617        state: State::SP,
26618    },
26619    Municipio {
26620        ibge_code: 3548104,
26621        name: "Santo Antônio do Jardim",
26622        state: State::SP,
26623    },
26624    Municipio {
26625        ibge_code: 3548203,
26626        name: "Santo Antônio do Pinhal",
26627        state: State::SP,
26628    },
26629    Municipio {
26630        ibge_code: 3548302,
26631        name: "Santo Expedito",
26632        state: State::SP,
26633    },
26634    Municipio {
26635        ibge_code: 3548500,
26636        name: "Santos",
26637        state: State::SP,
26638    },
26639    Municipio {
26640        ibge_code: 3548401,
26641        name: "Santópolis do Aguapeí",
26642        state: State::SP,
26643    },
26644    Municipio {
26645        ibge_code: 3551108,
26646        name: "Sarapuí",
26647        state: State::SP,
26648    },
26649    Municipio {
26650        ibge_code: 3551207,
26651        name: "Sarutaiá",
26652        state: State::SP,
26653    },
26654    Municipio {
26655        ibge_code: 3551306,
26656        name: "Sebastianópolis do Sul",
26657        state: State::SP,
26658    },
26659    Municipio {
26660        ibge_code: 3551405,
26661        name: "Serra Azul",
26662        state: State::SP,
26663    },
26664    Municipio {
26665        ibge_code: 3551603,
26666        name: "Serra Negra",
26667        state: State::SP,
26668    },
26669    Municipio {
26670        ibge_code: 3551504,
26671        name: "Serrana",
26672        state: State::SP,
26673    },
26674    Municipio {
26675        ibge_code: 3551702,
26676        name: "Sertãozinho",
26677        state: State::SP,
26678    },
26679    Municipio {
26680        ibge_code: 3551801,
26681        name: "Sete Barras",
26682        state: State::SP,
26683    },
26684    Municipio {
26685        ibge_code: 3551900,
26686        name: "Severínia",
26687        state: State::SP,
26688    },
26689    Municipio {
26690        ibge_code: 3552007,
26691        name: "Silveiras",
26692        state: State::SP,
26693    },
26694    Municipio {
26695        ibge_code: 3552106,
26696        name: "Socorro",
26697        state: State::SP,
26698    },
26699    Municipio {
26700        ibge_code: 3552205,
26701        name: "Sorocaba",
26702        state: State::SP,
26703    },
26704    Municipio {
26705        ibge_code: 3552304,
26706        name: "Sud Mennucci",
26707        state: State::SP,
26708    },
26709    Municipio {
26710        ibge_code: 3552403,
26711        name: "Sumaré",
26712        state: State::SP,
26713    },
26714    Municipio {
26715        ibge_code: 3552502,
26716        name: "Suzano",
26717        state: State::SP,
26718    },
26719    Municipio {
26720        ibge_code: 3552551,
26721        name: "Suzanápolis",
26722        state: State::SP,
26723    },
26724    Municipio {
26725        ibge_code: 3548609,
26726        name: "São Bento do Sapucaí",
26727        state: State::SP,
26728    },
26729    Municipio {
26730        ibge_code: 3548708,
26731        name: "São Bernardo do Campo",
26732        state: State::SP,
26733    },
26734    Municipio {
26735        ibge_code: 3548807,
26736        name: "São Caetano do Sul",
26737        state: State::SP,
26738    },
26739    Municipio {
26740        ibge_code: 3548906,
26741        name: "São Carlos",
26742        state: State::SP,
26743    },
26744    Municipio {
26745        ibge_code: 3549003,
26746        name: "São Francisco",
26747        state: State::SP,
26748    },
26749    Municipio {
26750        ibge_code: 3549409,
26751        name: "São Joaquim da Barra",
26752        state: State::SP,
26753    },
26754    Municipio {
26755        ibge_code: 3549508,
26756        name: "São José da Bela Vista",
26757        state: State::SP,
26758    },
26759    Municipio {
26760        ibge_code: 3549607,
26761        name: "São José do Barreiro",
26762        state: State::SP,
26763    },
26764    Municipio {
26765        ibge_code: 3549706,
26766        name: "São José do Rio Pardo",
26767        state: State::SP,
26768    },
26769    Municipio {
26770        ibge_code: 3549805,
26771        name: "São José do Rio Preto",
26772        state: State::SP,
26773    },
26774    Municipio {
26775        ibge_code: 3549904,
26776        name: "São José dos Campos",
26777        state: State::SP,
26778    },
26779    Municipio {
26780        ibge_code: 3549102,
26781        name: "São João da Boa Vista",
26782        state: State::SP,
26783    },
26784    Municipio {
26785        ibge_code: 3549201,
26786        name: "São João das Duas Pontes",
26787        state: State::SP,
26788    },
26789    Municipio {
26790        ibge_code: 3549250,
26791        name: "São João de Iracema",
26792        state: State::SP,
26793    },
26794    Municipio {
26795        ibge_code: 3549300,
26796        name: "São João do Pau d'Alho",
26797        state: State::SP,
26798    },
26799    Municipio {
26800        ibge_code: 3549953,
26801        name: "São Lourenço da Serra",
26802        state: State::SP,
26803    },
26804    Municipio {
26805        ibge_code: 3550001,
26806        name: "São Luiz do Paraitinga",
26807        state: State::SP,
26808    },
26809    Municipio {
26810        ibge_code: 3550100,
26811        name: "São Manuel",
26812        state: State::SP,
26813    },
26814    Municipio {
26815        ibge_code: 3550209,
26816        name: "São Miguel Arcanjo",
26817        state: State::SP,
26818    },
26819    Municipio {
26820        ibge_code: 3550308,
26821        name: "São Paulo",
26822        state: State::SP,
26823    },
26824    Municipio {
26825        ibge_code: 3550407,
26826        name: "São Pedro",
26827        state: State::SP,
26828    },
26829    Municipio {
26830        ibge_code: 3550506,
26831        name: "São Pedro do Turvo",
26832        state: State::SP,
26833    },
26834    Municipio {
26835        ibge_code: 3550605,
26836        name: "São Roque",
26837        state: State::SP,
26838    },
26839    Municipio {
26840        ibge_code: 3550704,
26841        name: "São Sebastião",
26842        state: State::SP,
26843    },
26844    Municipio {
26845        ibge_code: 3550803,
26846        name: "São Sebastião da Grama",
26847        state: State::SP,
26848    },
26849    Municipio {
26850        ibge_code: 3550902,
26851        name: "São Simão",
26852        state: State::SP,
26853    },
26854    Municipio {
26855        ibge_code: 3551009,
26856        name: "São Vicente",
26857        state: State::SP,
26858    },
26859    Municipio {
26860        ibge_code: 3552601,
26861        name: "Tabapuã",
26862        state: State::SP,
26863    },
26864    Municipio {
26865        ibge_code: 3552700,
26866        name: "Tabatinga",
26867        state: State::SP,
26868    },
26869    Municipio {
26870        ibge_code: 3552809,
26871        name: "Taboão da Serra",
26872        state: State::SP,
26873    },
26874    Municipio {
26875        ibge_code: 3552908,
26876        name: "Taciba",
26877        state: State::SP,
26878    },
26879    Municipio {
26880        ibge_code: 3553005,
26881        name: "Taguaí",
26882        state: State::SP,
26883    },
26884    Municipio {
26885        ibge_code: 3553104,
26886        name: "Taiaçu",
26887        state: State::SP,
26888    },
26889    Municipio {
26890        ibge_code: 3553203,
26891        name: "Taiúva",
26892        state: State::SP,
26893    },
26894    Municipio {
26895        ibge_code: 3553302,
26896        name: "Tambaú",
26897        state: State::SP,
26898    },
26899    Municipio {
26900        ibge_code: 3553401,
26901        name: "Tanabi",
26902        state: State::SP,
26903    },
26904    Municipio {
26905        ibge_code: 3553609,
26906        name: "Tapiratiba",
26907        state: State::SP,
26908    },
26909    Municipio {
26910        ibge_code: 3553500,
26911        name: "Tapiraí",
26912        state: State::SP,
26913    },
26914    Municipio {
26915        ibge_code: 3553658,
26916        name: "Taquaral",
26917        state: State::SP,
26918    },
26919    Municipio {
26920        ibge_code: 3553708,
26921        name: "Taquaritinga",
26922        state: State::SP,
26923    },
26924    Municipio {
26925        ibge_code: 3553807,
26926        name: "Taquarituba",
26927        state: State::SP,
26928    },
26929    Municipio {
26930        ibge_code: 3553856,
26931        name: "Taquarivaí",
26932        state: State::SP,
26933    },
26934    Municipio {
26935        ibge_code: 3553906,
26936        name: "Tarabai",
26937        state: State::SP,
26938    },
26939    Municipio {
26940        ibge_code: 3553955,
26941        name: "Tarumã",
26942        state: State::SP,
26943    },
26944    Municipio {
26945        ibge_code: 3554003,
26946        name: "Tatuí",
26947        state: State::SP,
26948    },
26949    Municipio {
26950        ibge_code: 3554102,
26951        name: "Taubaté",
26952        state: State::SP,
26953    },
26954    Municipio {
26955        ibge_code: 3554201,
26956        name: "Tejupá",
26957        state: State::SP,
26958    },
26959    Municipio {
26960        ibge_code: 3554300,
26961        name: "Teodoro Sampaio",
26962        state: State::SP,
26963    },
26964    Municipio {
26965        ibge_code: 3554409,
26966        name: "Terra Roxa",
26967        state: State::SP,
26968    },
26969    Municipio {
26970        ibge_code: 3554508,
26971        name: "Tietê",
26972        state: State::SP,
26973    },
26974    Municipio {
26975        ibge_code: 3554607,
26976        name: "Timburi",
26977        state: State::SP,
26978    },
26979    Municipio {
26980        ibge_code: 3554656,
26981        name: "Torre de Pedra",
26982        state: State::SP,
26983    },
26984    Municipio {
26985        ibge_code: 3554706,
26986        name: "Torrinha",
26987        state: State::SP,
26988    },
26989    Municipio {
26990        ibge_code: 3554755,
26991        name: "Trabiju",
26992        state: State::SP,
26993    },
26994    Municipio {
26995        ibge_code: 3554805,
26996        name: "Tremembé",
26997        state: State::SP,
26998    },
26999    Municipio {
27000        ibge_code: 3554904,
27001        name: "Três Fronteiras",
27002        state: State::SP,
27003    },
27004    Municipio {
27005        ibge_code: 3554953,
27006        name: "Tuiuti",
27007        state: State::SP,
27008    },
27009    Municipio {
27010        ibge_code: 3555109,
27011        name: "Tupi Paulista",
27012        state: State::SP,
27013    },
27014    Municipio {
27015        ibge_code: 3555000,
27016        name: "Tupã",
27017        state: State::SP,
27018    },
27019    Municipio {
27020        ibge_code: 3555208,
27021        name: "Turiúba",
27022        state: State::SP,
27023    },
27024    Municipio {
27025        ibge_code: 3555307,
27026        name: "Turmalina",
27027        state: State::SP,
27028    },
27029    Municipio {
27030        ibge_code: 3555356,
27031        name: "Ubarana",
27032        state: State::SP,
27033    },
27034    Municipio {
27035        ibge_code: 3555406,
27036        name: "Ubatuba",
27037        state: State::SP,
27038    },
27039    Municipio {
27040        ibge_code: 3555505,
27041        name: "Ubirajara",
27042        state: State::SP,
27043    },
27044    Municipio {
27045        ibge_code: 3555604,
27046        name: "Uchoa",
27047        state: State::SP,
27048    },
27049    Municipio {
27050        ibge_code: 3555703,
27051        name: "União Paulista",
27052        state: State::SP,
27053    },
27054    Municipio {
27055        ibge_code: 3555901,
27056        name: "Uru",
27057        state: State::SP,
27058    },
27059    Municipio {
27060        ibge_code: 3556008,
27061        name: "Urupês",
27062        state: State::SP,
27063    },
27064    Municipio {
27065        ibge_code: 3555802,
27066        name: "Urânia",
27067        state: State::SP,
27068    },
27069    Municipio {
27070        ibge_code: 3556107,
27071        name: "Valentim Gentil",
27072        state: State::SP,
27073    },
27074    Municipio {
27075        ibge_code: 3556206,
27076        name: "Valinhos",
27077        state: State::SP,
27078    },
27079    Municipio {
27080        ibge_code: 3556305,
27081        name: "Valparaíso",
27082        state: State::SP,
27083    },
27084    Municipio {
27085        ibge_code: 3556354,
27086        name: "Vargem",
27087        state: State::SP,
27088    },
27089    Municipio {
27090        ibge_code: 3556453,
27091        name: "Vargem Grande Paulista",
27092        state: State::SP,
27093    },
27094    Municipio {
27095        ibge_code: 3556404,
27096        name: "Vargem Grande do Sul",
27097        state: State::SP,
27098    },
27099    Municipio {
27100        ibge_code: 3556602,
27101        name: "Vera Cruz",
27102        state: State::SP,
27103    },
27104    Municipio {
27105        ibge_code: 3556701,
27106        name: "Vinhedo",
27107        state: State::SP,
27108    },
27109    Municipio {
27110        ibge_code: 3556800,
27111        name: "Viradouro",
27112        state: State::SP,
27113    },
27114    Municipio {
27115        ibge_code: 3556909,
27116        name: "Vista Alegre do Alto",
27117        state: State::SP,
27118    },
27119    Municipio {
27120        ibge_code: 3556958,
27121        name: "Vitória Brasil",
27122        state: State::SP,
27123    },
27124    Municipio {
27125        ibge_code: 3557006,
27126        name: "Votorantim",
27127        state: State::SP,
27128    },
27129    Municipio {
27130        ibge_code: 3557105,
27131        name: "Votuporanga",
27132        state: State::SP,
27133    },
27134    Municipio {
27135        ibge_code: 3556503,
27136        name: "Várzea Paulista",
27137        state: State::SP,
27138    },
27139    Municipio {
27140        ibge_code: 3557154,
27141        name: "Zacarias",
27142        state: State::SP,
27143    },
27144    Municipio {
27145        ibge_code: 3500402,
27146        name: "Águas da Prata",
27147        state: State::SP,
27148    },
27149    Municipio {
27150        ibge_code: 3500501,
27151        name: "Águas de Lindóia",
27152        state: State::SP,
27153    },
27154    Municipio {
27155        ibge_code: 3500550,
27156        name: "Águas de Santa Bárbara",
27157        state: State::SP,
27158    },
27159    Municipio {
27160        ibge_code: 3500600,
27161        name: "Águas de São Pedro",
27162        state: State::SP,
27163    },
27164    Municipio {
27165        ibge_code: 3501202,
27166        name: "Álvares Florence",
27167        state: State::SP,
27168    },
27169    Municipio {
27170        ibge_code: 3501301,
27171        name: "Álvares Machado",
27172        state: State::SP,
27173    },
27174    Municipio {
27175        ibge_code: 3501400,
27176        name: "Álvaro de Carvalho",
27177        state: State::SP,
27178    },
27179    Municipio {
27180        ibge_code: 3533809,
27181        name: "Óleo",
27182        state: State::SP,
27183    },
27184    Municipio {
27185        ibge_code: 1700251,
27186        name: "Abreulândia",
27187        state: State::TO,
27188    },
27189    Municipio {
27190        ibge_code: 1700301,
27191        name: "Aguiarnópolis",
27192        state: State::TO,
27193    },
27194    Municipio {
27195        ibge_code: 1700350,
27196        name: "Aliança do Tocantins",
27197        state: State::TO,
27198    },
27199    Municipio {
27200        ibge_code: 1700400,
27201        name: "Almas",
27202        state: State::TO,
27203    },
27204    Municipio {
27205        ibge_code: 1700707,
27206        name: "Alvorada",
27207        state: State::TO,
27208    },
27209    Municipio {
27210        ibge_code: 1701002,
27211        name: "Ananás",
27212        state: State::TO,
27213    },
27214    Municipio {
27215        ibge_code: 1701051,
27216        name: "Angico",
27217        state: State::TO,
27218    },
27219    Municipio {
27220        ibge_code: 1701101,
27221        name: "Aparecida do Rio Negro",
27222        state: State::TO,
27223    },
27224    Municipio {
27225        ibge_code: 1701309,
27226        name: "Aragominas",
27227        state: State::TO,
27228    },
27229    Municipio {
27230        ibge_code: 1701903,
27231        name: "Araguacema",
27232        state: State::TO,
27233    },
27234    Municipio {
27235        ibge_code: 1702158,
27236        name: "Araguanã",
27237        state: State::TO,
27238    },
27239    Municipio {
27240        ibge_code: 1702208,
27241        name: "Araguatins",
27242        state: State::TO,
27243    },
27244    Municipio {
27245        ibge_code: 1702000,
27246        name: "Araguaçu",
27247        state: State::TO,
27248    },
27249    Municipio {
27250        ibge_code: 1702109,
27251        name: "Araguaína",
27252        state: State::TO,
27253    },
27254    Municipio {
27255        ibge_code: 1702307,
27256        name: "Arapoema",
27257        state: State::TO,
27258    },
27259    Municipio {
27260        ibge_code: 1702406,
27261        name: "Arraias",
27262        state: State::TO,
27263    },
27264    Municipio {
27265        ibge_code: 1702554,
27266        name: "Augustinópolis",
27267        state: State::TO,
27268    },
27269    Municipio {
27270        ibge_code: 1702703,
27271        name: "Aurora do Tocantins",
27272        state: State::TO,
27273    },
27274    Municipio {
27275        ibge_code: 1702901,
27276        name: "Axixá do Tocantins",
27277        state: State::TO,
27278    },
27279    Municipio {
27280        ibge_code: 1703008,
27281        name: "Babaçulândia",
27282        state: State::TO,
27283    },
27284    Municipio {
27285        ibge_code: 1703057,
27286        name: "Bandeirantes do Tocantins",
27287        state: State::TO,
27288    },
27289    Municipio {
27290        ibge_code: 1703073,
27291        name: "Barra do Ouro",
27292        state: State::TO,
27293    },
27294    Municipio {
27295        ibge_code: 1703107,
27296        name: "Barrolândia",
27297        state: State::TO,
27298    },
27299    Municipio {
27300        ibge_code: 1703206,
27301        name: "Bernardo Sayão",
27302        state: State::TO,
27303    },
27304    Municipio {
27305        ibge_code: 1703305,
27306        name: "Bom Jesus do Tocantins",
27307        state: State::TO,
27308    },
27309    Municipio {
27310        ibge_code: 1703602,
27311        name: "Brasilândia do Tocantins",
27312        state: State::TO,
27313    },
27314    Municipio {
27315        ibge_code: 1703701,
27316        name: "Brejinho de Nazaré",
27317        state: State::TO,
27318    },
27319    Municipio {
27320        ibge_code: 1703800,
27321        name: "Buriti do Tocantins",
27322        state: State::TO,
27323    },
27324    Municipio {
27325        ibge_code: 1703826,
27326        name: "Cachoeirinha",
27327        state: State::TO,
27328    },
27329    Municipio {
27330        ibge_code: 1703842,
27331        name: "Campos Lindos",
27332        state: State::TO,
27333    },
27334    Municipio {
27335        ibge_code: 1703867,
27336        name: "Cariri do Tocantins",
27337        state: State::TO,
27338    },
27339    Municipio {
27340        ibge_code: 1703883,
27341        name: "Carmolândia",
27342        state: State::TO,
27343    },
27344    Municipio {
27345        ibge_code: 1703891,
27346        name: "Carrasco Bonito",
27347        state: State::TO,
27348    },
27349    Municipio {
27350        ibge_code: 1703909,
27351        name: "Caseara",
27352        state: State::TO,
27353    },
27354    Municipio {
27355        ibge_code: 1704105,
27356        name: "Centenário",
27357        state: State::TO,
27358    },
27359    Municipio {
27360        ibge_code: 1705102,
27361        name: "Chapada da Natividade",
27362        state: State::TO,
27363    },
27364    Municipio {
27365        ibge_code: 1704600,
27366        name: "Chapada de Areia",
27367        state: State::TO,
27368    },
27369    Municipio {
27370        ibge_code: 1705508,
27371        name: "Colinas do Tocantins",
27372        state: State::TO,
27373    },
27374    Municipio {
27375        ibge_code: 1716703,
27376        name: "Colméia",
27377        state: State::TO,
27378    },
27379    Municipio {
27380        ibge_code: 1705557,
27381        name: "Combinado",
27382        state: State::TO,
27383    },
27384    Municipio {
27385        ibge_code: 1705607,
27386        name: "Conceição do Tocantins",
27387        state: State::TO,
27388    },
27389    Municipio {
27390        ibge_code: 1706001,
27391        name: "Couto Magalhães",
27392        state: State::TO,
27393    },
27394    Municipio {
27395        ibge_code: 1706100,
27396        name: "Cristalândia",
27397        state: State::TO,
27398    },
27399    Municipio {
27400        ibge_code: 1706258,
27401        name: "Crixás do Tocantins",
27402        state: State::TO,
27403    },
27404    Municipio {
27405        ibge_code: 1706506,
27406        name: "Darcinópolis",
27407        state: State::TO,
27408    },
27409    Municipio {
27410        ibge_code: 1707009,
27411        name: "Dianópolis",
27412        state: State::TO,
27413    },
27414    Municipio {
27415        ibge_code: 1707108,
27416        name: "Divinópolis do Tocantins",
27417        state: State::TO,
27418    },
27419    Municipio {
27420        ibge_code: 1707207,
27421        name: "Dois Irmãos do Tocantins",
27422        state: State::TO,
27423    },
27424    Municipio {
27425        ibge_code: 1707306,
27426        name: "Dueré",
27427        state: State::TO,
27428    },
27429    Municipio {
27430        ibge_code: 1707405,
27431        name: "Esperantina",
27432        state: State::TO,
27433    },
27434    Municipio {
27435        ibge_code: 1707652,
27436        name: "Figueirópolis",
27437        state: State::TO,
27438    },
27439    Municipio {
27440        ibge_code: 1707702,
27441        name: "Filadélfia",
27442        state: State::TO,
27443    },
27444    Municipio {
27445        ibge_code: 1708205,
27446        name: "Formoso do Araguaia",
27447        state: State::TO,
27448    },
27449    Municipio {
27450        ibge_code: 1707553,
27451        name: "Fátima",
27452        state: State::TO,
27453    },
27454    Municipio {
27455        ibge_code: 1708304,
27456        name: "Goianorte",
27457        state: State::TO,
27458    },
27459    Municipio {
27460        ibge_code: 1709005,
27461        name: "Goiatins",
27462        state: State::TO,
27463    },
27464    Municipio {
27465        ibge_code: 1709302,
27466        name: "Guaraí",
27467        state: State::TO,
27468    },
27469    Municipio {
27470        ibge_code: 1709500,
27471        name: "Gurupi",
27472        state: State::TO,
27473    },
27474    Municipio {
27475        ibge_code: 1709807,
27476        name: "Ipueiras",
27477        state: State::TO,
27478    },
27479    Municipio {
27480        ibge_code: 1710508,
27481        name: "Itacajá",
27482        state: State::TO,
27483    },
27484    Municipio {
27485        ibge_code: 1710706,
27486        name: "Itaguatins",
27487        state: State::TO,
27488    },
27489    Municipio {
27490        ibge_code: 1710904,
27491        name: "Itapiratins",
27492        state: State::TO,
27493    },
27494    Municipio {
27495        ibge_code: 1711100,
27496        name: "Itaporã do Tocantins",
27497        state: State::TO,
27498    },
27499    Municipio {
27500        ibge_code: 1711506,
27501        name: "Jaú do Tocantins",
27502        state: State::TO,
27503    },
27504    Municipio {
27505        ibge_code: 1711803,
27506        name: "Juarina",
27507        state: State::TO,
27508    },
27509    Municipio {
27510        ibge_code: 1711902,
27511        name: "Lagoa da Confusão",
27512        state: State::TO,
27513    },
27514    Municipio {
27515        ibge_code: 1711951,
27516        name: "Lagoa do Tocantins",
27517        state: State::TO,
27518    },
27519    Municipio {
27520        ibge_code: 1712009,
27521        name: "Lajeado",
27522        state: State::TO,
27523    },
27524    Municipio {
27525        ibge_code: 1712157,
27526        name: "Lavandeira",
27527        state: State::TO,
27528    },
27529    Municipio {
27530        ibge_code: 1712405,
27531        name: "Lizarda",
27532        state: State::TO,
27533    },
27534    Municipio {
27535        ibge_code: 1712454,
27536        name: "Luzinópolis",
27537        state: State::TO,
27538    },
27539    Municipio {
27540        ibge_code: 1712504,
27541        name: "Marianópolis do Tocantins",
27542        state: State::TO,
27543    },
27544    Municipio {
27545        ibge_code: 1712702,
27546        name: "Mateiros",
27547        state: State::TO,
27548    },
27549    Municipio {
27550        ibge_code: 1712801,
27551        name: "Maurilândia do Tocantins",
27552        state: State::TO,
27553    },
27554    Municipio {
27555        ibge_code: 1713205,
27556        name: "Miracema do Tocantins",
27557        state: State::TO,
27558    },
27559    Municipio {
27560        ibge_code: 1713304,
27561        name: "Miranorte",
27562        state: State::TO,
27563    },
27564    Municipio {
27565        ibge_code: 1713700,
27566        name: "Monte Santo do Tocantins",
27567        state: State::TO,
27568    },
27569    Municipio {
27570        ibge_code: 1713601,
27571        name: "Monte do Carmo",
27572        state: State::TO,
27573    },
27574    Municipio {
27575        ibge_code: 1713957,
27576        name: "Muricilândia",
27577        state: State::TO,
27578    },
27579    Municipio {
27580        ibge_code: 1714203,
27581        name: "Natividade",
27582        state: State::TO,
27583    },
27584    Municipio {
27585        ibge_code: 1714302,
27586        name: "Nazaré",
27587        state: State::TO,
27588    },
27589    Municipio {
27590        ibge_code: 1714880,
27591        name: "Nova Olinda",
27592        state: State::TO,
27593    },
27594    Municipio {
27595        ibge_code: 1715002,
27596        name: "Nova Rosalândia",
27597        state: State::TO,
27598    },
27599    Municipio {
27600        ibge_code: 1715101,
27601        name: "Novo Acordo",
27602        state: State::TO,
27603    },
27604    Municipio {
27605        ibge_code: 1715150,
27606        name: "Novo Alegre",
27607        state: State::TO,
27608    },
27609    Municipio {
27610        ibge_code: 1715259,
27611        name: "Novo Jardim",
27612        state: State::TO,
27613    },
27614    Municipio {
27615        ibge_code: 1715507,
27616        name: "Oliveira de Fátima",
27617        state: State::TO,
27618    },
27619    Municipio {
27620        ibge_code: 1721000,
27621        name: "Palmas",
27622        state: State::TO,
27623    },
27624    Municipio {
27625        ibge_code: 1715705,
27626        name: "Palmeirante",
27627        state: State::TO,
27628    },
27629    Municipio {
27630        ibge_code: 1713809,
27631        name: "Palmeiras do Tocantins",
27632        state: State::TO,
27633    },
27634    Municipio {
27635        ibge_code: 1715754,
27636        name: "Palmeirópolis",
27637        state: State::TO,
27638    },
27639    Municipio {
27640        ibge_code: 1716208,
27641        name: "Paranã",
27642        state: State::TO,
27643    },
27644    Municipio {
27645        ibge_code: 1716109,
27646        name: "Paraíso do Tocantins",
27647        state: State::TO,
27648    },
27649    Municipio {
27650        ibge_code: 1716307,
27651        name: "Pau D'Arco",
27652        state: State::TO,
27653    },
27654    Municipio {
27655        ibge_code: 1716505,
27656        name: "Pedro Afonso",
27657        state: State::TO,
27658    },
27659    Municipio {
27660        ibge_code: 1716604,
27661        name: "Peixe",
27662        state: State::TO,
27663    },
27664    Municipio {
27665        ibge_code: 1716653,
27666        name: "Pequizeiro",
27667        state: State::TO,
27668    },
27669    Municipio {
27670        ibge_code: 1717008,
27671        name: "Pindorama do Tocantins",
27672        state: State::TO,
27673    },
27674    Municipio {
27675        ibge_code: 1717206,
27676        name: "Piraquê",
27677        state: State::TO,
27678    },
27679    Municipio {
27680        ibge_code: 1717503,
27681        name: "Pium",
27682        state: State::TO,
27683    },
27684    Municipio {
27685        ibge_code: 1717800,
27686        name: "Ponte Alta do Bom Jesus",
27687        state: State::TO,
27688    },
27689    Municipio {
27690        ibge_code: 1717909,
27691        name: "Ponte Alta do Tocantins",
27692        state: State::TO,
27693    },
27694    Municipio {
27695        ibge_code: 1718006,
27696        name: "Porto Alegre do Tocantins",
27697        state: State::TO,
27698    },
27699    Municipio {
27700        ibge_code: 1718204,
27701        name: "Porto Nacional",
27702        state: State::TO,
27703    },
27704    Municipio {
27705        ibge_code: 1718303,
27706        name: "Praia Norte",
27707        state: State::TO,
27708    },
27709    Municipio {
27710        ibge_code: 1718402,
27711        name: "Presidente Kennedy",
27712        state: State::TO,
27713    },
27714    Municipio {
27715        ibge_code: 1718451,
27716        name: "Pugmil",
27717        state: State::TO,
27718    },
27719    Municipio {
27720        ibge_code: 1718501,
27721        name: "Recursolândia",
27722        state: State::TO,
27723    },
27724    Municipio {
27725        ibge_code: 1718550,
27726        name: "Riachinho",
27727        state: State::TO,
27728    },
27729    Municipio {
27730        ibge_code: 1718758,
27731        name: "Rio Sono",
27732        state: State::TO,
27733    },
27734    Municipio {
27735        ibge_code: 1718659,
27736        name: "Rio da Conceição",
27737        state: State::TO,
27738    },
27739    Municipio {
27740        ibge_code: 1718709,
27741        name: "Rio dos Bois",
27742        state: State::TO,
27743    },
27744    Municipio {
27745        ibge_code: 1718808,
27746        name: "Sampaio",
27747        state: State::TO,
27748    },
27749    Municipio {
27750        ibge_code: 1718840,
27751        name: "Sandolândia",
27752        state: State::TO,
27753    },
27754    Municipio {
27755        ibge_code: 1718865,
27756        name: "Santa Fé do Araguaia",
27757        state: State::TO,
27758    },
27759    Municipio {
27760        ibge_code: 1718881,
27761        name: "Santa Maria do Tocantins",
27762        state: State::TO,
27763    },
27764    Municipio {
27765        ibge_code: 1718899,
27766        name: "Santa Rita do Tocantins",
27767        state: State::TO,
27768    },
27769    Municipio {
27770        ibge_code: 1718907,
27771        name: "Santa Rosa do Tocantins",
27772        state: State::TO,
27773    },
27774    Municipio {
27775        ibge_code: 1719004,
27776        name: "Santa Tereza do Tocantins",
27777        state: State::TO,
27778    },
27779    Municipio {
27780        ibge_code: 1720002,
27781        name: "Santa Terezinha do Tocantins",
27782        state: State::TO,
27783    },
27784    Municipio {
27785        ibge_code: 1720655,
27786        name: "Silvanópolis",
27787        state: State::TO,
27788    },
27789    Municipio {
27790        ibge_code: 1720853,
27791        name: "Sucupira",
27792        state: State::TO,
27793    },
27794    Municipio {
27795        ibge_code: 1720101,
27796        name: "São Bento do Tocantins",
27797        state: State::TO,
27798    },
27799    Municipio {
27800        ibge_code: 1720150,
27801        name: "São Félix do Tocantins",
27802        state: State::TO,
27803    },
27804    Municipio {
27805        ibge_code: 1720200,
27806        name: "São Miguel do Tocantins",
27807        state: State::TO,
27808    },
27809    Municipio {
27810        ibge_code: 1720259,
27811        name: "São Salvador do Tocantins",
27812        state: State::TO,
27813    },
27814    Municipio {
27815        ibge_code: 1720309,
27816        name: "São Sebastião do Tocantins",
27817        state: State::TO,
27818    },
27819    Municipio {
27820        ibge_code: 1720499,
27821        name: "São Valério",
27822        state: State::TO,
27823    },
27824    Municipio {
27825        ibge_code: 1720804,
27826        name: "Sítio Novo do Tocantins",
27827        state: State::TO,
27828    },
27829    Municipio {
27830        ibge_code: 1708254,
27831        name: "Tabocão",
27832        state: State::TO,
27833    },
27834    Municipio {
27835        ibge_code: 1720903,
27836        name: "Taguatinga",
27837        state: State::TO,
27838    },
27839    Municipio {
27840        ibge_code: 1720937,
27841        name: "Taipas do Tocantins",
27842        state: State::TO,
27843    },
27844    Municipio {
27845        ibge_code: 1720978,
27846        name: "Talismã",
27847        state: State::TO,
27848    },
27849    Municipio {
27850        ibge_code: 1721208,
27851        name: "Tocantinópolis",
27852        state: State::TO,
27853    },
27854    Municipio {
27855        ibge_code: 1721109,
27856        name: "Tocantínia",
27857        state: State::TO,
27858    },
27859    Municipio {
27860        ibge_code: 1721257,
27861        name: "Tupirama",
27862        state: State::TO,
27863    },
27864    Municipio {
27865        ibge_code: 1721307,
27866        name: "Tupiratins",
27867        state: State::TO,
27868    },
27869    Municipio {
27870        ibge_code: 1722081,
27871        name: "Wanderlândia",
27872        state: State::TO,
27873    },
27874    Municipio {
27875        ibge_code: 1722107,
27876        name: "Xambioá",
27877        state: State::TO,
27878    },
27879];
27880
27881/// IBGE codes of the 27 state capitals, ordered to match [`crate::uf::ALL`].
27882#[allow(clippy::unreadable_literal)]
27883pub const CAPITAL_CODES: [u32; 27] = [
27884    1200401, // Rio Branco - AC
27885    2704302, // Maceió - AL
27886    1302603, // Manaus - AM
27887    1600303, // Macapá - AP
27888    2927408, // Salvador - BA
27889    2304400, // Fortaleza - CE
27890    5300108, // Brasília - DF
27891    3205309, // Vitória - ES
27892    5208707, // Goiânia - GO
27893    2111300, // São Luís - MA
27894    3106200, // Belo Horizonte - MG
27895    5002704, // Campo Grande - MS
27896    5103403, // Cuiabá - MT
27897    1501402, // Belém - PA
27898    2507507, // João Pessoa - PB
27899    2611606, // Recife - PE
27900    2211001, // Teresina - PI
27901    4106902, // Curitiba - PR
27902    3304557, // Rio de Janeiro - RJ
27903    2408102, // Natal - RN
27904    1100205, // Porto Velho - RO
27905    1400100, // Boa Vista - RR
27906    4314902, // Porto Alegre - RS
27907    4205407, // Florianópolis - SC
27908    2800308, // Aracaju - SE
27909    3550308, // São Paulo - SP
27910    1721000, // Palmas - TO
27911];
27912
27913impl Municipio {
27914    /// Find a municipality by its IBGE code.
27915    pub fn from_ibge_code(code: u32) -> Option<&'static Municipio> {
27916        ALL.iter().find(|m| m.ibge_code == code)
27917    }
27918
27919    /// Get the capital of a given state.
27920    pub fn capital_of(state: State) -> &'static Municipio {
27921        let code = CAPITAL_CODES
27922            .iter()
27923            .zip(crate::uf::ALL.iter())
27924            .find(|(_, s)| **s == state)
27925            .map(|(c, _)| *c)
27926            .unwrap();
27927        Self::from_ibge_code(code).unwrap()
27928    }
27929
27930    /// Returns all municipalities in a given state.
27931    ///
27932    /// Efficient: exploits the fact that `ALL` is sorted by state.
27933    pub fn by_state(state: State) -> &'static [Municipio] {
27934        let start = ALL.iter().position(|m| m.state == state);
27935        match start {
27936            Some(s) => {
27937                let end = ALL[s..]
27938                    .iter()
27939                    .position(|m| m.state != state)
27940                    .map_or(ALL.len(), |e| s + e);
27941                &ALL[s..end]
27942            }
27943            None => &[],
27944        }
27945    }
27946
27947    /// Find municipalities whose name contains the given substring (case-insensitive).
27948    pub fn search_by_name(query: &str) -> impl Iterator<Item = &'static Municipio> {
27949        let query_lower: alloc::string::String =
27950            query.chars().flat_map(char::to_lowercase).collect();
27951        ALL.iter().filter(move |m| {
27952            let name_lower: alloc::string::String =
27953                m.name.chars().flat_map(char::to_lowercase).collect();
27954            name_lower.contains(query_lower.as_str())
27955        })
27956    }
27957
27958    pub fn is_capital(&self) -> bool {
27959        CAPITAL_CODES.contains(&self.ibge_code)
27960    }
27961}
27962
27963impl fmt::Display for Municipio {
27964    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
27965        write!(f, "{}/{}", self.name, self.state)
27966    }
27967}
27968
27969#[cfg(test)]
27970mod tests {
27971    use super::*;
27972    use alloc::vec::Vec;
27973
27974    #[test]
27975    fn total_count() {
27976        assert_eq!(ALL.len(), 5571);
27977    }
27978
27979    #[test]
27980    fn sorted_by_state_then_name() {
27981        for pair in ALL.windows(2) {
27982            let a = &pair[0];
27983            let b = &pair[1];
27984            assert!(
27985                (a.state as u8) < (b.state as u8)
27986                    || ((a.state as u8) == (b.state as u8) && a.name <= b.name),
27987                "{a} should come before {b}"
27988            );
27989        }
27990    }
27991
27992    #[test]
27993    fn each_state_has_municipalities() {
27994        for &state in &crate::uf::ALL {
27995            let munis = Municipio::by_state(state);
27996            assert!(!munis.is_empty(), "{state:?} has no municipalities");
27997        }
27998    }
27999
28000    #[test]
28001    fn capitals_exist_in_all() {
28002        for &code in &CAPITAL_CODES {
28003            assert!(
28004                Municipio::from_ibge_code(code).is_some(),
28005                "Capital code {code} not found"
28006            );
28007        }
28008    }
28009
28010    #[test]
28011    fn capital_of_each_state() {
28012        for &state in &crate::uf::ALL {
28013            let cap = Municipio::capital_of(state);
28014            assert_eq!(cap.state, state);
28015            assert!(cap.is_capital());
28016        }
28017    }
28018
28019    #[test]
28020    fn from_ibge_code_sao_paulo() {
28021        let sp = Municipio::from_ibge_code(3_550_308).unwrap();
28022        assert_eq!(sp.name, "São Paulo");
28023        assert_eq!(sp.state, State::SP);
28024    }
28025
28026    #[test]
28027    fn from_ibge_code_returns_none() {
28028        assert!(Municipio::from_ibge_code(0).is_none());
28029        assert!(Municipio::from_ibge_code(9_999_999).is_none());
28030    }
28031
28032    #[test]
28033    fn by_state_returns_correct_state() {
28034        let sp_munis = Municipio::by_state(State::SP);
28035        for m in sp_munis {
28036            assert_eq!(m.state, State::SP);
28037        }
28038        // SP has 645 municipalities
28039        assert!(sp_munis.len() > 600);
28040    }
28041
28042    #[test]
28043    fn search_by_name_works() {
28044        let results: Vec<_> = Municipio::search_by_name("porto").collect();
28045        assert!(results.len() >= 2);
28046    }
28047
28048    #[test]
28049    fn is_capital_correct() {
28050        let sp = Municipio::from_ibge_code(3_550_308).unwrap();
28051        assert!(sp.is_capital());
28052
28053        // Campinas is not a capital
28054        let campinas = Municipio::from_ibge_code(3_509_502).unwrap();
28055        assert!(!campinas.is_capital());
28056    }
28057
28058    #[test]
28059    fn display_format() {
28060        use alloc::string::ToString;
28061        let sp = Municipio::from_ibge_code(3_550_308).unwrap();
28062        assert_eq!(sp.to_string(), "São Paulo/SP");
28063    }
28064
28065    #[test]
28066    fn ibge_codes_are_7_digits() {
28067        for m in ALL {
28068            assert!(
28069                m.ibge_code >= 1_000_000 && m.ibge_code <= 9_999_999,
28070                "{} has invalid IBGE code: {}",
28071                m.name,
28072                m.ibge_code
28073            );
28074        }
28075    }
28076}