-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbr.json
1194 lines (1194 loc) · 54.1 KB
/
br.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"https://040cafe602.up.edu.br/idp/shibboleth": {
"en": "UP - Universidade Positivo",
"pt-br": "UP - Universidade Positivo"
},
"https://1010se17fam-v18.famerp.br/idp/shibboleth": {
"en": "FAMERP - Faculdade de Medicina de Rio Preto",
"pt-br": "FAMERP - Faculdade de Medicina de Rio Preto"
},
"https://acesso.ufabc.edu.br/idp/shibboleth": {
"en": "UFABC - Universidade Federal do ABC",
"pt-br": "UFABC - Universidade Federal do ABC"
},
"https://aclxpcafe.accamargo.org.br/idp/shibboleth": {
"en": "ACCAMARGO - AC Camargo Cancer Center",
"pt-br": "ACCAMARGO - AC Camargo Cancer Center"
},
"https://araripe.uece.br/idp/shibboleth": {
"en": "UECE - Universidade Estadual do Ceara",
"pt-br": "UECE - Universidade Estadual do Ceara"
},
"https://azor.ufpe.br/idp/shibboleth": {
"en": "UFPE - Universidade Federal de Pernambuco",
"pt-br": "UFPE - Universidade Federal de Pernambuco"
},
"https://barista2.pucsp.br/idp/shibboleth": {
"en": "PUCSP - Pontificia Universidade Catolica de Sao Paulo",
"pt-br": "PUCSP - Pontificia Universidade Catolica de Sao Paulo"
},
"https://cafe-01.uffs.edu.br/idp/shibboleth": {
"en": "UFFS - Universidade Federal da Fronteira Sul",
"pt-br": "UFFS - Universidade Federal da Fronteira Sul"
},
"https://cafe-gateway.ifce.edu.br/idp/shibboleth": {
"en": "IFCE - Instituto Federal do Ceara",
"pt-br": "IFCE - Instituto Federal do Ceara"
},
"https://cafe-idp.ifnmg.edu.br/idp/shibboleth": {
"en": "IFNMG - Instituto Federal do Norte de Minas Gerais",
"pt-br": "IFNMG - Instituto Federal do Norte de Minas Gerais"
},
"https://cafe-idp.ufc.br/idp/shibboleth": {
"en": "UFC - Universidade Federal do Ceara",
"pt-br": "UFC - Universidade Federal do Ceara"
},
"https://cafe-idp.ufrrj.br/idp/shibboleth": {
"en": "UFRRJ - Universidade Federal Rural do Rio de Janeiro",
"pt-br": "UFRRJ - Universidade Federal Rural do Rio de Janeiro"
},
"https://cafe-idp.unicentro.br/idp/shibboleth": {
"en": "UNICENTRO - Universidade Estadual do Centro-Oeste",
"pt-br": "UNICENTRO - Universidade Estadual do Centro-Oeste"
},
"https://cafe-idp.unirio.br/idp/shibboleth": {
"en": "UNIRIO - Universidade Federal do Estado do Rio de Janeiro",
"pt-br": "UNIRIO - Universidade Federal do Estado do Rio de Janeiro"
},
"https://cafe-idp.unisantos.br/idp/shibboleth": {
"en": "UNISANTOS - Universidade Catolica de Santos",
"pt-br": "UNISANTOS - Universidade Catolica de Santos"
},
"https://cafe-school.cesar.org.br/idp/shibboleth": {
"en": "CESAR - Centro de Estudos e Sistemas Avancados do Recife",
"pt-br": "CESAR - Centro de Estudos e Sistemas Avancados do Recife"
},
"https://cafe-v3.upf.br/idp/shibboleth": {
"en": "UPF - Universidade de Passo Fundo",
"pt-br": "UPF - Universidade de Passo Fundo"
},
"https://cafe.apps.uern.br/idp/shibboleth": {
"en": "UERN - Universidade do Estado do Rio Grande do Norte",
"pt-br": "UERN - Universidade do Estado do Rio Grande do Norte"
},
"https://cafe.cbpf.br/idp/shibboleth": {
"en": "CBPF - Centro Brasileiro de Pesquisas Fisicas",
"pt-br": "CBPF - Centro Brasileiro de Pesquisas Fisicas"
},
"https://cafe.cefet-rj.br/idp/shibboleth": {
"en": "CEFET-RJ - Centro Fed. Educ. Tecnol. Celso S. Fonseca",
"pt-br": "CEFET-RJ - Centro Fed. Educ. Tecnol. Celso S. Fonseca"
},
"https://cafe.cnpq.br/idp/shibboleth": {
"en": "CNPQ - Conselho Nacional de Desenvolvimento Cientifico e Tecnologico",
"pt-br": "CNPQ - Conselho Nacional de Desenvolvimento Cientifico e Tecnologico"
},
"https://cafe.cruzeirodosul.edu.br/idp/shibboleth": {
"en": "UNICSUL - Universidade Cruzeiro do Sul",
"pt-br": "UNICSUL - Universidade Cruzeiro do Sul"
},
"https://cafe.eldorado.org.br/idp/shibboleth": {
"en": "IPE - Instituto de Pesquisas Eldorado",
"pt-br": "IPE - Instituto de Pesquisas Eldorado"
},
"https://cafe.esg.br/idp/shibboleth": {
"en": "ESG - Escola Superior de Guerra",
"pt-br": "ESG - Escola Superior de Guerra"
},
"https://cafe.espm.br/idp/shibboleth": {
"en": "ESPM - Escola Superior de Propaganda e Marketing",
"pt-br": "ESPM - Escola Superior de Propaganda e Marketing"
},
"https://cafe.fmc-campos.com.br/idp/shibboleth": {
"en": "FMC - Faculdade de Medicina de Campos",
"pt-br": "FMC - Faculdade de Medicina de Campos"
},
"https://cafe.fucape.br/idp/shibboleth": {
"en": "FUCAPE - Fundacao Instituto Capixaba de Pesquisa em Cont. Econ. e Financas",
"pt-br": "FUCAPE - Fundacao Instituto Capixaba de Pesquisa em Cont. Econ. e Financas"
},
"https://cafe.fumec.br/idp/shibboleth": {
"en": "FUMEC - Fundacao Mineira de Educacao e Cultura",
"pt-br": "FUMEC - Fundacao Mineira de Educacao e Cultura"
},
"https://cafe.funesa.se.gov.br/idp/shibboleth": {
"en": "FUNESA - Fundacao Estadual de Saude",
"pt-br": "FUNESA - Fundacao Estadual de Saude"
},
"https://cafe.furg.br/idp/shibboleth": {
"en": "FURG - Universidade Federal do Rio Grande",
"pt-br": "FURG - Universidade Federal do Rio Grande"
},
"https://cafe.ibict.br/idp/shibboleth": {
"en": "IBICT - Inst. Brasileiro de Info. em Ciencia e Tecnologia",
"pt-br": "IBICT - Inst. Brasileiro de Info. em Ciencia e Tecnologia"
},
"https://cafe.idp.edu.br/idp/shibboleth": {
"en": "IDP - Instituto Brasileiro de Ensino, Desenvolvimento e Pesquisa de Brasilia",
"pt-br": "IDP - Instituto Brasileiro de Ensino, Desenvolvimento e Pesquisa de Brasilia"
},
"https://cafe.iec.gov.br/idp/shibboleth": {
"en": "IEC - Instituto Evandro Chagas",
"pt-br": "IEC - Instituto Evandro Chagas"
},
"https://cafe.ien.gov.br/idp/shibboleth": {
"en": "IEN - Instituto de Engenharia Nuclear",
"pt-br": "IEN - Instituto de Engenharia Nuclear"
},
"https://cafe.ifma.edu.br/idp/shibboleth": {
"en": "IFMA - Instituto Federal do Maranhao",
"pt-br": "IFMA - Instituto Federal do Maranhao"
},
"https://cafe.ifrj.edu.br/idp/shibboleth": {
"en": "IFRJ - Instituto Federal de Educacao do Rio de Janeiro",
"pt-br": "IFRJ - Instituto Federal de Educacao do Rio de Janeiro"
},
"https://cafe.ifro.edu.br/idp/shibboleth": {
"en": "IFRO - Instituto Federal de Rondonia",
"pt-br": "IFRO - Instituto Federal de Rondonia"
},
"https://cafe.ifrs.edu.br/idp/shibboleth": {
"en": "IFRS - Instituto Federal de Educacao Ciencia e Tecnologia do Rio Grande do Sul",
"pt-br": "IFRS - Instituto Federal de Educacao Ciencia e Tecnologia do Rio Grande do Sul"
},
"https://cafe.ime.eb.br/idp/shibboleth": {
"en": "IME - Instituto Militar de Engenharia",
"pt-br": "IME - Instituto Militar de Engenharia"
},
"https://cafe.ipa.br/idp/shibboleth": {
"en": "IPA - Instituto Agronomico de Pernambuco",
"pt-br": "IPA - Instituto Agronomico de Pernambuco"
},
"https://cafe.ita.br/idp/shibboleth": {
"en": "ITA - Instituto Tecnologico de Aeronautica",
"pt-br": "ITA - Instituto Tecnologico de Aeronautica"
},
"https://cafe.itaipuparquetec.org.br/idp/shibboleth": {
"en": "FPTI - Fundacao Parque Tecnologico Itaipu",
"pt-br": "FPTI - Fundacao Parque Tecnologico Itaipu"
},
"https://cafe.itvds.org/idp/shibboleth": {
"en": "ITV - Instituto Tecnologico Vale",
"pt-br": "ITV - Instituto Tecnologico Vale"
},
"https://cafe.mamiraua.org.br/idp/shibboleth": {
"en": "IDSM - Instituto de Desenvolvimento Sutentavel Mamiraua",
"pt-br": "IDSM - Instituto de Desenvolvimento Sutentavel Mamiraua"
},
"https://cafe.prefeitura.sp.gov.br/idp/shibboleth": {
"en": "SMS - Secretaria Municipal da Saude - SP",
"pt-br": "SMS - Secretaria Municipal da Saude - SP"
},
"https://cafe.pucgoias.edu.br/idp/shibboleth": {
"en": "PUCGOIAS - Pontificia Universidade Catolica de Goias",
"pt-br": "PUCGOIAS - Pontificia Universidade Catolica de Goias"
},
"https://cafe.pucminas.br/idp/shibboleth": {
"en": "PUC MINAS - pontificia Universidade Catolica de Minas Gerais",
"pt-br": "PUC MINAS - pontificia Universidade Catolica de Minas Gerais"
},
"https://cafe.pucpr.br/idp/shibboleth": {
"en": "PUCPR - Pontificia Universidade Catolica do Parana",
"pt-br": "PUCPR - Pontificia Universidade Catolica do Parana"
},
"https://cafe.saude.gov.br/idp/shibboleth": {
"en": "MS - Ministerio da Saude",
"pt-br": "MS - Ministerio da Saude"
},
"https://cafe.sede.embrapa.br/idp/shibboleth": {
"en": "EMBRAPA - Empresa Brasileira de Pesquisa Agropecuaria",
"pt-br": "EMBRAPA - Empresa Brasileira de Pesquisa Agropecuaria"
},
"https://cafe.sgb.gov.br/idp/shibboleth": {
"en": "SGB - Servico Geologico do Brasil",
"pt-br": "SGB - Servico Geologico do Brasil"
},
"https://cafe.ucs.br/idp/shibboleth": {
"en": "UCS - Universidade de Caxias do Sul",
"pt-br": "UCS - Universidade de Caxias do Sul"
},
"https://cafe.ucsal.br/idp/shibboleth": {
"en": "UCSAL - Universidade Catolica do Salvador",
"pt-br": "UCSAL - Universidade Catolica do Salvador"
},
"https://cafe.uemg.br/idp/shibboleth": {
"en": "UEMG - Universidade do Estado de Minas Gerais",
"pt-br": "UEMG - Universidade do Estado de Minas Gerais"
},
"https://cafe.uerr.edu.br/idp/shibboleth": {
"en": "UERR - Universidade Estadual De Roraima",
"pt-br": "UERR - Universidade Estadual De Roraima"
},
"https://cafe.ufam.edu.br/idp/shibboleth": {
"en": "UFAM - Universidade Federal do Amazonas",
"pt-br": "UFAM - Universidade Federal do Amazonas"
},
"https://cafe.ufba.br/idp/shibboleth": {
"en": "UFBA - Universidade Federal da Bahia",
"pt-br": "UFBA - Universidade Federal da Bahia"
},
"https://cafe.uff.br/idp/shibboleth": {
"en": "UFF - Universidade Federal Fluminense",
"pt-br": "UFF - Universidade Federal Fluminense"
},
"https://cafe.ufmg.br/idp/shibboleth": {
"en": "UFMG - Universidade Federal de Minas Gerais",
"pt-br": "UFMG - Universidade Federal de Minas Gerais"
},
"https://cafe.ufnt.edu.br/idp/shibboleth": {
"en": "UFNT - Universidade Federal do Norte do Tocantins",
"pt-br": "UFNT - Universidade Federal do Norte do Tocantins"
},
"https://cafe.ufpa.br/idp/shibboleth": {
"en": "UFPA - Universidade Federal do Para",
"pt-br": "UFPA - Universidade Federal do Para"
},
"https://cafe.ufpel.edu.br/idp/shibboleth": {
"en": "UFPEL - Universidade Federal de Pelotas",
"pt-br": "UFPEL - Universidade Federal de Pelotas"
},
"https://cafe.ufpi.br/idp/shibboleth": {
"en": "UFPI - Universidade Federal do Piaui",
"pt-br": "UFPI - Universidade Federal do Piaui"
},
"https://cafe.ufrj.br/idp/shibboleth": {
"en": "UFRJ - Universidade Federal do Rio de Janeiro",
"pt-br": "UFRJ - Universidade Federal do Rio de Janeiro"
},
"https://cafe.ufsb.edu.br/idp/shibboleth": {
"en": "UFSB - Universidade Federal do Sul da Bahia",
"pt-br": "UFSB - Universidade Federal do Sul da Bahia"
},
"https://cafe.uneal.edu.br/idp/shibboleth": {
"en": "UNEAL - Universidade Estadual de Alagoas",
"pt-br": "UNEAL - Universidade Estadual de Alagoas"
},
"https://cafe.unesc.net/idp/shibboleth": {
"en": "UNESC - Universidade do Extremo Sul Catarinense",
"pt-br": "UNESC - Universidade do Extremo Sul Catarinense"
},
"https://cafe.unicamp.br/idp/shibboleth": {
"en": "UNICAMP - Universidade Estadual de Campinas",
"pt-br": "UNICAMP - Universidade Estadual de Campinas"
},
"https://cafe.unicap.br/idp/shibboleth": {
"en": "UNICAP - Universidade Catolica de Pernambuco",
"pt-br": "UNICAP - Universidade Catolica de Pernambuco"
},
"https://cafe.unifesspa.edu.br/idp/shibboleth": {
"en": "UNIFESSPA - Universidade Federal do Sul e Sudeste do Para",
"pt-br": "UNIFESSPA - Universidade Federal do Sul e Sudeste do Para"
},
"https://cafe.unifor.br/idp/shibboleth": {
"en": "UNIFOR - Universidade de Fortaleza",
"pt-br": "UNIFOR - Universidade de Fortaleza"
},
"https://cafe.unimontes.br/idp/shibboleth": {
"en": "UNIMONTES - Universidade Estadual de Montes Claros",
"pt-br": "UNIMONTES - Universidade Estadual de Montes Claros"
},
"https://cafe.unipampa.edu.br/idp/shibboleth": {
"en": "UNIPAMPA - Universidade Federal do Pampa",
"pt-br": "UNIPAMPA - Universidade Federal do Pampa"
},
"https://cafe.unitau.br/idp/shibboleth": {
"en": "UNITAU - Universidade de Taubate",
"pt-br": "UNITAU - Universidade de Taubate"
},
"https://cafe.univille.br/idp/shibboleth": {
"en": "UNIVILLE - Fundacao Educacional da Regiao de Joinville",
"pt-br": "UNIVILLE - Fundacao Educacional da Regiao de Joinville"
},
"https://cafe.unoesc.edu.br/idp/shibboleth": {
"en": "UNOESC - Universidade do Oeste de Santa Catarina",
"pt-br": "UNOESC - Universidade do Oeste de Santa Catarina"
},
"https://cafe02.ifes.edu.br/idp/shibboleth": {
"en": "IFES - Instituto Federal do Espirito Santo",
"pt-br": "IFES - Instituto Federal do Espirito Santo"
},
"https://cafe2.cecierj.edu.br/idp/shibboleth": {
"en": "CECIERJ - Centro de Ciencias e Edu. a Distancia do RJ",
"pt-br": "CECIERJ - Centro de Ciencias e Edu. a Distancia do RJ"
},
"https://cafe2.dti.ufv.br/idp/shibboleth": {
"en": "UFV - Universidade Federal de Vicosa",
"pt-br": "UFV - Universidade Federal de Vicosa"
},
"https://cafe2.unesp.br/idp/shibboleth": {
"en": "UNESP - Universidade Estadual Paulista Julio de Mesquita Filho",
"pt-br": "UNESP - Universidade Estadual Paulista Julio de Mesquita Filho"
},
"https://cafe2.unoeste.br/idp/shibboleth": {
"en": "UNOESTE - Universidade do Oeste Paulista",
"pt-br": "UNOESTE - Universidade do Oeste Paulista"
},
"https://cafe2022.lncc.br/idp/shibboleth": {
"en": "LNCC - Laboratorio Nacional de Computacao Cientifica",
"pt-br": "LNCC - Laboratorio Nacional de Computacao Cientifica"
},
"https://cafe4.ifms.edu.br/idp/shibboleth": {
"en": "IFMS - Instituto Federal de Mato Grosso do Sul",
"pt-br": "IFMS - Instituto Federal de Mato Grosso do Sul"
},
"https://cafe4.udesc.br/idp/shibboleth": {
"en": "UDESC - Universidade do Estado de Santa Catarina",
"pt-br": "UDESC - Universidade do Estado de Santa Catarina"
},
"https://cafe4.ufal.br/idp/shibboleth": {
"en": "UFAL - Universidade Federal de Alagoas",
"pt-br": "UFAL - Universidade Federal de Alagoas"
},
"https://cafe4.ufsc.br/idp/shibboleth": {
"en": "UFSC - Universidade Federal de Santa Catarina",
"pt-br": "UFSC - Universidade Federal de Santa Catarina"
},
"https://cafe5.ufes.br/idp/shibboleth": {
"en": "UFES - Universidade Federal do Espirito Santo",
"pt-br": "UFES - Universidade Federal do Espirito Santo"
},
"https://cafeidp.ufdpar.edu.br/idp/shibboleth": {
"en": "UFDPAR - Universidade Federal do Delta do Parnaiba",
"pt-br": "UFDPAR - Universidade Federal do Delta do Parnaiba"
},
"https://cafeidp.unemat.br/idp/shibboleth": {
"en": "UNEMAT - Universidade do Estado de Mato Grosso",
"pt-br": "UNEMAT - Universidade do Estado de Mato Grosso"
},
"https://cafernp.fesfsus.ba.gov.br/idp/shibboleth": {
"en": "FESFSUS - Fundacao Estatal Saude da Familia",
"pt-br": "FESFSUS - Fundacao Estatal Saude da Familia"
},
"https://cafernp.imip.org.br/idp/shibboleth": {
"en": "IMIP - Instituto de Medicina Integral Prof. Fernando Figueira",
"pt-br": "IMIP - Instituto de Medicina Integral Prof. Fernando Figueira"
},
"https://cafernp1.ipt.br/idp/shibboleth": {
"en": "IPT - Instituto de Pesquisas Tecnologicas do Estado de Sao Paulo",
"pt-br": "IPT - Instituto de Pesquisas Tecnologicas do Estado de Sao Paulo"
},
"https://cafeuri.uricer.edu.br/idp/shibboleth": {
"en": "URICER - Universidade Regional Integrada do Alto Uruguai e das Missoes",
"pt-br": "URICER - Universidade Regional Integrada do Alto Uruguai e das Missoes"
},
"https://cafev3.unochapeco.edu.br/idp/shibboleth": {
"en": "UNOCHAPECO - Universidade Comunitaria da Regiao de Chapeco",
"pt-br": "UNOCHAPECO - Universidade Comunitaria da Regiao de Chapeco"
},
"https://cafeweb.cetene.gov.br/idp/shibboleth": {
"en": "CETENE - Centro de Tecnologias e Estrategicas do Nordeste",
"pt-br": "CETENE - Centro de Tecnologias e Estrategicas do Nordeste"
},
"https://capes.fcmsantacasasp.edu.br/idp/shibboleth": {
"en": "FCMSCSP - Faculdade de Ciencia Medicas Santa Casa",
"pt-br": "FCMSCSP - Faculdade de Ciencia Medicas Santa Casa"
},
"https://capuccino.ifba.edu.br/idp/shibboleth": {
"en": "IFBA - Instituto Federal da Bahia",
"pt-br": "IFBA - Instituto Federal da Bahia"
},
"https://capuccino2.iff.edu.br/idp/shibboleth": {
"en": "IFF - Instituto Federal de Educacao, Ciencia e Tecnologia Fluminense",
"pt-br": "IFF - Instituto Federal de Educacao, Ciencia e Tecnologia Fluminense"
},
"https://cardio.net.br/idp/shibboleth": {
"en": "ICFUC - Instituto de Cardiologia do Rio Grande do Sul",
"pt-br": "ICFUC - Instituto de Cardiologia do Rio Grande do Sul"
},
"https://catuai.ufop.br/idp/shibboleth": {
"en": "UFOP - Universidade Federal de Ouro Preto",
"pt-br": "UFOP - Universidade Federal de Ouro Preto"
},
"https://dourado2023.ufs.br/idp/shibboleth": {
"en": "UFS - Universidade Federal de Sergipe",
"pt-br": "UFS - Universidade Federal de Sergipe"
},
"https://epamigrnp.epamig.br/idp/shibboleth": {
"en": "EPAMIG - Empresa de de Pesquisa Agropecuaria de Minas Gerais",
"pt-br": "EPAMIG - Empresa de de Pesquisa Agropecuaria de Minas Gerais"
},
"https://facape-vp-cafe.facape.br/idp/shibboleth": {
"en": "FACAPE - Faculdade de Petrolina",
"pt-br": "FACAPE - Faculdade de Petrolina"
},
"https://federacao-1.hcpa.edu.br/idp/shibboleth": {
"en": "HCPA - Hospital de Clinicas de Porto Alegre",
"pt-br": "HCPA - Hospital de Clinicas de Porto Alegre"
},
"https://federacao2.uvanet.br/idp/shibboleth": {
"en": "UVA - Universidade Estadual Vale do Acarau",
"pt-br": "UVA - Universidade Estadual Vale do Acarau"
},
"https://fjncafe.fundaj.gov.br/idp/shibboleth": {
"en": "FUNDAJ - Fundacao Joaquim Nabuco",
"pt-br": "FUNDAJ - Fundacao Joaquim Nabuco"
},
"https://fjscafe.fjs.org.br/idp/shibboleth": {
"en": "FJS - Fundacao Jose Silveira",
"pt-br": "FJS - Fundacao Jose Silveira"
},
"https://fusion.ceub.br/idp/shibboleth": {
"en": "UNICEUB - Centro Universitario de Brasilia",
"pt-br": "UNICEUB - Centro Universitario de Brasilia"
},
"https://hibonite.fapesp.br/idp/shibboleth": {
"en": "FAPESP - Fundacao de Amparo a Pesquisa de Sao Paulo",
"pt-br": "FAPESP - Fundacao de Amparo a Pesquisa de Sao Paulo"
},
"https://idp-atualizado.ifap.edu.br/idp/shibboleth": {
"en": "IFAP - Instituto Federal do Amapa",
"pt-br": "IFAP - Instituto Federal do Amapa"
},
"https://idp-cafe-v2.uerj.br/idp/shibboleth": {
"en": "UERJ - Universidade do Estado do Rio de Janeiro",
"pt-br": "UERJ - Universidade do Estado do Rio de Janeiro"
},
"https://idp-cafe.cemaden.gov.br/idp/shibboleth": {
"en": "CEMADEN - Centro Nac Monit e Alertas de Desastres Naturais",
"pt-br": "CEMADEN - Centro Nac Monit e Alertas de Desastres Naturais"
},
"https://idp-cafe.cp2.g12.br/idp/shibboleth": {
"en": "CP2 - Colegio Pedro II",
"pt-br": "CP2 - Colegio Pedro II"
},
"https://idp-cafe.ghc.com.br/idp/shibboleth": {
"en": "GHC - Grupo Hospitalar Conceicao",
"pt-br": "GHC - Grupo Hospitalar Conceicao"
},
"https://idp-cafe.hmv.org.br/idp/shibboleth": {
"en": "HMV - Associacao Hospitalar Moinhos de Vento",
"pt-br": "HMV - Associacao Hospitalar Moinhos de Vento"
},
"https://idp-cafe.ifb.edu.br/idp/shibboleth": {
"en": "IFB - Instituto Federal de Brasilia",
"pt-br": "IFB - Instituto Federal de Brasilia"
},
"https://idp-cafe.ifgoiano.edu.br/idp/shibboleth": {
"en": "IFGOIANO - Instituto Federal Goiano",
"pt-br": "IFGOIANO - Instituto Federal Goiano"
},
"https://idp-cafe.ifpi.edu.br/idp/shibboleth": {
"en": "IFPI - Instituto Federal do Piaui",
"pt-br": "IFPI - Instituto Federal do Piaui"
},
"https://idp-cafe.ifs.edu.br/idp/shibboleth": {
"en": "IFS - Instituto Federal de Educacao, Ciencia e Tecnologia do Sergipe",
"pt-br": "IFS - Instituto Federal de Educacao, Ciencia e Tecnologia do Sergipe"
},
"https://idp-cafe.inma.gov.br/idp/shibboleth": {
"en": "INMA - Instituto Nacional da Mata Atlantica",
"pt-br": "INMA - Instituto Nacional da Mata Atlantica"
},
"https://idp-cafe.ird.gov.br/idp/shibboleth": {
"en": "IRD - Instituto de Radioprotecao e Dosimetria",
"pt-br": "IRD - Instituto de Radioprotecao e Dosimetria"
},
"https://idp-cafe.mcti.gov.br/idp/shibboleth": {
"en": "MCTI - Ministerio da Ciencia, Tecnologia e Inovacao",
"pt-br": "MCTI - Ministerio da Ciencia, Tecnologia e Inovacao"
},
"https://idp-cafe.saude.pi.gov.br/idp/shibboleth": {
"en": "SESAPI - Secretaria de Estado da Saude do Piaui",
"pt-br": "SESAPI - Secretaria de Estado da Saude do Piaui"
},
"https://idp-cafe.uea.edu.br/idp/shibboleth": {
"en": "UEA - Universidade do Estado do Amazonas",
"pt-br": "UEA - Universidade do Estado do Amazonas"
},
"https://idp-cafe.ufcspa.edu.br/idp/shibboleth": {
"en": "UFCSPA - Univ. Fed. de Ciencias da Saude de Porto Alegre",
"pt-br": "UFCSPA - Univ. Fed. de Ciencias da Saude de Porto Alegre"
},
"https://idp-cafe.ufpb.br/idp/shibboleth": {
"en": "UFPB - Universidade Federal da Paraiba",
"pt-br": "UFPB - Universidade Federal da Paraiba"
},
"https://idp-cafe.ufra.edu.br/idp/shibboleth": {
"en": "UFRA - Universidade Federal Rural da Amazonia",
"pt-br": "UFRA - Universidade Federal Rural da Amazonia"
},
"https://idp-cafe.uneb.br/idp/shibboleth": {
"en": "UNEB - Universidade do Estado da Bahia",
"pt-br": "UNEB - Universidade do Estado da Bahia"
},
"https://idp-cafe.unifal-mg.edu.br/idp/shibboleth": {
"en": "UNIFAL-MG - Universidade Federal de Alfenas",
"pt-br": "UNIFAL-MG - Universidade Federal de Alfenas"
},
"https://idp-cafe.unisc.br/idp/shibboleth": {
"en": "UNISC - Universidade de Santa Cruz do Sul",
"pt-br": "UNISC - Universidade de Santa Cruz do Sul"
},
"https://idp-cafe.unisinos.br/idp/shibboleth": {
"en": "UNISINOS - Universidade do Vale do Rio dos Sinos",
"pt-br": "UNISINOS - Universidade do Vale do Rio dos Sinos"
},
"https://idp-novo.uncisal.edu.br/idp/shibboleth": {
"en": "UNCISAL - Universidade Estadual de Ciencias da Saude de Alagoas",
"pt-br": "UNCISAL - Universidade Estadual de Ciencias da Saude de Alagoas"
},
"https://idp-shib-urca.urca.br/idp/shibboleth": {
"en": "URCA - Universidade Regional do Cariri",
"pt-br": "URCA - Universidade Regional do Cariri"
},
"https://idp-shib421.funpec.br/idp/shibboleth": {
"en": "FUNPEC - Fundacao Norte-Rio-Grandense de Pesquisa e Cultura",
"pt-br": "FUNPEC - Fundacao Norte-Rio-Grandense de Pesquisa e Cultura"
},
"https://idp-shib421.unichristus.edu.br/idp/shibboleth": {
"en": "UNICHRISTUS - Centro Universitario Unichristus",
"pt-br": "UNICHRISTUS - Centro Universitario Unichristus"
},
"https://idp-v4.ceitec-sa.com/idp/shibboleth": {
"en": "CEITEC - Centro Nacional de Tecnologia e Eletronica Avancada",
"pt-br": "CEITEC - Centro Nacional de Tecnologia e Eletronica Avancada"
},
"https://idp-v421.ifsp.edu.br/idp/shibboleth": {
"en": "IFSP - Instituto Federal de Educ. Ciencia e Tec. de Sao Paulo",
"pt-br": "IFSP - Instituto Federal de Educ. Ciencia e Tec. de Sao Paulo"
},
"https://idp.capes.gov.br/idp/shibboleth": {
"en": "CAPES - Coordenacao de Aperfeicoamento de Pessoal de Nivel Superior",
"pt-br": "CAPES - Coordenacao de Aperfeicoamento de Pessoal de Nivel Superior"
},
"https://idp.cefetmg.br/idp/shibboleth": {
"en": "CEFET-MG - Centro Federal de Educacao Tecnologica de Minas Gerais",
"pt-br": "CEFET-MG - Centro Federal de Educacao Tecnologica de Minas Gerais"
},
"https://idp.cnen.gov.br/idp/shibboleth": {
"en": "CNEN - Comissao Nacional de Energia Nuclear",
"pt-br": "CNEN - Comissao Nacional de Energia Nuclear"
},
"https://idp.dr.ufu.br/idp/shibboleth": {
"en": "UFU - Universidade Federal de Uberlandia",
"pt-br": "UFU - Universidade Federal de Uberlandia"
},
"https://idp.esd.gov.br/idp/shibboleth": {
"en": "ESD - Escola Superior de Defesa",
"pt-br": "ESD - Escola Superior de Defesa"
},
"https://idp.faculdadesoberana.com.br/idp/shibboleth": {
"en": "SOBERANA - Faculdade de Saude de Petrolina",
"pt-br": "SOBERANA - Faculdade de Saude de Petrolina"
},
"https://idp.fapeal.br/idp/shibboleth": {
"en": "FAPEAL - Fundacao de Amparo a Pesquisa de Alagoas",
"pt-br": "FAPEAL - Fundacao de Amparo a Pesquisa de Alagoas"
},
"https://idp.fapes.es.gov.br/idp/shibboleth": {
"en": "FAPES - Fundacao de Amparo a Pesquisa e Inovacao do Espirito Santo",
"pt-br": "FAPES - Fundacao de Amparo a Pesquisa e Inovacao do Espirito Santo"
},
"https://idp.fiocruz.br/idp/shibboleth": {
"en": "FIOCRUZ - Fundacao Oswaldo Cruz",
"pt-br": "FIOCRUZ - Fundacao Oswaldo Cruz"
},
"https://idp.fmu.br/idp/shibboleth": {
"en": "FMU - Faculdades Metropolitanas Unidas Educacao",
"pt-br": "FMU - Faculdades Metropolitanas Unidas Educacao"
},
"https://idp.ifac.edu.br/idp/shibboleth": {
"en": "IFAC - Instituto Federal do Acre",
"pt-br": "IFAC - Instituto Federal do Acre"
},
"https://idp.ifg.edu.br/idp/shibboleth": {
"en": "IFG - Instituto Federal de Educacao Ciencia e Tecnologia de Goias",
"pt-br": "IFG - Instituto Federal de Educacao Ciencia e Tecnologia de Goias"
},
"https://idp.ifpa.edu.br/idp/shibboleth": {
"en": "IFPA - Instituto Federal do Para",
"pt-br": "IFPA - Instituto Federal do Para"
},
"https://idp.ifpb.edu.br/idp/shibboleth": {
"en": "IFPB - Instituto Federal da Paraiba",
"pt-br": "IFPB - Instituto Federal da Paraiba"
},
"https://idp.ifsuldeminas.edu.br/idp/shibboleth": {
"en": "IFSULDEMINAS - Instituto Federal do Sul de Minas Gerais",
"pt-br": "IFSULDEMINAS - Instituto Federal do Sul de Minas Gerais"
},
"https://idp.incor.usp.br/idp/shibboleth": {
"en": "INCOR USP - Instituto do Coracao da Faculdade de Medicina da Universidade de Sao Paulo",
"pt-br": "INCOR USP - Instituto do Coracao da Faculdade de Medicina da Universidade de Sao Paulo"
},
"https://idp.inpa.gov.br/idp/shibboleth": {
"en": "INPA - Instituto Nacional de Pesquisas da Amazonia",
"pt-br": "INPA - Instituto Nacional de Pesquisas da Amazonia"
},
"https://idp.int.gov.br/idp/shibboleth": {
"en": "INT - Instituto Nacional de Tecnologia",
"pt-br": "INT - Instituto Nacional de Tecnologia"
},
"https://idp.puc-campinas.edu.br/idp/shibboleth": {
"en": "PUCCAMPINAS - Pontificia Universidade Catolica de Campinas",
"pt-br": "PUCCAMPINAS - Pontificia Universidade Catolica de Campinas"
},
"https://idp.rnp.br/idp/shibboleth": {
"en": "RNP - Rede Nacional de Ensino e Pesquisa",
"pt-br": "RNP - Rede Nacional de Ensino e Pesquisa"
},
"https://idp.uel.br/idp/shibboleth": {
"en": "UEL - Universidade Estadual de Londrina",
"pt-br": "UEL - Universidade Estadual de Londrina"
},
"https://idp.uema.br/idp/shibboleth": {
"en": "UEMA - Universidade Estadual do Maranhao",
"pt-br": "UEMA - Universidade Estadual do Maranhao"
},
"https://idp.uenf.br/idp/shibboleth": {
"en": "UENF - Universidade Estadual do Norte Fluminense Darcy Ribeiro",
"pt-br": "UENF - Universidade Estadual do Norte Fluminense Darcy Ribeiro"
},
"https://idp.ufac.br/idp/shibboleth": {
"en": "UFAC - Universidade Federal do Acre",
"pt-br": "UFAC - Universidade Federal do Acre"
},
"https://idp.ufcat.edu.br/idp/shibboleth": {
"en": "UFCAT - Universidade Federal de Catalao",
"pt-br": "UFCAT - Universidade Federal de Catalao"
},
"https://idp.ufgd.edu.br/idp/shibboleth": {
"en": "UFGD - Universidade Federal da Grande Dourados",
"pt-br": "UFGD - Universidade Federal da Grande Dourados"
},
"https://idp.ufjf.br/idp/shibboleth": {
"en": "UFJF - Universidade Federal de Juiz de Fora",
"pt-br": "UFJF - Universidade Federal de Juiz de Fora"
},
"https://idp.ufr.edu.br/idp/shibboleth": {
"en": "UFR - Universidade Federal de Rondonopolis",
"pt-br": "UFR - Universidade Federal de Rondonopolis"
},
"https://idp.ufrb.edu.br/idp/shibboleth": {
"en": "UFRB - Universidade Federal do Reconcavo da Bahia",
"pt-br": "UFRB - Universidade Federal do Reconcavo da Bahia"
},
"https://idp.ufsj.edu.br/idp/shibboleth": {
"en": "UFSJ - Universidade Federal de Sao Joao del Rei",
"pt-br": "UFSJ - Universidade Federal de Sao Joao del Rei"
},
"https://idp.uftm.edu.br/idp/shibboleth": {
"en": "UFTM - Universidade Federal do Triangulo Mineiro",
"pt-br": "UFTM - Universidade Federal do Triangulo Mineiro"
},
"https://idp.ufvjm.edu.br/idp/shibboleth": {
"en": "UFVJM - Universidade Federal dos Vales do Jequitinhonha e Mucuri",
"pt-br": "UFVJM - Universidade Federal dos Vales do Jequitinhonha e Mucuri"
},
"https://idp.unifacef.edu.br/idp/shibboleth": {
"en": "UNI-FACEF - Centro Universitario Municipal de Franca",
"pt-br": "UNI-FACEF - Centro Universitario Municipal de Franca"
},
"https://idp.unifap.br/idp/shibboleth": {
"en": "UNIFAP - Universidade Federal do Amapa",
"pt-br": "UNIFAP - Universidade Federal do Amapa"
},
"https://idp.unifatea.edu.br/idp/shibboleth": {
"en": "UNIFATEA - Centro Universitario Teresa D Avila",
"pt-br": "UNIFATEA - Centro Universitario Teresa D Avila"
},
"https://idp.unifesp.br/idp/shibboleth": {
"en": "UNIFESP - Universidade Federal de Sao Paulo",
"pt-br": "UNIFESP - Universidade Federal de Sao Paulo"
},
"https://idp.unijorge.edu.br/idp/shibboleth": {
"en": "UNIJORGE - Centro Universitario Jorge Amado",
"pt-br": "UNIJORGE - Centro Universitario Jorge Amado"
},
"https://idp.unijui.edu.br/idp/shibboleth": {
"en": "UNIJUI - Universidade Regional do Noroeste do Estado do Rio Grande do Sul",
"pt-br": "UNIJUI - Universidade Regional do Noroeste do Estado do Rio Grande do Sul"
},
"https://idp.unir.br/idp/shibboleth": {
"en": "UNIR - Fundacao Universidade Federal de Rondonia",
"pt-br": "UNIR - Fundacao Universidade Federal de Rondonia"
},
"https://idp.unirv.edu.br/idp/shibboleth": {
"en": "UNIRV - Universidade de Rio Verde",
"pt-br": "UNIRV - Universidade de Rio Verde"
},
"https://idp.unis.edu.br/idp/shibboleth": {
"en": "UNIS - Centro Universitario do Sul de Minas",
"pt-br": "UNIS - Centro Universitario do Sul de Minas"
},
"https://idp.unisanta.br/idp/shibboleth": {
"en": "UNISANTA - Instituto Superior de Educacao Santa Cecilia",
"pt-br": "UNISANTA - Instituto Superior de Educacao Santa Cecilia"
},
"https://idp.unitins.br/idp/shibboleth": {
"en": "UNITINS - Universidade Estadual do Tocantins",
"pt-br": "UNITINS - Universidade Estadual do Tocantins"
},
"https://idp.univasf.edu.br/idp/shibboleth": {
"en": "UNIVASF - Universidade Federal do Vale do Sao Francisco",
"pt-br": "UNIVASF - Universidade Federal do Vale do Sao Francisco"
},
"https://idp.uscs.edu.br/idp/shibboleth": {
"en": "USCS - Universidade Municipal de Sao Caetano do Sul",
"pt-br": "USCS - Universidade Municipal de Sao Caetano do Sul"
},
"https://idp01.linea.org.br/idp/shibboleth": {
"en": "LINEA - Laboratorio Interinstitucional de e-Astronomia",
"pt-br": "LINEA - Laboratorio Interinstitucional de e-Astronomia"
},
"https://idp02.ifc.edu.br/idp/shibboleth": {
"en": "IFC - Instituto Federal Catarinense",
"pt-br": "IFC - Instituto Federal Catarinense"
},
"https://idp02.ufsm.br/idp/shibboleth": {
"en": "UFSM - Universidade Federal de Santa Maria",
"pt-br": "UFSM - Universidade Federal de Santa Maria"
},
"https://idp03-prd-jne.ufca.edu.br/idp/shibboleth": {
"en": "UFCA - Universidade Federal do Cariri",
"pt-br": "UFCA - Universidade Federal do Cariri"
},
"https://idp03.ifmg.edu.br/idp/shibboleth": {
"en": "IFMG - Instituto Federal de Minas Gerais",
"pt-br": "IFMG - Instituto Federal de Minas Gerais"
},
"https://idp1.uepb.edu.br/idp/shibboleth": {
"en": "UEPB - Universidade Estadual da Paraiba",
"pt-br": "UEPB - Universidade Estadual da Paraiba"
},
"https://idp2.dmz.inpe.br/idp/shibboleth": {
"en": "INPE - Instituto Nacional de Pesquisas Espaciais",
"pt-br": "INPE - Instituto Nacional de Pesquisas Espaciais"
},
"https://idp2.ufmt.br/idp/shibboleth": {
"en": "UFMT - Universidade Federal de Mato Grosso",
"pt-br": "UFMT - Universidade Federal de Mato Grosso"
},
"https://idp4.uepg.br/idp/shibboleth": {
"en": "UEPG - Universidade Estadual de Ponta Grossa",
"pt-br": "UEPG - Universidade Estadual de Ponta Grossa"
},
"https://idp60.furb.br/idp/shibboleth": {
"en": "FURB - Universidade Regional de Blumenau",
"pt-br": "FURB - Universidade Regional de Blumenau"
},
"https://idpcafe.finep.gov.br/idp/shibboleth": {
"en": "FINEP - Financiadora de Estudos e Projetos",
"pt-br": "FINEP - Financiadora de Estudos e Projetos"
},
"https://idpcafe.ifsertao-pe.edu.br/idp/shibboleth": {
"en": "IFSERTAOPE - Instituto Federal do Sertao Pernambucano",
"pt-br": "IFSERTAOPE - Instituto Federal do Sertao Pernambucano"
},
"https://idpcafe.ifsudestemg.edu.br/idp/shibboleth": {
"en": "IFSUDESTEMG - Inst Fed de Educ Ciencia e Tec do Sudeste de MG",
"pt-br": "IFSUDESTEMG - Inst Fed de Educ Ciencia e Tec do Sudeste de MG"
},
"https://idpcafe.uepa.br/idp/shibboleth": {
"en": "UEPA - Universidade do Estado do Para",
"pt-br": "UEPA - Universidade do Estado do Para"
},
"https://idpcafe.ufscar.br/idp/shibboleth": {
"en": "UFSCAR - Universidade Federal de Sao Carlos",
"pt-br": "UFSCAR - Universidade Federal de Sao Carlos"
},
"https://idpcafe.unifran.br/idp/shibboleth": {
"en": "UNIFRAN - Universidade de Franca",
"pt-br": "UNIFRAN - Universidade de Franca"
},
"https://idpcafe.uniube.br/idp/shibboleth": {
"en": "UNIUBE - Universidade de Uberaba",
"pt-br": "UNIUBE - Universidade de Uberaba"
},
"https://idpcafe.upe.br/idp/shibboleth": {
"en": "UPE - Universidade de Pernambuco",
"pt-br": "UPE - Universidade de Pernambuco"
},
"https://idpcafe.usp.br/idp/shibboleth": {
"en": "USP - Universidade de Sao Paulo",
"pt-br": "USP - Universidade de Sao Paulo"
},
"https://idpcafe2022.ipen.br/idp/shibboleth": {
"en": "IPEN - Instituto de Pesquisas Energeticas e Nucleares",
"pt-br": "IPEN - Instituto de Pesquisas Energeticas e Nucleares"
},
"https://idpfapepi.fapepi.pi.gov.br/idp/shibboleth": {
"en": "FAPEPI - Fundacao de Amparo a Pesquisa do Estado do Piaui",
"pt-br": "FAPEPI - Fundacao de Amparo a Pesquisa do Estado do Piaui"
},
"https://idprnp.univates.br/idp/shibboleth": {
"en": "UNIVATES - Universidade UNIVATES",
"pt-br": "UNIVATES - Universidade UNIVATES"
},
"https://idpsaocamilosp.saocamilo-sp.br/idp/shibboleth": {
"en": "CUSC - Centro Universitario Sao Camilo",
"pt-br": "CUSC - Centro Universitario Sao Camilo"
},
"https://idpv-cafe.redesecti.ba.gov.br/idp/shibboleth": {
"en": "SECTI-BA - Secretaria de Ciencia, Tecnologia e Inovacao do Estado da Bahia",
"pt-br": "SECTI-BA - Secretaria de Ciencia, Tecnologia e Inovacao do Estado da Bahia"
},
"https://idpv3-hsr.hsr.com.br/idp/shibboleth": {
"en": "HSR - Hospital Sao Rafael",
"pt-br": "HSR - Hospital Sao Rafael"
},
"https://idpv3.lna.br/idp/shibboleth": {
"en": "LNA - Laboratorio Nacional de Astrofisica",
"pt-br": "LNA - Laboratorio Nacional de Astrofisica"
},
"https://ifs00sv056.ifsul.edu.br/idp/shibboleth": {
"en": "IFSUL - Instituto Federal Sul-rio-grandense",
"pt-br": "IFSUL - Instituto Federal Sul-rio-grandense"
},
"https://infra031.umc.br/idp/shibboleth": {
"en": "UMC - Universidade de Mogi das Cruzes",
"pt-br": "UMC - Universidade de Mogi das Cruzes"
},
"https://ipameri.cti.gov.br/idp/shibboleth": {
"en": "CTI - Centro de Tecnologia da Informacao Renato Archer",
"pt-br": "CTI - Centro de Tecnologia da Informacao Renato Archer"
},
"https://isd-rnp.isd.org.br/idp/shibboleth": {
"en": "ISD - Instituto Santos Dumont",
"pt-br": "ISD - Instituto Santos Dumont"
},
"https://itacare.bahiana.edu.br/idp/shibboleth": {
"en": "EBMSP - Escola Bahiana de Medicina e Saude Publica",
"pt-br": "EBMSP - Escola Bahiana de Medicina e Saude Publica"
},
"https://josue.uenp.edu.br/idp/shibboleth": {
"en": "UENP - Universidade Estadual do Norte do Parana",
"pt-br": "UENP - Universidade Estadual do Norte do Parana"
},
"https://login-cafe.ifrr.edu.br/idp/shibboleth": {
"en": "IFRR - Instituto Federal de Roraima",
"pt-br": "IFRR - Instituto Federal de Roraima"
},
"https://login.ufrgs.br/idp/shibboleth": {
"en": "UFRGS - Universidade Federal do Rio Grande do Sul",
"pt-br": "UFRGS - Universidade Federal do Rio Grande do Sul"
},
"https://netsr-cafe03.unioeste.br/idp/shibboleth": {
"en": "UNIOESTE - Universidade Estadual do Oeste do Parana",
"pt-br": "UNIOESTE - Universidade Estadual do Oeste do Parana"
},
"https://onca.museu-goeldi.br/idp/shibboleth": {
"en": "MPEG - Museu Paraense Emilio Goeldi",
"pt-br": "MPEG - Museu Paraense Emilio Goeldi"
},
"https://pandora.unifei.edu.br/idp/shibboleth": {
"en": "UNIFEI - Universidade Federal de Itajuba",
"pt-br": "UNIFEI - Universidade Federal de Itajuba"
},
"https://pct-guama-idp-cafe.fundacaoguama.org.br/idp/shibboleth": {
"en": "PCT-GUAMA - Fundacao Parque de Ciencia e Tecnologia Guama",
"pt-br": "PCT-GUAMA - Fundacao Parque de Ciencia e Tecnologia Guama"
},
"https://planck.cdtn.br/idp/shibboleth": {
"en": "CDTN - Centro de Desenvolvimento da Tecnologia Nuclear",
"pt-br": "CDTN - Centro de Desenvolvimento da Tecnologia Nuclear"
},
"https://plv037.mcom.gov.br/idp/shibboleth": {
"en": "MCOM - Ministerio das Comunicacoes",
"pt-br": "MCOM - Ministerio das Comunicacoes"
},
"https://poa01idp02.pucrs.br/idp/shibboleth": {
"en": "PUCRS - Pontificia Universidade Catolica do Rio Grande do Sul",
"pt-br": "PUCRS - Pontificia Universidade Catolica do Rio Grande do Sul"
},
"https://prdidm01.mec.gov.br/idp/shibboleth": {
"en": "MEC - Ministerio da Educacao",
"pt-br": "MEC - Ministerio da Educacao"
},
"https://pro-vm-lcafe-01.fnde.gov.br/idp/shibboleth": {
"en": "FNDE - Fundo Nacional de Desenvolvimento da Educacao",
"pt-br": "FNDE - Fundo Nacional de Desenvolvimento da Educacao"
},
"https://rcafe02s.inmetro.gov.br/idp/shibboleth": {
"en": "INMETRO - Instituto Nacional de Metrologia Qualidade e Tecnologia",
"pt-br": "INMETRO - Instituto Nacional de Metrologia Qualidade e Tecnologia"
},
"https://redecafe.enap.gov.br/idp/shibboleth": {
"en": "ENAP - Escola Nacional de Administracao Publica",
"pt-br": "ENAP - Escola Nacional de Administracao Publica"
},
"https://redecafe.gigacandanga.net.br/idp/shibboleth": {
"en": "GIGA - Associacao GigaCandanga",
"pt-br": "GIGA - Associacao GigaCandanga"
},
"https://rnp2.unip.br/idp/shibboleth": {
"en": "UNIP - Universidade Paulista",
"pt-br": "UNIP - Universidade Paulista"
},
"https://sede-vz-idp2.ebserh.gov.br/idp/shibboleth": {
"en": "EBSERH - Empresa Brasileira de Servicos Hospitalares",
"pt-br": "EBSERH - Empresa Brasileira de Servicos Hospitalares"
},
"https://servercafe.iftm.edu.br/idp/shibboleth": {
"en": "IFTM - Instituto Federal do Triangulo Mineiro",
"pt-br": "IFTM - Instituto Federal do Triangulo Mineiro"
},
"https://shib.unila.edu.br/idp/shibboleth": {
"en": "UNILA - Universidade Federal da Integracao Latino-Americana",
"pt-br": "UNILA - Universidade Federal da Integracao Latino-Americana"
},
"https://shibboleth.abc.org.br/idp/shibboleth": {
"en": "ABC - Academia Brasileira de Ciencias",
"pt-br": "ABC - Academia Brasileira de Ciencias"
},
"https://shibboleth.ansp.br/idp/shibboleth": {
"en": "ANSP - an Academic Network at Sao Paulo",
"pt-br": "ANSP - an Academic Network at Sao Paulo"
},
"https://shibboleth.cetem.gov.br/idp/shibboleth": {
"en": "CETEM - Centro de Tecnologia Mineral",
"pt-br": "CETEM - Centro de Tecnologia Mineral"
},
"https://shibboleth.embrapii.org.br/idp/shibboleth": {
"en": "EMBRAPII - Empresa Brasileira de Pesquisa e Inovacao Industrial",
"pt-br": "EMBRAPII - Empresa Brasileira de Pesquisa e Inovacao Industrial"
},
"https://shibboleth.faculdadesantacasabh.org.br/idp/shibboleth": {
"en": "FSCBH - Faculdade Santa Casa BH",
"pt-br": "FSCBH - Faculdade Santa Casa BH"
},
"https://shibboleth.ifal.edu.br/idp/shibboleth": {
"en": "IFAL - Instituto Federal de Alagoas",
"pt-br": "IFAL - Instituto Federal de Alagoas"
},
"https://shibboleth.ifam.edu.br/idp/shibboleth": {
"en": "IFAM - Instituto Federal do Amazonas",
"pt-br": "IFAM - Instituto Federal do Amazonas"
},
"https://shibboleth.ifbaiano.edu.br/idp/shibboleth": {
"en": "IFBAIANO - Instituto Federal de Educacao, Ciencia e Tecnologia Baiano",
"pt-br": "IFBAIANO - Instituto Federal de Educacao, Ciencia e Tecnologia Baiano"
},
"https://shibboleth.iffarroupilha.edu.br/idp/shibboleth": {
"en": "IFFAR - Instituto Federal Farroupilha",
"pt-br": "IFFAR - Instituto Federal Farroupilha"
},
"https://shibboleth.ifpe.edu.br/idp/shibboleth": {
"en": "IFPE - Instituto Federal de Pernambuco",
"pt-br": "IFPE - Instituto Federal de Pernambuco"
},
"https://shibboleth.ifrn.edu.br/idp/shibboleth": {
"en": "IFRN - Instituto Federal do Rio Grande do Norte",
"pt-br": "IFRN - Instituto Federal do Rio Grande do Norte"
},
"https://shibboleth.ifsc.edu.br/idp/shibboleth": {
"en": "IFSC - Instituto Federal de Santa Catarina",
"pt-br": "IFSC - Instituto Federal de Santa Catarina"
},
"https://shibboleth.ifto.edu.br/idp/shibboleth": {
"en": "IFTO - Instituto Federal de Educacao do Tocantins",
"pt-br": "IFTO - Instituto Federal de Educacao do Tocantins"
},
"https://shibboleth.impa.br/idp/shibboleth": {
"en": "IMPA - Instituto de Matematica Pura e Aplicada",
"pt-br": "IMPA - Instituto de Matematica Pura e Aplicada"
},
"https://shibboleth.inca.gov.br/idp/shibboleth": {
"en": "INCA - Instituto Nacional de Cancer",
"pt-br": "INCA - Instituto Nacional de Cancer"
},
"https://shibboleth.ines.gov.br/idp/shibboleth": {
"en": "INES - Instituto Nacional de Educacao de Surdos",
"pt-br": "INES - Instituto Nacional de Educacao de Surdos"
},
"https://shibboleth.insa.gov.br/idp/shibboleth": {
"en": "INSA - Instituto Nacional do Semiarido",
"pt-br": "INSA - Instituto Nacional do Semiarido"
},
"https://shibboleth.on.br/idp/shibboleth": {
"en": "ON - Observatorio Nacional",
"pt-br": "ON - Observatorio Nacional"