forked from vbonamy/esup-wayf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIDProvider.conf.php
executable file
·5729 lines (5677 loc) · 441 KB
/
IDProvider.conf.php
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
<?php // Copyright (c) 2018 Secure Dimensions GmbH
//Configuration created automatically
//number of processed categories: 51
//number of processed entities: 2804
// Category Social is first. Social login entities do not have a registration authority so we need to print this manually
$IDProviders['social'] = array ( 'Type' => 'category', 'Name' => 'Social Logins');
// Category LandSense is second. LandSense entities do not have a registration authority so we need to print this manually
$IDProviders['landsense'] = array ( 'Type' => 'category', 'Name' => 'LandSense');
$IDProviders['unknown'] = array ( 'Type' => 'category', 'Name' => 'Others', 'de' => array ('Name' => 'Andere'), 'fr' => array ('Name' => 'Autres'), 'it' => array ('Name' => 'Altri'));
//entityID: https://idp.landsense.secure-dimensions.de/idp/shibboleth
$IDProviders['https://idp.landsense.secure-dimensions.de/idp/shibboleth'] = array( 'Type' => 'unknown');
//entityID: https://idp.geo-wiki.org/idp/shibboleth
$IDProviders['https://idp.geo-wiki.org/idp/shibboleth'] = array( 'Type' => 'unknown');
//entityID: https://landsense-idp.geopedia.world/idp/shibboleth
$IDProviders['https://landsense-idp.geopedia.world/idp/shibboleth'] = array( 'Type' => 'unknown');
//entityID: https://idp-landsense.ign.fr/idp/shibboleth
$IDProviders['https://idp-landsense.ign.fr/idp/shibboleth'] = array( 'Type' => 'unknown');
//entityID: https://idp.landsense.seo.org/idp/shibboleth
$IDProviders['https://idp.landsense.seo.org/idp/shibboleth'] = array( 'Type' => 'unknown');
//entityID: https://landsense.inosens.rs/idp/shibboleth
$IDProviders['https://landsense.inosens.rs/idp/shibboleth'] = array( 'Type' => 'unknown');
$IDProviders['urn:mace:landsense.eu'] = array ( 'Type' => 'category', 'Name' => 'urn:mace:landsense.eu');
//entityID: https://social-idp.landsense.eu/simplesaml/saml2/idp/facebook
$IDProviders['https://social-idp.landsense.eu/simplesaml/saml2/idp/facebook'] = array( 'Type' => 'urn:mace:landsense.eu');
//entityID: https://social-idp.landsense.eu/simplesaml/saml2/idp/google
$IDProviders['https://social-idp.landsense.eu/simplesaml/saml2/idp/google'] = array( 'Type' => 'urn:mace:landsense.eu');
$IDProviders['https://www.aai.dfn.de'] = array ( 'Type' => 'category', 'Name' => 'DFN AAI');
//entityID: https://aai-integration.dfn.de/idp/shibboleth
$IDProviders['https://aai-integration.dfn.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://aai.dhv-speyer.de/idp/shibboleth
$IDProviders['https://aai.dhv-speyer.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://aai.helmholtz-muenchen.de/idp/shibboleth
$IDProviders['https://aai.helmholtz-muenchen.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://aai.ipk-gatersleben.de/idp/shibboleth
$IDProviders['https://aai.ipk-gatersleben.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://aai.ruhr-uni-bochum.de/idp/shibboleth
$IDProviders['https://aai.ruhr-uni-bochum.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://aai.rz.uni-leipzig.de/idp/shibboleth
$IDProviders['https://aai.rz.uni-leipzig.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://aai.th-wildau.de/idp/shibboleth
$IDProviders['https://aai.th-wildau.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://account.fh-potsdam.de/idp/shibboleth
$IDProviders['https://account.fh-potsdam.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://authent.mh-freiburg.de/idp/shibboleth
$IDProviders['https://authent.mh-freiburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://blblogin.blb-karlsruhe.de/idp/shibboleth
$IDProviders['https://blblogin.blb-karlsruhe.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://bm-aai1.kultus-mv.de/idp/shibboleth
$IDProviders['https://bm-aai1.kultus-mv.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://crux.hrz.tu-freiberg.de/shibboleth
$IDProviders['https://crux.hrz.tu-freiberg.de/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://dkfzshib.inet.dkfz-heidelberg.de/idp/shibboleth
$IDProviders['https://dkfzshib.inet.dkfz-heidelberg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://ephraim.tu-berlin.de/shibboleth
$IDProviders['https://ephraim.tu-berlin.de/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://extlogin.dfn.de/idp/shibboleth
$IDProviders['https://extlogin.dfn.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://identity.fu-berlin.de/idp-fub
$IDProviders['https://identity.fu-berlin.de/idp-fub'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp-serv.uni-magdeburg.de/idp/shibboleth
$IDProviders['https://idp-serv.uni-magdeburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp-vw.hfmdd.de/idp/shibboleth
$IDProviders['https://idp-vw.hfmdd.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.ba-dresden.de/idp/shibboleth
$IDProviders['https://idp.ba-dresden.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.ba-glauchau.de/idp/shibboleth
$IDProviders['https://idp.ba-glauchau.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.ba-leipzig.de/idp/shibboleth
$IDProviders['https://idp.ba-leipzig.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.ba-riesa.de/idp/shibboleth
$IDProviders['https://idp.ba-riesa.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.biochem.mpg.de/idp
$IDProviders['https://idp.biochem.mpg.de/idp'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.bsb-muenchen.de/shibboleth
$IDProviders['https://idp.bsb-muenchen.de/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.bsz-bw.de/idp/shibboleth
$IDProviders['https://idp.bsz-bw.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.cas.dhbw.de/idp/shibboleth
$IDProviders['https://idp.cas.dhbw.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.de.dariah.eu/idp/shibboleth
$IDProviders['https://idp.de.dariah.eu/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.dfn-cert.de/idp/shibboleth
$IDProviders['https://idp.dfn-cert.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.dfn.de/idp/shibboleth
$IDProviders['https://idp.dfn.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.dhbw-loerrach.de/idp/shibboleth
$IDProviders['https://idp.dhbw-loerrach.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.dhbw-mannheim.de/idp/shibboleth
$IDProviders['https://idp.dhbw-mannheim.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.dhbw-vs.de/idp/shibboleth
$IDProviders['https://idp.dhbw-vs.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.dhbw.de/idp/shibboleth
$IDProviders['https://idp.dhbw.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.dkrz.de/idp/shibboleth
$IDProviders['https://idp.dkrz.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.dlr.de/idp/shibboleth
$IDProviders['https://idp.dlr.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.eah-jena.de/idp/shibboleth
$IDProviders['https://idp.eah-jena.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.eso.org/idp/shibboleth
$IDProviders['https://idp.eso.org/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.europa-uni.de/idp/shibboleth
$IDProviders['https://idp.europa-uni.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.evhn.de/idp/shibboleth
$IDProviders['https://idp.evhn.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.fernuni-hagen.de/idp/shibboleth
$IDProviders['https://idp.fernuni-hagen.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.fh-bingen.de/idp/shibboleth
$IDProviders['https://idp.fh-bingen.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.fh-dortmund.de/idp/shibboleth
$IDProviders['https://idp.fh-dortmund.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.fh-duesseldorf.de/idp/shibboleth
$IDProviders['https://idp.fh-duesseldorf.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.fh-erfurt.de/idp/shibboleth
$IDProviders['https://idp.fh-erfurt.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.fh-kiel.de/idp/shibboleth
$IDProviders['https://idp.fh-kiel.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.fh-muenster.de/idp/shibboleth
$IDProviders['https://idp.fh-muenster.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.fh-offenburg.de/idp/shibboleth
$IDProviders['https://idp.fh-offenburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.fh-rosenheim.de/idp/shibboleth
$IDProviders['https://idp.fh-rosenheim.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.fh-schmalkalden.de/simplesaml
$IDProviders['https://idp.fh-schmalkalden.de/simplesaml'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.fh-swf.de/idp/shibboleth
$IDProviders['https://idp.fh-swf.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.fh-trier.de/idp/shibboleth
$IDProviders['https://idp.fh-trier.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.fh-westkueste.de/idp/shibboleth
$IDProviders['https://idp.fh-westkueste.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.fhws.de/idp/shibboleth
$IDProviders['https://idp.fhws.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.fiz-karlsruhe.de/idp/shibboleth
$IDProviders['https://idp.fiz-karlsruhe.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.fraunhofer.de/idp/shibboleth
$IDProviders['https://idp.fraunhofer.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.geomar.de/idp/shibboleth
$IDProviders['https://idp.geomar.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.gesis.org/idp/shibboleth
$IDProviders['https://idp.gesis.org/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.h-ab.de/idp/shibboleth
$IDProviders['https://idp.h-ab.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.h-brs.de/simplesaml/saml2/idp/metadata.php
$IDProviders['https://idp.h-brs.de/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hab.de/simplesaml
$IDProviders['https://idp.hab.de/simplesaml'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.haw-landshut.de/idp/shibboleth
$IDProviders['https://idp.haw-landshut.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hdm-stuttgart.de/idp/shibboleth
$IDProviders['https://idp.hdm-stuttgart.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hebis.de/uni-frankfurt
$IDProviders['https://idp.hebis.de/uni-frankfurt'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.heilbronn.dhbw.de/idp/shibboleth
$IDProviders['https://idp.heilbronn.dhbw.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hfbk-dresden.de/idp/shibboleth
$IDProviders['https://idp.hfbk-dresden.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hgb-leipzig.de/idp/shibboleth
$IDProviders['https://idp.hgb-leipzig.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hmtm-hannover.de/idp/shibboleth
$IDProviders['https://idp.hmtm-hannover.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hochschule-bc.de/idp/shibboleth
$IDProviders['https://idp.hochschule-bc.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hof-university.de/idp/shibboleth
$IDProviders['https://idp.hof-university.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hrz.tu-darmstadt.de/idp/shibboleth
$IDProviders['https://idp.hrz.tu-darmstadt.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hrz.uni-kassel.de/idp/shibboleth-idp
$IDProviders['https://idp.hrz.uni-kassel.de/idp/shibboleth-idp'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-ansbach.de/idp/shibboleth
$IDProviders['https://idp.hs-ansbach.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-bochum.de/idp/shibboleth
$IDProviders['https://idp.hs-bochum.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-bremen.de/idp/shibboleth
$IDProviders['https://idp.hs-bremen.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-coburg.de/idp/shibboleth
$IDProviders['https://idp.hs-coburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-emden-leer.de/idp/shibboleth
$IDProviders['https://idp.hs-emden-leer.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-esslingen.de/idp/shibboleth
$IDProviders['https://idp.hs-esslingen.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-gesundheit.de/idp/shibboleth
$IDProviders['https://idp.hs-gesundheit.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-hannover.de/idp/shibboleth
$IDProviders['https://idp.hs-hannover.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-harz.de/shibboleth
$IDProviders['https://idp.hs-harz.de/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-heilbronn.de/idp/shibboleth
$IDProviders['https://idp.hs-heilbronn.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-karlsruhe.de/idp/shibboleth
$IDProviders['https://idp.hs-karlsruhe.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-kehl.de/idp/shibboleth
$IDProviders['https://idp.hs-kehl.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-kempten.de/idp/shibboleth
$IDProviders['https://idp.hs-kempten.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-koblenz.de/idp/shibboleth
$IDProviders['https://idp.hs-koblenz.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-lu.de/idp/shibboleth
$IDProviders['https://idp.hs-lu.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-ludwigsburg.de/idp/shibboleth
$IDProviders['https://idp.hs-ludwigsburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-magdeburg.de/idp/shibboleth
$IDProviders['https://idp.hs-magdeburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-pforzheim.de/idp/shibboleth
$IDProviders['https://idp.hs-pforzheim.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-rottenburg.de/idp/shibboleth
$IDProviders['https://idp.hs-rottenburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-ruhrwest.de/idp/shibboleth
$IDProviders['https://idp.hs-ruhrwest.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-wismar.de/idp/shibboleth
$IDProviders['https://idp.hs-wismar.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hs-woe.de/idp/shibboleth
$IDProviders['https://idp.hs-woe.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hshl.de/idp/shibboleth
$IDProviders['https://idp.hshl.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hszg.de/idp/shibboleth
$IDProviders['https://idp.hszg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.htw-aalen.de/idp/shibboleth
$IDProviders['https://idp.htw-aalen.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.htwg-konstanz.de/idp/shibboleth
$IDProviders['https://idp.htwg-konstanz.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.hzdr.de/idp/shibboleth
$IDProviders['https://idp.hzdr.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.ids-mannheim.de/idp/shibboleth
$IDProviders['https://idp.ids-mannheim.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.inp-greifswald.de/idp/shibboleth
$IDProviders['https://idp.inp-greifswald.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.ipb-halle.de/idp/shibboleth
$IDProviders['https://idp.ipb-halle.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.itmc.tu-dortmund.de:8443/idp/shibboleth
$IDProviders['https://idp.itmc.tu-dortmund.de:8443/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.its.fz-juelich.de/idp/shibboleth
$IDProviders['https://idp.its.fz-juelich.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.ksfh.de/idp/shibboleth
$IDProviders['https://idp.ksfh.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.ku.de/idp/shibboleth
$IDProviders['https://idp.ku.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.lrz.de/idp/shibboleth
$IDProviders['https://idp.lrz.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.mfo.de/idp/shibboleth
$IDProviders['https://idp.mfo.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.mpi-inf.mpg.de/mpii-idp/shibboleth
$IDProviders['https://idp.mpi-inf.mpg.de/mpii-idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.mpi-sws.org/mpis-idp/shibboleth
$IDProviders['https://idp.mpi-sws.org/mpis-idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.mri.bund.de/idp/shibboleth
$IDProviders['https://idp.mri.bund.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.nordakademie.de/idp/shibboleth
$IDProviders['https://idp.nordakademie.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.ohm-hochschule.de/idp/shibboleth
$IDProviders['https://idp.ohm-hochschule.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.oth-aw.de/idp/shibboleth
$IDProviders['https://idp.oth-aw.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.ph-freiburg.de/idp/shibboleth
$IDProviders['https://idp.ph-freiburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.ph-gmuend.de/idp/shibboleth
$IDProviders['https://idp.ph-gmuend.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.ph-karlsruhe.de/idp/shibboleth
$IDProviders['https://idp.ph-karlsruhe.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.ph-ludwigsburg.de/idp/shibboleth
$IDProviders['https://idp.ph-ludwigsburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.ph-weingarten.de/idp/shibboleth
$IDProviders['https://idp.ph-weingarten.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.reutlingen-university.de/idp/shibboleth
$IDProviders['https://idp.reutlingen-university.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.rrz.uni-koeln.de/idp/shibboleth
$IDProviders['https://idp.rrz.uni-koeln.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.rz.uni-augsburg.de/simplesaml/saml2/idp/metadata.php
$IDProviders['https://idp.rz.uni-augsburg.de/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.rz.uni-bamberg.de/idp/shibboleth
$IDProviders['https://idp.rz.uni-bamberg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.rz.uni-hohenheim.de/idp/shibboleth
$IDProviders['https://idp.rz.uni-hohenheim.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.rz.uni-kiel.de/idp/shibboleth
$IDProviders['https://idp.rz.uni-kiel.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.rz.unibw-muenchen.de/idp/shibboleth
$IDProviders['https://idp.rz.unibw-muenchen.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.scc.kit.edu/idp/shibboleth
$IDProviders['https://idp.scc.kit.edu/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.th-brandenburg.de/idp/shibboleth
$IDProviders['https://idp.th-brandenburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.th-deg.de/idp/shibboleth
$IDProviders['https://idp.th-deg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.tiho-hannover.de/idp/shibboleth
$IDProviders['https://idp.tiho-hannover.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.tu-clausthal.de/idp/shibboleth
$IDProviders['https://idp.tu-clausthal.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.tu-ilmenau.de/idp/shibboleth
$IDProviders['https://idp.tu-ilmenau.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.ub.hsu-hh.de/idp/shibboleth
$IDProviders['https://idp.ub.hsu-hh.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.udk-berlin.de/idp/shibboleth
$IDProviders['https://idp.udk-berlin.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-bayreuth.de/idp/shibboleth
$IDProviders['https://idp.uni-bayreuth.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-bremen.de/idp/shibboleth
$IDProviders['https://idp.uni-bremen.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-duesseldorf.de/idp/shibboleth
$IDProviders['https://idp.uni-duesseldorf.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-duisburg-essen.de/idp/shibboleth
$IDProviders['https://idp.uni-duisburg-essen.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-flensburg.de/idp/shibboleth
$IDProviders['https://idp.uni-flensburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-greifswald.de/idp/shibboleth
$IDProviders['https://idp.uni-greifswald.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-heidelberg.de
$IDProviders['https://idp.uni-heidelberg.de'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-jena.de/idp/shibboleth
$IDProviders['https://idp.uni-jena.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-kl.de/idp/shibboleth
$IDProviders['https://idp.uni-kl.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-konstanz.de/shibboleth-idp
$IDProviders['https://idp.uni-konstanz.de/shibboleth-idp'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-mannheim.de/idp/shibboleth
$IDProviders['https://idp.uni-mannheim.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-oldenburg.de/idp/shibboleth
$IDProviders['https://idp.uni-oldenburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-paderborn.de/idp/shibboleth
$IDProviders['https://idp.uni-paderborn.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-potsdam.de/idp/shibboleth
$IDProviders['https://idp.uni-potsdam.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-rostock.de/idp/shibboleth
$IDProviders['https://idp.uni-rostock.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-stuttgart.de/idp/shibboleth
$IDProviders['https://idp.uni-stuttgart.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-tuebingen.de/shibboleth
$IDProviders['https://idp.uni-tuebingen.de/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-ulm.de/idp/shibboleth
$IDProviders['https://idp.uni-ulm.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-wh.de/idp/shibboleth
$IDProviders['https://idp.uni-wh.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.uni-wuppertal.de/idp/shibboleth
$IDProviders['https://idp.uni-wuppertal.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.unimedizin-mainz.de/idp/shibboleth
$IDProviders['https://idp.unimedizin-mainz.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.vhb.org/idp/shibboleth
$IDProviders['https://idp.vhb.org/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp.wlb-stuttgart.de/idp/shibboleth
$IDProviders['https://idp.wlb-stuttgart.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp0.uni-saarland.de/idp/shibboleth
$IDProviders['https://idp0.uni-saarland.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp1.desy.de/idp/shibboleth
$IDProviders['https://idp1.desy.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp1.thi.de/idp/shibboleth
$IDProviders['https://idp1.thi.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp1.ufz.de/idp/shibboleth
$IDProviders['https://idp1.ufz.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp2.hs-augsburg.de/simplesaml
$IDProviders['https://idp2.hs-augsburg.de/simplesaml'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp2.hs-furtwangen.de/idp/shibboleth
$IDProviders['https://idp2.hs-furtwangen.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp2.hswt.de/idp/shibboleth
$IDProviders['https://idp2.hswt.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp2.htw-dresden.de/idp/shibboleth
$IDProviders['https://idp2.htw-dresden.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp2.jacobs-university.de/idp/shibboleth
$IDProviders['https://idp2.jacobs-university.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp2.rfh-koeln.de/idp/shibboleth
$IDProviders['https://idp2.rfh-koeln.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://idp2.tu-dresden.de/idp/shibboleth
$IDProviders['https://idp2.tu-dresden.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://lmuidp.lrz.de/idp/shibboleth
$IDProviders['https://lmuidp.lrz.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.beuth-hochschule.de/idp/shibboleth
$IDProviders['https://login.beuth-hochschule.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.crossasia.org/idp/shibboleth
$IDProviders['https://login.crossasia.org/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.dhbw-heidenheim.de/idp/shibboleth
$IDProviders['https://login.dhbw-heidenheim.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.dhbw-ravensburg.de/idp/shibboleth
$IDProviders['https://login.dhbw-ravensburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.fh-aachen.de/idp/shibboleth
$IDProviders['https://login.fh-aachen.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.fh-koeln.de/nidp/saml2/metadata
$IDProviders['https://login.fh-koeln.de/nidp/saml2/metadata'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.hfwu.de/idp/shibboleth
$IDProviders['https://login.hfwu.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.hs-albsig.de/idp/shibboleth
$IDProviders['https://login.hs-albsig.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.hs-mannheim.de/idp/shibboleth
$IDProviders['https://login.hs-mannheim.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.hs-owl.de/nidp/saml2/metadata
$IDProviders['https://login.hs-owl.de/nidp/saml2/metadata'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.hs-ulm.de/shibboleth-idp
$IDProviders['https://login.hs-ulm.de/shibboleth-idp'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.rz.rwth-aachen.de/shibboleth
$IDProviders['https://login.rz.rwth-aachen.de/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.slub-dresden.de/idp/shibboleth
$IDProviders['https://login.slub-dresden.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.th-bingen.de/idp/shibboleth
$IDProviders['https://login.th-bingen.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.uni-hamburg.de/idp/shibboleth
$IDProviders['https://login.uni-hamburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.uni-siegen.de/idp/shibboleth
$IDProviders['https://login.uni-siegen.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login.w-hs.de/idp/shibboleth
$IDProviders['https://login.w-hs.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://login3.hs-mittweida.de/idp/shibboleth
$IDProviders['https://login3.hs-mittweida.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://logon.skd.museum/idp/shibboleth
$IDProviders['https://logon.skd.museum/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://my.arthistoricum.net
$IDProviders['https://my.arthistoricum.net'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://my.propylaeum.de
$IDProviders['https://my.propylaeum.de'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://mylogin.uni-freiburg.de/shibboleth
$IDProviders['https://mylogin.uni-freiburg.de/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://saml.dhbw-stuttgart.de/idp/shibboleth
$IDProviders['https://saml.dhbw-stuttgart.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://services.aai.mpg.de/idp/proxy/idp
$IDProviders['https://services.aai.mpg.de/idp/proxy/idp'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shi-idp2.rz.fh-muenchen.de/idp/shibboleth
$IDProviders['https://shi-idp2.rz.fh-muenchen.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shib-idp.awi.de/idp/shibboleth
$IDProviders['https://shib-idp.awi.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shib-idp.cms.hu-berlin.de/idp/shibboleth
$IDProviders['https://shib-idp.cms.hu-berlin.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shib-idp.hs-osnabrueck.de/idp/shibboleth
$IDProviders['https://shib-idp.hs-osnabrueck.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shib-idp.uni-hildesheim.de/idp/shibboleth
$IDProviders['https://shib-idp.uni-hildesheim.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shib-idp.uni-osnabrueck.de/idp/shibboleth
$IDProviders['https://shib-idp.uni-osnabrueck.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shib.hk24.de/idp/shibboleth
$IDProviders['https://shib.hk24.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shib.itz.uni-halle.de/idp/shibboleth
$IDProviders['https://shib.itz.uni-halle.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shib.ph-heidelberg.de/idp/shibboleth
$IDProviders['https://shib.ph-heidelberg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shib.rz.tu-harburg.de/idp/shibboleth
$IDProviders['https://shib.rz.tu-harburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shib.uni-mainz.de/idp/shibboleth
$IDProviders['https://shib.uni-mainz.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shib03.hmt-leipzig.de/idp/shibboleth
$IDProviders['https://shib03.hmt-leipzig.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shib1.rz.htwk-leipzig.de/idp/shibboleth
$IDProviders['https://shib1.rz.htwk-leipzig.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibb-idp.hs-weingarten.de/idp/shibboleth
$IDProviders['https://shibb-idp.hs-weingarten.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibb.zalf.de/idp/shibboleth
$IDProviders['https://shibb.zalf.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibbo.hfm-weimar.de/idp/shibboleth
$IDProviders['https://shibbo.hfm-weimar.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibbo.scc.uni-weimar.de/idp/shibboleth
$IDProviders['https://shibbo.scc.uni-weimar.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibboleth-idp.gwdg.de/gwdg/shibboleth
$IDProviders['https://shibboleth-idp.gwdg.de/gwdg/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibboleth-idp.mpg.de/mpg/shibboleth
$IDProviders['https://shibboleth-idp.mpg.de/mpg/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibboleth-idp.uni-goettingen.de/uni/shibboleth
$IDProviders['https://shibboleth-idp.uni-goettingen.de/uni/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibboleth-idp.uni-regensburg.de/idp/shibboleth
$IDProviders['https://shibboleth-idp.uni-regensburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibboleth-idp.uni-wuerzburg.de/idp/shibboleth
$IDProviders['https://shibboleth-idp.uni-wuerzburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibboleth.ba-bautzen.de/idp/shibboleth
$IDProviders['https://shibboleth.ba-bautzen.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibboleth.dhbw-karlsruhe.de/idp/shibboleth
$IDProviders['https://shibboleth.dhbw-karlsruhe.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibboleth.hs-kl.de/idp/shibboleth
$IDProviders['https://shibboleth.hs-kl.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibboleth.mh-hannover.de/idp/shibboleth
$IDProviders['https://shibboleth.mh-hannover.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibboleth.uni-bielefeld.de/idp/shibboleth
$IDProviders['https://shibboleth.uni-bielefeld.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibboleth.uni-bonn.de/idp/shibboleth
$IDProviders['https://shibboleth.uni-bonn.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibboleth.uni-trier.de/idp/shibboleth
$IDProviders['https://shibboleth.uni-trier.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibboleth.uni-vechta.de/idp/shibboleth
$IDProviders['https://shibboleth.uni-vechta.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibboleth1.rz.hft-stuttgart.de/idp/shibboleth
$IDProviders['https://shibboleth1.rz.hft-stuttgart.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibboleth2.uni-koblenz.de/idp/shibboleth
$IDProviders['https://shibboleth2.uni-koblenz.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://shibweb1.hs-nordhausen.de/idp/shibboleth
$IDProviders['https://shibweb1.hs-nordhausen.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://sinope.uni-erfurt.de/idp/shibboleth
$IDProviders['https://sinope.uni-erfurt.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://srv-idp-001.fh-mainz.de/idp/shibboleth
$IDProviders['https://srv-idp-001.fh-mainz.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://sso.dshs-koeln.de/idp/shibboleth
$IDProviders['https://sso.dshs-koeln.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://sso.h-da.de/idp/shibboleth
$IDProviders['https://sso.h-da.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://sso.hfph.de/idp/shibboleth
$IDProviders['https://sso.hfph.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://sso.hochschule-rhein-waal.de/idp/shibboleth
$IDProviders['https://sso.hochschule-rhein-waal.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://sso.hs-neu-ulm.de/idp/shibboleth
$IDProviders['https://sso.hs-neu-ulm.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://sso.hs-regensburg.de/idp/shibboleth
$IDProviders['https://sso.hs-regensburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://sso.idm.uni-hannover.de/idp/shibboleth
$IDProviders['https://sso.idm.uni-hannover.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://sso.tu-bs.de
$IDProviders['https://sso.tu-bs.de'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://sso.uni-passau.de/idp/shibboleth
$IDProviders['https://sso.uni-passau.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://sso.vwa-hochschule.de/idp/shibboleth
$IDProviders['https://sso.vwa-hochschule.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://ssoserver.hs-worms.de/idp/shibboleth
$IDProviders['https://ssoserver.hs-worms.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://themis.hs-niederrhein.de/idp/shibboleth
$IDProviders['https://themis.hs-niederrhein.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://tumidp.lrz.de/idp/shibboleth
$IDProviders['https://tumidp.lrz.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://weblogin.htw-berlin.de/idp/shibboleth
$IDProviders['https://weblogin.htw-berlin.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://weblogin.uni-marburg.de/idp/shibboleth
$IDProviders['https://weblogin.uni-marburg.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://whzidp.fh-zwickau.de/idp/shibboleth
$IDProviders['https://whzidp.fh-zwickau.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://wtc.tu-chemnitz.de/shibboleth
$IDProviders['https://wtc.tu-chemnitz.de/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://www.san-netz.de
$IDProviders['https://www.san-netz.de'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://www.sso.uni-erlangen.de/simplesaml/saml2/idp/metadata.php
$IDProviders['https://www.sso.uni-erlangen.de/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://www.vho.de/idpnl
$IDProviders['https://www.vho.de/idpnl'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://www.vho.de/idpvzg
$IDProviders['https://www.vho.de/idpvzg'] = array( 'Type' => 'https://www.aai.dfn.de');
//entityID: https://zividp.uni-muenster.de/idp/shibboleth
$IDProviders['https://zividp.uni-muenster.de/idp/shibboleth'] = array( 'Type' => 'https://www.aai.dfn.de');
$IDProviders['https://irfed.ir/'] = array ( 'Type' => 'category', 'Name' => 'IR Fed');
//entityID: https://shibidp.ipm.ir/idp/shibboleth
$IDProviders['https://shibidp.ipm.ir/idp/shibboleth'] = array( 'Type' => 'https://irfed.ir/');
$IDProviders['http://www.federacionmate.gob.ar'] = array ( 'Type' => 'category', 'Name' => 'MATE');
//entityID: https://idp2.innova-red.net/simplesaml/saml2/idp/metadata.php
$IDProviders['https://idp2.innova-red.net/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.federacionmate.gob.ar');
//entityID: https://id-fed.unq.edu.ar/saml2/idp/metadata.php
$IDProviders['https://id-fed.unq.edu.ar/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.federacionmate.gob.ar');
//entityID: https://saml.unsl.edu.ar/simplesaml/saml2/idp/metadata.php
$IDProviders['https://saml.unsl.edu.ar/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.federacionmate.gob.ar');
//entityID: https://id-dev.unc.edu.ar/idp/shibboleth
$IDProviders['https://id-dev.unc.edu.ar/idp/shibboleth'] = array( 'Type' => 'http://www.federacionmate.gob.ar');
$IDProviders['https://www.singaren.net.sg'] = array ( 'Type' => 'category', 'Name' => 'Singapore Access Federation - SGAF');
//entityID: https://vho.sgaf.singaren.net.sg/idp/shibboleth
$IDProviders['https://vho.sgaf.singaren.net.sg/idp/shibboleth'] = array( 'Type' => 'https://www.singaren.net.sg');
//entityID: https://sgaf.singaren.net.sg/simplesaml/saml2/idp/metadata.php
$IDProviders['https://sgaf.singaren.net.sg/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'https://www.singaren.net.sg');
$IDProviders['http://www.srce.hr'] = array ( 'Type' => 'category', 'Name' => 'AAI@EduHr');
//entityID: https://login.aaiedu.hr/edugain/saml2/idp/metadata.php
$IDProviders['https://login.aaiedu.hr/edugain/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.srce.hr');
$IDProviders['http://www.surfconext.nl/'] = array ( 'Type' => 'category', 'Name' => 'SURFconext');
//entityID: http://adfs.fom.nl/adfs/services/trust
$IDProviders['http://adfs.fom.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://idp.surfnet.nl
$IDProviders['https://idp.surfnet.nl'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://idp.geant.org
$IDProviders['https://idp.geant.org'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://federation.graafschapcollege.nl/adfs/services/trust
$IDProviders['http://federation.graafschapcollege.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://login.nki.nl/adfs/services/trust
$IDProviders['http://login.nki.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs01.kempel.nl/adfs/services/trust
$IDProviders['http://adfs01.kempel.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://gatekeeper2.tudelft.nl/openaselect/profiles/saml2/
$IDProviders['https://gatekeeper2.tudelft.nl/openaselect/profiles/saml2/'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.hsmarnix.nl/adfs/services/trust
$IDProviders['http://adfs.hsmarnix.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://fs.fcroc.nl/adfs/services/trust
$IDProviders['http://fs.fcroc.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://login.mijnhelicon.nl/nidp/saml2/metadata
$IDProviders['https://login.mijnhelicon.nl/nidp/saml2/metadata'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://nias.idp.knaw.nl/simplesaml/saml2/idp/metadata.php
$IDProviders['https://nias.idp.knaw.nl/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://secure.uva.nl/cas
$IDProviders['https://secure.uva.nl/cas'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.nwo.nl/adfs/services/trust
$IDProviders['http://adfs.nwo.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.hanze.nl/adfs/services/trust
$IDProviders['http://adfs.hanze.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://signon.nhlstenden.com/adfs/services/trust
$IDProviders['http://signon.nhlstenden.com/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.albeda.nl/adfs/services/trust
$IDProviders['http://adfs.albeda.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://kitlv.idp.knaw.nl/simplesaml/saml2/idp/metadata.php
$IDProviders['https://kitlv.idp.knaw.nl/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://mdb-vw-adfs.zebi.nl/adfs/services/trust
$IDProviders['http://mdb-vw-adfs.zebi.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://utwente.nl/
$IDProviders['https://utwente.nl/'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://namidp.rocvantwente.nl/nidp/saml2/metadata
$IDProviders['https://namidp.rocvantwente.nl/nidp/saml2/metadata'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://conext.authenticatie.ru.nl/simplesaml/saml2/idp/metadata.php
$IDProviders['https://conext.authenticatie.ru.nl/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://idp.surf.nl
$IDProviders['https://idp.surf.nl'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://idp.nhl.nl/
$IDProviders['https://idp.nhl.nl/'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.naturalis.nl/adfs/services/trust
$IDProviders['http://adfs.naturalis.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://login.ecn.nl/adfs/services/trust
$IDProviders['http://login.ecn.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://idp.ihe.nl/adfs/services/trust
$IDProviders['http://idp.ihe.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://niod.idp.knaw.nl/simplesaml/saml2/idp/metadata.php
$IDProviders['https://niod.idp.knaw.nl/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://sso.nikhef.nl/sso/saml2/idp/metadata.php
$IDProviders['https://sso.nikhef.nl/sso/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.ipabo.nl/adfs/services/trust
$IDProviders['http://adfs.ipabo.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.glu.nl/adfs/services/trust
$IDProviders['http://adfs.glu.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://federation.umcg.nl/adfs/services/trust
$IDProviders['http://federation.umcg.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://iisg.idp.knaw.nl/simplesaml/saml2/idp/metadata.php
$IDProviders['https://iisg.idp.knaw.nl/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://saml.uvt.nl/saml2/idp/metadata.php
$IDProviders['https://saml.uvt.nl/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://dh.idp.knaw.nl/simplesaml/saml2/idp/metadata.php
$IDProviders['https://dh.idp.knaw.nl/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs2.hubrecht.eu/adfs/services/trust
$IDProviders['http://adfs2.hubrecht.eu/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://saml.nin.knaw.nl/simplesaml/saml2/idp/metadata.php
$IDProviders['https://saml.nin.knaw.nl/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://sso.egi.eu/edugainidp/shibboleth
$IDProviders['https://sso.egi.eu/edugainidp/shibboleth'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.kb.nl/adfs/services/trust
$IDProviders['http://adfs.kb.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://nidi.idp.knaw.nl/simplesaml/saml2/idp/metadata.php
$IDProviders['https://nidi.idp.knaw.nl/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://fs.myhz.nl/adfs/services/trust
$IDProviders['http://fs.myhz.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://sts.tue.nl/adfs/services/trust
$IDProviders['http://sts.tue.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://sso.surfsara.nl/saml/saml2/idp/metadata.php
$IDProviders['https://sso.surfsara.nl/saml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://dans.idp.knaw.nl/simplesaml/saml2/idp/metadata.php
$IDProviders['https://dans.idp.knaw.nl/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.has.nl/adfs/services/trust
$IDProviders['http://adfs.has.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://fs.kienict.nl/adfs/services/trust
$IDProviders['http://fs.kienict.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://stsip.mumc.nl/adfs/services/trust
$IDProviders['http://stsip.mumc.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://sso.sron.nl/nidp/saml2/metadata
$IDProviders['https://sso.sron.nl/nidp/saml2/metadata'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://login.zuyd.nl/nidp/saml2/metadata
$IDProviders['https://login.zuyd.nl/nidp/saml2/metadata'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://huc.idp.knaw.nl/simplesaml/saml2/idp/metadata.php
$IDProviders['https://huc.idp.knaw.nl/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://huygens.idp.knaw.nl/simplesaml/saml2/idp/metadata.php
$IDProviders['https://huygens.idp.knaw.nl/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://meertens.idp.knaw.nl/simplesaml/saml2/idp/metadata.php
$IDProviders['https://meertens.idp.knaw.nl/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://namidp.services.uu.nl/nidp/saml2/metadata
$IDProviders['https://namidp.services.uu.nl/nidp/saml2/metadata'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://bureau.idp.knaw.nl/simplesaml/saml2/idp/metadata.php
$IDProviders['https://bureau.idp.knaw.nl/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://sts.zadkine.nl/adfs/services/trust
$IDProviders['http://sts.zadkine.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.stw.nl/adfs/services/trust
$IDProviders['http://adfs.stw.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://ccidfederation.clusius.nl/adfs/services/trust
$IDProviders['http://ccidfederation.clusius.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.hvhl.nl/adfs/services/trust
$IDProviders['http://adfs.hvhl.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://idp.sans-ec.nl
$IDProviders['https://idp.sans-ec.nl'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.cito.nl/adfs/services/trust
$IDProviders['http://adfs.cito.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs3host.proxy.rocmn.nl/adfs/services/trust
$IDProviders['http://adfs3host.proxy.rocmn.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs2.fontys.nl/adfs/services/trust
$IDProviders['http://adfs2.fontys.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://login.uaccess.leidenuniv.nl/nidp/saml2/metadata
$IDProviders['https://login.uaccess.leidenuniv.nl/nidp/saml2/metadata'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfsv2.inholland.nl/adfs/services/trust
$IDProviders['http://adfsv2.inholland.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs20.hva.nl/adfs/services/trust
$IDProviders['http://adfs20.hva.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://inloggen.sharepoint.hu.nl/adfs/services/trust
$IDProviders['http://inloggen.sharepoint.hu.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://sts.windesheim.nl/adfs/services/trust
$IDProviders['http://sts.windesheim.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.driestar-educatief.nl/adfs/services/trust
$IDProviders['http://adfs.driestar-educatief.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://rathenau.idp.knaw.nl/simplesaml/saml2/idp/metadata.php
$IDProviders['https://rathenau.idp.knaw.nl/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://sso.saxion.nl/opensso
$IDProviders['https://sso.saxion.nl/opensso'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://sts.talnet.nl/adfs/services/trust
$IDProviders['http://sts.talnet.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs3prod.aventus.nl/adfs/services/trust
$IDProviders['http://adfs3prod.aventus.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://fides.rivm.nl/adfs/services/trust
$IDProviders['http://fides.rivm.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://sts.deltion.nl/adfs/services/trust
$IDProviders['http://sts.deltion.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://auth.surfmarket.nl/adfs/services/trust
$IDProviders['http://auth.surfmarket.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://sts.drenthecollege.nl/adfs/services/trust
$IDProviders['http://sts.drenthecollege.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://nam.astron.nl/nidp/saml2/metadata
$IDProviders['https://nam.astron.nl/nidp/saml2/metadata'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs1.oba.nl/adfs/services/trust
$IDProviders['http://adfs1.oba.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://sso.han.nl/ssp
$IDProviders['https://sso.han.nl/ssp'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://demeter.wp.swov.nl/adfs/services/trust
$IDProviders['http://demeter.wp.swov.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.fryske-akademy.nl/adfs/services/trust
$IDProviders['http://adfs.fryske-akademy.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://logon.erasmusmc.nl/adfs/services/trust
$IDProviders['http://logon.erasmusmc.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs2.cbs.knaw.nl/adfs/services/trust
$IDProviders['http://adfs2.cbs.knaw.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://sso.eur.nl/opensso
$IDProviders['https://sso.eur.nl/opensso'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://federatie.lumc.nl/adfs/services/trust
$IDProviders['http://federatie.lumc.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://login.nrg.eu/adfs/services/trust
$IDProviders['http://login.nrg.eu/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs-differ.differ.nl/adfs/services/trust
$IDProviders['http://adfs-differ.differ.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.amolf.nl/adfs/services/trust
$IDProviders['http://adfs.amolf.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://fsa.rocmondriaan.nl/adfs/services/trust
$IDProviders['http://fsa.rocmondriaan.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://secure.sintlucas.nl/nidp/saml2/metadata
$IDProviders['https://secure.sintlucas.nl/nidp/saml2/metadata'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://login.maastrichtuniversity.nl/adfs/services/trust
$IDProviders['http://login.maastrichtuniversity.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://sts.wur.nl/adfs/services/trust
$IDProviders['http://sts.wur.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://stsfed.login.vu.nl/adfs/services/trust
$IDProviders['http://stsfed.login.vu.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.che.nl/adfs/services/trust
$IDProviders['http://adfs.che.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://federation.nioo.knaw.nl/adfs/services/trust
$IDProviders['http://federation.nioo.knaw.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.hsleiden.nl/adfs/services/trust
$IDProviders['http://adfs.hsleiden.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://login.ou.nl/oam/fed
$IDProviders['https://login.ou.nl/oam/fed'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://federatie.radboudumc.nl/adfs/services/trust
$IDProviders['http://federatie.radboudumc.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://signon.rug.nl/nidp/saml2/metadata
$IDProviders['https://signon.rug.nl/nidp/saml2/metadata'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://sts.hhs.nl/adfs/services/trust
$IDProviders['http://sts.hhs.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://federatie.trimbos.nl/adfs/services/trust
$IDProviders['http://federatie.trimbos.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://fs.nioz.nl/adfs/services/trust
$IDProviders['http://fs.nioz.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://wayf.onderwijsgroeptilburg.nl/adfs/services/trust
$IDProviders['http://wayf.onderwijsgroeptilburg.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://login.avans.nl/nidp/saml2/metadata
$IDProviders['https://login.avans.nl/nidp/saml2/metadata'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://federation.hdh.nl/adfs/services/trust
$IDProviders['http://federation.hdh.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://sts.roc-nijmegen.nl/adfs/services/trust
$IDProviders['http://sts.roc-nijmegen.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://access.hro.nl/simplesaml/saml2/idp/metadata.php
$IDProviders['https://access.hro.nl/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://federation.rijksmuseum.nl/adfs/services/trust
$IDProviders['http://federation.rijksmuseum.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.artez.nl/adfs/services/trust
$IDProviders['http://adfs.artez.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: https://secure.ahk.nl/nidp/saml2/metadata
$IDProviders['https://secure.ahk.nl/nidp/saml2/metadata'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.knmi.nl/adfs/services/trust
$IDProviders['http://adfs.knmi.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://adfs.nhtv.nl/adfs/services/trust
$IDProviders['http://adfs.nhtv.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://fed.rijnijssel.nl/adfs/services/trust
$IDProviders['http://fed.rijnijssel.nl/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
//entityID: http://signon.stenden.com/adfs/services/trust
$IDProviders['http://signon.stenden.com/adfs/services/trust'] = array( 'Type' => 'http://www.surfconext.nl/');
$IDProviders['http://feide.no/'] = array ( 'Type' => 'category', 'Name' => 'FEIDE');
//entityID: https://idp.feide.no
$IDProviders['https://idp.feide.no'] = array( 'Type' => 'http://feide.no/');
$IDProviders['http://www.rediris.es/'] = array ( 'Type' => 'category', 'Name' => 'SIR');
//entityID: https://www.rediris.es/sir/redirisidp
$IDProviders['https://www.rediris.es/sir/redirisidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/umaidp
$IDProviders['https://www.rediris.es/sir/umaidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/unedidp
$IDProviders['https://www.rediris.es/sir/unedidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/urvidp
$IDProviders['https://www.rediris.es/sir/urvidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/uocidp
$IDProviders['https://www.rediris.es/sir/uocidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/ehuidp
$IDProviders['https://www.rediris.es/sir/ehuidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/umidp
$IDProviders['https://www.rediris.es/sir/umidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/upvidp
$IDProviders['https://www.rediris.es/sir/upvidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/usjidp
$IDProviders['https://www.rediris.es/sir/usjidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/bscidp
$IDProviders['https://www.rediris.es/sir/bscidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/crgidp
$IDProviders['https://www.rediris.es/sir/crgidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/uscidp
$IDProviders['https://www.rediris.es/sir/uscidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/ifaeidp
$IDProviders['https://www.rediris.es/sir/ifaeidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://sir2.rediris.es/hub/metadata/federation/production/newharpo
$IDProviders['https://sir2.rediris.es/hub/metadata/federation/production/newharpo'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/esadeidp
$IDProviders['https://www.rediris.es/sir/esadeidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/uahidp
$IDProviders['https://www.rediris.es/sir/uahidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/ubidp
$IDProviders['https://www.rediris.es/sir/ubidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/uc3midp
$IDProviders['https://www.rediris.es/sir/uc3midp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/dipcidp
$IDProviders['https://www.rediris.es/sir/dipcidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/uamidp
$IDProviders['https://www.rediris.es/sir/uamidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/ciematidp
$IDProviders['https://www.rediris.es/sir/ciematidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/uniridp
$IDProviders['https://www.rediris.es/sir/uniridp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/upmidp
$IDProviders['https://www.rediris.es/sir/upmidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/ucmidp
$IDProviders['https://www.rediris.es/sir/ucmidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/uniaidp
$IDProviders['https://www.rediris.es/sir/uniaidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/unizaridp
$IDProviders['https://www.rediris.es/sir/unizaridp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/iacidp
$IDProviders['https://www.rediris.es/sir/iacidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/csicidp
$IDProviders['https://www.rediris.es/sir/csicidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/uvidp
$IDProviders['https://www.rediris.es/sir/uvidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/cesgaidp
$IDProviders['https://www.rediris.es/sir/cesgaidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/cartifidp
$IDProviders['https://www.rediris.es/sir/cartifidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/iramidp
$IDProviders['https://www.rediris.es/sir/iramidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/upcidp
$IDProviders['https://www.rediris.es/sir/upcidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/ucoidp
$IDProviders['https://www.rediris.es/sir/ucoidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/cicbioguneidp
$IDProviders['https://www.rediris.es/sir/cicbioguneidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/udcidp
$IDProviders['https://www.rediris.es/sir/udcidp'] = array( 'Type' => 'http://www.rediris.es/');
//entityID: https://www.rediris.es/sir/uvigoidp
$IDProviders['https://www.rediris.es/sir/uvigoidp'] = array( 'Type' => 'http://www.rediris.es/');
$IDProviders['http://aai.grnet.gr/'] = array ( 'Type' => 'category', 'Name' => 'GRNET');
//entityID: https://aai.certh.gr/idp/shibboleth
$IDProviders['https://aai.certh.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://aai-logon.hcmr.gr/idp/shibboleth
$IDProviders['https://aai-logon.hcmr.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://edugain-proxy.igtf.net/simplesaml/saml2/idp/metadata.php
$IDProviders['https://edugain-proxy.igtf.net/simplesaml/saml2/idp/metadata.php'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://gn-vho.grnet.gr/idp/shibboleth
$IDProviders['https://gn-vho.grnet.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://grnetbox.duth.gr/idp/shibboleth
$IDProviders['https://grnetbox.duth.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.admin.grnet.gr/idp/shibboleth
$IDProviders['https://idp.admin.grnet.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.aegean.gr/idp/shibboleth
$IDProviders['https://idp.aegean.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.ariadne-t.gr/idp/shibboleth
$IDProviders['https://idp.ariadne-t.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.aspete.gr/idp/shibboleth
$IDProviders['https://idp.aspete.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.aua.gr/idp/shibboleth
$IDProviders['https://idp.aua.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.aueb.gr/idp/shibboleth
$IDProviders['https://idp.aueb.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.bioacademy.gr/idp/shibboleth
$IDProviders['https://idp.bioacademy.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.cti.gr/idp/shibboleth
$IDProviders['https://idp.cti.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.eie.gr/idp/shibboleth
$IDProviders['https://idp.eie.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.ekt.gr/idp/shibboleth
$IDProviders['https://idp.ekt.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp2.hua.gr/idp/shibboleth
$IDProviders['https://idp2.hua.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://shibboleth-idp.ics.forth.gr/idp/shibboleth/
$IDProviders['https://shibboleth-idp.ics.forth.gr/idp/shibboleth/'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.ihu.gr/idp/shibboleth
$IDProviders['https://idp.ihu.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.ionio.gr/idp/shibboleth
$IDProviders['https://idp.ionio.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idpro.fleming.gr/idp/shibboleth
$IDProviders['https://idpro.fleming.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.teiath.gr/idp/shibboleth
$IDProviders['https://idp.teiath.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.teicrete.gr/idp/shibboleth
$IDProviders['https://idp.teicrete.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.teiep.gr/idp/shibboleth
$IDProviders['https://idp.teiep.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.teikav.edu.gr/idp/shibboleth
$IDProviders['https://idp.teikav.edu.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.teikoz.gr/idp/shibboleth
$IDProviders['https://idp.teikoz.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.teilam.gr/idp/shibboleth
$IDProviders['https://idp.teilam.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.teipir.gr/idp/shibboleth
$IDProviders['https://idp.teipir.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.teithe.gr/idp/shibboleth
$IDProviders['https://idp.teithe.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.teiwest.gr/idp/shibboleth
$IDProviders['https://idp.teiwest.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.tuc.gr/idp/shibboleth
$IDProviders['https://idp.tuc.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.unipi.gr/idp/shibboleth
$IDProviders['https://idp.unipi.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.uoa.gr/idp/shibboleth
$IDProviders['https://idp.uoa.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.uom.gr/idp/shibboleth
$IDProviders['https://idp.uom.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp2.uop.gr/idp/shibboleth
$IDProviders['https://idp2.uop.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.uowm.gr/idp/shibboleth
$IDProviders['https://idp.uowm.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://idp.uth.gr/idp/shibboleth
$IDProviders['https://idp.uth.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://login.athena-innovation.gr/idp/shibboleth
$IDProviders['https://login.athena-innovation.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://login.iasa.gr/auth/saml2/idp/metadata.php
$IDProviders['https://login.iasa.gr/auth/saml2/idp/metadata.php'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://login.auth.gr/saml2/idp/metadata.php
$IDProviders['https://login.auth.gr/saml2/idp/metadata.php'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://login.ntua.gr/idp/shibboleth
$IDProviders['https://login.ntua.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://login.uoc.gr/idp/shibboleth
$IDProviders['https://login.uoc.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
//entityID: https://login.noa.gr/idp/shibboleth
$IDProviders['https://login.noa.gr/idp/shibboleth'] = array( 'Type' => 'http://aai.grnet.gr/');
$IDProviders['http://rr.aai.switch.ch/'] = array ( 'Type' => 'category', 'Name' => 'SWITCHaai');
//entityID: https://aai.unifr.ch/idp/shibboleth
$IDProviders['https://aai.unifr.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai-login.fh-htwchur.ch/idp/shibboleth
$IDProviders['https://aai-login.fh-htwchur.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai.unil.ch/idp/shibboleth
$IDProviders['https://aai.unil.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://idp.epfl.ch/idp/shibboleth
$IDProviders['https://idp.epfl.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai-login.unine.ch/idp/shibboleth
$IDProviders['https://aai-login.unine.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai-logon.phtg.ch/idp/shibboleth
$IDProviders['https://aai-logon.phtg.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://login2.usi.ch/idp/shibboleth
$IDProviders['https://login2.usi.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai-login.hsr.ch/idp/shibboleth
$IDProviders['https://aai-login.hsr.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://login2.supsi.ch/idp/shibboleth
$IDProviders['https://login2.supsi.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai.ntb.ch/idp/shibboleth
$IDProviders['https://aai.ntb.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai-logon.ethz.ch/idp/shibboleth
$IDProviders['https://aai-logon.ethz.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai-logon.fhnw.ch/idp/shibboleth
$IDProviders['https://aai-logon.fhnw.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai-login.hfh.ch/idp/shibboleth
$IDProviders['https://aai-login.hfh.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai-login.phsg.ch/idp/shibboleth
$IDProviders['https://aai-login.phsg.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai-logon.hes-so.ch/idp/shibboleth
$IDProviders['https://aai-logon.hes-so.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai.unisg.ch/idp/shibboleth
$IDProviders['https://aai.unisg.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai-logon.wsl.ch/idp/shibboleth
$IDProviders['https://aai-logon.wsl.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai-logon.switch.ch/idp/shibboleth
$IDProviders['https://aai-logon.switch.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai-idp.uzh.ch/idp/shibboleth
$IDProviders['https://aai-idp.uzh.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai-idp.unibe.ch/idp/shibboleth
$IDProviders['https://aai-idp.unibe.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai-logon.hepvs.ch/idp/shibboleth
$IDProviders['https://aai-logon.hepvs.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai.idiap.ch/idp/shibboleth
$IDProviders['https://aai.idiap.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai-logon.bfh.ch/idp/shibboleth
$IDProviders['https://aai-logon.bfh.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://idp.hslu.ch/idp/shibboleth
$IDProviders['https://idp.hslu.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai-logon.unilu.ch/idp/shibboleth
$IDProviders['https://aai-logon.unilu.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');
//entityID: https://aai.insel.ch/idp/shibboleth
$IDProviders['https://aai.insel.ch/idp/shibboleth'] = array( 'Type' => 'http://rr.aai.switch.ch/');