forked from skwp/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
2761 lines (2198 loc) · 280 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="utf-8">
<link rel="dns-prefetch" href="https://github.githubassets.com">
<link rel="dns-prefetch" href="https://avatars.githubusercontent.com">
<link rel="dns-prefetch" href="https://github-cloud.s3.amazonaws.com">
<link rel="dns-prefetch" href="https://user-images.githubusercontent.com/">
<link rel="preconnect" href="https://github.githubassets.com" crossorigin>
<link rel="preconnect" href="https://avatars.githubusercontent.com">
<link crossorigin="anonymous" media="all" integrity="sha512-dkuYFW+ra8yYSt342e5pJEeslPSjMcrMvNxlYZMyM/X+/WJHDPvoCuGq3LFojI7B0dQWwZNRiPMnbi9IfUgTaA==" rel="stylesheet" href="https://github.githubassets.com/assets/light-764b98156fab6bcc984addf8d9ee6924.css" /><link crossorigin="anonymous" media="all" integrity="sha512-UrAu23+eyncWvaQFwsLbgSKtmLb2aH1bcT4hJnnRdkaPuY1eu9bumt33FyHHFDX8hskTUNWNkIsMCz7FWQQHwA==" rel="stylesheet" href="https://github.githubassets.com/assets/dark-52b02edb7f9eca7716bda405c2c2db81.css" /><link data-color-theme="light" crossorigin="anonymous" media="all" integrity="sha512-dkuYFW+ra8yYSt342e5pJEeslPSjMcrMvNxlYZMyM/X+/WJHDPvoCuGq3LFojI7B0dQWwZNRiPMnbi9IfUgTaA==" rel="stylesheet" data-href="https://github.githubassets.com/assets/light-764b98156fab6bcc984addf8d9ee6924.css" /><link data-color-theme="dark" crossorigin="anonymous" media="all" integrity="sha512-UrAu23+eyncWvaQFwsLbgSKtmLb2aH1bcT4hJnnRdkaPuY1eu9bumt33FyHHFDX8hskTUNWNkIsMCz7FWQQHwA==" rel="stylesheet" data-href="https://github.githubassets.com/assets/dark-52b02edb7f9eca7716bda405c2c2db81.css" /><link data-color-theme="dark_dimmed" crossorigin="anonymous" media="all" integrity="sha512-kyu73YWtU8Fu2e7p+Hv094CRhaTvr8yy95vc1SQ2+MeWVWakGeIh/lv9yIFaYAb8J3oM6uBLGcn1kS6M1GxBCQ==" rel="stylesheet" data-href="https://github.githubassets.com/assets/dark_dimmed-932bbbdd85ad53c16ed9eee9f87bf4f7.css" /><link data-color-theme="dark_high_contrast" crossorigin="anonymous" media="all" integrity="sha512-jZSKF7Gx8T/AFthO0CUkWWpG5EBlIZb+tIYu8KgP/kizn7fpXEiXJcB73GTZ69wSVVSZ6Y1Cw286qP7pVZr0gg==" rel="stylesheet" data-href="https://github.githubassets.com/assets/dark_high_contrast-8d948a17b1b1f13fc016d84ed0252459.css" /><link data-color-theme="dark_colorblind" crossorigin="anonymous" media="all" integrity="sha512-E02WD8opZPpYu6LM9dlUSIHQgXtLmzi1KxMnaN/SA7k6ILsvpNJjpkBPU1sC98MitAOkCNIe6ozqY8+pHnrHZg==" rel="stylesheet" data-href="https://github.githubassets.com/assets/dark_colorblind-134d960fca2964fa58bba2ccf5d95448.css" /><link data-color-theme="light_colorblind" crossorigin="anonymous" media="all" integrity="sha512-VWdBPHZj3WCDwaO0N2W8yvDZt7TNZohRIYK4sjjSU56485rCWazxnLr4p3DU8eqn2+eSj3CYYpw4+DzmwHOwew==" rel="stylesheet" data-href="https://github.githubassets.com/assets/light_colorblind-5567413c7663dd6083c1a3b43765bcca.css" /><link data-color-theme="light_high_contrast" crossorigin="anonymous" media="all" integrity="sha512-dw8LrBQMvo9HDd5lo2UEp/tvMVR6zJjrQkQTBVrhyaHDlL1p7UiQ9/xpqYxOz9s7s1Qh5Bjokuzu7NX0U5BeYA==" rel="stylesheet" data-href="https://github.githubassets.com/assets/light_high_contrast-770f0bac140cbe8f470dde65a36504a7.css" />
<link crossorigin="anonymous" media="all" integrity="sha512-VvfOEx8F6LRa1nh/1LEiw5jFLK0kJ+WE1LvuhfNDQkGC8vTGi5yYqCdPEPeBM9lNG7/pQ5cSU2/gOdE03JLCMg==" rel="stylesheet" href="https://github.githubassets.com/assets/frameworks-56f7ce131f05e8b45ad6787fd4b122c3.css" />
<link crossorigin="anonymous" media="all" integrity="sha512-QounzXWYX5Fc85mEkQ1UCtonxEpaMS7hZVSZs9/K+uOkLQx2xzULQg03zRvoxrAnWSqL/9ICM7VKiQ0lOBIBaQ==" rel="stylesheet" href="https://github.githubassets.com/assets/behaviors-428ba7cd75985f915cf39984910d540a.css" />
<link crossorigin="anonymous" media="all" integrity="sha512-snW0Fh5VJcWGF5bU9u1W6WMlfbLDsAn9vLx8z6b37RVWr59btn7RpwdWg+w3+gsN31ZwKyYe9MTowM8R8B7WLg==" rel="stylesheet" href="https://github.githubassets.com/assets/tab-size-fix-b275b4161e5525c5861796d4f6ed56e9.css" />
<link crossorigin="anonymous" media="all" integrity="sha512-5vAhoRfHKmX5H5gW1c2Vo78eisI5qlICelPz0BwzEjeAFKMtXCqvoBPJu/27Z8oR2mVp0fyuAI/Mo2KY9JNOMg==" rel="stylesheet" href="https://github.githubassets.com/assets/github-e6f021a117c72a65f91f9816d5cd95a3.css" />
<link crossorigin="anonymous" media="all" integrity="sha512-ndqayzxZrRWQRag9hwzylb/ETy9O/7U5+/Wh+aJFHbbDZeTwFLQx2yVuNgLEWp75urqYy4Y8Nzqw0OW01Q6shA==" rel="stylesheet" href="https://github.githubassets.com/assets/site-9dda9acb3c59ad159045a83d870cf295.css" />
<link crossorigin="anonymous" media="all" integrity="sha512-o4eFp/DGy/eDqSycVSae2mXMbNZ2Q/Faafe6XcgPWKNWOCGSYw+HadyjN+rnzlCJAJnfHoQuzSWOH/j8EnHEqA==" rel="stylesheet" href="https://github.githubassets.com/assets/home-a38785a7f0c6cbf783a92c9c55269eda.css" />
<script crossorigin="anonymous" defer="defer" integrity="sha512-vkftKchtwD8WsIMRv6keDt+WfX8+SAcIsUPCrzBbL2ojw8iJ1qck2x+XFSii9xkMywZvwKOvVkGMdm09IUjmlg==" type="application/javascript" src="https://github.githubassets.com/assets/environment-be47ed29.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-keEIaWcGI4tw/WRD6CakRsfB8Q4hqbyp78H0jjyYByhq/IXwRrnP/Qk0IYmJgAxl/5TPXI9pBtOHyqj4W7U50A==" type="application/javascript" src="https://github.githubassets.com/assets/chunk-frameworks-91e10869.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-4jSins+ZVnRiuzb1eltHt0Msku5cBdZyF5/nC8RVXKnRDbRa7PrVP4jfxtOJMELetCsPmK26jD8QMPZ7xsu/Sg==" type="application/javascript" src="https://github.githubassets.com/assets/chunk-vendor-e234a29e.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-eWaxvawqO74gg03gU9D2Q/abR3RgRRVqAIuVLnGdPkemTC8esTMT8AxFNpQbnkQXHv/P/GuG1Jk5s3s0CRx3+Q==" type="application/javascript" src="https://github.githubassets.com/assets/behaviors-7966b1bd.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-rxTOhg5NI8U8Fy/5bAr+FRKyH9buaBX50pbcnN+jWXQbnhICGHCErhWsD5rnTab35fwJlBNhWNdAo25pinIkKQ==" type="application/javascript" src="https://github.githubassets.com/assets/notifications-global-af14ce86.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-bnTiV3ChTOIytbYke2f/akOZjF8qc2ZcMxdRvcKFhcPnrqRggcbDk++jYMo4VmZGICVtKMzH3ZBKxAtU75JocA==" type="application/javascript" data-module-id="./chunk-action-list-element.js" data-src="https://github.githubassets.com/assets/chunk-action-list-element-6e74e257.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-8lFeMPD4akYYJTK4foKlQ+lH3gdJwMFML7I5NJfsZCGouNEBtSLdHH6ZYgBZtGwfdu+ixG2RfUUZ1veqWKJYmw==" type="application/javascript" data-module-id="./chunk-advanced.js" data-src="https://github.githubassets.com/assets/chunk-advanced-f2515e30.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-iG8aKaXiAy7ONu7OJuY1pf3FGFzrs4mYYGnUD47a1kXP5URyMlP1RpAFyWTFeyirHY/UoR2mmkkBD40j/9ouPA==" type="application/javascript" data-module-id="./chunk-animate-on-scroll.js" data-src="https://github.githubassets.com/assets/chunk-animate-on-scroll-886f1a29.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-DR/O+c2yX9jstdyxwVDlaM8zRuOACj/aap9ABecyw8toE3a9rXjQgytQlFPQu74JufIDXrD3E1xAOX+ZscWG1g==" type="application/javascript" data-module-id="./chunk-area.js" data-src="https://github.githubassets.com/assets/chunk-area-0d1fcef9.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-lchWLejOHZUQUJA5VcNlSnbRzzpiJVi0Sg1NcZTkhocfF0PDO8LeAkitCPsqUWW6F2hznj3bDp2rouTLXug6/Q==" type="application/javascript" data-module-id="./chunk-array.js" data-src="https://github.githubassets.com/assets/chunk-array-95c8562d.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-+4dXpYDj5COKTdic7RPF4KJt8XQDKgtbcNHUdojLqRYPO9tK4A9RFVr61WpJWW8RF1YMGBNbj8UJtTECowOjVw==" type="application/javascript" data-module-id="./chunk-async-export.js" data-src="https://github.githubassets.com/assets/chunk-async-export-fb8757a5.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-tBLBnjccTx7kDAaE0oWKjTipmfQMUs2g9gLYvG4Y5UTJP0vmE+PB3GYbMXkHEUPlYHMpAHIp5NpLhXy68qCcSg==" type="application/javascript" data-module-id="./chunk-band.js" data-src="https://github.githubassets.com/assets/chunk-band-b412c19e.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-4lZj8K0+0CGwZcmYak8HqT7NkcMJMcRII+SSDjswbZrQfdoYs6lpZ+6VzDP4qe/ygr5/TigI5cW6XPFiVd066A==" type="application/javascript" data-module-id="./chunk-bar-chart.js" data-src="https://github.githubassets.com/assets/chunk-bar-chart-e25663f0.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-/AQ6MsKM/fwGtOejF9CLiYnp0UjOyFdLAFxB/5Xlt5U21nZgIbfAiGLtkcDLjqt9f0GsQF95rNpNdJAVgfdDKg==" type="application/javascript" data-module-id="./chunk-branch-from-issue-button.js" data-src="https://github.githubassets.com/assets/chunk-branch-from-issue-button-fc043a32.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-eEVEnzhsfw53A/Zgq30yCOQoNt9rL/K0K4YhX1iM77ldszTVaOexc+s1nMLFRr6wp/AwHQ7i7OvNKtT7rFZ9/A==" type="application/javascript" data-module-id="./chunk-code-frequency-graph-element.js" data-src="https://github.githubassets.com/assets/chunk-code-frequency-graph-element-7845449f.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-jNV3X9rYbM+OIv29fcPTKqJczxgGRunhkDDAUH0GyzLq5hCzf7+wgNpad/lP7JsAn3qKzi3j0fx2YKh0lwCRug==" type="application/javascript" data-module-id="./chunk-codemirror.js" data-src="https://github.githubassets.com/assets/chunk-codemirror-8cd5775f.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-JzgkuDECne1pSMuCeKgrahMjbTRn6ucMKHPekcNzZJU8LuTFndvIoaI11sdas7kFFEF3kvmK2iKadUx0L6P6mA==" type="application/javascript" data-module-id="./chunk-codespaces-policy-form-element.js" data-src="https://github.githubassets.com/assets/chunk-codespaces-policy-form-element-273824b8.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-xhSAO0KtnFAlRqAK+mg8BPj/J334ccvnCmmjmBQBCgZcsoO9teHJSS6oAn3XOWYFsWPU2JehwG7S3OVEbLwdUg==" type="application/javascript" data-module-id="./chunk-color-modes.js" data-src="https://github.githubassets.com/assets/chunk-color-modes-c614803b.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-KfeSD5whwunQaZhbvbfdyWRxj1OZN6GUXzBiUlujO00WdoINyZXl4LubRhEb5nMxvQQty7dkxk56XuOQU7LQEw==" type="application/javascript" data-module-id="./chunk-command-palette-item-element.js" data-src="https://github.githubassets.com/assets/chunk-command-palette-item-element-29f7920f.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-OTXJe45osM7i+FYOiN4GNAojK4ofVAPa6XvbZVvpVwN0hG7POZEbLYrvNIS2zXk6rF4Kl+mIUWPPTDoabnMnMA==" type="application/javascript" data-module-id="./chunk-command-palette-page-element.js" data-src="https://github.githubassets.com/assets/chunk-command-palette-page-element-3935c97b.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-CC2sHfr2HSQfHfyZVFNK/u4TUAEDxlhtdTcrW/B1p/9Wo4iD1c/4VTju8pva8VlNXVS5dEfK79zyar911dC7zw==" type="application/javascript" data-module-id="./chunk-command-palette-page-stack-element.js" data-src="https://github.githubassets.com/assets/chunk-command-palette-page-stack-element-082dac1d.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-b/pKU9MqB7kA9+rmcfCcEEDAjYvtLihDuW435Uohe8XRiad/RwKysOAUPVPMctllfNq/2KKFAiLO+jh+99huVA==" type="application/javascript" data-module-id="./chunk-commit-activity-graph-element.js" data-src="https://github.githubassets.com/assets/chunk-commit-activity-graph-element-6ffa4a53.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-6n5CAU+hn/JxTZ2JHp4WRfFdZzz3Ucc0KkXPDbSLYkZo7gJtpa/7CSFcIpNk5rXBWDRjH2PQXkNZyxYkPJfYiw==" type="application/javascript" data-module-id="./chunk-community-contributions.js" data-src="https://github.githubassets.com/assets/chunk-community-contributions-ea7e4201.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-HDsLJf6gAN+WDFaJneJwmIY82XkZKWqeX7tStBLRh1XM53K8vMV6JZvjq/UQXszaNVWxWcuYtgYTG6ZWo8+QSw==" type="application/javascript" data-module-id="./chunk-confetti.js" data-src="https://github.githubassets.com/assets/chunk-confetti-1c3b0b25.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-lVgRr0+tI0xOSqg0KRwUIXgHFNZVPIVkjok+tLfkuUNDcoM8CKRuoqbMlw2H7QQ3dfMN36XJbTy3ugG/qo8Czg==" type="application/javascript" data-module-id="./chunk-contributions-spider-graph.js" data-src="https://github.githubassets.com/assets/chunk-contributions-spider-graph-955811af.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-CtK5osK3iBBvlb/4Zt30ZF5sNWD0qp72JTe7LdPBlG0WkHM7JjVRt8RbHMrORMWVjkF7Qi78s/Xdcy9chxFZSw==" type="application/javascript" data-module-id="./chunk-contributors-graph-element.js" data-src="https://github.githubassets.com/assets/chunk-contributors-graph-element-0ad2b9a2.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-AdShwMIaVrtYr+LC9cc7rsC64wQJgoCdDjLJXaD4kVhdmuld7dk748AQueuoomE4OZypdoHSPmxQ56Wge/qtig==" type="application/javascript" data-module-id="./chunk-cookies.js" data-src="https://github.githubassets.com/assets/chunk-cookies-01d4a1c0.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-jitxouuFY6SUcDZV5W3jhadVEIfFBfCQZxfPV3kxNnsWEBzbxMJFp0ccLb7+OlBjSs1zU/MNtuOV6T9Ay7lx4w==" type="application/javascript" data-module-id="./chunk-copy.js" data-src="https://github.githubassets.com/assets/chunk-copy-8e2b71a2.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-miaiZ1xkDsWBUsURHOmeYtbgVKQGnm1octCo/lDXUmPzDyjtubnHULRVw1AK+sttwdwyB0+LOyhIVAWCNSGx+A==" type="application/javascript" data-module-id="./chunk-delayed-loading-element.js" data-src="https://github.githubassets.com/assets/chunk-delayed-loading-element-9a26a267.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-g9egUfzV36Fhfld8PbxfEm/V9ePFqvd9i5DIKra4wJ61M/AnpOOadhUD2CZ//ww84eRnAMJRQRHOYZ2wZRo2IQ==" type="application/javascript" data-module-id="./chunk-dependencies.js" data-src="https://github.githubassets.com/assets/chunk-dependencies-83d7a051.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-nRr9tCW+A7HCZ7Fa3Ph4LGXO2HuUhAL+Q/QDj2r4KSdTt5ITBq1tUsfu4tlhVozGKpuAgZhBoYzCifaq501QBw==" type="application/javascript" data-module-id="./chunk-discussion-page-views.js" data-src="https://github.githubassets.com/assets/chunk-discussion-page-views-9d1afdb4.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-sYHmS7v+XI7Xevj7YY+iw36agJCINglbleSlaxlerVR60maGx80bUp8hN0ewOvB+X31FojqjG20AGqWDuE6OPQ==" type="application/javascript" data-module-id="./chunk-discussions-daily-contributors.js" data-src="https://github.githubassets.com/assets/chunk-discussions-daily-contributors-b181e64b.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-Akavlvu0VtbgOhne+qHvPFB+zryy4OPPiNUibRBqLUpXTTBHjqaZLiU2PvB2XAD7Vi1jStGlSO8gxZEVlraaTA==" type="application/javascript" data-module-id="./chunk-discussions-new-contributors.js" data-src="https://github.githubassets.com/assets/chunk-discussions-new-contributors-0246af96.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-T092OZtYeslxDIimT2TR4IWlO+6B9q6zenOAqRekKME3TgdR1nKinRgV0PTYZ3Y3IITjimtvjqQpN5kW11o0bw==" type="application/javascript" data-module-id="./chunk-drag-drop.js" data-src="https://github.githubassets.com/assets/chunk-drag-drop-4f4f7639.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-EvJ2Fip59DXgARNuwTWgjdVqoCjhXQL73SP9yexijlWStKq92sfbKeGK5R4wIP0QOr39WsnW/Kaw3Wpl1QPfog==" type="application/javascript" data-module-id="./chunk-edit-hook-secret-element.js" data-src="https://github.githubassets.com/assets/chunk-edit-hook-secret-element-12f27616.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-lJhSlHBxDYfafMGsvjfmbReBxHE64RGTSucXtcG3vTpWvu2vlw/heQjiHB+JwYpnWvcXh0Tn9oLlo90LEpUfIA==" type="application/javascript" data-module-id="./chunk-edit.js" data-src="https://github.githubassets.com/assets/chunk-edit-94985294.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-6tEhsGQ/83I2ttMZD5WpT0LS99zL4PWHRQeY1Z+s3o0WkzmBFBzzc+gEMOMlqPg5j1m6Hf5sqV24lio1HnONtQ==" type="application/javascript" data-module-id="./chunk-emoji-picker-element.js" data-src="https://github.githubassets.com/assets/chunk-emoji-picker-element-ead121b0.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-euLLeTFpj2DeM/lF0qLZedbrh2iLKL86jMNj8ydBs0Dr24s0ZxmdYnenUo2UIVD8r3t2DgXaahNQmstHlXpmtA==" type="application/javascript" data-module-id="./chunk-extent.js" data-src="https://github.githubassets.com/assets/chunk-extent-7ae2cb79.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-/9+Gs+UKR/PemDVjlm4iZStHqvVzQ6bomJc6qtgYz7rGHPiuLjqOa+pfPSl3ZPje3Hu7byYTqUcck1kaNaviNg==" type="application/javascript" data-module-id="./chunk-failbot.js" data-src="https://github.githubassets.com/assets/chunk-failbot-ffdf86b3.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-aGaoVKNIqNkSpelOnfn0UCDbQLW2XBUVVkOOgVZXFNDfgJgFQNMXALc0964DwIi9kYrkYQIShePOSMFo20hHkw==" type="application/javascript" data-module-id="./chunk-feature-callout-element.js" data-src="https://github.githubassets.com/assets/chunk-feature-callout-element-6866a854.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-5r/m4Q9I8PFeDYmfZIE5Nmi+ua6kmrqzCpKXwr/9uKdNZe3Vcywf3vzVHxc8ggzU8ujHJqGIMTZXF/E2N+tFtg==" type="application/javascript" data-module-id="./chunk-file-filter-element.js" data-src="https://github.githubassets.com/assets/chunk-file-filter-element-e6bfe6e1.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-L96VWoPFQ2rcStzFXdzmgexD5TB56eHz/MbCvprelVTX3ZNK4c8SDHc+UTdyoETQdpHCQ1bUaG1mOS8fX8tS3g==" type="application/javascript" data-module-id="./chunk-file-filter-persistence.js" data-src="https://github.githubassets.com/assets/chunk-file-filter-persistence-2fde955a.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-LLVdJQif1BgRzuQFbWBiPXy28bE1BCIJqarOtKa57WMmn31/Saf/xcfVHkP4uc5bKw9iwyzMrD5pE6WJEX2KGQ==" type="application/javascript" data-module-id="./chunk-file-tree-toggle-element.js" data-src="https://github.githubassets.com/assets/chunk-file-tree-toggle-element-2cb55d25.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-I9wNHoFMytxotq0/rYQH2znjJloqcx6IOGDKlNBvyIoD4uNKL8fsSGTt7zOQMSfbpNUxQa+0quiHxk1yqDTGlA==" type="application/javascript" data-module-id="./chunk-filter-input.js" data-src="https://github.githubassets.com/assets/chunk-filter-input-23dc0d1e.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-kVy17IyyakYvFLZI9rEXv7Ni4dfbFfBygl1qejVCwedpibW58SzWthRzJ5hMgVu1PVtAayoagV4cN0WbYs0CaQ==" type="application/javascript" data-module-id="./chunk-format-symbol.js" data-src="https://github.githubassets.com/assets/chunk-format-symbol-915cb5ec.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-I5GWAgLNL1Ik55RAlli3NkR3h7jovmTh1NBBIZfPn47Y4ALgUdIV/bVqkysygt0Rpv/Zo/ISZQJJaFk9daQAjQ==" type="application/javascript" data-module-id="./chunk-get-repo-element.js" data-src="https://github.githubassets.com/assets/chunk-get-repo-element-23919602.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-rPd+hTV6AlyxJ3yjC/q++rrxChkMV3UgeChc9XVdX4fE5Bj9D7e5EBr77GNEmnkJurJtEZxkw2L1GXRALpXZnw==" type="application/javascript" data-module-id="./chunk-index.js" data-src="https://github.githubassets.com/assets/chunk-index-acf77e85.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-Q8q7N7XzNXhgaWGGb+GJg1j747S64eBnN4i9fBnc2ZC+iaTX4RNv7nP9QyHXBqKHusT2KuXfOGc2hO6STYS38A==" type="application/javascript" data-module-id="./chunk-input-demux.js" data-src="https://github.githubassets.com/assets/chunk-input-demux-43cabb37.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-MRVWeVjChpbblkQe6NzQxxNyRFM0HzPZGIMo4k6lcVCfKwL7lxwbpNCbSBGBkhaTwDRnwsyGseOmdotAEDRrVg==" type="application/javascript" data-module-id="./chunk-insights-query.js" data-src="https://github.githubassets.com/assets/chunk-insights-query-31155679.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-nA2LU3ewCaAPrIMp5S3TcXf7q8305wiP9JrM3z5RK2AFI2CjU5RGiprgFwXnEMRPJCbENY7f/Bn7uKsvrAprTA==" type="application/javascript" data-module-id="./chunk-invitations.js" data-src="https://github.githubassets.com/assets/chunk-invitations-9c0d8b53.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-d6n4sdIzGBBgD4+wd/bjETtX5curNyWnkrrbNe/wzRIUKaa4rDqGSogZKwVfSMawMmW+cLB8KQn60j/FeP6KJQ==" type="application/javascript" data-module-id="./chunk-jump-to.js" data-src="https://github.githubassets.com/assets/chunk-jump-to-77a9f8b1.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-L2jxBDS9QAN9O1qn7LqMcs0YJn/gF6xW73zSbWPRlVCEnG05dexaoJWkAG6RqALTnXLsj2GTUKnba6DATR828g==" type="application/javascript" data-module-id="./chunk-launch-code-element.js" data-src="https://github.githubassets.com/assets/chunk-launch-code-element-2f68f104.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-Ofx3kqtyFEDIYEwlJdpLaIB7njUGagLBdj/E83B7lAO2lb5Si686N/soI6u1GY05iRchqw3dDdXjeIqA9eBUwA==" type="application/javascript" data-module-id="./chunk-line-chart.js" data-src="https://github.githubassets.com/assets/chunk-line-chart-39fc7792.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-GHMEiXdvG00Lv7Tnj+S7/TnqlcyVi41j6xapftzfnYoGWz5iYCMK5XCoDFmCmSgliaA0pmVHO356D2u3zJCicw==" type="application/javascript" data-module-id="./chunk-line.js" data-src="https://github.githubassets.com/assets/chunk-line-18730489.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-gs5g5mTDedn2nKjW/raEMmyQ6mWY79wiFNzpKOAOVaUBo/aQvaRSXYMzhIcj0JqeDbxcLTL1hIScWa4d5xHLdg==" type="application/javascript" data-module-id="./chunk-linear.js" data-src="https://github.githubassets.com/assets/chunk-linear-82ce60e6.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-YUCb5GVAF8qPEnN/WtyP9j81k8qOlMzl35cLqVFLixJgBMqQ+ZT+ELoBUx2OTqs5IrYwqq9c+gk4O0qRN3h0EQ==" type="application/javascript" data-module-id="./chunk-locale.js" data-src="https://github.githubassets.com/assets/chunk-locale-61409be4.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-WUal4ElUh04sjRbFNlmGaoWj1I5YO0WNiLJ11Zq6/TbWxHYkbkICgszomeFnDwx4s9h9RIi3Pr5vhMLZXPiYxA==" type="application/javascript" data-module-id="./chunk-memex-project-picker-element.js" data-src="https://github.githubassets.com/assets/chunk-memex-project-picker-element-5946a5e0.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-cvjyIYhR2ZkuFAXHYZSjPTc5wXYOdISgqbXw69CXpDXdxffXmXuzjCcGJNVk3mDNYsVH4Q9sb2UMNPFrNxxRUQ==" type="application/javascript" data-module-id="./chunk-metric-selection-element.js" data-src="https://github.githubassets.com/assets/chunk-metric-selection-element-72f8f221.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-wpN+s55e0JkuffVR++S87PjAhQog0M/U4+l4pD/Ps8w9yNma6Pdmeij+RTxCSdDzqjgC9knsjPpZ5+ohkRd4ww==" type="application/javascript" data-module-id="./chunk-min.js" data-src="https://github.githubassets.com/assets/chunk-min-c2937eb3.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-MYHfk4RC1G7um5oS3Cg8p/6FekxAiWQQvmCR526sy3/Yxbe6WEgDm5D64atvKXEqPps/0VgTxmSUH4XICbv5sw==" type="application/javascript" data-module-id="./chunk-nodrag.js" data-src="https://github.githubassets.com/assets/chunk-nodrag-3181df93.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-x51kWxNaKiuBWTPZ+IX923ONOyqpFonKFirLe2zxxsIH6akLMo5eQR+aJu5XzrXE0tcaHMjk1Ko5mpJ8Kkp9Gg==" type="application/javascript" data-module-id="./chunk-notification-list-focus.js" data-src="https://github.githubassets.com/assets/chunk-notification-list-focus-c79d645b.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-RWT7+7BL+Z2PuAnskeLRgH0XZ64I2otQwG9atJKnM1TzwvdSqHKuu5fgibSS6fweS+3D9mmK8FfuJ9uTpYqicQ==" type="application/javascript" data-module-id="./chunk-org-insights-graph-element.js" data-src="https://github.githubassets.com/assets/chunk-org-insights-graph-element-4564fbfb.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-XPZ/UKr7xoeMUy/qNP/Xtz75lOQSAx79MciLVEyMPraKbo/fyGj/3UG5oXlF71WkZyOFVYl2L/beXCv9gCL9jw==" type="application/javascript" data-module-id="./chunk-overview.js" data-src="https://github.githubassets.com/assets/chunk-overview-5cf67f50.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-yG3+BphJlRF3n1Tk3jJbJAxN6DZC/2Ic5tk1/FD4v0eZ2sUAEqo0nU9C/V0QrkbUP0JgjEY4EAOiUfEZMUEJfA==" type="application/javascript" data-module-id="./chunk-package-dependencies-security-graph-element.js" data-src="https://github.githubassets.com/assets/chunk-package-dependencies-security-graph-element-c86dfe06.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-rm1qIXRm4iMgRzHKiWNxs89dEXeQEvDZZ7qiYVFDhwbPBgNGl2Thwc/fSe8jjtq9eErkecWSDrFycssBZgoxyw==" type="application/javascript" data-module-id="./chunk-pointer.js" data-src="https://github.githubassets.com/assets/chunk-pointer-ae6d6a21.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-qEMigPltoBeFtlfHd0r2kjylnlwHjhf9+QfoggBvDF5uYSMtRBn1YvtRU7nwpoWRwtH/PQ/eFTNkSNKjQ1mauQ==" type="application/javascript" data-module-id="./chunk-premium-runners.js" data-src="https://github.githubassets.com/assets/chunk-premium-runners-a8432280.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-pdjhkrHuea5lM11KQyb7uUxxlZpcpPX6CVfzEqMAnQOWK8tlsViQmt0jq/1r6KprBBsadQr+u3ZV6lWUknqWEQ==" type="application/javascript" data-module-id="./chunk-presence-avatars.js" data-src="https://github.githubassets.com/assets/chunk-presence-avatars-a5d8e192.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-5H5N/3G/20nmVKntphXb9z0H9q3URFDmHSccLhFkMSA8ILAA9mYlRKCWAWoDcl/W437jtGw1tIxjWStfInvidw==" type="application/javascript" data-module-id="./chunk-profile-pins-element.js" data-src="https://github.githubassets.com/assets/chunk-profile-pins-element-e47e4dff.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-vFR+IqThljOLrAWmjhOL/kiQrjgZZg95uPovX0J7kRH5p7Y049LDRZaXLMDijfeqqk71d3MMn9XP5bUcH+lB9w==" type="application/javascript" data-module-id="./chunk-profile.js" data-src="https://github.githubassets.com/assets/chunk-profile-bc547e22.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-ooYcnNLBDnMePhMvdQEQiItFZowYg4gwklGZGCrAWPW1LCxePPkzB1kr8U3Bay0NPKYEDmICeXBqqDPd8EDmqA==" type="application/javascript" data-module-id="./chunk-project-picker-element.js" data-src="https://github.githubassets.com/assets/chunk-project-picker-element-a2861c9c.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-EGc+csqoKPUwL2pzhE4bnuHalJ6aQK6GMl0LL0NapYlKYgOVu+DU5Dk20KlAn1o44j2xFbgbnr6+zuSri1Yabg==" type="application/javascript" data-module-id="./chunk-pulse-authors-graph-element.js" data-src="https://github.githubassets.com/assets/chunk-pulse-authors-graph-element-10673e72.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-MU7VY0mux9rnjbuPVXGG86/+7UndHVzcSyt3JvD+cxDXvvPzpQA8k/XrZHykVBw+5qUSjjjAnQ5WD/T/q5EJng==" type="application/javascript" data-module-id="./chunk-range.js" data-src="https://github.githubassets.com/assets/chunk-range-314ed563.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-Bh1moR9u6bImA7YXzPGgbr3gy+nTz3ivJ0B2MuFIZiJFB6nn1ZOgcC/6fMQsEengNcejFIk5oZtssFxUKmARqQ==" type="application/javascript" data-module-id="./chunk-readme-toc-element.js" data-src="https://github.githubassets.com/assets/chunk-readme-toc-element-061d66a1.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-1E0V/oPVVJgih31cwr26YACaUsRM7afIqs+JlP/B0DRbBxloWBu4mRV8vcDIvYDtKmYXsyR+zXYvYeqw9c7PqA==" type="application/javascript" data-module-id="./chunk-ref-selector.js" data-src="https://github.githubassets.com/assets/chunk-ref-selector-d44d15fe.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-I7esFvr3IOWFqcBNIUL70K+MM95nG6ayY/xxmdswMXcFWRC9f43LKsYvRZy/xx35Tjs8Lc3fDpYgrcM87ysqQg==" type="application/javascript" data-module-id="./chunk-reload-after-polling-element.js" data-src="https://github.githubassets.com/assets/chunk-reload-after-polling-element-23b7ac16.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-8qargOHcWgTagTQmYIDF8cg2FqtP6XPcMQsKAAVyd9yz/I7CQjWmhlWUv+DAjd/gw+21Jmw3kngFRu80zpHXxA==" type="application/javascript" data-module-id="./chunk-remote-clipboard-copy.js" data-src="https://github.githubassets.com/assets/chunk-remote-clipboard-copy-f2a6ab80.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-jHkJ5qpnDAbLlk7RqaD0V87gxORj631SN/nC2/iDTDlJgZ5zihpKf+wvVxnzDhkZCHWHIRqI57DLaPNesC1fNw==" type="application/javascript" data-module-id="./chunk-remote-content-element.js" data-src="https://github.githubassets.com/assets/chunk-remote-content-element-8c7909e6.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-rN1V5Cj+cRjLIgSHs3NEFKx5VrLgAkYn+Y/za1Vc6TwFzRUov0/2NqohzCsb3C/Ff55bP8WPzZZwF7c4uQhHWQ==" type="application/javascript" data-module-id="./chunk-responsive-underlinenav.js" data-src="https://github.githubassets.com/assets/chunk-responsive-underlinenav-acdd55e4.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-OtjCc7UezN3MvWiHOS/5lYkrBdHOAhcFrGD6/zMgTAugw5BSOaRrrux3wJxv9OlHHgxI32nOkesATHdRyucitA==" type="application/javascript" data-module-id="./chunk-runner-groups.js" data-src="https://github.githubassets.com/assets/chunk-runner-groups-3ad8c273.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-YT1sZoBexRNsvw2mnXAtdf87/5j3cL8ji/WS6h9F0mMh0wyUEx3EElel6roRMoI2Zq+bn5d1i8TSCeZJ84a6Rw==" type="application/javascript" data-module-id="./chunk-series-table.js" data-src="https://github.githubassets.com/assets/chunk-series-table-613d6c66.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-0ho0SIKf1TsQpvFNdpkKw57DmpU8LampLRvO67Q0G+6744f/qI8uTtL96F5tOPT56dG40cwoKB8v6kYqyGipvw==" type="application/javascript" data-module-id="./chunk-severity-calculator-element.js" data-src="https://github.githubassets.com/assets/chunk-severity-calculator-element-d21a3448.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-SGxKZJPMoMDPJ4mVhReJ1NPmXxuTuePhizAUPkKphsivzZhVQstruqwewm3oUpP1yONOG8MITAodv/5iKRsEtw==" type="application/javascript" data-module-id="./chunk-sortable-behavior.js" data-src="https://github.githubassets.com/assets/chunk-sortable-behavior-486c4a64.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-roc/0cfaua9wDuXAOgLBYymh7ketXEgdvrXH5cKsDrwrHA8RdLZyyKvncKkwMTtAXvFBYnhOfxrRYJuu5kCyCQ==" type="application/javascript" data-module-id="./chunk-spoofed-commit-warning.js" data-src="https://github.githubassets.com/assets/chunk-spoofed-commit-warning-ae873fd1.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-Ic4dQFX67qIuDkzv0UfUhmuQNRgIjmvj6DnArXzpjRDiEDE7Rt6zS4ksc79vV/n5u5sl9euowpW85r2RtRKMAw==" type="application/javascript" data-module-id="./chunk-stacked-area-chart.js" data-src="https://github.githubassets.com/assets/chunk-stacked-area-chart-21ce1d40.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-Z5vxYqlrzgKkUgwWnpxHQ7mGgyY4QVo6rX+t+/+TEiFrVv4hH0bIN7cl/YvFJ5FVrLz/LFu7mhSnEWByM5sJXw==" type="application/javascript" data-module-id="./chunk-stacks-input-config-view.js" data-src="https://github.githubassets.com/assets/chunk-stacks-input-config-view-679bf162.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-gmw7obKL/JEHWPp6zWFh+ynbXUFOidj1DN2aPiTDwP8Gair0moVuDmA340LD84A29I3ZPak19CEiumG+oIiseg==" type="application/javascript" data-module-id="./chunk-tag-input.js" data-src="https://github.githubassets.com/assets/chunk-tag-input-826c3ba1.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-0IOfDfOHJW06z0GwRYJjp03TxPkyF3OxjI4KP+rgd565nAqN0uN7QChz1+/v2/ueP2WXmWKOA6BA7byyMw2Lfw==" type="application/javascript" data-module-id="./chunk-three.module.js" data-src="https://github.githubassets.com/assets/chunk-three.module-d0839f0d.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-QBztfKUsN1b/9rMkgSqC2ihmMMFXwkgj5S9ANmYpv8/gweoT4fiQ8JNPuUJjOf/3Ye68WjzPh3ng0nKx5RCGLQ==" type="application/javascript" data-module-id="./chunk-time.js" data-src="https://github.githubassets.com/assets/chunk-time-401ced7c.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-eciwf2HTDpjReg34mQeXAZbmrnuWPBJt5WNWOGHTxmmPw12bYb2h+v8zyczvis7LSf9LIRRbAGcB/ETbGSkKfQ==" type="application/javascript" data-module-id="./chunk-tip.js" data-src="https://github.githubassets.com/assets/chunk-tip-79c8b07f.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-4GJz2wyWwjq7P4hyx3qSkjvnTO7RG5cWvnePVXPB+Oji6MBVugAdl7kCTKbpX8+Ae2ONvGJwFzSc9A7m1pqzXw==" type="application/javascript" data-module-id="./chunk-toast.js" data-src="https://github.githubassets.com/assets/chunk-toast-e06273db.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-KYvUsn4da1p2jSxHAD73P5hIGEi09MUrWBCiJvkNBHC/Gr661CjYwEtxHNmz++FAePEhDyJYg0YZwyHryrWLow==" type="application/javascript" data-module-id="./chunk-traffic-clones-graph-element.js" data-src="https://github.githubassets.com/assets/chunk-traffic-clones-graph-element-298bd4b2.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-EqzDNw3gyq/2VXlWO1lZ9KqDmN+gEM25REcJL3o1oPuato1rjc9SnXGRbqVEauhrr6Cc6SHysPFLRUgRKKNZYA==" type="application/javascript" data-module-id="./chunk-traffic-visitors-graph-element.js" data-src="https://github.githubassets.com/assets/chunk-traffic-visitors-graph-element-12acc337.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-1cqBdZXpCRV8LLTrMwY4VfNje6ononVqvBym1OaEB8i4PUyW7ptZII9zFgiJuYJ01q9LWyHkLV3QpH5Sk0rfIA==" type="application/javascript" data-module-id="./chunk-traffic.js" data-src="https://github.githubassets.com/assets/chunk-traffic-d5ca8175.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-R+tG3SLlxMfqFe/QsCsVkiImlyr9aDIRGs81jLQFG/8IC/WqUcHWrS4KJdn93V23uBIhL1CStpD5WOGltedi9g==" type="application/javascript" data-module-id="./chunk-turbo.es2017-esm.js" data-src="https://github.githubassets.com/assets/chunk-turbo.es2017-esm-47eb46dd.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-vvnURpOPyAAJR76jI8AkUpZ4kkYywFNvgGAmJgY+XvTx65AQIx4LvZNjMTiDpdpY9UpcROYmrAtRrDRupx5fKg==" type="application/javascript" data-module-id="./chunk-tweetsodium.js" data-src="https://github.githubassets.com/assets/chunk-tweetsodium-bef9d446.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-ODZJzCJpaOfusrIka5QVZQcPiO9LBGyrrMYjhhJWSLuCN5WbZ5xiEiiOPOKVu71dqygyRdB2TY7AKPA1J5hqdg==" type="application/javascript" data-module-id="./chunk-unveil.js" data-src="https://github.githubassets.com/assets/chunk-unveil-383649cc.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-K6xGz94BuJJExThO360N6QIY8yBWAaIkOVTm0OYFGT2caoNwkwOEyjFdOUwbAn2KbaPtDmNBhn1t1wKwZArMJg==" type="application/javascript" data-module-id="./chunk-user-status-submit.js" data-src="https://github.githubassets.com/assets/chunk-user-status-submit-2bac46cf.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-6yI/t7GcFRajrquWdg5NqQdrvgI4rWRWcuZhNmAHH/T2aw2iB0uAco9nNYoETW3zzJ+tmnC7qqfArrHaYmk1oQ==" type="application/javascript" data-module-id="./chunk-voting.js" data-src="https://github.githubassets.com/assets/chunk-voting-eb223fb7.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-q34Q0/s/exmYECvsCRWCxp+22UY2cZK8MPrKv3LjI3bNU5AD3Fzv+JhN0Lgfvd2mgju3llixlQ4z2RvkTIw2oA==" type="application/javascript" data-module-id="./chunk-webgl-warp.js" data-src="https://github.githubassets.com/assets/chunk-webgl-warp-ab7e10d3.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-dKI6dT3eQitLQRd3fUEwpqFqaOUM9xOkCVq90TFsqNSqpMAYvz3tEvZvczraPCtRjLAREAaRHcx7TGuRzkakLg==" type="application/javascript" data-module-id="./chunk-yaml-linters.js" data-src="https://github.githubassets.com/assets/chunk-yaml-linters-74a23a75.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-H8GsAsAhHgLo9q/AD/hk7WabHgWImHv8HVdCms1bps7ldg4APUwkYJIl61eydJJNlPchTOxd7LW+RXYlQvuNHw==" type="application/javascript" src="https://github.githubassets.com/assets/unsupported-1fc1ac02.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-fqsc9dNd3ph3Aq2Q0k4EXZ1L/z1i3Kj/Ol3y3YlXF7a0V+UOFAVtihmZNXOToLAU7TSQcBTqLoQf3y3t4r+XAg==" type="application/javascript" src="https://github.githubassets.com/assets/marketing-7eab1cf5.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-VrA0wlCKVFzwJgwG4vIX9sBc+rtL/pej3t0x44b6KBfSdlhHt3tsmPk9fSwUGyfLomKEXKKCxVdBiXGyFaCgKQ==" type="application/javascript" src="https://github.githubassets.com/assets/home-56b034c2.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-xKnTU3rLV1PqliooB0tw5j3aQwAtM8PFZHPVOf5XmBHIulO8WWd/SG4O42qKiHjhokm1GqN2A4TnGVL5wAUcUg==" type="application/javascript" src="https://github.githubassets.com/assets/webgl-globe-c4a9d353.js"></script>
<meta name="viewport" content="width=device-width">
<title>GitHub: Where the world builds software · GitHub</title>
<meta name="description" content="GitHub is where over 73 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and features, power your CI/CD and DevOps workflows, and secure code before you commit it.">
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub">
<link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub">
<meta property="fb:app_id" content="1401488693436528">
<meta name="apple-itunes-app" content="app-id=1477376905" />
<meta name="twitter:image:src" content="https://github.githubassets.com/images/modules/site/social-cards/github-social.png" /><meta name="twitter:site" content="@github" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="GitHub: Where the world builds software" /><meta name="twitter:description" content="GitHub is where over 73 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat..." />
<meta property="og:image" content="https://github.githubassets.com/images/modules/site/social-cards/github-social.png" /><meta property="og:image:alt" content="GitHub is where over 73 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat..." /><meta property="og:site_name" content="GitHub" /><meta property="og:type" content="object" /><meta property="og:title" content="GitHub: Where the world builds software" /><meta property="og:url" content="https://github.com/" /><meta property="og:description" content="GitHub is where over 73 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat..." />
<link rel="assets" href="https://github.githubassets.com/">
<meta name="request-id" content="9974:3495:4E0C67:67E136:62089297" data-pjax-transient="true"/><meta name="html-safe-nonce" content="30aad346d1e41eadce5f427a667972baf0f534bec9752cb1c44eb4cea6146f57" data-pjax-transient="true"/><meta name="visitor-payload" content="eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5OTc0OjM0OTU6NEUwQzY3OjY3RTEzNjo2MjA4OTI5NyIsInZpc2l0b3JfaWQiOiI4NzQzNjI0OTY0NjMwNDE4MDcxIiwicmVnaW9uX2VkZ2UiOiJzZWEiLCJyZWdpb25fcmVuZGVyIjoic2VhIn0=" data-pjax-transient="true"/><meta name="visitor-hmac" content="4fbec483a21c13b86259354e3ff68c1e1905444391667c66d5fdca27914e4a6c" data-pjax-transient="true"/>
<meta name="page-subject" content="GitHub">
<meta name="github-keyboard-shortcuts" content="dashboards" data-pjax-transient="true" />
<meta name="selected-link" value="/" data-pjax-transient>
<meta name="google-site-verification" content="c1kuD-K2HIVF635lypcsWPoD4kilo5-jA_wBFyT4uMY">
<meta name="google-site-verification" content="KT5gs8h0wvaagLKAVWq8bbeNwnZZK1r1XQysX3xurLU">
<meta name="google-site-verification" content="ZzhVyEFwb7w3e0-uOTltm8Jsck2F5StVihD0exw2fsA">
<meta name="google-site-verification" content="GXs5KoUUkNCoaAZn7wPN-t01Pywp9M3sEjnt_3_ZWPc">
<meta name="octolytics-url" content="https://collector.github.com/github/collect" />
<meta name="features-datafile" content="{"features":[{"name":"home_page_globe","enabled":true,"percentageOfActors":0,"actors":[]}]}" />
<!-- To prevent page flashing, the datafile features JS needs to be loaded in the
<head> tag before the DOM renders -->
<script crossorigin="anonymous" defer="defer" integrity="sha512-Ro/vQuW47Q1GEo/2sx/qq/WCjqZs6Tl+q3OxNgcJoyi6EtOstd02lGY4OLligHpk3uzCSn8JHfN5W1foQUceyQ==" type="application/javascript" src="https://github.githubassets.com/assets/features-468fef42.js"></script>
<meta name="hostname" content="github.com">
<meta name="user-login" content="">
<meta name="expected-hostname" content="github.com">
<meta name="enabled-features" content="MARKETPLACE_PENDING_INSTALLATIONS">
<meta http-equiv="x-pjax-version" content="c67b39e26571246e9c24d01ecf0e889b77a4297e7d8d7632201543d746dc391f" data-turbo-track="reload">
<meta http-equiv="x-pjax-csp-version" content="171c399055fc87a910ea59c8b4f1b8937b10a0d2cad840610066be36532aed28" data-turbo-track="reload">
<meta http-equiv="x-pjax-css-version" content="8b3a406a112973c1b3dde32bbab39ad093590883a76aad9bca92ab3b693943c2" data-turbo-track="reload">
<meta http-equiv="x-pjax-js-version" content="bebc554f7428b1f3f386abb44c17baec620e69cb7707a72770eea072fa8bfad5" data-turbo-track="reload">
<meta name="homepage-version-ga-dimension" content ="dimension11">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="620">
<link rel="preload" href="/webgl-globe/data/data.json" as="fetch" type="application/json">
<link rel="preload" href="https://github.githubassets.com/static/fonts/alliance/Alliance-No-1-ExtraBold.woff2" as="font" type="font/woff" crossorigin>
<link rel="preload" href="https://github.githubassets.com/static/fonts/alliance/Alliance-No-1-Regular.woff2" as="font" type="font/woff" crossorigin>
<link rel="canonical" href="https://github.com/" data-pjax-transient>
<meta name="browser-stats-url" content="https://api.github.com/_private/browser/stats">
<meta name="browser-errors-url" content="https://api.github.com/_private/browser/errors">
<meta name="browser-optimizely-client-errors-url" content="https://api.github.com/_private/browser/optimizely_client/errors">
<link rel="mask-icon" href="https://github.githubassets.com/pinned-octocat.svg" color="#000000">
<link rel="alternate icon" class="js-site-favicon" type="image/png" href="https://github.githubassets.com/favicons/favicon.png">
<link rel="icon" class="js-site-favicon" type="image/svg+xml" href="https://github.githubassets.com/favicons/favicon.svg">
<meta name="theme-color" content="#1e2327">
<link rel="manifest" href="/manifest.json" crossOrigin="use-credentials">
</head>
<body class="logged-out env-production page-responsive header-overlay" style="word-wrap: break-word;">
<div class="position-relative js-header-wrapper ">
<a href="#start-of-content" class="px-2 py-4 color-bg-accent-emphasis color-fg-on-emphasis show-on-focus js-skip-to-content">Skip to content</a>
<span data-view-component="true" class="progress-pjax-loader js-pjax-loader-bar Progress position-fixed width-full">
<span style="width: 0%;" data-view-component="true" class="Progress-item progress-pjax-loader-bar left-0 top-0 color-bg-accent-emphasis"></span>
</span>
<div id="unsupported-browser" class="unsupported-browser" hidden>
<div class="container-lg p-responsive clearfix d-flex flex-items-center py-2">
<svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-alert mr-2 hide-sm color-fg-subtle">
<path fill-rule="evenodd" d="M8.22 1.754a.25.25 0 00-.44 0L1.698 13.132a.25.25 0 00.22.368h12.164a.25.25 0 00.22-.368L8.22 1.754zm-1.763-.707c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0114.082 15H1.918a1.75 1.75 0 01-1.543-2.575L6.457 1.047zM9 11a1 1 0 11-2 0 1 1 0 012 0zm-.25-5.25a.75.75 0 00-1.5 0v2.5a.75.75 0 001.5 0v-2.5z"></path>
</svg>
<div class="d-flex flex-auto flex-column flex-md-row">
<div class="flex-auto min-width-0 mr-2" style="padding-top:1px">
<span>GitHub no longer supports this web browser.</span>
<a href="https://docs.github.com/articles/supported-browsers">
Learn more about the browsers we support.
</a>
</div>
</div>
</div>
</div>
<header class="Header-old header-logged-out js-details-container Details position-relative f4 py-2" role="banner">
<div class="container-xl d-lg-flex flex-items-center p-responsive">
<div class="d-flex flex-justify-between flex-items-center">
<a class="mr-4 color-fg-inherit" href="https://github.com/" aria-label="Homepage" data-ga-click="(Logged out) Header, go to homepage, icon:logo-wordmark">
<svg height="32" aria-hidden="true" viewBox="0 0 16 16" version="1.1" width="32" data-view-component="true" class="octicon octicon-mark-github">
<path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path>
</svg>
</a>
<div class="d-lg-none css-truncate css-truncate-target width-fit p-2">
</div>
<div class="d-flex flex-items-center">
<a href="/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F&source=header-home"
class="d-inline-block d-lg-none f5 no-underline border color-border-default rounded-2 px-2 py-1 mr-3 mr-sm-5 color-fg-inherit"
data-hydro-click="{"event_type":"authentication.click","payload":{"location_in_page":"site header","repository_id":null,"auth_type":"SIGN_UP","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="520d87e8f83281e6946b192f0f840552721c7fcba9b9c36d802e898a816314e2"
>
Sign up
</a>
<button aria-label="Toggle navigation" aria-expanded="false" type="button" data-view-component="true" class="js-details-target btn-link d-lg-none mt-1 color-fg-inherit"> <svg aria-hidden="true" height="24" viewBox="0 0 16 16" version="1.1" width="24" data-view-component="true" class="octicon octicon-three-bars">
<path fill-rule="evenodd" d="M1 2.75A.75.75 0 011.75 2h12.5a.75.75 0 110 1.5H1.75A.75.75 0 011 2.75zm0 5A.75.75 0 011.75 7h12.5a.75.75 0 110 1.5H1.75A.75.75 0 011 7.75zM1.75 12a.75.75 0 100 1.5h12.5a.75.75 0 100-1.5H1.75z"></path>
</svg>
</button> </div>
</div>
<div class="HeaderMenu HeaderMenu--logged-out position-fixed top-0 right-0 bottom-0 height-fit position-lg-relative d-lg-flex flex-justify-between flex-items-center flex-auto">
<div class="d-flex d-lg-none flex-justify-end border-bottom color-bg-subtle p-3">
<button aria-label="Toggle navigation" aria-expanded="false" type="button" data-view-component="true" class="js-details-target btn-link"> <svg aria-hidden="true" height="24" viewBox="0 0 24 24" version="1.1" width="24" data-view-component="true" class="octicon octicon-x color-fg-muted">
<path fill-rule="evenodd" d="M5.72 5.72a.75.75 0 011.06 0L12 10.94l5.22-5.22a.75.75 0 111.06 1.06L13.06 12l5.22 5.22a.75.75 0 11-1.06 1.06L12 13.06l-5.22 5.22a.75.75 0 01-1.06-1.06L10.94 12 5.72 6.78a.75.75 0 010-1.06z"></path>
</svg>
</button> </div>
<nav class="mt-0 px-3 px-lg-0 mb-5 mb-lg-0" aria-label="Global">
<ul class="d-lg-flex list-style-none">
<li class="mr-0 mr-lg-3 position-relative flex-wrap flex-justify-between flex-items-center border-bottom border-lg-bottom-0 d-block d-lg-flex flex-lg-nowrap flex-lg-items-center">
<details class="HeaderMenu-details details-overlay details-reset width-full">
<summary class="HeaderMenu-summary HeaderMenu-link px-0 py-3 border-0 no-wrap d-block d-lg-inline-block">
Why GitHub?
<svg x="0" y="0" viewBox="0 0 14 8" xml:space="preserve" fill="none" class="icon-chevon-down-mktg position-absolute position-lg-relative"><path d="M1,1l6.2,6L13,1"></path></svg>
</summary>
<div class="dropdown-menu flex-auto rounded px-0 mt-0 pb-4 p-lg-4 position-relative position-lg-absolute left-0 left-lg-n4">
<ul class="list-style-none f5 pb-1">
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--primary text-bold py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Features","label":"ref_page:/;ref_cta:Features;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="7969a5372033676476b8c49dbe3dd28b77562098138c53fa4115c49f8d9cde48" data-analytics-event="{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Features","label":"ref_page:/;ref_cta:Features;"}" href="/features">
Features
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Mobile","label":"ref_page:/;ref_cta:Mobile;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="617ab579a6d1534ef924749e484b068cf70be88381d8e6999ae040b2f16dbb26" data-analytics-event="{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Mobile","label":"ref_page:/;ref_cta:Mobile;"}" href="/mobile">
Mobile
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Actions","label":"ref_page:/;ref_cta:Actions;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="a8e42279edde1dc88f5716e161f431d8c66fa5ccfd9ad65f993f9d45daee9820" data-analytics-event="{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Actions","label":"ref_page:/;ref_cta:Actions;"}" href="/features/actions">
Actions
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Codespaces","label":"ref_page:/;ref_cta:Codespaces;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="0eb921d14ada22704e31ea70d4cec10f70da89bf0dc434cf9c1941514311d986" data-analytics-event="{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Codespaces","label":"ref_page:/;ref_cta:Codespaces;"}" href="/features/codespaces">
Codespaces
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Packages","label":"ref_page:/;ref_cta:Packages;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="cc6eefdd06449fbc6ba4c06bde0661b06ed401a6338fadcff3d5de252e4414c7" data-analytics-event="{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Packages","label":"ref_page:/;ref_cta:Packages;"}" href="/features/packages">
Packages
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Security","label":"ref_page:/;ref_cta:Security;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="201bcb1cc97ab711f97280d632bfc3503cf182a6dd1351706b190a97826acbe2" data-analytics-event="{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Security","label":"ref_page:/;ref_cta:Security;"}" href="/features/security">
Security
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Code review","label":"ref_page:/;ref_cta:Code review;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="9b6d8bebf7b997bf7dae8cc4ab80a8fa834550efa4d7992faf03cf7e5f793d20" data-analytics-event="{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Code review","label":"ref_page:/;ref_cta:Code review;"}" href="/features/code-review">
Code review
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Issues","label":"ref_page:/;ref_cta:Issues;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="fe354bee4dc4182a043580cf9165cb0bcea836b9f25739ce5e9b75ae2e975f09" data-analytics-event="{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Issues","label":"ref_page:/;ref_cta:Issues;"}" href="/features/issues">
Issues
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Integrations","label":"ref_page:/;ref_cta:Integrations;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="99eb5059948c3f1826180e50d09825b3782c835d4a628ebb0d093394674bb4e0" data-analytics-event="{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Integrations","label":"ref_page:/;ref_cta:Integrations;"}" href="/features/integrations">
Integrations
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--primary text-bold border-top pt-4 pb-2 mt-3" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to GitHub Sponsors","label":"ref_page:/;ref_cta:GitHub Sponsors;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="88e87ea49982aedef0e86a95be30c8c1f3010865e59312719eb1eb3630d10b27" data-analytics-event="{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to GitHub Sponsors","label":"ref_page:/;ref_cta:GitHub Sponsors;"}" href="/sponsors">
GitHub Sponsors
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--primary text-bold py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Customer stories","label":"ref_page:/;ref_cta:Customer stories;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="1d8024f6b6b006d21ae41dcda6376f5a2c2718096e1bf369b73b8e4a93caf511" data-analytics-event="{"category":"Header dropdown (logged out), Why GitHub?","action":"click to go to Customer stories","label":"ref_page:/;ref_cta:Customer stories;"}" href="/customer-stories">
Customer stories
</a> </li>
</ul>
</div>
</details>
</li>
<li class="mr-0 mr-lg-3 position-relative flex-wrap flex-justify-between flex-items-center border-bottom border-lg-bottom-0 d-block d-lg-flex flex-lg-nowrap flex-lg-items-center">
<a class="HeaderMenu-link no-underline py-3 d-block d-lg-inline-block" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header menu top item (logged out)","action":"click to go to Team","label":"ref_page:/;ref_cta:Team;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="cc4068dda3c4e8431b45bf8f121d71609680ded1e823f5afb9af23a7ba2a9b5d" data-analytics-event="{"category":"Header menu top item (logged out)","action":"click to go to Team","label":"ref_page:/;ref_cta:Team;"}" href="/team">Team</a>
</li>
<li class="mr-0 mr-lg-3 position-relative flex-wrap flex-justify-between flex-items-center border-bottom border-lg-bottom-0 d-block d-lg-flex flex-lg-nowrap flex-lg-items-center">
<a class="HeaderMenu-link no-underline py-3 d-block d-lg-inline-block" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header menu top item (logged out)","action":"click to go to Enterprise","label":"ref_page:/;ref_cta:Enterprise;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="e3ab8f6c150e3d86cee7f0d7caac04134a2a0c3d0ba68e23ca9e58a4963b6a8a" data-analytics-event="{"category":"Header menu top item (logged out)","action":"click to go to Enterprise","label":"ref_page:/;ref_cta:Enterprise;"}" href="/enterprise">Enterprise</a>
</li>
<li class="mr-0 mr-lg-3 position-relative flex-wrap flex-justify-between flex-items-center border-bottom border-lg-bottom-0 d-block d-lg-flex flex-lg-nowrap flex-lg-items-center">
<details class="HeaderMenu-details details-overlay details-reset width-full">
<summary class="HeaderMenu-summary HeaderMenu-link px-0 py-3 border-0 no-wrap d-block d-lg-inline-block">
Explore
<svg x="0" y="0" viewBox="0 0 14 8" xml:space="preserve" fill="none" class="icon-chevon-down-mktg position-absolute position-lg-relative"><path d="M1,1l6.2,6L13,1"></path></svg>
</summary>
<div class="dropdown-menu flex-auto rounded px-0 mt-0 pb-4 p-lg-4 position-relative position-lg-absolute left-0 left-lg-n4">
<ul class="list-style-none f5 pb-1">
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--primary text-bold py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Explore","action":"click to go to Explore GitHub","label":"ref_page:/;ref_cta:Explore GitHub;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="ed59ff14473d9dd5771832dc67884b1d1908eabb0df09ca07c03affb0492cec4" data-analytics-event="{"category":"Header dropdown (logged out), Explore","action":"click to go to Explore GitHub","label":"ref_page:/;ref_cta:Explore GitHub;"}" href="/explore">
Explore GitHub
</a> </li>
<li class="color-fg-muted text-normal f6 text-mono mb-1 border-top pt-3 mt-3 mb-1">Learn and contribute</li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Explore","action":"click to go to Topics","label":"ref_page:/;ref_cta:Topics;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="e1f27c7cb6c520706f71209a3c83418c10ceb2248878062973098c2be4a9eef7" data-analytics-event="{"category":"Header dropdown (logged out), Explore","action":"click to go to Topics","label":"ref_page:/;ref_cta:Topics;"}" href="/topics">
Topics
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Explore","action":"click to go to Collections","label":"ref_page:/;ref_cta:Collections;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="3f66c44b93c10d7f0b41f3db25d7706330448506c900f9e896af851a8b2f25c5" data-analytics-event="{"category":"Header dropdown (logged out), Explore","action":"click to go to Collections","label":"ref_page:/;ref_cta:Collections;"}" href="/collections">
Collections
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Explore","action":"click to go to Trending","label":"ref_page:/;ref_cta:Trending;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="1fb8d24b3f56e88b54b3960d9b891606390c2cdd7c63eda8e31c1741c1b0c931" data-analytics-event="{"category":"Header dropdown (logged out), Explore","action":"click to go to Trending","label":"ref_page:/;ref_cta:Trending;"}" href="/trending">
Trending
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Explore","action":"click to go to Learning Lab","label":"ref_page:/;ref_cta:Learning Lab;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="9d9f042e23fb3e831c67dda8dc1d0c4aad4ba628176442a10d17517d910c3f0d" data-analytics-event="{"category":"Header dropdown (logged out), Explore","action":"click to go to Learning Lab","label":"ref_page:/;ref_cta:Learning Lab;"}" href="https://lab.github.com/">
Learning Lab
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Explore","action":"click to go to Open source guides","label":"ref_page:/;ref_cta:Open source guides;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="63a60c2891e7ded2df381a7bdafe20b7e789ee890f0598f73c1e7ae9b4a5387f" data-analytics-event="{"category":"Header dropdown (logged out), Explore","action":"click to go to Open source guides","label":"ref_page:/;ref_cta:Open source guides;"}" href="https://opensource.guide">
Open source guides
</a> </li>
<li class="color-fg-muted text-normal f6 text-mono mb-1 border-top pt-3 mt-3 mb-1">Connect with others</li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Explore","action":"click to go to The ReadME Project","label":"ref_page:/;ref_cta:The ReadME Project;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="0dbadc0878f0051251fa5b1d0b941b04a1c547682c0f76fcd3d62bf449d2a175" data-analytics-event="{"category":"Header dropdown (logged out), Explore","action":"click to go to The ReadME Project","label":"ref_page:/;ref_cta:The ReadME Project;"}" href="/readme">
The ReadME Project
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Explore","action":"click to go to Events","label":"ref_page:/;ref_cta:Events;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="b69257fa8bb1c063a52b9a725b4213f742a450482ab5047c49377ee5fa7d5585" data-analytics-event="{"category":"Header dropdown (logged out), Explore","action":"click to go to Events","label":"ref_page:/;ref_cta:Events;"}" href="/events">
Events
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Explore","action":"click to go to Community forum","label":"ref_page:/;ref_cta:Community forum;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="0655882eb3c6224bbd9edfdcc29857f2230bccd5a85d33660b8e03a58de8542f" data-analytics-event="{"category":"Header dropdown (logged out), Explore","action":"click to go to Community forum","label":"ref_page:/;ref_cta:Community forum;"}" href="https://github.community">
Community forum
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Explore","action":"click to go to GitHub Education","label":"ref_page:/;ref_cta:GitHub Education;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="1d91d024a0c0cb84a20641642a3c2f2b07b7dca71b48591107ef5c87c1ca91b1" data-analytics-event="{"category":"Header dropdown (logged out), Explore","action":"click to go to GitHub Education","label":"ref_page:/;ref_cta:GitHub Education;"}" href="https://education.github.com">
GitHub Education
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Explore","action":"click to go to GitHub Stars program","label":"ref_page:/;ref_cta:GitHub Stars program;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="d639b27e2ff669499358914f79afd5e3489fb00632376c1f7f223747e1cb726c" data-analytics-event="{"category":"Header dropdown (logged out), Explore","action":"click to go to GitHub Stars program","label":"ref_page:/;ref_cta:GitHub Stars program;"}" href="https://stars.github.com">
GitHub Stars program
</a> </li>
</ul>
</div>
</details>
</li>
<li class="mr-0 mr-lg-3 position-relative flex-wrap flex-justify-between flex-items-center border-bottom border-lg-bottom-0 d-block d-lg-flex flex-lg-nowrap flex-lg-items-center">
<a class="HeaderMenu-link no-underline py-3 d-block d-lg-inline-block" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header menu top item (logged out)","action":"click to go to Marketplace","label":"ref_page:/;ref_cta:Marketplace;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="1e7770bb39f3991b2cd42ecae6d0d235ad442b8aef2020b154fc2dea2c1e6de1" data-analytics-event="{"category":"Header menu top item (logged out)","action":"click to go to Marketplace","label":"ref_page:/;ref_cta:Marketplace;"}" href="/marketplace">Marketplace</a>
</li>
<li class="mr-0 mr-lg-3 position-relative flex-wrap flex-justify-between flex-items-center border-bottom border-lg-bottom-0 d-block d-lg-flex flex-lg-nowrap flex-lg-items-center">
<details class="HeaderMenu-details details-overlay details-reset width-full">
<summary class="HeaderMenu-summary HeaderMenu-link px-0 py-3 border-0 no-wrap d-block d-lg-inline-block">
Pricing
<svg x="0" y="0" viewBox="0 0 14 8" xml:space="preserve" fill="none" class="icon-chevon-down-mktg position-absolute position-lg-relative"><path d="M1,1l6.2,6L13,1"></path></svg>
</summary>
<div class="dropdown-menu flex-auto rounded px-0 mt-0 pb-4 p-lg-4 position-relative position-lg-absolute left-0 left-lg-n4">
<ul class="list-style-none f5 pb-1">
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--primary text-bold py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Pricing","action":"click to go to Plans","label":"ref_page:/;ref_cta:Plans;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="7fb29addb82634e66076b39eb05af10c85777a4c2b054c91bf557830bb34cf3f" data-analytics-event="{"category":"Header dropdown (logged out), Pricing","action":"click to go to Plans","label":"ref_page:/;ref_cta:Plans;"}" href="/pricing">
Plans
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Pricing","action":"click to go to Compare plans","label":"ref_page:/;ref_cta:Compare plans;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="8029ec71f59cb8f037313be4f74230fbc6285977f5a640a0912fcaa55cd76cfa" data-analytics-event="{"category":"Header dropdown (logged out), Pricing","action":"click to go to Compare plans","label":"ref_page:/;ref_cta:Compare plans;"}" href="/pricing#compare-features">
Compare plans
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--secondary py-2" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Pricing","action":"click to go to Contact Sales","label":"ref_page:/;ref_cta:Contact Sales;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="59254250e20d071ed8d6e2cf8814972d9547a51bcb6afff5dbe4697d4bc4c2e3" data-analytics-event="{"category":"Header dropdown (logged out), Pricing","action":"click to go to Contact Sales","label":"ref_page:/;ref_cta:Contact Sales;"}" href="https://github.com/enterprise/contact">
Contact Sales
</a> </li>
<li>
<a class="lh-condensed-ultra d-block no-underline position-relative Link--primary text-bold border-top pt-4 pb-2 mt-3" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Header dropdown (logged out), Pricing","action":"click to go to Education","label":"ref_page:/;ref_cta:Education;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="23ee5b3a3f9a290da6de8f0509a8a17a5b32f9e365784c0a1f2918cb67899b85" data-analytics-event="{"category":"Header dropdown (logged out), Pricing","action":"click to go to Education","label":"ref_page:/;ref_cta:Education;"}" href="https://education.github.com">
Education
</a> </li>
</ul>
</div>
</details>
</li>
</ul>
</nav>
<div class="d-lg-flex flex-items-center px-3 px-lg-0 text-center text-lg-left">
<div class="d-lg-flex min-width-0 mb-3 mb-lg-0">
<div class="header-search flex-auto js-site-search position-relative flex-self-stretch flex-md-self-auto mb-3 mb-md-0 mr-0 mr-md-3 js-jump-to"
>
<div class="position-relative">
<!-- '"` --><!-- </textarea></xmp> --></option></form><form class="js-site-search-form" role="search" aria-label="Site" data-unscoped-search-url="/search" action="/search" accept-charset="UTF-8" method="get">
<label class="form-control input-sm header-search-wrapper p-0 js-chromeless-input-container header-search-wrapper-jump-to position-relative d-flex flex-justify-between flex-items-center">
<input type="text"
class="form-control input-sm header-search-input jump-to-field js-jump-to-field js-site-search-focus "
data-hotkey=s,/
name="q"
data-test-selector="nav-search-input"
placeholder="Search GitHub"
data-unscoped-placeholder="Search GitHub"
data-scoped-placeholder="Search"
autocapitalize="off"
role="combobox"
aria-haspopup="listbox"
aria-expanded="false"
aria-autocomplete="list"
aria-controls="jump-to-results"
aria-label="Search GitHub"
data-jump-to-suggestions-path="/_graphql/GetSuggestedNavigationDestinations"
spellcheck="false"
autocomplete="off"
>
<input type="hidden" data-csrf="true" class="js-data-jump-to-suggestions-path-csrf" value="cOrc+9arvKGZxMOslrnNboV+YPJo3YYcpbROJVTJwTXj4evnx+2uocitPcOZE5NNslfjbjrOFxTabEinpGSk9A==" />
<input type="hidden" class="js-site-search-type-field" name="type" >
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="20" aria-hidden="true" class="mr-1 header-search-key-slash"><path fill="none" stroke="#979A9C" opacity=".4" d="M3.5.5h12c1.7 0 3 1.3 3 3v13c0 1.7-1.3 3-3 3h-12c-1.7 0-3-1.3-3-3v-13c0-1.7 1.3-3 3-3z"></path><path fill="#979A9C" d="M11.8 6L8 15.1h-.9L10.8 6h1z"></path></svg>
<div class="Box position-absolute overflow-hidden d-none jump-to-suggestions js-jump-to-suggestions-container">
<ul class="d-none js-jump-to-suggestions-template-container">
<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-suggestion" role="option">
<a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="" data-item-type="suggestion">
<div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
<svg title="Repository" aria-label="Repository" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-repo js-jump-to-octicon-repo d-none flex-shrink-0">
<path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path>
</svg>
<svg title="Project" aria-label="Project" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-project js-jump-to-octicon-project d-none flex-shrink-0">
<path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path>
</svg>
<svg title="Search" aria-label="Search" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-search js-jump-to-octicon-search d-none flex-shrink-0">
<path fill-rule="evenodd" d="M11.5 7a4.499 4.499 0 11-8.998 0A4.499 4.499 0 0111.5 7zm-.82 4.74a6 6 0 111.06-1.06l3.04 3.04a.75.75 0 11-1.06 1.06l-3.04-3.04z"></path>
</svg>
</div>
<img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
<div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
</div>
<div class="border rounded-1 flex-shrink-0 color-bg-subtle px-1 color-fg-muted ml-1 f6 d-none js-jump-to-badge-search">
<span class="js-jump-to-badge-search-text-default d-none" aria-label="in all of GitHub">
Search
</span>
<span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
All GitHub
</span>
<span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
</div>
<div aria-hidden="true" class="border rounded-1 flex-shrink-0 color-bg-subtle px-1 color-fg-muted ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
Jump to
<span class="d-inline-block ml-1 v-align-middle">↵</span>
</div>
</a>
</li>
</ul>
<ul class="d-none js-jump-to-no-results-template-container">
<li class="d-flex flex-justify-center flex-items-center f5 d-none js-jump-to-suggestion p-2">
<span class="color-fg-muted">No suggested jump to results</span>
</li>
</ul>
<ul id="jump-to-results" role="listbox" class="p-0 m-0 js-navigation-container jump-to-suggestions-results-container js-jump-to-suggestions-results-container">
<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-scoped-search d-none" role="option">
<a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="" data-item-type="scoped_search">
<div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
<svg title="Repository" aria-label="Repository" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-repo js-jump-to-octicon-repo d-none flex-shrink-0">
<path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path>
</svg>
<svg title="Project" aria-label="Project" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-project js-jump-to-octicon-project d-none flex-shrink-0">
<path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path>
</svg>
<svg title="Search" aria-label="Search" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-search js-jump-to-octicon-search d-none flex-shrink-0">
<path fill-rule="evenodd" d="M11.5 7a4.499 4.499 0 11-8.998 0A4.499 4.499 0 0111.5 7zm-.82 4.74a6 6 0 111.06-1.06l3.04 3.04a.75.75 0 11-1.06 1.06l-3.04-3.04z"></path>
</svg>
</div>
<img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
<div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
</div>
<div class="border rounded-1 flex-shrink-0 color-bg-subtle px-1 color-fg-muted ml-1 f6 d-none js-jump-to-badge-search">
<span class="js-jump-to-badge-search-text-default d-none" aria-label="in all of GitHub">
Search
</span>
<span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
All GitHub
</span>
<span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
</div>
<div aria-hidden="true" class="border rounded-1 flex-shrink-0 color-bg-subtle px-1 color-fg-muted ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
Jump to
<span class="d-inline-block ml-1 v-align-middle">↵</span>
</div>
</a>
</li>
<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-owner-scoped-search d-none" role="option">
<a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="" data-item-type="owner_scoped_search">
<div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
<svg title="Repository" aria-label="Repository" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-repo js-jump-to-octicon-repo d-none flex-shrink-0">
<path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path>
</svg>
<svg title="Project" aria-label="Project" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-project js-jump-to-octicon-project d-none flex-shrink-0">
<path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path>
</svg>
<svg title="Search" aria-label="Search" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-search js-jump-to-octicon-search d-none flex-shrink-0">
<path fill-rule="evenodd" d="M11.5 7a4.499 4.499 0 11-8.998 0A4.499 4.499 0 0111.5 7zm-.82 4.74a6 6 0 111.06-1.06l3.04 3.04a.75.75 0 11-1.06 1.06l-3.04-3.04z"></path>
</svg>
</div>
<img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
<div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
</div>
<div class="border rounded-1 flex-shrink-0 color-bg-subtle px-1 color-fg-muted ml-1 f6 d-none js-jump-to-badge-search">
<span class="js-jump-to-badge-search-text-default d-none" aria-label="in all of GitHub">
Search
</span>
<span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
All GitHub
</span>
<span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
</div>
<div aria-hidden="true" class="border rounded-1 flex-shrink-0 color-bg-subtle px-1 color-fg-muted ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
Jump to
<span class="d-inline-block ml-1 v-align-middle">↵</span>
</div>
</a>
</li>
<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-global-search d-none" role="option">
<a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="" data-item-type="global_search">
<div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
<svg title="Repository" aria-label="Repository" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-repo js-jump-to-octicon-repo d-none flex-shrink-0">
<path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path>
</svg>
<svg title="Project" aria-label="Project" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-project js-jump-to-octicon-project d-none flex-shrink-0">
<path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path>
</svg>
<svg title="Search" aria-label="Search" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-search js-jump-to-octicon-search d-none flex-shrink-0">
<path fill-rule="evenodd" d="M11.5 7a4.499 4.499 0 11-8.998 0A4.499 4.499 0 0111.5 7zm-.82 4.74a6 6 0 111.06-1.06l3.04 3.04a.75.75 0 11-1.06 1.06l-3.04-3.04z"></path>
</svg>
</div>
<img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
<div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
</div>
<div class="border rounded-1 flex-shrink-0 color-bg-subtle px-1 color-fg-muted ml-1 f6 d-none js-jump-to-badge-search">
<span class="js-jump-to-badge-search-text-default d-none" aria-label="in all of GitHub">
Search
</span>
<span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
All GitHub
</span>
<span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
</div>
<div aria-hidden="true" class="border rounded-1 flex-shrink-0 color-bg-subtle px-1 color-fg-muted ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
Jump to
<span class="d-inline-block ml-1 v-align-middle">↵</span>
</div>
</a>
</li>
</ul>
</div>
</label>
</form> </div>
</div>
</div>
<div class="position-relative mr-3 mb-4 mb-lg-0 d-inline-block">
<a href="/login"
class="HeaderMenu-link flex-shrink-0 no-underline"
data-hydro-click="{"event_type":"authentication.click","payload":{"location_in_page":"site header menu","repository_id":null,"auth_type":"SIGN_UP","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="cd4f672ed9a2fa51ea92c28de162e81edb2d11a2aad6884ec89a6d60b21b1cfb"
data-ga-click="(Logged out) Header, clicked Sign in, text:sign-in">
Sign in
</a>
</div>
<a href="/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F&source=header-home"
class="HeaderMenu-link flex-shrink-0 d-inline-block no-underline border color-border-default rounded px-2 py-1"
data-hydro-click="{"event_type":"authentication.click","payload":{"location_in_page":"site header menu","repository_id":null,"auth_type":"SIGN_UP","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="cd4f672ed9a2fa51ea92c28de162e81edb2d11a2aad6884ec89a6d60b21b1cfb"
data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Sign up","action":"click to sign up for account","label":"ref_page:/;ref_cta:Sign up;ref_loc:header logged out","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="d9d0c5cdd929f5977bdf9b726c8d71b4830ae0be8995c13a487efd67ea6a7345" data-analytics-event="{"category":"Sign up","action":"click to sign up for account","label":"ref_page:/;ref_cta:Sign up;ref_loc:header logged out"}"
>
Sign up
</a>
</div>
</div>
</div>
</header>
</div>
<div id="start-of-content" class="show-on-focus"></div>
<div data-pjax-replace id="js-flash-container">
<template class="js-flash-template">
<div class="flash flash-full {{ className }}">
<div class="px-2" >
<button class="flash-close js-flash-close" type="button" aria-label="Dismiss this message">
<svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-x">
<path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path>
</svg>
</button>
<div>{{ message }}</div>
</div>
</div>
</template>
</div>
<include-fragment class="js-notification-shelf-include-fragment" data-base-src="https://github.com/notifications/beta/shelf"></include-fragment>
<div
class="application-main "
data-commit-hovercards-enabled
data-discussion-hovercards-enabled
data-issue-and-pr-hovercards-enabled
>
<main class="font-mktg">
<div class="overflow-hidden">
<div class="home-hero-container position-relative js-webgl-globe-data">
<div class="home-hero position-absolute z-1 top-0 right-0 bottom-0 left-0 overflow-hidden">
<div class="d-flex flex-column flex-justify-between mx-auto container-xl p-responsive height-full pb-md-9">
<div class="d-flex gutter gutter-spacious flex-column flex-lg-row flex-items-center height-full px-0 px-lg-3">
<div class="ml-md-n3 mr-md-3 col-12 col-lg-6 text-center text-md-left">
<h1 class="h1-mktg color-text-white mb-3 position-relative z-2"> Where the world builds software </h1>
<p class="f2-mktg text-normal text-gray-light-mktg mr-lg-n4 mb-4 position-relative z-2">Millions of developers and companies build, ship, and maintain their software on GitHub—the largest and most advanced development platform in the world.</p>
<!-- '"` --><!-- </textarea></xmp> --></option></form><form class="mx-auto mx-md-0 col-5-max js-signup-form position-relative z-2" autocomplete="off" action="/signup" accept-charset="UTF-8" method="get"> <div class="d-flex flex-column flex-sm-row flex-items-center">
<dl class="col-12 my-0 pb-2 pb-sm-0 pr-0 pr-sm-2 flex-auto">
<dt>
<label for="user_email" class="sr-only">Email address</label>
</dt>
<dd>
<input class="form-control border-0 f4-mktg py-3 px-4 width-full" style="height: 3rem" placeholder="Email address" type="email" name="user_email" id="user_email" autocomplete="off" spellcheck="false">
</dd>
</dl>
<input type="hidden" name="source" class="js-signup-source" value="form-home-signup" data-ga-label=";ref_page:/;ref_cta:Sign up for GitHub;ref_loc:hero launchpad;">
<button class="btn-mktg width-full width-sm-auto btn-signup-mktg" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Sign up","action":"click to sign up for account","label":"ref_page:/;ref_cta:Sign up for GitHub;ref_loc:hero launchpad","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="5c0466c1d3ebe3158e33f4ab81d8b38b623ce7c6c539c7afb64f77ce1c86d220" data-analytics-event="{"category":"Sign up","action":"click to sign up for account","label":"ref_page:/;ref_cta:Sign up for GitHub;ref_loc:hero launchpad"}" type="submit">
Sign up for GitHub
</button>
</div>
</form>
<div class="position-lg-absolute bottom-lg-8 left-lg-0 right-lg-0 mt-4 z-1 position-relative">
<div class="container-xl mx-auto px-lg-3">
<div class="py-4" style="border-top: 1px solid rgba(255,255,255,0.1)">
<div class="d-flex gutter-condensed gutter-md-spacious col-12 col-lg-8 flex-justify-between text-md-left">
<div class="col-6 col-sm-4 col-md-3">
<h2 class="f3-mktg text-mono color-text-white text-normal no-wrap">73<span class="text-white-fade">+</span> million</h2>
<p class="m-0 text-mono text-white-fade f6-mktg">Developers</p>
</div>
<div class="col-6 col-sm-4 col-md-3">
<h2 class="f3-mktg text-mono color-text-white text-normal no-wrap">4<span class="text-white-fade">+</span> million</h2>
<p class="m-0 text-mono text-white-fade f6-mktg">Organizations</p>
</div>
<div class="col-sm-4 col-md-3 d-none d-md-block">
<h2 class="f3-mktg text-mono color-text-white text-normal no-wrap">200<span class="text-white-fade">+</span> million</h2>
<p class="m-0 text-mono text-white-fade f6-mktg">Repositories</p>
</div>
<div class="col-3 d-none d-sm-block">
<h3 class="f3-mktg text-mono color-text-white text-normal no-wrap">84%</h3>
<p class="m-0 text-mono text-white-fade f6-mktg">Fortune 100</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 col-lg-6 text-center text-md-left position-relative">
<div
class="home-globe-container home-globe-container-webgl"
data-feature="home_page_globe"
data-show-when-feature-enabled="true"
hidden
data-feature-hydro="{"event_type":"feature_flag_decision","payload":{"feature":"home_page_globe","originating_url":"https://github.com/","user_id":null}}" data-feature-hydro-hmac="be0cbc7da2f32edf891ea5670441a984e859ce28aaba3fb91263d03f7c5a368d"
>
<div class="mx-auto width-full mt-n9 mt-lg-2 home-globe position-relative height-full js-webgl-globe">
<video width="916" height="918" loop muted playsinline preload="none" class="home-globe-container-video js-globe-fallback-video " hidden>
<source type="video/mp4; codecs=hevc,mp4a.40.2" src="https://github.githubassets.com/images/modules/site/home/globe-900.hevc.mp4">
<source type="video/mp4; codecs=avc1.4D401E,mp4a.40.2" src="https://github.githubassets.com/images/modules/site/home/globe-900.h264.mp4">
</video>
<video loop muted playsinline preload="none" class="home-globe-container-video js-globe-fallback-video-small" hidden>
<source type="video/mp4; codecs=hevc,mp4a.40.2" src="https://github.githubassets.com/images/modules/site/home/globe-500.hevc.mp4">
<source type="video/mp4; codecs=avc1.4D401E,mp4a.40.2" src="https://github.githubassets.com/images/modules/site/home/globe-500.h264.mp4">
</video>
<img
srcset="https://github.githubassets.com/images/modules/site/home/globe-700.jpg 700w,
https://github.githubassets.com/images/modules/site/home/globe.jpg 1400w"
sizes="(max-width: 700px) 70vw, 700px"
src="https://github.githubassets.com/images/modules/site/home/globe.jpg"
alt="Planet earth with visualization of GitHub activity crossing the globe"
class="width-full height-auto js-globe-fallback-image"
loading="lazy"
decoding="async"
width="1238"
height="1404"
hidden
>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" height="704" viewBox="0 0 704 704" width="704" class="js-webgl-globe-loading position-absolute left-0 right-0 top-0 bottom-0" style="margin: auto; transform: scale(0.8)"><filter id="a" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="560" width="560" x="70" y="70"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"></feBlend><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dx="2" dy="2"></feOffset><feGaussianBlur stdDeviation="7.5"></feGaussianBlur><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0.447059 0 0 0 0 0.643137 0 0 0 0 0.988235 0 0 0 0.49 0"></feColorMatrix><feBlend in2="shape" mode="normal" result="effect1_innerShadow"></feBlend><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dx="1" dy="1"></feOffset><feGaussianBlur stdDeviation="3"></feGaussianBlur><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0.625 0 0 0 0 0.9325 0 0 0 0 1 0 0 0 0.32 0"></feColorMatrix><feBlend in2="effect1_innerShadow" mode="normal" result="effect2_innerShadow"></feBlend><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dx="-10" dy="-10"></feOffset><feGaussianBlur stdDeviation="3"></feGaussianBlur><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"></feColorMatrix><feBlend in2="effect2_innerShadow" mode="normal" result="effect3_innerShadow"></feBlend></filter><radialGradient id="b" cx="0" cy="0" gradientTransform="matrix(-199.20400108 -199.20400108 199.20400108 -199.20400108 332.08 338.37)" gradientUnits="userSpaceOnUse" r="1"><stop offset=".875" stop-color="#fff"></stop><stop offset=".937507" stop-color="#3e68ff"></stop><stop offset="1" stop-color="#03009f" stop-opacity="0"></stop></radialGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="352" x2="352" y1="331" y2="628"><stop offset="0" stop-color="#06060e"></stop><stop offset="1" stop-color="#0f0e20"></stop></linearGradient><radialGradient id="d" cx="0" cy="0" gradientTransform="matrix(-5.99972278 523.99965313 -523.99965313 -5.99972278 170 147)" gradientUnits="userSpaceOnUse" r="1"><stop offset="0" stop-color="#4b60fb"></stop><stop offset=".565687" stop-color="#33205d"></stop><stop offset="1" stop-color="#33205d" stop-opacity="0"></stop></radialGradient><radialGradient id="e" cx="0" cy="0" gradientTransform="matrix(41.99992987 206.0000547 -206.0000547 41.99992987 292 327)" gradientUnits="userSpaceOnUse" r="1"><stop offset="0" stop-color="#354097"></stop><stop offset="1" stop-color="#243273" stop-opacity="0"></stop></radialGradient><radialGradient id="f" cx="0" cy="0" gradientTransform="matrix(-84.00137423 185.99914213 -185.99914213 -84.00137423 462 399)" gradientUnits="userSpaceOnUse" r="1"><stop offset="0" stop-color="#040d20"></stop><stop offset="1" stop-color="#040d20" stop-opacity="0"></stop></radialGradient><circle cx="352" cy="352" fill="url(#b)" r="303" transform="matrix(.98453041 .1752138 -.1752138 .98453041 67.120553 -56.22996)"></circle><g filter="url(#a)"><circle cx="352" cy="352" fill="url(#c)" r="276"></circle><circle cx="352" cy="352" fill="url(#d)" r="276"></circle><circle cx="352" cy="352" fill="url(#e)" r="276"></circle><circle cx="352" cy="352" fill="url(#f)" r="276"></circle></g></svg>
</div>
</div>
<div
class="home-globe-container"
data-feature="home_page_globe"
data-show-when-feature-enabled="false"
hidden
>
<div class="mx-auto width-full mt-n9 mt-lg-2 home-globe position-relative height-full">
<img
srcset="https://github.githubassets.com/images/modules/site/home/globe-700.jpg 700w,
https://github.githubassets.com/images/modules/site/home/globe.jpg 1400w"
sizes="(max-width: 700px) 70vw, 700px"
src="https://github.githubassets.com/images/modules/site/home/globe.jpg"
alt="Planet earth with visualization of GitHub activity crossing the globe"
class="width-full height-auto js-globe-fallback-image"
loading="lazy"
decoding="async"
width="1238"
height="1404"
>
</div>
</div>
</div>
</div>
</div>
<img src="https://github.githubassets.com/images/modules/site/home/hero-glow.svg" alt="Glowing universe" class="position-absolute home-hero-glow events-none z-1">
<video loop muted playsinline preload="none" class="js-globe-aurora position-absolute top-0 left-0 right-0 bottom-0" style="margin: auto; z-index: -1; min-width: 100%; min-height: 100%;" hidden>
<source type="video/mp4; codecs=avc1.4D401E,mp4a.40.2" src="https://github.githubassets.com/images/modules/site/home/aurora.h264.mp4">
</video>
</div>
<div class="position-absolute width-full color-bg-default" style="bottom: -4rem;">
<div class="container-xl p-responsive">
<div class="d-flex flex-justify-center flex-lg-justify-end color-bg-default">
<div class="col-8 col-sm-7 col-md-6 col-lg-5 position-relative z-2 right-lg-n12 events-none">
<picture>
<source srcset="https://github.githubassets.com/images/modules/site/home/astro-mona.webp" type="image/webp">
<img src="https://github.githubassets.com/images/modules/site/home/astro-mona.svg" width="960" height="967" class="home-astro-mona width-full position-absolute bottom-0 height-auto" alt="Mona looking at GitHub activity across the globe">
</picture>
</div>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" preserveAspectRatio="none" viewBox="0 0 1680 40" class="position-absolute width-full z-1" style="bottom: -1px;"><path d="M0 40h1680V30S1340 0 840 0 0 30 0 30z" fill="#fff"></path></svg>
</div>
<div class="mx-auto container-xl p-responsive py-8 py-md-9 overflow-hidden d-flex gutter gutter-spacious js-build-in-trigger" data-build-margin-bottom="20">
<div class="js-build-in-item build-in-scale-up color-bg-default col-10-max mx-auto">
<div class="d-flex position-relative rounded-2 box-shadow-card-border-mktg overflow-hidden">
<div class="col-5-max mx-auto mx-md-0">
<div class="col-12 col-md-9 px-4 pl-md-7 pt-4 py-md-6 mb-md-0 position-relative z-1 text-center text-md-left" style="margin-bottom: 25%; box-shadow: 0 0 50px 30px #fff">
<h2 class="h5-mktg mb-1 mx-auto mx-md-0" style="max-width: 310px;"><span class="text-gray-mktg">Build like the best with GitHub Enterprise</span></h2>
<p class="f5-mktg text-gray-mktg mx-auto mx-md-0" style="max-width: 380px;">Take collaboration to the next level with security and administrative features built for teams.</p>
<div class="d-flex flex-column flex-sm-row flex-items-center flex-justify-center flex-md-justify-start">
<a class="btn-mktg mb-3 mb-sm-0 mr-sm-2 btn-muted-mktg" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Start a free trial","action":"click to set up Enterprise trial","label":"ref_page:/;ref_cta:Start a free trial;ref_loc:billboard launchpad","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="cb27f1da62d599b78949f9f785c8a260398eca8ec0e216819f09c25d1dc596f9" data-analytics-event="{"category":"Start a free trial","action":"click to set up Enterprise trial","label":"ref_page:/;ref_cta:Start a free trial;ref_loc:billboard launchpad"}" href="/organizations/enterprise_plan?ref_cta=Start%2520a%2520free%2520trial&ref_loc=billboard&ref_page=%2F" data-test-selector="start-trial-button">
Start a free trial
</a>
<a class="btn-mktg btn-subtle-mktg" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Contact Sales","action":"click to Contact Sales","label":"ref_page:/;ref_cta:Contact Sales;ref_loc:billboard launchpad;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="8ed5616995021cec9a2de9fe5a8a53c5c079da72a95acfce3976f1171ebcb478" data-analytics-event="{"category":"Contact Sales","action":"click to Contact Sales","label":"ref_page:/;ref_cta:Contact Sales;ref_loc:billboard launchpad;"}" href="https://github.com/enterprise/contact?ref_page=/&ref_cta=Contact%20Sales&ref_loc=billboard%20launchpad">
Contact Sales
</a>
</div>
</div>
</div>
<div class="col-12 col-md-8 position-absolute text-right position-relative height-full right-0">
<picture>
<source srcset="https://github.githubassets.com/images/modules/site/home/enterprise-city-w-logos.webp" type="image/webp"></source>
<img class="width-full height-auto position-absolute right-0 bottom-0" width="1376" height="436" loading="lazy" decoding="async" aria-hidden="true" alt="" src="https://github.githubassets.com/images/modules/site/home/enterprise-city-w-logos.jpg" />
</picture>
</div>
</div>
</div>
</div>
</div>
<div class="position-relative pt-5 mt-5">
<div class="position-absolute left-0 width-full height-full js-build-in-trigger" data-build-non-decorative="true" data-build-margin-bottom="100" data-build-threshold="0" style="top: -2rem;">
<div class="mb-4 top-0 home-nav-outer js-build-in-item width-full z-3">
<div class="home-nav width-full js-toggler-container">
<div class="home-nav-bg position-fixed top-0 left-0 width-full height-full z-n1 color-bg-emphasis js-toggler-target-off" style="opacity: 0.8"></div>
<div class="px-md-4 py-2 color-bg-default">
<div class="home-nav-container mx-auto col-10-max d-flex flex-justify-between">
<button type="button" class="home-nav-trigger text-left js-toggler-target d-inline-block d-md-none py-2 px-3" aria-label="Toggle page navigation">
<svg class="octicon octicon-three-bars color-fg-default replaced color-fg-default" viewBox="0 0 16 16" height="24"><path clip-rule="evenodd" d="m1 2.75c0-.19891.07902-.38968.21967-.53033s.33142-.21967.53033-.21967h12.5c.1989 0 .3897.07902.5303.21967.1407.14065.2197.33142.2197.53033s-.079.38968-.2197.53033c-.1406.14065-.3314.21967-.5303.21967h-12.5c-.19891 0-.38968-.07902-.53033-.21967s-.21967-.33142-.21967-.53033zm0 5c0-.19891.07902-.38968.21967-.53033s.33142-.21967.53033-.21967h12.5c.1989 0 .3897.07902.5303.21967.1407.14065.2197.33142.2197.53033s-.079.38968-.2197.53033c-.1406.14065-.3314.21967-.5303.21967h-12.5c-.19891 0-.38968-.07902-.53033-.21967s-.21967-.33142-.21967-.53033zm.75 4.25c-.19891 0-.38968.079-.53033.2197-.14065.1406-.21967.3314-.21967.5303s.07902.3897.21967.5303c.14065.1407.33142.2197.53033.2197h12.5c.1989 0 .3897-.079.5303-.2197.1407-.1406.2197-.3314.2197-.5303s-.079-.3897-.2197-.5303c-.1406-.1407-.3314-.2197-.5303-.2197z" fill-rule="evenodd"></path></svg>
<svg class="octicon octicon-x color-fg-default" height="24" viewBox="0 0 24 24" width="16"><path clip-rule="evenodd" d="m6.21967 6.21967c.29289-.29289.76777-.29289 1.06066 0l4.71967 4.71963 4.7197-4.71963c.2929-.29289.7677-.29289 1.0606 0s.2929.76777 0 1.06066l-4.7196 4.71967 4.7196 4.7197c.2929.2929.2929.7677 0 1.0606s-.7677.2929-1.0606 0l-4.7197-4.7196-4.71967 4.7196c-.29289.2929-.76777.2929-1.06066 0s-.29289-.7677 0-1.0606l4.71963-4.7197-4.71963-4.71967c-.29289-.29289-.29289-.76777 0-1.06066z" fill-rule="evenodd"></path></svg>
</button>
<div class="home-nav-links-container d-flex flex-auto flex-md-items-center">
<nav class="home-nav-links col-12 col-md-9 d-flex flex-auto flex-nowrap flex-justify-start flex-md-justify-between" aria-label="GitHub homepage page navigation">
<a href="#home-code"
class="home-nav-item js-toggler-target-off text-mono f4-mktg color-fg-muted no-underline js-scrollnav-item js-smoothscroll-anchor"
data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Home","action":"click to scroll to content","label":"ref_cta:Code;ref_loc:navigation launchpad;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="2b6e1e1b19f3e2349a4f0363061130fede1240474bec9d9e450f57df99eca40a" data-analytics-event="{"category":"Home","action":"click to scroll to content","label":"ref_cta:Code;ref_loc:navigation launchpad;"}"
>
Code
</a>
<a href="#home-collaborate"
class="home-nav-item js-toggler-target-off text-mono f4-mktg color-fg-muted no-underline js-scrollnav-item js-smoothscroll-anchor"
data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Home","action":"click to scroll to content","label":"ref_cta:Collaborate;ref_loc:navigation launchpad;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="c0e6db6018b266dcdea80c10a3a242083e512c5a2309fe8f4b858594ad86d3be" data-analytics-event="{"category":"Home","action":"click to scroll to content","label":"ref_cta:Collaborate;ref_loc:navigation launchpad;"}"
>
Collaborate
</a>
<a href="#home-develop"
class="home-nav-item js-toggler-target-off text-mono f4-mktg color-fg-muted no-underline js-scrollnav-item js-smoothscroll-anchor"
data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Home","action":"click to scroll to content","label":"ref_cta:Develop;ref_loc:navigation launchpad;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="275e1b45cf172dcc8b9651f2bbf60bbf9e4a4fc23132e9d73b5192c7eac70b8d" data-analytics-event="{"category":"Home","action":"click to scroll to content","label":"ref_cta:Develop;ref_loc:navigation launchpad;"}"
>
Develop
</a>
<a href="#home-automate"
class="home-nav-item js-toggler-target-off text-mono f4-mktg color-fg-muted no-underline js-scrollnav-item js-smoothscroll-anchor"
data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Home","action":"click to scroll to content","label":"ref_cta:Automate;ref_loc:navigation launchpad;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="6b5e9bda9b5726ea408fc8bc5350a3c829e962fcafa227a5f133a9d802bbecba" data-analytics-event="{"category":"Home","action":"click to scroll to content","label":"ref_cta:Automate;ref_loc:navigation launchpad;"}"
>
Automate
</a>
<a href="#home-secure"
class="home-nav-item js-toggler-target-off text-mono f4-mktg color-fg-muted no-underline js-scrollnav-item js-smoothscroll-anchor"
data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Home","action":"click to scroll to content","label":"ref_cta:Secure;ref_loc:navigation launchpad;","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="fb26876a95b2c0a5cae686a61b29706363e6288b4865b174098da828e33944ed" data-analytics-event="{"category":"Home","action":"click to scroll to content","label":"ref_cta:Secure;ref_loc:navigation launchpad;"}"
>
Secure
</a>
<a href="#home-community"