-
Notifications
You must be signed in to change notification settings - Fork 0
/
autositelistcomplete.yml
2045 lines (2044 loc) · 51.2 KB
/
autositelistcomplete.yml
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
sites:
- dst: ucbprod-academicaffairs
path: academicaffairs
src: ucb-academicaffairs
- dst: ucbprod-accreditation
path: accreditation
src: ucb-accreditation
- dst: ucbprod-advancement
path: advancement
src: ucb-advancement
- dst: ucbprod-advising
path: advising
src: ucb-advising
- dst: ucbprod-aerospace
path: aerospace
src: ucb-aerospace
- dst: ucbprod-aerospaceventures
path: aerospaceventures
src: ucb-aerospaceventures
- dst: ucbprod-afrotc
path: afrotc
src: ucb-afrotc
- dst: ucbprod-alc
path: alc
src: ucb-alc
- dst: ucbprod-ali
path: ali
src: ucb-ali
- dst: ucbprod-alumni
path: alumni
src: ucb-alumni
- dst: ucbprod-alumniboard
path: alumniboard
src: ucb-alumniboard
- dst: ucbprod-amath
path: amath
src: ucb-amath
- dst: ucbprod-amrc
path: amrc
src: ucb-amrc
- dst: ucbprod-ansethgroup
path: ansethgroup
src: ucb-ansethgroup
- dst: ucbprod-anthropology
path: anthropology
src: ucb-anthropology
- dst: ucbprod-aps
path: aps
src: ucb-aps
- dst: ucbprod-aqiq
path: aqiq
src: ucb-aqiq
- dst: ucbprod-aquetza
path: aquetza
src: ucb-aquetza
- dst: ucbprod-arotc
path: arotc
src: ucb-arotc
- dst: ucbprod-artandarthistory
path: artandarthistory
src: ucb-artandarthistory
- dst: ucbprod-artsandsciences
path: artsandsciences
src: ucb-artsandsciences
- dst: ucbprod-artsandsciencestransfer
path: artsandsciencestransfer
src: ucb-artsandsciencestransfer
- dst: ucbprod-artssciences-advising
path: artssciences-advising
src: ucb-artssciences-advising
- dst: ucbprod-asfacultystaff
path: asfacultystaff
src: ucb-asfacultystaff
- dst: ucbprod-asmagazine
path: asmagazine
src: ucb-asmagazine
- dst: ucbprod-asmagazine-archive
path: asmagazine-archive
src: ucb-asmagazine-archive
- dst: ucbprod-assett
path: assett
src: ucb-assett
- dst: ucbprod-atlas
path: atlas
src: ucb-atlas
- dst: ucbprod-atoc
path: atoc
src: ucb-atoc
- dst: ucbprod-auxiliaryservices
path: auxiliaryservices
src: ucb-auxiliaryservices
- dst: ucbprod-b2g
path: b2g
src: ucb-b2g
- dst: ucbprod-bahri
path: bahri
src: ucb-bahri
- dst: ucbprod-behavioral-genetics
path: behavioral-genetics
src: ucb-behavioral-genetics
- dst: ucbprod-behavioral-neuroscience
path: behavioral-neuroscience
src: ucb-behavioral-neuroscience
- dst: ucbprod-bfp
path: bfp
src: ucb-bfp
- dst: ucbprod-biden
path: biden
src: ucb-biden
- dst: ucbprod-bioastronautics
path: bioastronautics
src: ucb-bioastronautics
- dst: ucbprod-biochemistry
path: biochemistry
src: ucb-biochemistry
- dst: ucbprod-biofrontiers
path: biofrontiers
src: ucb-biofrontiers
- dst: ucbprod-biologyadvising
path: biologyadvising
src: ucb-biologyadvising
- dst: ucbprod-biophysics
path: biophysics
src: ucb-biophysics
- dst: ucbprod-bme
path: bme
src: ucb-bme
- dst: ucbprod-boettcher-daniels-norlin-scholars
path: boettcher-daniels-norlin-scholars
src: ucb-boettcher-daniels-norlin-scholars
- dst: ucbprod-brakhagecenter
path: brakhagecenter
src: ucb-brakhagecenter
- dst: ucbprod-brand
path: brand
src: ucb-brand
- dst: ucbprod-bryantgroup
path: bryantgroup
src: ucb-bryantgroup
- dst: ucbprod-bsi
path: bsi
src: ucb-bsi
- dst: ucbprod-buffonecard
path: buffonecard
src: ucb-buffonecard
- dst: ucbprod-buffportaladvising
path: buffportaladvising
src: ucb-buffportaladvising
- dst: ucbprod-bursar
path: bursar
src: ucb-bursar
- dst: ucbprod-bursar-campus-resources
path: bursar-campus-resources
src: ucb-bursar-campus-resources
- dst: ucbprod-cadre
path: cadre
src: ucb-cadre
- dst: ucbprod-cadswes
path: cadswes
src: ucb-cadswes
- dst: ucbprod-campusplanning
path: campusplanning
src: ucb-campusplanning
- dst: ucbprod-career
path: career
src: ucb-career
- dst: ucbprod-cartss
path: cartss
src: ucb-cartss
- dst: ucbprod-cas
path: cas
src: ucb-cas
- dst: ucbprod-casa
path: casa
src: ucb-casa
- dst: ucbprod-catalyzecu
path: catalyzecu
src: ucb-catalyzecu
- dst: ucbprod-ccar
path: ccar
src: ucb-ccar
- dst: ucbprod-ceae
path: ceae
src: ucb-ceae
- dst: ucbprod-ceb
path: ceb
src: ucb-ceb
- dst: ucbprod-cej
path: cej
src: ucb-cej
- dst: ucbprod-cem
path: cem
src: ucb-cem
- dst: ucbprod-center-altec
path: center/altec
src: ucb-center-altec
- dst: ucbprod-center-aspire
path: center/aspire
src: ucb-center-aspire
- dst: ucbprod-center-benson
path: center/benson
src: ucb-center-benson
- dst: ucbprod-center-bioserve
path: center/bioserve
src: ucb-center-bioserve
- dst: ucbprod-center-british-irish-studies
path: center/british-irish-studies
src: ucb-center-british-irish-studies
- dst: ucbprod-center-bueno
path: center/bueno
src: ucb-center-bueno
- dst: ucbprod-center-bueno-esp
path: center/bueno-esp
src: ucb-center-bueno-esp
- dst: ucbprod-center-c3bc
path: center/c3bc
src: ucb-center-c3bc
- dst: ucbprod-center-cde
path: center/cde
src: ucb-center-cde
- dst: ucbprod-center-cdem
path: center/cdem
src: ucb-center-cdem
- dst: ucbprod-center-ciest
path: center/ciest
src: ucb-center-ciest
- dst: ucbprod-center-cips
path: center/cips
src: ucb-center-cips
- dst: ucbprod-center-contemplativeresource
path: center/contemplativeresource
src: ucb-center-contemplativeresource
- dst: ucbprod-center-criticalthought
path: center/criticalthought
src: ucb-center-criticalthought
- dst: ucbprod-center-crmt
path: center/crmt
src: ucb-center-crmt
- dst: ucbprod-center-cuchange
path: center/cuchange
src: ucb-center-cuchange
- dst: ucbprod-center-demtech
path: center/demtech
src: ucb-center-demtech
- dst: ucbprod-center-gwc
path: center/gwc
src: ucb-center-gwc
- dst: ucbprod-center-iec
path: center/iec
src: ucb-center-iec
- dst: ucbprod-center-mortenson
path: center/mortenson
src: ucb-center-mortenson
- dst: ucbprod-center-music-entrepreneurship
path: center/music-entrepreneurship
src: ucb-center-music-entrepreneurship
- dst: ucbprod-center-nsi
path: center/nsi
src: ucb-center-nsi
- dst: ucbprod-center-oddace
path: center/oddace
src: ucb-center-oddace
- dst: ucbprod-center-reach
path: center/reach
src: ucb-center-reach
- dst: ucbprod-center-spacegrant
path: center/spacegrant
src: ucb-center-spacegrant
- dst: ucbprod-center-teaching-learning
path: center/teaching-learning
src: ucb-center-teaching-learning
- dst: ucbprod-center-west
path: center/west
src: ucb-center-west
- dst: ucbprod-ceprehealth
path: ceprehealth
src: ucb-ceprehealth
- dst: ucbprod-certificate-ej
path: certificate/ej
src: ucb-certificate-ej
- dst: ucbprod-certificate-iqbiology
path: certificate/iqbiology
src: ucb-certificate-iqbiology
- dst: ucbprod-cha
path: cha
src: ucb-cha
- dst: ucbprod-chancellor
path: chancellor
src: ucb-chancellor
- dst: ucbprod-chbe
path: chbe
src: ucb-chbe
- dst: ucbprod-chbecapstonedesign
path: chbecapstonedesign
src: ucb-chbecapstonedesign
- dst: ucbprod-chemistry
path: chemistry
src: ucb-chemistry
- dst: ucbprod-childcare
path: childcare
src: ucb-childcare
- dst: ucbprod-chps
path: chps
src: ucb-chps
- dst: ucbprod-cinemastudies
path: cinemastudies
src: ucb-cinemastudies
- dst: ucbprod-cisc
path: cisc
src: ucb-cisc
- dst: ucbprod-classics
path: classics
src: ucb-classics
- dst: ucbprod-clery
path: clery
src: ucb-clery
- dst: ucbprod-clinicalpsychology
path: clinicalpsychology
src: ucb-clinicalpsychology
- dst: ucbprod-cmci
path: cmci
src: ucb-cmci
- dst: ucbprod-cmcicareers
path: cmcicareers
src: ucb-cmcicareers
- dst: ucbprod-cmcistudentmedia
path: cmcistudentmedia
src: ucb-cmcistudentmedia
- dst: ucbprod-cmrc
path: cmrc
src: ucb-cmrc
- dst: ucbprod-cnais
path: cnais
src: ucb-cnais
- dst: ucbprod-cognitive-psychology
path: cognitive-psychology
src: ucb-cognitive-psychology
- dst: ucbprod-coloradan
path: coloradan
src: ucb-coloradan
- dst: ucbprod-commencement
path: commencement
src: ucb-commencement
- dst: ucbprod-commrap
path: commrap
src: ucb-commrap
- dst: ucbprod-communications-data-science
path: communications-data-science
src: ucb-communications-data-science
- dst: ucbprod-compliance
path: compliance
src: ucb-compliance
- dst: ucbprod-composition
path: composition
src: ucb-composition
- dst: ucbprod-computerengineering
path: computerengineering
src: ucb-computerengineering
- dst: ucbprod-conference-adhs2024
path: conference/adhs2024
src: ucb-conference-adhs2024
- dst: ucbprod-conference-cwwmca
path: conference/cwwmca
src: ucb-conference-cwwmca
- dst: ucbprod-conference-greebs
path: conference/greebs
src: ucb-conference-greebs
- dst: ucbprod-conference-icp2019
path: conference/icp2019
src: ucb-conference-icp2019
- dst: ucbprod-conference-naweawindtech2023
path: conference/naweawindtech2023
src: ucb-conference-naweawindtech2023
- dst: ucbprod-conference-rhythm-since-1900
path: conference/rhythm-since-1900
src: ucb-conference-rhythm-since-1900
- dst: ucbprod-conference-rmc2022
path: conference/rmc2022
src: ucb-conference-rmc2022
- dst: ucbprod-conference-rmihc
path: conference/rmihc
src: ucb-conference-rmihc
- dst: ucbprod-conferenceservices
path: conferenceservices
src: ucb-conferenceservices
- dst: ucbprod-controller
path: controller
src: ucb-controller
- dst: ucbprod-counseling
path: counseling
src: ucb-counseling
- dst: ucbprod-course-sites-musc-1121
path: course-sites/musc/1121
src: ucb-course-sites-musc-1121
- dst: ucbprod-course-sites-musc-1131
path: course-sites/musc/1131
src: ucb-course-sites-musc-1131
- dst: ucbprod-course-sites-musc-2121
path: course-sites/musc/2121
src: ucb-course-sites-musc-2121
- dst: ucbprod-course-sites-musc-2131
path: course-sites/musc/2131
src: ucb-course-sites-musc-2131
- dst: ucbprod-course-sites-musc-fundtutorial
path: course-sites/musc/fundtutorial
src: ucb-course-sites-musc-fundtutorial
- dst: ucbprod-crdds
path: crdds
src: ucb-crdds
- dst: ucbprod-crm
path: crm
src: ucb-crm
- dst: ucbprod-crowninstitute
path: crowninstitute
src: ucb-crowninstitute
- dst: ucbprod-cs
path: cs
src: ucb-cs
- dst: ucbprod-cs-theory
path: cs-theory
src: ucb-cs-theory
- dst: ucbprod-csl
path: csl
src: ucb-csl
- dst: ucbprod-cuartmuseum
path: cuartmuseum
src: ucb-cuartmuseum
- dst: ucbprod-cubouldersouth
path: cubouldersouth
src: ucb-cubouldersouth
- dst: ucbprod-cudialogues
path: cudialogues
src: ucb-cudialogues
- dst: ucbprod-cuengage
path: cuengage
src: ucb-cuengage
- dst: ucbprod-cusg
path: cusg
src: ucb-cusg
- dst: ucbprod-cuteach
path: cuteach
src: ucb-cuteach
- dst: ucbprod-cuwizards
path: cuwizards
src: ucb-cuwizards
- dst: ucbprod-cvsp
path: cvsp
src: ucb-cvsp
- dst: ucbprod-cwa
path: cwa
src: ucb-cwa
- dst: ucbprod-d4c
path: d4c
src: ucb-d4c
- dst: ucbprod-dalailama
path: dalailama
src: ucb-dalailama
- dst: ucbprod-dcvf
path: dcvf
src: ucb-dcvf
- dst: ucbprod-dei
path: dei
src: ucb-dei
- dst: ucbprod-designforamerica
path: designforamerica
src: ucb-designforamerica
- dst: ucbprod-dev-outreach-scope
path: outreach/scope
src: ucb-dev-outreach-scope
- dst: ucbprod-dev-program-ide
path: program/ide
src: ucb-dev-program-ide
- dst: ucbprod-dev-studentgroups-ieee
path: studentgroups/ieee
src: ucb-dev-studentgroups-ieee
- dst: ucbprod-digital-accessibility
path: digital-accessibility
src: ucb-digital-accessibility
- dst: ucbprod-disabilityservices
path: disabilityservices
src: ucb-disabilityservices
- dst: ucbprod-dontignoreit
path: dontignoreit
src: ucb-dontignoreit
- dst: ucbprod-dynamicscontrols
path: dynamicscontrols
src: ucb-dynamicscontrols
- dst: ucbprod-ebio
path: ebio
src: ucb-ebio
- dst: ucbprod-ecee
path: ecee
src: ucb-ecee
- dst: ucbprod-ecenter
path: ecenter
src: ucb-ecenter
- dst: ucbprod-economics
path: economics
src: ucb-economics
- dst: ucbprod-education
path: education
src: ucb-education
- dst: ucbprod-education-research-hub
path: education-research-hub
src: ucb-education-research-hub
- dst: ucbprod-eeglab
path: eeglab
src: ucb-eeglab
- dst: ucbprod-eer
path: eer
src: ucb-eer
- dst: ucbprod-ehs
path: ehs
src: ucb-ehs
- dst: ucbprod-emag-research
path: emag-research
src: ucb-emag-research
- dst: ucbprod-emergencymanagement
path: emergencymanagement
src: ucb-emergencymanagement
- dst: ucbprod-emp
path: emp
src: ucb-emp
- dst: ucbprod-engineering
path: engineering
src: ucb-engineering
- dst: ucbprod-engineering-advising
path: engineering-advising
src: ucb-engineering-advising
- dst: ucbprod-engineering-facultystaff
path: engineering-facultystaff
src: ucb-engineering-facultystaff
- dst: ucbprod-english
path: english
src: ucb-english
- dst: ucbprod-english-language-notes
path: english-language-notes
src: ucb-english-language-notes
- dst: ucbprod-enrollment-management
path: enrollment-management
src: ucb-enrollment-management
- dst: ucbprod-envd
path: envd
src: ucb-envd
- dst: ucbprod-envs
path: envs
src: ucb-envs
- dst: ucbprod-era
path: era
src: ucb-era
- dst: ucbprod-ethnicstudies
path: ethnicstudies
src: ucb-ethnicstudies
- dst: ucbprod-even
path: even
src: ucb-even
- dst: ucbprod-event-bookfest
path: event/bookfest
src: ucb-event-bookfest
- dst: ucbprod-event-buffalobicycleclassic
path: event/buffalobicycleclassic
src: ucb-event-buffalobicycleclassic
- dst: ucbprod-event-eiabridgebuilder
path: event/eiabridgebuilder
src: ucb-event-eiabridgebuilder
- dst: ucbprod-event-ifest
path: event/ifest
src: ucb-event-ifest
- dst: ucbprod-event-tedxcu
path: event/tedxcu
src: ucb-event-tedxcu
- dst: ucbprod-eventsplanning
path: eventsplanning
src: ucb-eventsplanning
- dst: ucbprod-ewb
path: ewb
src: ucb-ewb
- dst: ucbprod-exploratorystudies
path: exploratorystudies
src: ucb-exploratorystudies
- dst: ucbprod-facilities-cmci-equipment
path: facilities/cmci-equipment
src: ucb-facilities-cmci-equipment
- dst: ucbprod-facilities-standards
path: facilities-standards
src: ucb-facilities-standards
- dst: ucbprod-facility-biochemistry-cell-culture
path: facility/biochemistry-cell-culture
src: ucb-facility-biochemistry-cell-culture
- dst: ucbprod-facility-biokem
path: facility/biokem
src: ucb-facility-biokem
- dst: ucbprod-facility-biomolecular-x-ray-crystallography
path: facility/biomolecular-x-ray-crystallography
src: ucb-facility-biomolecular-x-ray-crystallography
- dst: ucbprod-facility-cosinc
path: facility/cosinc
src: ucb-facility-cosinc
- dst: ucbprod-facility-ems
path: facility/ems
src: ucb-facility-ems
- dst: ucbprod-facility-jscbb
path: facility/jscbb
src: ucb-facility-jscbb
- dst: ucbprod-faculty-alleman
path: faculty/alleman
src: ucb-faculty-alleman
- dst: ucbprod-faculty-alwakeel
path: faculty/alwakeel
src: ucb-faculty-alwakeel
- dst: ucbprod-faculty-anderson
path: faculty/anderson
src: ucb-faculty-anderson
- dst: ucbprod-faculty-anderson-ken
path: faculty/anderson-ken
src: ucb-faculty-anderson-ken
- dst: ucbprod-faculty-ashraf-asa
path: faculty/ashraf-asa
src: ucb-faculty-ashraf-asa
- dst: ucbprod-faculty-avila-sara
path: faculty/avila-sara
src: ucb-faculty-avila-sara
- dst: ucbprod-faculty-beer
path: faculty/beer
src: ucb-faculty-beer
- dst: ucbprod-faculty-bhuvana-narasimhan
path: faculty/bhuvana-narasimhan
src: ucb-faculty-bhuvana-narasimhan
- dst: ucbprod-faculty-bogatin
path: faculty/bogatin
src: ucb-faculty-bogatin
- dst: ucbprod-faculty-bolhari
path: faculty/bolhari
src: ucb-faculty-bolhari
- dst: ucbprod-faculty-bosanac
path: faculty/bosanac
src: ucb-faculty-bosanac
- dst: ucbprod-faculty-bottenus
path: faculty/bottenus
src: ucb-faculty-bottenus
- dst: ucbprod-faculty-boyd
path: faculty/boyd
src: ucb-faculty-boyd
- dst: ucbprod-faculty-burns
path: faculty/burns
src: ucb-faculty-burns
- dst: ucbprod-faculty-cadena
path: faculty/cadena
src: ucb-faculty-cadena
- dst: ucbprod-faculty-celoza
path: faculty/celoza
src: ucb-faculty-celoza
- dst: ucbprod-faculty-chen-yongmin
path: faculty/chen-yongmin
src: ucb-faculty-chen-yongmin
- dst: ucbprod-faculty-clark-torin
path: faculty/clark-torin
src: ucb-faculty-clark-torin
- dst: ucbprod-faculty-corradini
path: faculty/corradini
src: ucb-faculty-corradini
- dst: ucbprod-faculty-cowell-andrew
path: faculty/cowell-andrew
src: ucb-faculty-cowell-andrew
- dst: ucbprod-faculty-do
path: faculty/do
src: ucb-faculty-do
- dst: ucbprod-faculty-ferris
path: faculty/ferris
src: ucb-faculty-ferris
- dst: ucbprod-faculty-frajzyngier
path: faculty/frajzyngier
src: ucb-faculty-frajzyngier
- dst: ucbprod-faculty-gupta
path: faculty/gupta
src: ucb-faculty-gupta
- dst: ucbprod-faculty-henze
path: faculty/henze
src: ucb-faculty-henze
- dst: ucbprod-faculty-hernandez
path: faculty/hernandez
src: ucb-faculty-hernandez
- dst: ucbprod-faculty-hodge
path: faculty/hodge
src: ucb-faculty-hodge
- dst: ucbprod-faculty-hubler
path: faculty/hubler
src: ucb-faculty-hubler
- dst: ucbprod-faculty-hulden-vilja
path: faculty/hulden-vilja
src: ucb-faculty-hulden-vilja
- dst: ucbprod-faculty-jessup
path: faculty/jessup
src: ucb-faculty-jessup
- dst: ucbprod-faculty-juliet-gopinath
path: faculty/juliet-gopinath
src: ucb-faculty-juliet-gopinath
- dst: ucbprod-faculty-kaffine
path: faculty/kaffine
src: ucb-faculty-kaffine
- dst: ucbprod-faculty-karengebhardt
path: faculty/karengebhardt
src: ucb-faculty-karengebhardt
- dst: ucbprod-faculty-kimbrough-keller
path: faculty/kimbrough-keller
src: ucb-faculty-kimbrough-keller
- dst: ucbprod-faculty-kmaskus
path: faculty/kmaskus
src: ucb-faculty-kmaskus
- dst: ucbprod-faculty-korak
path: faculty/korak
src: ucb-faculty-korak
- dst: ucbprod-faculty-krarti
path: faculty/krarti
src: ucb-faculty-krarti
- dst: ucbprod-faculty-laguna
path: faculty/laguna
src: ucb-faculty-laguna
- dst: ucbprod-faculty-lehmantamara
path: faculty/lehmantamara
src: ucb-faculty-lehmantamara
- dst: ucbprod-faculty-liu-liu
path: faculty/liu-liu
src: ucb-faculty-liu-liu
- dst: ucbprod-faculty-mcclure
path: faculty/mcclure
src: ucb-faculty-mcclure
- dst: ucbprod-faculty-mcgilvray-dennis
path: faculty/mcgilvray-dennis
src: ucb-faculty-mcgilvray-dennis
- dst: ucbprod-faculty-mcleod
path: faculty/mcleod
src: ucb-faculty-mcleod
- dst: ucbprod-faculty-mcmahon
path: faculty/mcmahon
src: ucb-faculty-mcmahon
- dst: ucbprod-faculty-nakassis
path: faculty/nakassis
src: ucb-faculty-nakassis
- dst: ucbprod-faculty-palmer-martha
path: faculty/palmer-martha
src: ucb-faculty-palmer-martha
- dst: ucbprod-faculty-pao
path: faculty/pao
src: ucb-faculty-pao
- dst: ucbprod-faculty-pellegrino
path: faculty/pellegrino
src: ucb-faculty-pellegrino
- dst: ucbprod-faculty-piketmay-melinda
path: faculty/piketmay-melinda
src: ucb-faculty-piketmay-melinda
- dst: ucbprod-faculty-popovic-zoya
path: faculty/popovic-zoya
src: ucb-faculty-popovic-zoya
- dst: ucbprod-faculty-preston
path: faculty/preston
src: ucb-faculty-preston
- dst: ucbprod-faculty-richter-matthias
path: faculty/richter-matthias
src: ucb-faculty-richter-matthias
- dst: ucbprod-faculty-samueloberdick
path: faculty/samueloberdick
src: ucb-faculty-samueloberdick
- dst: ucbprod-faculty-shaheen
path: faculty/shaheen
src: ucb-faculty-shaheen
- dst: ucbprod-faculty-sheldon-masters
path: faculty/sheldon-masters
src: ucb-faculty-sheldon-masters
- dst: ucbprod-faculty-shi-yuan
path: faculty/shi-yuan
src: ucb-faculty-shi-yuan
- dst: ucbprod-faculty-shields
path: faculty/shields
src: ucb-faculty-shields
- dst: ucbprod-faculty-shriver-scott
path: faculty/scott-shriver
src: ucb-faculty-shriver-scott
- dst: ucbprod-faculty-song
path: faculty/song
src: ucb-faculty-song
- dst: ucbprod-faculty-summers
path: faculty/summers
src: ucb-faculty-summers
- dst: ucbprod-faculty-whitehead
path: faculty/whitehead
src: ucb-faculty-whitehead
- dst: ucbprod-faculty-zax
path: faculty/zax
src: ucb-faculty-zax
- dst: ucbprod-faculty-zea-luis
path: faculty/zea-luis
src: ucb-faculty-zea-luis
- dst: ucbprod-faculty-zunger-matter-by-design
path: faculty/zunger-matter-by-design
src: ucb-faculty-zunger-matter-by-design
- dst: ucbprod-facultydevelopmentandsupport
path: fds
src: ucb-facultydevelopmentandsupport
- dst: ucbprod-fbs
path: fbs
src: ucb-fbs
- dst: ucbprod-fcq
path: fcq
src: ucb-fcq
- dst: ucbprod-financialaid
path: financialaid
src: ucb-financialaid
- dst: ucbprod-firelifesafety
path: firelifesafety
src: ucb-firelifesafety
- dst: ucbprod-fis
path: fis
src: ucb-fis
- dst: ucbprod-fm
path: fm
src: ucb-fm
- dst: ucbprod-fmenergy
path: fmenergy
src: ucb-fmenergy
- dst: ucbprod-fmgreen
path: fmgreen
src: ucb-fmgreen
- dst: ucbprod-frenchitalian
path: frenchitalian
src: ucb-frenchitalian
- dst: ucbprod-fsap
path: fsap
src: ucb-fsap
- dst: ucbprod-gaann-infrastructure
path: gaann-infrastructure
src: ucb-gaann-infrastructure
- dst: ucbprod-geography
path: geography
src: ucb-geography
- dst: ucbprod-geologicalsciences
path: geologicalsciences
src: ucb-geologicalsciences
- dst: ucbprod-geophysics
path: geophysics
src: ucb-geophysics
- dst: ucbprod-gis-cad
path: gis-cad
src: ucb-gis-cad
- dst: ucbprod-global
path: global
src: ucb-global
- dst: ucbprod-globalclimatesummit
path: globalclimatesummit
src: ucb-globalclimatesummit
- dst: ucbprod-gpsg
path: gpsg
src: ucb-gpsg
- dst: ucbprod-grandchallenge
path: grandchallenge
src: ucb-grandchallenge
- dst: ucbprod-greeks
path: greeks
src: ucb-greeks
- dst: ucbprod-gsll
path: gsll
src: ucb-gsll
- dst: ucbprod-health
path: health
src: ucb-health
- dst: ucbprod-healthcenter
path: healthcenter
src: ucb-healthcenter
- dst: ucbprod-herbst
path: herbst
src: ucb-herbst
- dst: ucbprod-history
path: history
src: ucb-history
- dst: ucbprod-homecoming
path: homecoming
src: ucb-homecoming
- dst: ucbprod-hometowns
path: hometowns
src: ucb-hometowns
- dst: ucbprod-honorsjournal
path: honorsjournal
src: ucb-honorsjournal
- dst: ucbprod-hprap
path: hprap
src: ucb-hprap
- dst: ucbprod-hr
path: hr
src: ucb-hr
- dst: ucbprod-humanities
path: humanities
src: ucb-humanities
- dst: ucbprod-i-camp
path: i-camp
src: ucb-i-camp
- dst: ucbprod-iafs
path: iafs
src: ucb-iafs
- dst: ucbprod-ibg
path: ibg
src: ucb-ibg
- dst: ucbprod-ics
path: ics
src: ucb-ics
- dst: ucbprod-ictintegrity
path: ictintegrity
src: ucb-ictintegrity
- dst: ucbprod-ideaforge
path: ideaforge
src: ucb-ideaforge
- dst: ucbprod-imagingservices
path: imagingservices
src: ucb-imagingservices
- dst: ucbprod-industry
path: industry
src: ucb-industry
- dst: ucbprod-information-technology
path: information-technology
src: ucb-information-technology
- dst: ucbprod-infoscience
path: infoscience
src: ucb-infoscience
- dst: ucbprod-infrastructure-sustainability
path: infrastructure-sustainability
src: ucb-infrastructure-sustainability
- dst: ucbprod-initiative-applied-history
path: initiative/applied-history
src: ucb-initiative-applied-history
- dst: ucbprod-initiative-cdi
path: initiative/cdi
src: ucb-initiative-cdi
- dst: ucbprod-initiative-cu-boulder-rural-network
path: initiative/cu-boulder-rural-network
src: ucb-initiative-cu-boulder-rural-network
- dst: ucbprod-initiative-cubit
path: initiative/cubit
src: ucb-initiative-cubit
- dst: ucbprod-initiative-newscorps
path: initiative/newscorps
src: ucb-initiative-newscorps
- dst: ucbprod-initiative-space-and-sustainability
path: initiative/space-and-sustainability
src: ucb-initiative-space-and-sustainability
- dst: ucbprod-innovate
path: innovate
src: ucb-innovate
- dst: ucbprod-international
path: international
src: ucb-international
- dst: ucbprod-involvement
path: involvement
src: ucb-involvement
- dst: ucbprod-invst
path: invst
src: ucb-invst
- dst: ucbprod-iphy
path: iphy
src: ucb-iphy
- dst: ucbprod-irt-engineering-education-ai
path: irt/engineering-education-ai
src: ucb-irt-engineering-education-ai
- dst: ucbprod-irt-hypersonic-vehicles
path: irt/hypersonic-vehicles
src: ucb-irt-hypersonic-vehicles
- dst: ucbprod-irt-mfm
path: irt/mfm
src: ucb-irt-mfm
- dst: ucbprod-isiec
path: isiec
src: ucb-isiec
- dst: ucbprod-ismrc
path: ismrc
src: ucb-ismrc
- dst: ucbprod-isss
path: isss
src: ucb-isss
- dst: ucbprod-janegoodall
path: janegoodall
src: ucb-janegoodall
- dst: ucbprod-jewishstudies
path: jewishstudies
src: ucb-jewishstudies
- dst: ucbprod-jobs
path: jobs
src: ucb-jobs
- dst: ucbprod-journal-assembly
path: journal/assembly
src: ucb-journal-assembly
- dst: ucbprod-jtc
path: jtc
src: ucb-jtc
- dst: ucbprod-keller
path: keller
src: ucb-keller
- dst: ucbprod-klinden
path: klinden
src: ucb-klinden
- dst: ucbprod-lab-aaron-whiteley
path: lab/aaron-whiteley
src: ucb-lab-aaron-whiteley