-
Notifications
You must be signed in to change notification settings - Fork 0
/
cn.json
2726 lines (2726 loc) · 117 KB
/
cn.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://carsi-idp.bipt.edu.cn/idp/shibboleth": {
"en": "Beijing Institute of Petrochemical Technology",
"zh": "北京石油化工学院(Beijing Institute of Petrochemical Technology )"
},
"https://carsi-idp.zqu.edu.cn/idp/shibboleth": {
"en": "Zhaoqing University",
"zh": "肇庆学院(Zhaoqing University)"
},
"https://carsiidp.gench.edu.cn/idp/shibboleth": {
"en": "Shanghai Jian Qiao University",
"zh": "上海建桥学院(Shanghai Jian Qiao University)"
},
"https://carsiidp.swu.edu.cn/idp/shibboleth": {
"en": "Southwest University",
"zh": "西南大学(Southwest University)"
},
"https://idp-carsi.shnu.edu.cn/idp/shibboleth": {
"en": "Shanghai Normal University",
"zh": "上海师范大学(Shanghai Normal University)"
},
"https://idp-carsi.shou.edu.cn/idp/shibboleth": {
"en": "Shanghai Ocean University",
"zh": "上海海洋大学(Shanghai Ocean University)"
},
"https://idp-carsi.suibe.edu.cn/idp/shibboleth": {
"en": "Shanghai University of International Business and Economics",
"zh": "上海对外经贸大学(Shanghai University of International Business and Economics)"
},
"https://idp-cas.sues.edu.cn/idp/shibboleth": {
"en": "Shanghai University of Engineering Science",
"zh": "上海工程技术大学(Shanghai University of Engineering Science)"
},
"https://idp-lib.abtu.edu.cn/idp/shibboleth": {
"en": "Aba Teachers University",
"zh": "阿坝师范学院(Aba Teachers University)"
},
"https://idp-lib.bjut.edu.cn/idp/shibboleth": {
"en": "Beijing University of Technology",
"zh": "北京工业大学(Beijing University of Technology)"
},
"https://idp-lib.cau.edu.cn/idp/shibboleth": {
"en": "China Agricultural University",
"zh": "中国农业大学(China Agricultural University)"
},
"https://idp-lib.cqnu.edu.cn/idp/shibboleth": {
"en": "Chongqing Normal university",
"zh": "重庆师范大学(Chongqing Normal university)"
},
"https://idp-lib.cslg.edu.cn/idp/shibboleth": {
"en": "Changshu Institute of Technology",
"zh": "常熟理工学院(Changshu Institute of Technology)"
},
"https://idp-lib.cwnu.edu.cn/idp/shibboleth": {
"en": "China West Normal University",
"zh": "西华师范大学(China West Normal University)"
},
"https://idp-lib.gmc.edu.cn/idp/shibboleth": {
"en": "Guizhou Medical University",
"zh": "贵州医科大学(Guizhou Medical University)"
},
"https://idp-lib.gxmu.edu.cn/idp/shibboleth": {
"en": "Guangxi Medical University",
"zh": "广西医科大学(Guangxi Medical University)"
},
"https://idp-lib.gzhmu.edu.cn/idp/shibboleth": {
"en": "Guangzhou Medical University",
"zh": "广州医科大学(Guangzhou Medical University)"
},
"https://idp-lib.gzhu.edu.cn/idp/shibboleth": {
"en": "Guangzhou University",
"zh": "广州大学(Guangzhou University)"
},
"https://idp-lib.hlju.edu.cn/idp/shibboleth": {
"en": "Heilongjiang University",
"zh": "黑龙江大学(Heilongjiang University)"
},
"https://idp-lib.hrbust.edu.cn/idp/shibboleth": {
"en": "Harbin University of Science and Technology",
"zh": "哈尔滨理工大学(Harbin University of Science and Technology)"
},
"https://idp-lib.huh.edu.cn/idp/shibboleth": {
"en": "He University",
"zh": "辽宁何氏医学院(He University)"
},
"https://idp-lib.imau.edu.cn/idp/shibboleth": {
"en": "Inner Mongolia Agricultural University",
"zh": "内蒙古农业大学(Inner Mongolia Agricultural University)"
},
"https://idp-lib.jlu.edu.cn/idp/shibboleth": {
"en": "Jilin University",
"zh": "吉林大学(Jilin University)"
},
"https://idp-lib.jmsu.edu.cn/idp/shibboleth": {
"en": "Jiamusi University",
"zh": "佳木斯大学(Jiamusi University)"
},
"https://idp-lib.just.edu.cn/idp/shibboleth": {
"en": "Jiangsu University of Science and Technology",
"zh": "江苏科技大学(Jiangsu University of Science and Technology)"
},
"https://idp-lib.mnnu.edu.cn/idp/shibboleth": {
"en": "Minnan Normal University",
"zh": "闽南师范大学(Minnan Normal University)"
},
"https://idp-lib.muc.edu.cn/idp/shibboleth": {
"en": "MINZU UNIVERSITY OF CHINA",
"zh": "中央民族大学(MINZU UNIVERSITY OF CHINA)"
},
"https://idp-lib.nefu.edu.cn/idp/shibboleth": {
"en": "Northeast Forestry University",
"zh": "东北林业大学(Northeast Forestry University)"
},
"https://idp-lib.nenu.edu.cn/idp/shibboleth": {
"en": "Northeast Normal University",
"zh": "东北师范大学(Northeast Normal University)"
},
"https://idp-lib.njfu.edu.cn/idp/shibboleth": {
"en": "Nanjing Forestry University",
"zh": "南京林业大学(Nanjing Forestry University)"
},
"https://idp-lib.njmu.edu.cn/idp/shibboleth": {
"en": "Nanjing Medical University",
"zh": "南京医科大学(Nanjing Medical University)"
},
"https://idp-lib.njnu.edu.cn/idp/shibboleth": {
"en": "Nanjing Normal University",
"zh": "南京师范大学(Nanjing Normal University)"
},
"https://idp-lib.nmu.edu.cn/idp/shibboleth": {
"en": "North Minzu University",
"zh": "北方民族大学(North Minzu University)"
},
"https://idp-lib.nuist.edu.cn/idp/shibboleth": {
"en": "Nanjing University of information Science & Technology",
"zh": "南京信息工程大学(Nanjing University of information Science & Technology)"
},
"https://idp-lib.nwafu.edu.cn/idp/shibboleth": {
"en": "Northwest A and F University",
"zh": "西北农林科技大学(Northwest A and F University)"
},
"https://idp-lib.qlit.edu.cn/idp/shibboleth": {
"en": "Qilu Institute of Technology",
"zh": "齐鲁理工学院(Qilu Institute of Technology)"
},
"https://idp-lib.sdnu.edu.cn/idp/shibboleth": {
"en": "Shandong Normal University",
"zh": "山东师范大学(Shandong Normal University)"
},
"https://idp-lib.shcc.edu.cn/idp/shibboleth": {
"en": "Shanghai Customs College",
"zh": "上海海关学院(Shanghai Customs College)"
},
"https://idp-lib.shzu.edu.cn/idp/shibboleth": {
"en": "Shihezi University",
"zh": "石河子大学(Shihezi University)"
},
"https://idp-lib.sit.edu.cn/idp/shibboleth": {
"en": "Shanghai Institute of Technology",
"zh": "上海应用技术大学(Shanghai Institute of Technology)"
},
"https://idp-lib.sitsh.edu.cn/idp/shibboleth": {
"en": "Shanghai Institute of Tourism",
"zh": "上海旅游高等专科学校(Shanghai Institute of Tourism)"
},
"https://idp-lib.smbu.edu.cn/idp/shibboleth": {
"en": "Shenzhen MSU-BIT University",
"zh": "深圳北理莫斯科大学(Shenzhen MSU-BIT University)"
},
"https://idp-lib.stu.edu.cn/idp/shibboleth": {
"en": "Shantou University",
"zh": "汕头大学(Shantou University)"
},
"https://idp-lib.swmu.edu.cn/idp/shibboleth": {
"en": "Southwest Medical University",
"zh": "西南医科大学(Southwest Medical University)"
},
"https://idp-lib.swpu.edu.cn/idp/shibboleth": {
"en": "Southwest Petroleum University",
"zh": "西南石油大学(Southwest Petroleum University)"
},
"https://idp-lib.tjtc.edu.cn/idp/shibboleth": {
"en": "Tianjin Vocational Institute",
"zh": "天津职业大学(Tianjin Vocational Institute)"
},
"https://idp-lib.uestc.edu.cn/idp/shibboleth": {
"en": "University of Electronic Science and Technology of China",
"zh": "电子科技大学(University of Electronic Science and Technology of China)"
},
"https://idp-lib.uibe.edu.cn/idp/shibboleth": {
"en": "University of International Business and Economics",
"zh": "对外经济贸易大学(University of International Business and Economics)"
},
"https://idp-lib.utszlib.edu.cn/idp/shibboleth": {
"en": "University Town Library of Shenzhen",
"zh": "深圳大学城图书馆(University Town Library of Shenzhen)"
},
"https://idp-lib.whpu.edu.cn/idp/shibboleth": {
"en": "Wuhan Polytechnic University",
"zh": "武汉轻工大学(Wuhan Polytechnic University)"
},
"https://idp-lib.wku.edu.cn/idp/shibboleth": {
"en": "Wenzhou-Kean University",
"zh": "温州肯恩大学(Wenzhou-Kean University)"
},
"https://idp-lib.xjust.edu.cn/idp/shibboleth": {
"en": "Xinjiang University of Science & Technology",
"zh": "新疆科技学院(Xinjiang University of Science & Technology)"
},
"https://idp-lib.ytu.edu.cn/idp/shibboleth": {
"en": "Yantai University",
"zh": "烟台大学(Yantai University)"
},
"https://idp-lib.zjhu.edu.cn/idp/shibboleth": {
"en": "Huzhou University",
"zh": "湖州师范学院(Huzhou University)"
},
"https://idp-lib.zjxu.edu.cn/idp/shibboleth": {
"en": "Jiaxing University",
"zh": "嘉兴学院(Jiaxing University)"
},
"https://idp-tsg.buct.edu.cn/idp/shibboleth": {
"en": "Beijing University of Chemical Technology",
"zh": "北京化工大学(Beijing University of Chemical Technology)"
},
"https://idp-tsg.sdmc.edu.cn/idp/shibboleth": {
"en": "Shandong Medical College",
"zh": "山东医学高等专科学校(Shandong Medical College)"
},
"https://idp-xxglzx.ynufe.edu.cn/idp/shibboleth": {
"en": "Yunnan University of Finance and Economics",
"zh": "云南财经大学(Yunnan University of Finance and Economics)"
},
"https://idp.5aaa.com/idp/shibboleth": {
"en": "University For Science & Technology Beijing",
"zh": "北京科技职业学院(University For Science & Technology Beijing)"
},
"https://idp.abc.edu.cn/idp/shibboleth": {
"en": "Anhui Business College",
"zh": "安徽商贸职业技术学院(Anhui Business College)"
},
"https://idp.afc.edu.cn/idp/shibboleth": {
"en": "Anhui Finance And Trade Vocational College",
"zh": "安徽财贸职业学院(Anhui Finance And Trade Vocational College )"
},
"https://idp.ahau.edu.cn/idp/shibboleth": {
"en": "Anhui Agriculture University",
"zh": "安徽农业大学(Anhui Agriculture University)"
},
"https://idp.ahcme.edu.cn/idp/shibboleth": {
"en": "Anhui Technical College Of Mechanical and Electrical Engineering",
"zh": "安徽机电职业技术学院(Anhui Technical College Of Mechanical and Electrical Engineering)"
},
"https://idp.ahiib.edu.cn/idp/shibboleth": {
"en": "Anhui Institute Of International Business",
"zh": "安徽国际商务职业学院(Anhui Institute Of International Business)"
},
"https://idp.ahjzu.edu.cn/idp/shibboleth": {
"en": "AHHUI JIANZHU UNIVERSITY",
"zh": "安徽建筑大学(AHHUI JIANZHU UNIVERSITY)"
},
"https://idp.ahnu.edu.cn/idp/shibboleth": {
"en": "Anhui Normal University",
"zh": "安徽师范大学(Anhui Normal University)"
},
"https://idp.ahpu.edu.cn/idp/shibboleth": {
"en": "Anhui Polytechnic University",
"zh": "安徽工程大学(Anhui Polytechnic University)"
},
"https://idp.ahsdxy.edu.cn/idp/shibboleth": {
"en": "Anhui Water Conservancy Technical College",
"zh": "安徽水利水电职业技术学院(Anhui Water Conservancy Technical College)"
},
"https://idp.ahstu.edu.cn/idp/shibboleth": {
"en": "AnHui Science and Technology University",
"zh": "安徽科技学院(AnHui Science and Technology University)"
},
"https://idp.ahszu.edu.cn/idp/shibboleth": {
"en": "Suzhou University",
"zh": "宿州学院(Suzhou University)"
},
"https://idp.ahu.edu.cn/idp/shibboleth": {
"en": "Anhui University",
"zh": "安徽大学(Anhui University)"
},
"https://idp.ahut.edu.cn/idp/shibboleth": {
"en": "Anhui University of Technology",
"zh": "安徽工业大学(Anhui University of Technology)"
},
"https://idp.aiit.edu.cn/idp/shibboleth": {
"en": "Anhui Institute of Information Technology",
"zh": "安徽信息工程学院(Anhui Institute of Information Technology)"
},
"https://idp.aqmc.edu.cn/idp/shibboleth": {
"en": "Anqing Medical College",
"zh": "安庆医药高等专科学校(Anqing Medical College)"
},
"https://idp.aqnu.edu.cn/idp/shibboleth": {
"en": "Anqing Normal University",
"zh": "安庆师范大学(Anqing Normal University)"
},
"https://idp.aufe.edu.cn/idp/shibboleth": {
"en": "Anhui University of Finance and Econonics",
"zh": "安徽财经大学(Anhui University of Finance and Econonics)"
},
"https://idp.aust.edu.cn/idp/shibboleth": {
"en": "Anhui University Of Science And Technology",
"zh": "安徽理工大学(Anhui University Of Science And Technology)"
},
"https://idp.axhu.edu.cn/idp/shibboleth": {
"en": "Anhui Xinhua University",
"zh": "安徽新华学院(Anhui Xinhua University)"
},
"https://idp.ayit.edu.cn/idp/shibboleth": {
"en": "Anyang Institute of Technology",
"zh": "安阳工学院(Anyang Institute of Technology)"
},
"https://idp.aynu.edu.cn/idp/shibboleth": {
"en": "Anyang Normal University",
"zh": "安阳师范学院(Anyang Normal University)"
},
"https://idp.bbc.edu.cn/idp/shibboleth": {
"en": "Bengbu University",
"zh": "蚌埠学院(Bengbu University)"
},
"https://idp.bbmc.edu.cn/idp/shibboleth": {
"en": "Bengbu Medical College",
"zh": "蚌埠医学院(Bengbu Medical College)"
},
"https://idp.bcnu.edu.cn/idp/shibboleth": {
"en": "BaiCheng Normal University",
"zh": "白城师范学院(BaiCheng Normal University)"
},
"https://idp.bcu.edu.cn/idp/shibboleth": {
"en": "Beijing City University",
"zh": "北京城市学院(Beijing City University)"
},
"https://idp.bfsu.edu.cn/idp/shibboleth": {
"en": "Beijing Foreign Studies University",
"zh": "北京外国语大学(Beijing Foreign Studies University)"
},
"https://idp.bgy.edu.cn/idp/shibboleth": {
"en": "Beijing Polytechnic College",
"zh": "北京工业职业技术学院(Beijing Polytechnic College)"
},
"https://idp.bift.edu.cn/idp/shibboleth": {
"en": "Beijing Institute of Fashion Technology",
"zh": "北京服装学院(Beijing Institute of Fashion Technology )"
},
"https://idp.bisu.edu.cn/idp/shibboleth": {
"en": "Beijing International Studies University",
"zh": "北京第二外国语学院(Beijing International Studies University)"
},
"https://idp.bit.edu.cn/idp/shibboleth": {
"en": "Beijing Institute of Technology",
"zh": "北京理工大学(Beijing Institute of Technology)"
},
"https://idp.bjfu.edu.cn/idp/shibboleth": {
"en": "Beijing Forestry University",
"zh": "北京林业大学(Beijing Forestry University)"
},
"https://idp.bjpc.edu.cn/idp/shibboleth": {
"en": "Beijing Police College",
"zh": "北京警察学院(Beijing Police College)"
},
"https://idp.bjtu.edu.cn/idp/shibboleth": {
"en": "BEIJING JIAOTONG UNIVERSITY",
"zh": "北京交通大学(BEIJING JIAOTONG UNIVERSITY)"
},
"https://idp.btmc.edu.cn/idp/shibboleth": {
"en": "Baotou Medical College",
"zh": "包头医学院(Baotou Medical College)"
},
"https://idp.btsvc.edu.cn/idp/shibboleth": {
"en": "BaoTou Iron&Steel Vocational Technical College",
"zh": "包头钢铁职业技术学院(BaoTou Iron&Steel Vocational Technical College)"
},
"https://idp.bttc.edu.cn/idp/shibboleth": {
"en": "Baotou Teachers' College",
"zh": "包头师范学院(Baotou Teachers' College)"
},
"https://idp.bua.edu.cn/idp/shibboleth": {
"en": "Beijing University of Agriculture",
"zh": "北京农学院(Beijing University of Agriculture)"
},
"https://idp.buaa.edu.cn/idp/shibboleth": {
"en": "Beihang University",
"zh": "北京航空航天大学(Beihang University)"
},
"https://idp.bucea.edu.cn/idp/shibboleth": {
"en": "Beijing University of Civil Engineering and Architecture",
"zh": "北京建筑大学(Beijing University of Civil Engineering and Architecture)"
},
"https://idp.bupt.edu.cn/idp/shibboleth": {
"en": "Beijing University of Posts and Telecommunications",
"zh": "北京邮电大学(Beijing University of Posts and Telecommunications)"
},
"https://idp.buu.edu.cn/idp/shibboleth": {
"en": "Beijing Union University",
"zh": "北京联合大学(Beijing Union University)"
},
"https://idp.bwu.edu.cn/idp/shibboleth": {
"en": "Beijing Wuzi University",
"zh": "北京物资学院(Beijing Wuzi University)"
},
"https://idp.bzmc.edu.cn/idp/shibboleth": {
"en": "Binzhou Medical University",
"zh": "滨州医学院(Binzhou Medical University)"
},
"https://idp.bzu.edu.cn/idp/shibboleth": {
"en": "Binzhou University",
"zh": "滨州学院(Binzhou University)"
},
"https://idp.bzuu.edu.cn/idp/shibboleth": {
"en": "Bozhou University",
"zh": "亳州学院(Bozhou University)"
},
"https://idp.cafa.edu.cn/idp/shibboleth": {
"en": "The Central Academy of Fine Arts",
"zh": "中央美术学院(The Central Academy of Fine Arts)"
},
"https://idp.caii.edu.cn/idp/shibboleth": {
"en": "Changchun Automobile Industry Institute",
"zh": "长春汽车工业高等专科学校(Changchun Automobile Industry Institute)"
},
"https://idp.cauc.edu.cn/idp/shibboleth": {
"en": "Civil Aviation University of China",
"zh": "中国民航大学(Civil Aviation University of China)"
},
"https://idp.ccibe.edu.cn/idp/shibboleth": {
"en": "Chongqing College of International Business and Economics",
"zh": "重庆对外经贸学院(Chongqing College of International Business and Economics)"
},
"https://idp.ccit.edu.cn/idp/shibboleth": {
"en": "Changchun Institute of Technology",
"zh": "长春工程学院(Changchun Institute of Technology)"
},
"https://idp.ccmc.edu.cn/idp/shibboleth": {
"en": "Changchun Medical College",
"zh": "长春医学高等专科学校(Changchun Medical College)"
},
"https://idp.ccmu.edu.cn/idp/shibboleth": {
"en": "Capital Medical University",
"zh": "首都医科大学(Capital Medical University)"
},
"https://idp.ccnc.edu.cn/idp/shibboleth": {
"en": "Changchun Normal College",
"zh": "长春师范高等专科学校(Changchun Normal College)"
},
"https://idp.ccom.edu.cn/idp/shibboleth": {
"en": "Central Conservatory of Music",
"zh": "中央音乐学院(Central Conservatory of Music)"
},
"https://idp.ccrw.edu.cn/idp/shibboleth": {
"en": "Changchun Humanities and Sciences College",
"zh": "长春人文学院(Changchun Humanities and Sciences College)"
},
"https://idp.ccsfu.edu.cn/idp/shibboleth": {
"en": "Changchun Normal University",
"zh": "长春师范大学(Changchun Normal University)"
},
"https://idp.ccu.edu.cn/idp/shibboleth": {
"en": "CHANGCHUN UNIVERSITY",
"zh": "长春大学(CHANGCHUN UNIVERSITY)"
},
"https://idp.ccut.edu.cn/idp/shibboleth": {
"en": "Changchun University of Technology",
"zh": "长春工业大学(Changchun University of Technology)"
},
"https://idp.cdivtc.edu.cn/idp/shibboleth": {
"en": "Chengdu Vocational & Technical College of Industry",
"zh": "成都工业职业技术学院(Chengdu Vocational & Technical College of Industry)"
},
"https://idp.cdtc.edu.cn/idp/shibboleth": {
"en": "Chengdu Textile College",
"zh": "成都纺织高等专科学校(Chengdu Textile College)"
},
"https://idp.cdu.edu.cn/idp/shibboleth": {
"en": "Chengdu University",
"zh": "成都大学(Chengdu University)"
},
"https://idp.cdut.edu.cn/idp/shibboleth": {
"en": "ChengDu University of Technology",
"zh": "成都理工大学(ChengDu University of Technology)"
},
"https://idp.chd.edu.cn/idp/shibboleth": {
"en": "Chang'an University",
"zh": "长安大学(Chang'an University)"
},
"https://idp.chu.edu.cn/idp/shibboleth": {
"en": "ChaoHu University",
"zh": "巢湖学院(ChaoHu University)"
},
"https://idp.chzu.edu.cn/idp/shibboleth": {
"en": "Chuzhou University",
"zh": "滁州学院(Chuzhou University)"
},
"https://idp.ciit.edu.cn/idp/shibboleth": {
"en": "Changzhou Vocational Institute of Industry Technology",
"zh": "常州工业职业技术学院(Changzhou Vocational Institute of Industry Technology)"
},
"https://idp.cityu.edu.mo/idp/shibboleth": {
"en": "City University of Macau",
"zh": "澳門城市大學(City University of Macau)"
},
"https://idp.cjxy.edu.cn/idp/shibboleth": {
"en": "Changjiang Polytechnic",
"zh": "长江职业学院(Changjiang Polytechnic)"
},
"https://idp.cmu.edu.cn/idp/shibboleth": {
"en": "China Medical University",
"zh": "中国医科大学(China Medical University)"
},
"https://idp.cnaes.edu.cn/idp/shibboleth": {
"en": "China National Academy of Educational Sciences",
"zh": "中国教育科学研究院(China National Academy of Educational Sciences)"
},
"https://idp.cnu.edu.cn/idp/shibboleth": {
"en": "Capital Normal University",
"zh": "首都师范大学(Capital Normal University)"
},
"https://idp.cppu.edu.cn/idp/shibboleth": {
"en": "China People's Police University",
"zh": "中国人民警察大学(China People's Police University)"
},
"https://idp.cpu.edu.cn/idp/shibboleth": {
"en": "China Pharmaceutical University",
"zh": "中国药科大学(China Pharmaceutical University)"
},
"https://idp.cqctcm.edu.cn/idp/shibboleth": {
"en": "Chongqing College Of Traditional Chinese Medicine",
"zh": "重庆中医药学院(Chongqing College Of Traditional Chinese Medicine)"
},
"https://idp.cqie.edu.cn/idp/shibboleth": {
"en": "Chongqing Institute Of Engineering",
"zh": "重庆工程学院(Chongqing Institute Of Engineering)"
},
"https://idp.cqjtu.edu.cn/idp/shibboleth": {
"en": "Chongqing Jiaotong University",
"zh": "重庆交通大学(Chongqing Jiaotong University)"
},
"https://idp.cqjzc.edu.cn/idp/shibboleth": {
"en": "ChongQing JianZhu College",
"zh": "重庆建筑工程职业学院(ChongQing JianZhu College)"
},
"https://idp.cqmu.edu.cn/idp/shibboleth": {
"en": "Chongqing Medical University",
"zh": "重庆医科大学(Chongqing Medical University)"
},
"https://idp.cqu.edu.cn/idp/shibboleth": {
"en": "Chongqing University",
"zh": "重庆大学(Chongqing University)"
},
"https://idp.cqupt.edu.cn/idp/shibboleth": {
"en": "Chongqing University of Posts and Telecommunications",
"zh": "重庆邮电大学(Chongqing University of Posts and Telecommunications)"
},
"https://idp.cqut.edu.cn/idp/shibboleth": {
"en": "Chongqing University of Technology",
"zh": "重庆理工大学(Chongqing University of Technology)"
},
"https://idp.cqwu.edu.cn/idp/shibboleth": {
"en": "Chongqing University of Arts and Sciences",
"zh": "重庆文理学院(Chongqing University of Arts and Sciences)"
},
"https://idp.csiic.edu.cn/idp/shibboleth": {
"en": "Shanxi International Trade Commerce Institute",
"zh": "陕西国际商贸学院(Shanxi International Trade Commerce Institute)"
},
"https://idp.csuft.edu.cn/idp/shibboleth": {
"en": "Central South University of Forestry and Technology",
"zh": "中南林业科技大学(Central South University of Forestry and Technology)"
},
"https://idp.ctbu.edu.cn/idp/shibboleth": {
"en": "Chongqing Technology and Business University",
"zh": "重庆工商大学(Chongqing Technology and Business University)"
},
"https://idp.cua.edu.cn/idp/shibboleth": {
"en": "Anhui Vocational College of City Management",
"zh": "安徽城市管理职业学院(Anhui Vocational College of City Management)"
},
"https://idp.cuc.edu.cn/idp/shibboleth": {
"en": "Communication University of China",
"zh": "中国传媒大学(Communication University of China)"
},
"https://idp.cueb.edu.cn/idp/shibboleth": {
"en": "Capital University of Economics and Business",
"zh": "首都经济贸易大学(Capital University of Economics and Business)"
},
"https://idp.cufe.edu.cn/idp/shibboleth": {
"en": "Central University of Finance and Economics",
"zh": "中央财经大学(Central University of Finance and Economics)"
},
"https://idp.cug.edu.cn/idp/shibboleth": {
"en": "China University of Geosciences",
"zh": "中国地质大学(武汉)(China University of Geosciences)"
},
"https://idp.cugb.edu.cn/idp/shibboleth": {
"en": "Beijing,China University of Geosciences",
"zh": "中国地质大学(北京)(Beijing,China University of Geosciences)"
},
"https://idp.cuhk.edu.cn/idp/shibboleth": {
"en": "The Chinese University of Hong Kong, Shenzhen",
"zh": "香港中文大学(深圳)(The Chinese University of Hong Kong, Shenzhen)"
},
"https://idp.cuit.edu.cn/idp/shibboleth": {
"en": "Chengdu University of Information Technology",
"zh": "成都信息工程大学(Chengdu University of Information Technology)"
},
"https://idp.cumt.edu.cn/idp/shibboleth": {
"en": "China University of Mining and Technology",
"zh": "中国矿业大学(China University of Mining and Technology)"
},
"https://idp.cup.edu.cn/idp/shibboleth": {
"en": "China University of Petroleum",
"zh": "中国石油大学(北京)(China University of Petroleum)"
},
"https://idp.cupl.edu.cn/idp/shibboleth": {
"en": "China University of Political Science and Law",
"zh": "中国政法大学(China University of Political Science and Law)"
},
"https://idp.cust.edu.cn/idp/shibboleth": {
"en": "Changchun University of Science and Technology",
"zh": "长春理工大学(Changchun University of Science and Technology)"
},
"https://idp.cuz.edu.cn/idp/shibboleth": {
"en": "Communication University of Zhejiang",
"zh": "浙江传媒学院(Communication University of Zhejiang)"
},
"https://idp.czu.edu.cn/idp/shibboleth": {
"en": "Chizhou University",
"zh": "池州学院(Chizhou University)"
},
"https://idp.czust.edu.cn/idp/shibboleth": {
"en": "Changzhou Institute Of Technology",
"zh": "常州工学院(Changzhou Institute Of Technology)"
},
"https://idp.dgut.edu.cn/idp/shibboleth": {
"en": "DongGuan University of Techology",
"zh": "东莞理工学院(DongGuan University of Techology)"
},
"https://idp.dhu.edu.cn/idp/shibboleth": {
"en": "Donghua University",
"zh": "东华大学(Donghua University)"
},
"https://idp.djtu.edu.cn/idp/shibboleth": {
"en": "Dalian Jiaotong University",
"zh": "大连交通大学(Dalian Jiaotong University)"
},
"https://idp.dlnu.edu.cn/idp/shibboleth": {
"en": "Dalian Minzu University",
"zh": "大连民族大学(Dalian Minzu University)"
},
"https://idp.dlou.edu.cn/idp/shibboleth": {
"en": "Dalian Ocean University",
"zh": "大连海洋大学(Dalian Ocean University)"
},
"https://idp.dlu.edu.cn/idp/shibboleth": {
"en": "DaLian University",
"zh": "大连大学(DaLian University)"
},
"https://idp.dlufl.edu.cn/idp/shibboleth": {
"en": "Dalian University of Foreign Languages",
"zh": "大连外国语大学(Dalian University of Foreign Languages)"
},
"https://idp.dlut.edu.cn/idp/shibboleth": {
"en": "Dalian University of Technology",
"zh": "大连理工大学(Dalian University of Technology)"
},
"https://idp.dmu.edu.cn/idp/shibboleth": {
"en": "Dalian Medical University",
"zh": "大连医科大学(Dalian Medical University)"
},
"https://idp.dufe.edu.cn/idp/shibboleth": {
"en": "Dongbei University of Finance and Economics",
"zh": "东北财经大学(Dongbei University of Finance and Economics)"
},
"https://idp.dzvc.edu.cn/idp/shibboleth": {
"en": "Dezhou Vocational and Technical College",
"zh": "德州职业技术学院(Dezhou Vocational and Technical College)"
},
"https://idp.ecjtu.edu.cn/idp/shibboleth": {
"en": "East China Jiaotong University",
"zh": "华东交通大学(East China Jiaotong University)"
},
"https://idp.ecnu.edu.cn/idp/shibboleth": {
"en": "EAST CHINA NORMAL UNIVERSITY",
"zh": "华东师范大学(EAST CHINA NORMAL UNIVERSITY)"
},
"https://idp.ecupl.edu.cn/idp/shibboleth": {
"en": "East China University of Political Science and Law",
"zh": "华东政法大学(East China University of Political Science and Law)"
},
"https://idp.ecust.edu.cn/idp/shibboleth": {
"en": "East China University Of Science And Technology",
"zh": "华东理工大学(East China University Of Science And Technology)"
},
"https://idp.ecut.edu.cn/idp/shibboleth": {
"en": "East China University Of Technology",
"zh": "东华理工大学(East China University Of Technology)"
},
"https://idp.fafu.edu.cn/idp/shibboleth": {
"en": "Fujian Agriculture and Forestry University",
"zh": "福建农林大学(Fujian Agriculture and Forestry University)"
},
"https://idp.fjjxu.edu.cn/idp/shibboleth": {
"en": "Fujian Jiangxia University",
"zh": "福建江夏学院(Fujian Jiangxia University)"
},
"https://idp.fjmu.edu.cn/idp/shibboleth": {
"en": "Fujian Medical University",
"zh": "福建医科大学(Fujian Medical University)"
},
"https://idp.fjnu.edu.cn/idp/shibboleth": {
"en": "Fujian Normal University",
"zh": "福建师范大学(Fujian Normal University)"
},
"https://idp.fjny.edu.cn/idp/shibboleth": {
"en": "Fujian Vocational College of Agriculture",
"zh": "福建农业职业技术学院(Fujian Vocational College of Agriculture)"
},
"https://idp.fjsmu.edu.cn/idp/shibboleth": {
"en": "Sanming University",
"zh": "三明学院(Sanming University)"
},
"https://idp.fjtcm.edu.cn/idp/shibboleth": {
"en": "Fujian University of Traditional Chinese Medicine",
"zh": "福建中医药大学(Fujian University of Traditional Chinese Medicine)"
},
"https://idp.fjut.edu.cn/idp/shibboleth": {
"en": "Fujian University of Technology",
"zh": "福建理工大学(Fujian University of Technology)"
},
"https://idp.fosu.edu.cn/idp/shibboleth": {
"en": "Foshan University",
"zh": "佛山大学(Foshan University)"
},
"https://idp.fynu.edu.cn/idp/shibboleth": {
"en": "Fuyang Normal University",
"zh": "阜阳师范大学(Fuyang Normal University)"
},
"https://idp.fzfu.edu.cn/idp/shibboleth": {
"en": "Fuzhou University of International Studies and Trade",
"zh": "福州外语外贸学院(Fuzhou University of International Studies and Trade)"
},
"https://idp.fzu.edu.cn/idp/shibboleth": {
"en": "Fuzhou University",
"zh": "福州大学(Fuzhou University)"
},
"https://idp.gcti.edu.cn/idp/shibboleth": {
"en": "Guangzhou Communications Technician Institute",
"zh": "广州市交通技师学院(Guangzhou Communications Technician Institute)"
},
"https://idp.gdfs.edu.cn/idp/shibboleth": {
"en": "Guangdong Women's Polytechnic College",
"zh": "广东女子职业技术学院(Guangdong Women's Polytechnic College)"
},
"https://idp.gdgm.edu.cn/idp/shibboleth": {
"en": "Guangdong Polytechnic of Industry and Commerce",
"zh": "广东工贸职业技术学院(Guangdong Polytechnic of Industry and Commerce)"
},
"https://idp.gdmu.edu.cn/idp/shibboleth": {
"en": "Guangdong Medical University",
"zh": "广东医科大学(Guangdong Medical University)"
},
"https://idp.gdou.edu.cn/idp/shibboleth": {
"en": "GuangDong Ocean University",
"zh": "广东海洋大学(GuangDong Ocean University)"
},
"https://idp.gdpu.edu.cn/idp/shibboleth": {
"en": "Guangdong Pharmaceutical University",
"zh": "广东药科大学(Guangdong Pharmaceutical University)"
},
"https://idp.gdufe.edu.cn/idp/shibboleth": {
"en": "Guangdong University of Finance and Economics",
"zh": "广东财经大学(Guangdong University of Finance and Economics)"
},
"https://idp.gdufs.edu.cn/idp/shibboleth": {
"en": "GuangDong University of Foreign Studies",
"zh": "广东外语外贸大学(GuangDong University of Foreign Studies)"
},
"https://idp.gdust.edu.cn/idp/shibboleth": {
"en": "Guangdong University of Science & Technology",
"zh": "广东科技学院(Guangdong University of Science & Technology)"
},
"https://idp.gkd.edu.cn/idp/shibboleth": {
"en": "Guangzhou Vocational and Technical University of Science and Technology",
"zh": "广州科技职业技术大学(Guangzhou Vocational and Technical University of Science and Technology)"
},
"https://idp.glmc.edu.cn/idp/shibboleth": {
"en": "Guilin Medical University",
"zh": "桂林医学院(Guilin Medical University)"
},
"https://idp.glut.edu.cn/idp/shibboleth": {
"en": "Guilin University of Technology",
"zh": "桂林理工大学(Guilin University of Technology)"
},
"https://idp.gnnu.edu.cn/idp/shibboleth": {
"en": "Gannan Normal University",
"zh": "赣南师范大学(Gannan Normal University)"
},
"https://idp.gpnu.edu.cn/idp/shibboleth": {
"en": "Guangdong Polytechnic Normal University",
"zh": "广东技术师范大学(Guangdong Polytechnic Normal University)"
},
"https://idp.gtiit.edu.cn/idp/shibboleth": {
"en": "Guangdong Technion-Israel Institute of Technology",
"zh": "广东以色列理工学院(Guangdong Technion-Israel Institute of Technology)"
},
"https://idp.guat.edu.cn/idp/shibboleth": {
"en": "Guilin University of Aerospace Technology",
"zh": "桂林航天工业学院(Guilin University of Aerospace Technology)"
},
"https://idp.guet.edu.cn/idp/shibboleth": {
"en": "Guilin University of Electronic Technology",
"zh": "桂林电子科技大学(Guilin University of Electronic Technology)"
},
"https://idp.gufe.edu.cn/idp/shibboleth": {
"en": "Guizhou University of Finance and Economics",
"zh": "贵州财经大学(Guizhou University of Finance and Economics)"
},
"https://idp.gxau.edu.cn/idp/shibboleth": {
"en": "Guangxi Arts University",
"zh": "广西艺术学院(Guangxi Arts University)"
},
"https://idp.gxetic.edu.cn/idp/shibboleth": {
"en": "Guangxi Education Technology and Information Center",
"zh": "广西壮族自治区教育技术和信息化中心(Guangxi Education Technology and Information Center)"
},
"https://idp.gxmzu.edu.cn/idp/shibboleth": {
"en": "GuangXi Minzu University",
"zh": "广西民族大学(GuangXi Minzu University)"
},
"https://idp.gxnu.edu.cn/idp/shibboleth": {
"en": "Guangxi Normal University",
"zh": "广西师范大学(Guangxi Normal University)"
},
"https://idp.gxu.edu.cn/idp/shibboleth": {
"en": "GuangXi University",
"zh": "广西大学(GuangXi University)"
},
"https://idp.gxufl.edu.cn/idp/shibboleth": {
"en": "Guangxi University Of Foreign Languages",
"zh": "广西外国语学院(Guangxi University Of Foreign Languages)"
},
"https://idp.gxust.edu.cn/idp/shibboleth": {
"en": "Guangxi University of Science and Technology",
"zh": "广西科技大学(Guangxi University of Science and Technology)"
},
"https://idp.gxwzy.edu.cn/idp/shibboleth": {
"en": "Guangxi Medical Collage",
"zh": "广西卫生职业技术学院(Guangxi Medical Collage)"
},
"https://idp.gxyesf.edu.cn/idp/shibboleth": {
"en": "Guangxi College for Preschool Education",
"zh": "广西幼儿师范高等专科学校(Guangxi College for Preschool Education)"
},
"https://idp.gzarts.edu.cn/idp/shibboleth": {
"en": "Guangzhou Academy of Fine Arts",
"zh": "广州美术学院(Guangzhou Academy of Fine Arts)"
},
"https://idp.gzcfe.edu.cn/idp/shibboleth": {
"en": "Guizhou Vocational College of Finance and Economics",
"zh": "贵州财经职业学院(Guizhou Vocational College of Finance and Economics)"
},
"https://idp.gznu.edu.cn/idp/shibboleth": {
"en": "Guizhou Normal University",
"zh": "贵州师范大学(Guizhou Normal University)"
},
"https://idp.gzucm.edu.cn/idp/shibboleth": {
"en": "Guangzhou University of Chinese Medicine",
"zh": "广州中医药大学(Guangzhou University of Chinese Medicine)"
},
"https://idp.gzy.edu.cn/idp/shibboleth": {
"en": "Guizhou University of Traditional Chinese Medicine",
"zh": "贵州中医药大学(Guizhou University of Traditional Chinese Medicine)"
},
"https://idp.hactcm.edu.cn/idp/shibboleth": {
"en": "Henan University of Chinese Medicine",
"zh": "河南中医药大学(Henan University of Chinese Medicine)"
},
"https://idp.hacz.edu.cn/idp/shibboleth": {
"en": "Henan Finance University",
"zh": "河南财政金融学院(Henan Finance University)"
},
"https://idp.hainanu.edu.cn/idp/shibboleth": {
"en": "Hainan University",
"zh": "海南大学(Hainan University)"
},
"https://idp.hainnu.edu.cn/idp/shibboleth": {
"en": "HAINAN NORMAL UNIVERSITY",
"zh": "海南师范大学(HAINAN NORMAL UNIVERSITY)"
},
"https://idp.hait.edu.cn/idp/shibboleth": {
"en": "henan institute of technology",
"zh": "河南工学院(henan institute of technology)"
},
"https://idp.haust.edu.cn/idp/shibboleth": {
"en": "Henan University of Science and Technology",
"zh": "河南科技大学(Henan University of Science and Technology)"
},
"https://idp.haut.edu.cn/idp/shibboleth": {
"en": "Henan University of Technology",
"zh": "河南工业大学(Henan University of Technology)"
},
"https://idp.havust.edu.cn/idp/shibboleth": {
"en": "Henan Vocational University of Science and Technology",
"zh": "河南科技职业大学(Henan Vocational University of Science and Technology)"
},
"https://idp.hbmzu.edu.cn/idp/shibboleth": {
"en": "Hubei Minzu University",
"zh": "湖北民族大学(Hubei Minzu University)"
},
"https://idp.hbnu.edu.cn/idp/shibboleth": {
"en": "Hubei Normal University",
"zh": "湖北师范大学(Hubei Normal University)"
},
"https://idp.hbu.edu.cn/idp/shibboleth": {
"en": "Hebei University",
"zh": "河北大学(Hebei University)"
},
"https://idp.hbucm.edu.cn/idp/shibboleth": {
"en": "Hubei University of Chinese Medicine",
"zh": "湖北中医药大学(Hubei University of Chinese Medicine)"
},
"https://idp.hbue.edu.cn/idp/shibboleth": {
"en": "Hubei University Of Economics",
"zh": "湖北经济学院(Hubei University Of Economics)"
},
"https://idp.hbust.edu.cn/idp/shibboleth": {
"en": "Hubei University of Science and Technology",
"zh": "湖北科技学院(Hubei University of Science and Technology)"
},
"https://idp.hbut.edu.cn/idp/shibboleth": {
"en": "Hubei University of Technology",
"zh": "湖北工业大学(Hubei University of Technology)"
},
"https://idp.hbzy.edu.cn/idp/shibboleth": {
"en": "Hebi Polytechnic",
"zh": "鹤壁职业技术学院(Hebi Polytechnic)"
},
"https://idp.hcnu.edu.cn/idp/shibboleth": {
"en": "Hechi University",
"zh": "河池学院(Hechi University)"
},
"https://idp.hdc.edu.cn/idp/shibboleth": {
"en": "Handan University",
"zh": "邯郸学院(Handan University)"
},
"https://idp.hdu.edu.cn/idp/shibboleth": {
"en": "HANGZHOU DIANZI UNIVERSITY",
"zh": "杭州电子科技大学(HANGZHOU DIANZI UNIVERSITY)"
},
"https://idp.hebau.edu.cn/idp/shibboleth": {
"en": "Hebei Agricultural University",
"zh": "河北农业大学(Hebei Agricultural University )"
},
"https://idp.hebeu.edu.cn/idp/shibboleth": {
"en": "Hebei University of Engineering",
"zh": "河北工程大学(Hebei University of Engineering)"
},
"https://idp.hebic.edu.cn/idp/shibboleth": {
"en": "Hebei Institute Of Communications",
"zh": "河北传媒学院(Hebei Institute Of Communications)"
},
"https://idp.hebmu.edu.cn/idp/shibboleth": {
"en": "Hebei Medical University",
"zh": "河北医科大学(Hebei Medical University)"
},
"https://idp.hebtu.edu.cn/idp/shibboleth": {
"en": "Hebei Normal University",
"zh": "河北师范大学(Hebei Normal University)"
},
"https://idp.hebuee.edu.cn/idp/shibboleth": {
"en": "Hebei University of Environmental Engineering",
"zh": "河北环境工程学院(Hebei University of Environmental Engineering)"
},
"https://idp.hebut.edu.cn/idp/shibboleth": {
"en": "Hebei University of Technology",
"zh": "河北工业大学(Hebei University of Technology)"
},
"https://idp.hejtxy.edu.cn/idp/shibboleth": {
"en": "Hebei Jiaotong Vocational and Technical College",
"zh": "河北交通职业技术学院(Hebei Jiaotong Vocational and Technical College)"
},
"https://idp.henu.edu.cn/idp/shibboleth": {
"en": "Henan University",
"zh": "河南大学(Henan University)"
},
"https://idp.hfnu.edu.cn/idp/shibboleth": {
"en": "Hefei Normal University",
"zh": "合肥师范学院(Hefei Normal University)"
},
"https://idp.hfu.edu.cn/idp/shibboleth": {
"en": "Heilongjiang University of Finance and Economics",
"zh": "黑龙江财经学院(Heilongjiang University of Finance and Economics)"
},
"https://idp.hfut.edu.cn/idp/shibboleth": {
"en": "Hefei University of Technology",
"zh": "合肥工业大学(Hefei University of Technology)"