Socialify

Folder ..

Viewing github-metrics.svg
1244 lines (1245 loc) • 131.2 KB

   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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
<svg xmlns="http://www.w3.org/2000/svg" width="480" height="2375" class="">
    <defs>
        <style/>
    </defs>
    <style>@keyframes animation-gauge{0%{stroke-dasharray:0 329}}@keyframes animation-rainbow{0%,to{color:#7f00ff;fill:#7f00ff}14%{color:#a933ff;fill:#a933ff}29%{color:#007fff;fill:#007fff}43%{color:#00ff7f;fill:#00ff7f}57%{color:#ff0;fill:#ff0}71%{color:#ff7f00;fill:#ff7f00}86%{color:red;fill:red}}svg{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;font-size:14px;color:#777}h1,h2,h3{margin:8px 0 2px;padding:0;color:#0366d6}h1{font-size:20px;font-weight:700}h2,h3{font-weight:400}h1 svg,h2 svg,h3 svg{fill:currentColor}h2{font-size:16px}h3{font-size:14px}.h-details{margin:0 4px;padding-top:4px;font-size:.8rem}section&gt;.field{margin-left:5px;margin-right:5px}.field{display:flex;align-items:center;margin-bottom:2px;white-space:nowrap}.field.wrap,.row{flex-wrap:wrap}.field svg{margin:0 8px;fill:#959da5;flex-shrink:0}.row{display:flex}.row section{flex:1 1 0}.column{display:flex;flex-direction:column;align-items:center}.center{justify-content:center}.horizontal-wrap{flex-wrap:wrap}.no-wrap{white-space:nowrap}#metrics-end,.fill-width{width:100%}.margin-bottom{margin-bottom:16px}.avatar{border-radius:50%;margin:0 6px}.calendar.field{margin:4px 0 4px 7px}.calendar .day{outline:1px solid rgba(27,31,35,.04);outline-offset:-1px}svg.bar{margin:4px 0}.field.language{margin:0 8px;flex-grow:0}.field.language.details{display:flex;justify-content:space-between}.field.language.details small,.field.license.details small{display:flex;justify-content:space-between;color:#666;text-align:right}.field.language.details small&gt;*,.field.language.details&gt;*{flex:1 1 0}.field.language.details small&gt;:not(:last-child){margin-right:6px}.habits .facts{margin:0;list-style-type:none;padding-left:37px}footer{margin-top:8px;font-size:10px;font-style:italic;color:#666;text-align:right;display:flex;flex-direction:column;justify-content:flex-end;padding:0 4px}.gauge{stroke-linecap:round;fill:none}.gauge.info{color:#58a6ff}.gauge-arc,.gauge-base{stroke:currentColor;stroke-width:10}.gauge-base{stroke-opacity:.2}.gauge-arc{fill:none;stroke-dashoffset:0;animation-delay:250ms;animation:animation-gauge 1s ease forwards}.gauge text{fill:currentColor;font-size:40px;font-family:monospace;text-anchor:middle;font-weight:600}.gauge .title{font-size:18px;color:#777}.chart{padding:0 8px}.chart-bars{display:flex;justify-content:space-between;align-items:flex-end;width:100%;margin:8px 0 4px;flex-grow:1;min-height:70px}.chart-bars .entry,.repository{display:flex;flex-direction:column}.chart-bars .entry{flex-grow:1;align-items:center;font-size:10px;color:#666}.chart-bars .entry .value{font-size:6px}.chart-bars .bar{width:7px;background-color:var(--color-calendar-graph-day-bg);border:1px solid var(--color-calendar-graph-day-border);border-radius:5px}.chart-bars .entry .bottom{margin-bottom:-1rem;line-height:1rem}.repository{width:100%;margin:6px 0}.repository .infos{color:#666;margin-left:38px;font-size:13px}.repository .infos&gt;div{display:flex;align-items:center;margin-right:16px}.repository .infos svg{margin:0 4px 0 0}.activity{margin-bottom:12px}.activity .field{width:100%;overflow:hidden;text-overflow:ellipsis;max-width:450px;white-space:nowrap;margin-bottom:0}.activity .field .content{flex-grow:1;text-overflow:ellipsis;overflow:hidden}.activity .commit .sha,.activity .issue,.activity .repo{display:inline;color:#58a6ff}.activity .code,.activity .commit .sha,span.code{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace}.activity .code,span.code{background-color:#7777771f;padding:1px 5px;font-size:80%;border-radius:6px;color:#777;margin:0 4px -3px}.activity .details{padding-left:38px;display:flex;flex-direction:column;font-size:13px;color:#666}.activity .commit{display:flex;align-items:center}.activity .commit .sha{margin-right:4px}.activity .commit .message{overflow:hidden;text-overflow:ellipsis;width:360px;white-space:nowrap}svg.calendar{margin-left:13px;margin-top:4px}svg.calendar text{font-size:18px;fill:currentColor}.deleted{color:#da3633}.field.license.details{display:flex;justify-content:space-between}.achievement{display:flex;margin:4px 0}.achievement .icon{margin:0 4px;width:44px;height:44px}.achievement .text{font-size:12px;color:#666}.achievement .title{font-size:14px;color:#58a6ff}.achievement .gauge.info,.markdown a{color:#58a6ff}.achievement .value{background-color:#58a6ff26}.achievement.x .title{color:#666}.achievement.x .gauge.info{color:#b0b0b0}.achievement.x .value{background-color:#b0b0b026}.achievement.b .title{color:#9d8fff}.achievement.b .gauge.info{color:#9e91ff}.achievement.b .value{background-color:#9e91ff26}.achievement.a .title{color:#d79533}.achievement.a .gauge.info{color:#e7bd69}.achievement.a .value{background-color:#e7bd6926}.achievement.s .gauge.info,.achievement.s .title{color:#eb355e}.achievement.s .value{background-color:#eb355e26}.achievement.secret .title{color:#ff76cd}.achievement.secret .gauge.info{color:#ff79d1}.achievement.secret .value{background-color:#ff79d126}.achievement .gh,.achievement .value{border:1px solid currentColor;border-radius:16px;font-size:10px;padding:0 5px;white-space:nowrap}.achievement .gauge-arc,.achievement .gauge-base{stroke-width:6}.achievement .value{margin-left:46px}.rss{align-items:flex-start}.rss .infos{margin-bottom:3px}.rss .infos .date{font-size:10px;color:#666}.snippet .body{padding-left:12px}.snippet .language-diff{font-size:77%}.snippet.additions{color:#336543}.snippet.deletions{color:#9a5256}.snippet .token.prefix.unchanged{visibility:hidden}.markdown b,code{display:inline-block}.markdown b{width:97%}.markdown ul{padding-left:24px}.markdown a{text-decoration:none}code{background-color:#7777771f;border-radius:6px;color:#777;padding:1px 5px;font-size:80%;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace}code[class^=language-]{white-space:pre-wrap;width:97%;margin-top:4px}.token.coord{color:#d2a8ff;font-weight:700}.token.inserted:not(.prefix){color:#aad0b4dc;background-color:#336543dc}.token.deleted:not(.prefix){color:#eed2d0dc;background-color:#9a5256dc}.space{margin-left:7px}.blue{color:#58a6ff}:root{--color-calendar-graph-day-bg:#ebedf0;--color-calendar-graph-day-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L1-bg:#9be9a8;--color-calendar-graph-day-L2-bg:#40c463;--color-calendar-graph-day-L3-bg:#30a14e;--color-calendar-graph-day-L4-bg:#216e39;--color-calendar-halloween-graph-day-L1-bg:#ffee4a;--color-calendar-halloween-graph-day-L2-bg:#ffc501;--color-calendar-halloween-graph-day-L3-bg:#fe9600;--color-calendar-halloween-graph-day-L4-bg:#03001c;--color-calendar-winter-graph-day-L1-bg:#0a3069;--color-calendar-winter-graph-day-L2-bg:#0969da;--color-calendar-winter-graph-day-L3-bg:#54aeff;--color-calendar-winter-graph-day-L4-bg:#b6e3ff;--color-calendar-graph-day-L4-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L3-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L2-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L1-border:rgba(27,31,35,0.06)}</style>
    <style/>
    <foreignObject x="0" y="0" width="100%" height="100%">
        <div xmlns="http://www.w3.org/1999/xhtml" xmlns:xlink="http://www.w3.org/1999/xlink" class="items-wrapper">
            <section>
                <h1 class="field">
                    <img class="avatar" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAcwAAAHMCAIAAADXuQ/RAAAACXBIWXMAAAsTAAALEwEAmpwYAAAgAElEQVR4nO3deXgUZbqw8cqeNPsSIASykbCLoCggGGRTUdl32QlKBMIuBmUJIEvCakC2BITkIDoOMqOjDuqocxQURdA5OIzL0ZkziIoiggYYiPBdDh/Vb9dQZXWnqquq6/5dz3/prl5zi++b6pYuAwBMI5l3aAAAkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkQUAExFZADARkYXdnThx4g11p0+ftvoOAlqILOxu9+7dkrr9+/dbfQcBLUQWdkdk4WhEFnZHZOFoRBZ2R2ThaEQWDotsTLO6cTc2lKdo5/b9AvbBYDdEFg6LbMpL2c2OL5In7saG4k/feOMNq+8v4IPIwu6ILByNyMLuiCwcjcjC7ogsHI3IIhhOnDhxUN0333wjXvjkyZPiTwsKCjTWZKsNaRPbqr48RTu3i9fV3gf761//qnGvTp48af4Tg9BHZBEMGzdu1Dhrq7CwULzwU089pXFhRWQV42mfIl74lVde0bhXbdu21bihnTt3mv/EIPQRWQQDkYVrEVkEA5GFaxFZBAORhWsRWZjihRde6C/oNG1gYtFQeaqPvllc/bz++uvFC3ee5HNhxTQ+OkdjTTZhbf/4B7vK03V47/7qGq8cLB5ZcV4Da7IwBJGFKQoLC8VgVR/Z1ieFq/pq7DhV7d1SI6Pak/rKxOTd4+SJbVVfaw/txQnidavc04LIwnBEFqYgssAVRBamILLAFUQWpiCywBVEFtZH1tMhpcb49vIkrO1n1Jps/EPdxCMrJuWlCenvz5KnUrfGrMnCcEQW1ke27qN3BVxV7chq/ylC6h+zxQt7OvicLcZfF8AQRBamILLAFUQWpiCywBVEFqYgsgCRhZEOHTq0XrBo0aJJgr7Fs8TF0OTn7qsx5mZ5knaP1Vg5bfL5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" width="20" height="20" />
                    <span>Bobby</span>
                </h1>
                <div class="row">
                    <section>
                        <div class="field ">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M1.5 8a6.5 6.5 0 1113 0 6.5 6.5 0 01-13 0zM8 0a8 8 0 100 16A8 8 0 008 0zm.5 4.75a.75.75 0 00-1.5 0v3.5a.75.75 0 00.471.696l2.5 1a.75.75 0 00.557-1.392L8.5 7.742V4.75z"/>
                            </svg>
                            Joined GitHub 6 years ago
                        </div>
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M5.5 3.5a2 2 0 100 4 2 2 0 000-4zM2 5.5a3.5 3.5 0 115.898 2.549 5.507 5.507 0 013.034 4.084.75.75 0 11-1.482.235 4.001 4.001 0 00-7.9 0 .75.75 0 01-1.482-.236A5.507 5.507 0 013.102 8.05 3.49 3.49 0 012 5.5zM11 4a.75.75 0 100 1.5 1.5 1.5 0 01.666 2.844.75.75 0 00-.416.672v.352a.75.75 0 00.574.73c1.2.289 2.162 1.2 2.522 2.372a.75.75 0 101.434-.44 5.01 5.01 0 00-2.56-3.012A3 3 0 0011 4z"/>
                            </svg>
                            Followed by 34 users
                        </div>
                    </section>
                    <section>
                        <div class="field calendar">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 210 11" width="210" height="16">
                                <g>
                                    <rect class="day" x="0" y="0" width="11" height="11" fill="#9be9a8" rx="2" ry="2"/>
                                    <rect class="day" x="15" y="0" width="11" height="11" fill="#216e39" rx="2" ry="2"/>
                                    <rect class="day" x="30" y="0" width="11" height="11" fill="#9be9a8" rx="2" ry="2"/>
                                    <rect class="day" x="45" y="0" width="11" height="11" fill="#ebedf0" rx="2" ry="2"/>
                                    <rect class="day" x="60" y="0" width="11" height="11" fill="#9be9a8" rx="2" ry="2"/>
                                    <rect class="day" x="75" y="0" width="11" height="11" fill="#ebedf0" rx="2" ry="2"/>
                                    <rect class="day" x="90" y="0" width="11" height="11" fill="#ebedf0" rx="2" ry="2"/>
                                    <rect class="day" x="105" y="0" width="11" height="11" fill="#9be9a8" rx="2" ry="2"/>
                                    <rect class="day" x="120" y="0" width="11" height="11" fill="#ebedf0" rx="2" ry="2"/>
                                    <rect class="day" x="135" y="0" width="11" height="11" fill="#9be9a8" rx="2" ry="2"/>
                                    <rect class="day" x="150" y="0" width="11" height="11" fill="#30a14e" rx="2" ry="2"/>
                                    <rect class="day" x="165" y="0" width="11" height="11" fill="#9be9a8" rx="2" ry="2"/>
                                    <rect class="day" x="180" y="0" width="11" height="11" fill="#40c463" rx="2" ry="2"/>
                                    <rect class="day" x="195" y="0" width="11" height="11" fill="#9be9a8" rx="2" ry="2"/>
                                </g>
                            </svg>
                        </div>
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M1 2.5A2.5 2.5 0 013.5 0h8.75a.75.75 0 01.75.75v3.5a.75.75 0 01-1.5 0V1.5h-8a1 1 0 00-1 1v6.708A2.492 2.492 0 013.5 9h3.25a.75.75 0 010 1.5H3.5a1 1 0 100 2h5.75a.75.75 0 010 1.5H3.5A2.5 2.5 0 011 11.5v-9zm13.23 7.79a.75.75 0 001.06-1.06l-2.505-2.505a.75.75 0 00-1.06 0L9.22 9.229a.75.75 0 001.06 1.061l1.225-1.224v6.184a.75.75 0 001.5 0V9.066l1.224 1.224z"/>
                            </svg>
                            Contributed to 13 repositories
                        </div>
                    </section>
                </div>
            </section>
            <section class="largeable largeable-inline-flex">
                <div class="row">
                    <section>
                        <h2 class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M1.5 1.75a.75.75 0 00-1.5 0v12.5c0 .414.336.75.75.75h14.5a.75.75 0 000-1.5H1.5V1.75zm14.28 2.53a.75.75 0 00-1.06-1.06L10 7.94 7.53 5.47a.75.75 0 00-1.06 0L3.22 8.72a.75.75 0 001.06 1.06L7 7.06l2.47 2.47a.75.75 0 001.06 0l5.25-5.25z"/>
                            </svg>
                            Activity
                        </h2>
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"/>
                            </svg>
                            3150 Commits
                        </div>
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M2.5 1.75a.25.25 0 01.25-.25h8.5a.25.25 0 01.25.25v7.736a.75.75 0 101.5 0V1.75A1.75 1.75 0 0011.25 0h-8.5A1.75 1.75 0 001 1.75v11.5c0 .966.784 1.75 1.75 1.75h3.17a.75.75 0 000-1.5H2.75a.25.25 0 01-.25-.25V1.75zM4.75 4a.75.75 0 000 1.5h4.5a.75.75 0 000-1.5h-4.5zM4 7.75A.75.75 0 014.75 7h2a.75.75 0 010 1.5h-2A.75.75 0 014 7.75zm11.774 3.537a.75.75 0 00-1.048-1.074L10.7 14.145 9.281 12.72a.75.75 0 00-1.062 1.058l1.943 1.95a.75.75 0 001.055.008l4.557-4.45z"/>
                            </svg>
                            0 Pull requests reviewed
                        </div>
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M7.177 3.073L9.573.677A.25.25 0 0110 .854v4.792a.25.25 0 01-.427.177L7.177 3.427a.25.25 0 010-.354zM3.75 2.5a.75.75 0 100 1.5.75.75 0 000-1.5zm-2.25.75a2.25 2.25 0 113 2.122v5.256a2.251 2.251 0 11-1.5 0V5.372A2.25 2.25 0 011.5 3.25zM11 2.5h-1V4h1a1 1 0 011 1v5.628a2.251 2.251 0 101.5 0V5A2.5 2.5 0 0011 2.5zm1 10.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0zM3.75 12a.75.75 0 100 1.5.75.75 0 000-1.5z"/>
                            </svg>
                            1 Pull request opened
                        </div>
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path d="M8 9.5a1.5 1.5 0 100-3 1.5 1.5 0 000 3z"/>
                                <path fill-rule="evenodd" d="M8 0a8 8 0 100 16A8 8 0 008 0zM1.5 8a6.5 6.5 0 1113 0 6.5 6.5 0 01-13 0z"/>
                            </svg>
                            0 Issues opened
                        </div>
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M2.75 2.5a.25.25 0 00-.25.25v7.5c0 .138.112.25.25.25h2a.75.75 0 01.75.75v2.19l2.72-2.72a.75.75 0 01.53-.22h4.5a.25.25 0 00.25-.25v-7.5a.25.25 0 00-.25-.25H2.75zM1 2.75C1 1.784 1.784 1 2.75 1h10.5c.966 0 1.75.784 1.75 1.75v7.5A1.75 1.75 0 0113.25 12H9.06l-2.573 2.573A1.457 1.457 0 014 13.543V12H2.75A1.75 1.75 0 011 10.25v-7.5z"/>
                            </svg>
                            30 issue comments
                        </div>
                    </section>
                    <section>
                        <h2 class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M1.326 1.973a1.2 1.2 0 011.49-.832c.387.112.977.307 1.575.602.586.291 1.243.71 1.7 1.296.022.027.042.056.061.084A13.22 13.22 0 018 3c.67 0 1.289.037 1.861.108l.051-.07c.457-.586 1.114-1.004 1.7-1.295a9.654 9.654 0 011.576-.602 1.2 1.2 0 011.49.832c.14.493.356 1.347.479 2.29.079.604.123 1.28.07 1.936.541.977.773 2.11.773 3.301C16 13 14.5 15 8 15s-8-2-8-5.5c0-1.034.238-2.128.795-3.117-.08-.712-.034-1.46.052-2.12.122-.943.34-1.797.479-2.29zM8 13.065c6 0 6.5-2 6-4.27C13.363 5.905 11.25 5 8 5s-5.363.904-6 3.796c-.5 2.27 0 4.27 6 4.27z"/>
                                <path d="M4 8a1 1 0 012 0v1a1 1 0 01-2 0V8zm2.078 2.492c-.083-.264.146-.492.422-.492h3c.276 0 .505.228.422.492C9.67 11.304 8.834 12 8 12c-.834 0-1.669-.696-1.922-1.508zM10 8a1 1 0 112 0v1a1 1 0 11-2 0V8z"/>
                            </svg>
                            Community stats
                        </h2>
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M1.5 14.25c0 .138.112.25.25.25H4v-1.25a.75.75 0 01.75-.75h2.5a.75.75 0 01.75.75v1.25h2.25a.25.25 0 00.25-.25V1.75a.25.25 0 00-.25-.25h-8.5a.25.25 0 00-.25.25v12.5zM1.75 16A1.75 1.75 0 010 14.25V1.75C0 .784.784 0 1.75 0h8.5C11.216 0 12 .784 12 1.75v12.5c0 .085-.006.168-.018.25h2.268a.25.25 0 00.25-.25V8.285a.25.25 0 00-.111-.208l-1.055-.703a.75.75 0 11.832-1.248l1.055.703c.487.325.779.871.779 1.456v5.965A1.75 1.75 0 0114.25 16h-3.5a.75.75 0 01-.197-.026c-.099.017-.2.026-.303.026h-3a.75.75 0 01-.75-.75V14h-1v1.25a.75.75 0 01-.75.75h-3zM3 3.75A.75.75 0 013.75 3h.5a.75.75 0 010 1.5h-.5A.75.75 0 013 3.75zM3.75 6a.75.75 0 000 1.5h.5a.75.75 0 000-1.5h-.5zM3 9.75A.75.75 0 013.75 9h.5a.75.75 0 010 1.5h-.5A.75.75 0 013 9.75zM7.75 9a.75.75 0 000 1.5h.5a.75.75 0 000-1.5h-.5zM7 6.75A.75.75 0 017.75 6h.5a.75.75 0 010 1.5h-.5A.75.75 0 017 6.75zM7.75 3a.75.75 0 000 1.5h.5a.75.75 0 000-1.5h-.5z"/>
                            </svg>
                            Member of 3 organizations
                        </div>
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M5.5 3.5a2 2 0 100 4 2 2 0 000-4zM2 5.5a3.5 3.5 0 115.898 2.549 5.507 5.507 0 013.034 4.084.75.75 0 11-1.482.235 4.001 4.001 0 00-7.9 0 .75.75 0 01-1.482-.236A5.507 5.507 0 013.102 8.05 3.49 3.49 0 012 5.5zM11 4a.75.75 0 100 1.5 1.5 1.5 0 01.666 2.844.75.75 0 00-.416.672v.352a.75.75 0 00.574.73c1.2.289 2.162 1.2 2.522 2.372a.75.75 0 101.434-.44 5.01 5.01 0 00-2.56-3.012A3 3 0 0011 4z"/>
                            </svg>
                            Following 0 users
                        </div>
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M4.25 2.5c-1.336 0-2.75 1.164-2.75 3 0 2.15 1.58 4.144 3.365 5.682A20.565 20.565 0 008 13.393a20.561 20.561 0 003.135-2.211C12.92 9.644 14.5 7.65 14.5 5.5c0-1.836-1.414-3-2.75-3-1.373 0-2.609.986-3.029 2.456a.75.75 0 01-1.442 0C6.859 3.486 5.623 2.5 4.25 2.5zM8 14.25l-.345.666-.002-.001-.006-.003-.018-.01a7.643 7.643 0 01-.31-.17 22.075 22.075 0 01-3.434-2.414C2.045 10.731 0 8.35 0 5.5 0 2.836 2.086 1 4.25 1 5.797 1 7.153 1.802 8 3.02 8.847 1.802 10.203 1 11.75 1 13.914 1 16 2.836 16 5.5c0 2.85-2.045 5.231-3.885 6.818a22.08 22.08 0 01-3.744 2.584l-.018.01-.006.003h-.002L8 14.25zm0 0l.345.666a.752.752 0 01-.69 0L8 14.25z"/>
                            </svg>
                            Sponsoring 0 repositories
                        </div>
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M8 .25a.75.75 0 01.673.418l1.882 3.815 4.21.612a.75.75 0 01.416 1.279l-3.046 2.97.719 4.192a.75.75 0 01-1.088.791L8 12.347l-3.766 1.98a.75.75 0 01-1.088-.79l.72-4.194L.818 6.374a.75.75 0 01.416-1.28l4.21-.611L7.327.668A.75.75 0 018 .25zm0 2.445L6.615 5.5a.75.75 0 01-.564.41l-3.097.45 2.24 2.184a.75.75 0 01.216.664l-.528 3.084 2.769-1.456a.75.75 0 01.698 0l2.77 1.456-.53-3.084a.75.75 0 01.216-.664l2.24-2.183-3.096-.45a.75.75 0 01-.564-.41L8 2.694v.001z"/>
                            </svg>
                            Starred 0 repositories
                        </div>
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M1.679 7.932c.412-.621 1.242-1.75 2.366-2.717C5.175 4.242 6.527 3.5 8 3.5c1.473 0 2.824.742 3.955 1.715 1.124.967 1.954 2.096 2.366 2.717a.119.119 0 010 .136c-.412.621-1.242 1.75-2.366 2.717C10.825 11.758 9.473 12.5 8 12.5c-1.473 0-2.824-.742-3.955-1.715C2.92 9.818 2.09 8.69 1.679 8.068a.119.119 0 010-.136zM8 2c-1.981 0-3.67.992-4.933 2.078C1.797 5.169.88 6.423.43 7.1a1.619 1.619 0 000 1.798c.45.678 1.367 1.932 2.637 3.024C4.329 13.008 6.019 14 8 14c1.981 0 3.67-.992 4.933-2.078 1.27-1.091 2.187-2.345 2.637-3.023a1.619 1.619 0 000-1.798c-.45-.678-1.367-1.932-2.637-3.023C11.671 2.992 9.981 2 8 2zm0 8a2 2 0 100-4 2 2 0 000 4z"/>
                            </svg>
                            Watching 41 repositories
                        </div>
                    </section>
                </div>
            </section>
            <section class="largeable largeable-inline-flex">
                <div class="row">
                    <section>
                        <h2 class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <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"/>
                            </svg>
                            88 Repositories
                        </h2>
                        <div class="row">
                            <section>
                                <div class="field">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                        <path fill-rule="evenodd" d="M8.75.75a.75.75 0 00-1.5 0V2h-.984c-.305 0-.604.08-.869.23l-1.288.737A.25.25 0 013.984 3H1.75a.75.75 0 000 1.5h.428L.066 9.192a.75.75 0 00.154.838l.53-.53-.53.53v.001l.002.002.002.002.006.006.016.015.045.04a3.514 3.514 0 00.686.45A4.492 4.492 0 003 11c.88 0 1.556-.22 2.023-.454a3.515 3.515 0 00.686-.45l.045-.04.016-.015.006-.006.002-.002.001-.002L5.25 9.5l.53.53a.75.75 0 00.154-.838L3.822 4.5h.162c.305 0 .604-.08.869-.23l1.289-.737a.25.25 0 01.124-.033h.984V13h-2.5a.75.75 0 000 1.5h6.5a.75.75 0 000-1.5h-2.5V3.5h.984a.25.25 0 01.124.033l1.29.736c.264.152.563.231.868.231h.162l-2.112 4.692a.75.75 0 00.154.838l.53-.53-.53.53v.001l.002.002.002.002.006.006.016.015.045.04a3.517 3.517 0 00.686.45A4.492 4.492 0 0013 11c.88 0 1.556-.22 2.023-.454a3.512 3.512 0 00.686-.45l.045-.04.01-.01.006-.005.006-.006.002-.002.001-.002-.529-.531.53.53a.75.75 0 00.154-.838L13.823 4.5h.427a.75.75 0 000-1.5h-2.234a.25.25 0 01-.124-.033l-1.29-.736A1.75 1.75 0 009.735 2H8.75V.75zM1.695 9.227c.285.135.718.273 1.305.273s1.02-.138 1.305-.273L3 6.327l-1.305 2.9zm10 0c.285.135.718.273 1.305.273s1.02-.138 1.305-.273L13 6.327l-1.305 2.9z"/>
                                    </svg>
                                    Prefers MIT license
                                </div>
                                <div class="field">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                        <path fill-rule="evenodd" d="M2.5 7.775V2.75a.25.25 0 01.25-.25h5.025a.25.25 0 01.177.073l6.25 6.25a.25.25 0 010 .354l-5.025 5.025a.25.25 0 01-.354 0l-6.25-6.25a.25.25 0 01-.073-.177zm-1.5 0V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 010 2.474l-5.026 5.026a1.75 1.75 0 01-2.474 0l-6.25-6.25A1.75 1.75 0 011 7.775zM6 5a1 1 0 100 2 1 1 0 000-2z"/>
                                    </svg>
                                    14 Releases
                                </div>
                                <div class="field">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                        <path fill-rule="evenodd" d="M8.878.392a1.75 1.75 0 00-1.756 0l-5.25 3.045A1.75 1.75 0 001 4.951v6.098c0 .624.332 1.2.872 1.514l5.25 3.045a1.75 1.75 0 001.756 0l5.25-3.045c.54-.313.872-.89.872-1.514V4.951c0-.624-.332-1.2-.872-1.514L8.878.392zM7.875 1.69a.25.25 0 01.25 0l4.63 2.685L8 7.133 3.245 4.375l4.63-2.685zM2.5 5.677v5.372c0 .09.047.171.125.216l4.625 2.683V8.432L2.5 5.677zm6.25 8.271l4.625-2.683a.25.25 0 00.125-.216V5.677L8.75 8.432v5.516z"/>
                                    </svg>
                                    0 Packages
                                </div>
                                <div class="field">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                        <path xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" d="M2.5 3.5c0-.133.058-.318.282-.55.227-.237.592-.484 1.1-.708C4.899 1.795 6.354 1.5 8 1.5c1.647 0 3.102.295 4.117.742.51.224.874.47 1.101.707.224.233.282.418.282.551 0 .133-.058.318-.282.55-.227.237-.592.484-1.1.708C11.101 5.205 9.646 5.5 8 5.5c-1.647 0-3.102-.295-4.117-.742-.51-.224-.874-.47-1.101-.707-.224-.233-.282-.418-.282-.551zM1 3.5c0-.626.292-1.165.7-1.59.406-.422.956-.767 1.579-1.041C4.525.32 6.195 0 8 0c1.805 0 3.475.32 4.722.869.622.274 1.172.62 1.578 1.04.408.426.7.965.7 1.591v9c0 .626-.292 1.165-.7 1.59-.406.422-.956.767-1.579 1.041C11.476 15.68 9.806 16 8 16c-1.805 0-3.475-.32-4.721-.869-.623-.274-1.173-.62-1.579-1.04-.408-.426-.7-.965-.7-1.591v-9zM2.5 8V5.724c.241.15.503.286.779.407C4.525 6.68 6.195 7 8 7c1.805 0 3.475-.32 4.722-.869.275-.121.537-.257.778-.407V8c0 .133-.058.318-.282.55-.227.237-.592.484-1.1.708C11.101 9.705 9.646 10 8 10c-1.647 0-3.102-.295-4.117-.742-.51-.224-.874-.47-1.101-.707C2.558 8.318 2.5 8.133 2.5 8zm0 2.225V12.5c0 .133.058.318.282.55.227.237.592.484 1.1.708 1.016.447 2.471.742 4.118.742 1.647 0 3.102-.295 4.117-.742.51-.224.874-.47 1.101-.707.224-.233.282-.418.282-.551v-2.275c-.241.15-.503.285-.778.406-1.247.549-2.917.869-4.722.869-1.805 0-3.475-.32-4.721-.869a6.236 6.236 0 01-.779-.406z"/>
                                    </svg>
                                    1.22 GB used
                                </div>
                            </section>
                            <section>
                                <div class="field">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                        <path fill-rule="evenodd" d="M4.25 2.5c-1.336 0-2.75 1.164-2.75 3 0 2.15 1.58 4.144 3.365 5.682A20.565 20.565 0 008 13.393a20.561 20.561 0 003.135-2.211C12.92 9.644 14.5 7.65 14.5 5.5c0-1.836-1.414-3-2.75-3-1.373 0-2.609.986-3.029 2.456a.75.75 0 01-1.442 0C6.859 3.486 5.623 2.5 4.25 2.5zM8 14.25l-.345.666-.002-.001-.006-.003-.018-.01a7.643 7.643 0 01-.31-.17 22.075 22.075 0 01-3.434-2.414C2.045 10.731 0 8.35 0 5.5 0 2.836 2.086 1 4.25 1 5.797 1 7.153 1.802 8 3.02 8.847 1.802 10.203 1 11.75 1 13.914 1 16 2.836 16 5.5c0 2.85-2.045 5.231-3.885 6.818a22.08 22.08 0 01-3.744 2.584l-.018.01-.006.003h-.002L8 14.25zm0 0l.345.666a.752.752 0 01-.69 0L8 14.25z"/>
                                    </svg>
                                    0 Sponsors
                                </div>
                                <div class="field">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                        <path fill-rule="evenodd" d="M8 .25a.75.75 0 01.673.418l1.882 3.815 4.21.612a.75.75 0 01.416 1.279l-3.046 2.97.719 4.192a.75.75 0 01-1.088.791L8 12.347l-3.766 1.98a.75.75 0 01-1.088-.79l.72-4.194L.818 6.374a.75.75 0 01.416-1.28l4.21-.611L7.327.668A.75.75 0 018 .25zm0 2.445L6.615 5.5a.75.75 0 01-.564.41l-3.097.45 2.24 2.184a.75.75 0 01.216.664l-.528 3.084 2.769-1.456a.75.75 0 01.698 0l2.77 1.456-.53-3.084a.75.75 0 01.216-.664l2.24-2.183-3.096-.45a.75.75 0 01-.564-.41L8 2.694v.001z"/>
                                    </svg>
                                    341 Stargazers
                                </div>
                                <div class="field">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                        <path fill-rule="evenodd" d="M5 3.25a.75.75 0 11-1.5 0 .75.75 0 011.5 0zm0 2.122a2.25 2.25 0 10-1.5 0v.878A2.25 2.25 0 005.75 8.5h1.5v2.128a2.251 2.251 0 101.5 0V8.5h1.5a2.25 2.25 0 002.25-2.25v-.878a2.25 2.25 0 10-1.5 0v.878a.75.75 0 01-.75.75h-4.5A.75.75 0 015 6.25v-.878zm3.75 7.378a.75.75 0 11-1.5 0 .75.75 0 011.5 0zm3-8.75a.75.75 0 100-1.5.75.75 0 000 1.5z"/>
                                    </svg>
                                    63 Forkers
                                </div>
                                <div class="field">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                        <path fill-rule="evenodd" d="M1.679 7.932c.412-.621 1.242-1.75 2.366-2.717C5.175 4.242 6.527 3.5 8 3.5c1.473 0 2.824.742 3.955 1.715 1.124.967 1.954 2.096 2.366 2.717a.119.119 0 010 .136c-.412.621-1.242 1.75-2.366 2.717C10.825 11.758 9.473 12.5 8 12.5c-1.473 0-2.824-.742-3.955-1.715C2.92 9.818 2.09 8.69 1.679 8.068a.119.119 0 010-.136zM8 2c-1.981 0-3.67.992-4.933 2.078C1.797 5.169.88 6.423.43 7.1a1.619 1.619 0 000 1.798c.45.678 1.367 1.932 2.637 3.024C4.329 13.008 6.019 14 8 14c1.981 0 3.67-.992 4.933-2.078 1.27-1.091 2.187-2.345 2.637-3.023a1.619 1.619 0 000-1.798c-.45-.678-1.367-1.932-2.637-3.023C11.671 2.992 9.981 2 8 2zm0 8a2 2 0 100-4 2 2 0 000 4z"/>
                                    </svg>
                                    110 Watchers
                                </div>
                            </section>
                        </div>
                    </section>
                </div>
            </section>
            <section>
                <h2 class="field">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                        <path fill-rule="evenodd" d="M1.5 2.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v8.5a.25.25 0 01-.25.25h-6.5a.75.75 0 00-.53.22L4.5 14.44v-2.19a.75.75 0 00-.75-.75h-2a.25.25 0 01-.25-.25v-8.5zM1.75 1A1.75 1.75 0 000 2.75v8.5C0 12.216.784 13 1.75 13H3v1.543a1.457 1.457 0 002.487 1.03L8.061 13h6.189A1.75 1.75 0 0016 11.25v-8.5A1.75 1.75 0 0014.25 1H1.75zm5.03 3.47a.75.75 0 010 1.06L5.31 7l1.47 1.47a.75.75 0 01-1.06 1.06l-2-2a.75.75 0 010-1.06l2-2a.75.75 0 011.06 0zm2.44 0a.75.75 0 000 1.06L10.69 7 9.22 8.47a.75.75 0 001.06 1.06l2-2a.75.75 0 000-1.06l-2-2a.75.75 0 00-1.06 0z"/>
                    </svg>
                    24 Languages
                </h2>
            </section>
            <section class="column">
                <h3 class="field">Most used languages</h3>
                <svg class="bar" xmlns="http://www.w3.org/2000/svg" width="460" height="8">
                    <mask id="languages-bar">
                        <rect x="0" y="0" width="460" height="8" fill="white" rx="5"/>
                    </mask>
                    <rect mask="url(#languages-bar)" x="0" y="0" width="0" height="8" fill="#d1d5da"/>
                    <rect mask="url(#languages-bar)" x="0" y="0" width="309.73266170891816" height="8" fill="#f1e05a"/>
                    <rect mask="url(#languages-bar)" x="309.73266170891816" y="0" width="46.389749269651865" height="8" fill="#563d7c"/>
                    <rect mask="url(#languages-bar)" x="356.12241097857003" y="0" width="27.547400269370144" height="8" fill="#3178c6"/>
                    <rect mask="url(#languages-bar)" x="383.6698112479402" y="0" width="23.883215692933472" height="8" fill="#DA5B0B"/>
                    <rect mask="url(#languages-bar)" x="407.5530269408736" y="0" width="21.812866862455284" height="8" fill="#e34c26"/>
                    <rect mask="url(#languages-bar)" x="429.3658938033289" y="0" width="18.838265997229115" height="8" fill="#3572A5"/>
                    <rect mask="url(#languages-bar)" x="448.20415980055805" y="0" width="8.571066636307854" height="8" fill="#44a51c"/>
                    <rect mask="url(#languages-bar)" x="456.77522643686586" y="0" width="3.22477356313411" height="8" fill="#b07219"/>
                </svg>
                <div class="field center horizontal-wrap fill-width">
                    <div class="field center no-wrap language">
                        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                            <path fill="#f1e05a" fill-rule="evenodd" d="M8 4a4 4 0 100 8 4 4 0 000-8z"/>
                        </svg>
                        JavaScript
                    </div>
                    <div class="field center no-wrap language">
                        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                            <path fill="#563d7c" fill-rule="evenodd" d="M8 4a4 4 0 100 8 4 4 0 000-8z"/>
                        </svg>
                        CSS
                    </div>
                    <div class="field center no-wrap language">
                        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                            <path fill="#3178c6" fill-rule="evenodd" d="M8 4a4 4 0 100 8 4 4 0 000-8z"/>
                        </svg>
                        TypeScript
                    </div>
                    <div class="field center no-wrap language">
                        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                            <path fill="#DA5B0B" fill-rule="evenodd" d="M8 4a4 4 0 100 8 4 4 0 000-8z"/>
                        </svg>
                        Jupyter Notebook
                    </div>
                    <div class="field center no-wrap language">
                        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                            <path fill="#e34c26" fill-rule="evenodd" d="M8 4a4 4 0 100 8 4 4 0 000-8z"/>
                        </svg>
                        HTML
                    </div>
                    <div class="field center no-wrap language">
                        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                            <path fill="#3572A5" fill-rule="evenodd" d="M8 4a4 4 0 100 8 4 4 0 000-8z"/>
                        </svg>
                        Python
                    </div>
                    <div class="field center no-wrap language">
                        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                            <path fill="#44a51c" fill-rule="evenodd" d="M8 4a4 4 0 100 8 4 4 0 000-8z"/>
                        </svg>
                        QML
                    </div>
                    <div class="field center no-wrap language">
                        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                            <path fill="#b07219" fill-rule="evenodd" d="M8 4a4 4 0 100 8 4 4 0 000-8z"/>
                        </svg>
                        Java
                    </div>
                </div>
            </section>
            <section>
                <h2 class="field">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                        <path fill-rule="evenodd" d="M1 2.5A2.5 2.5 0 013.5 0h8.75a.75.75 0 01.75.75v3.5a.75.75 0 01-1.5 0V1.5h-8a1 1 0 00-1 1v6.708A2.492 2.492 0 013.5 9h3.25a.75.75 0 010 1.5H3.5a1 1 0 100 2h5.75a.75.75 0 010 1.5H3.5A2.5 2.5 0 011 11.5v-9zm13.23 7.79a.75.75 0 001.06-1.06l-2.505-2.505a.75.75 0 00-1.06 0L9.22 9.229a.75.75 0 001.06 1.061l1.225-1.224v6.184a.75.75 0 001.5 0V9.066l1.224 1.224z"/>
                    </svg>
                    Notable contributions
                </h2>
                <div class="row fill-width largeable-width-half">
                    <section>
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M8 1.5a6.5 6.5 0 100 13 6.5 6.5 0 000-13zM0 8a8 8 0 1116 0A8 8 0 010 8zm6.5-.25A.75.75 0 017.25 7h1a.75.75 0 01.75.75v2.75h.25a.75.75 0 010 1.5h-2a.75.75 0 010-1.5h.25v-2h-.25a.75.75 0 01-.75-.75zM8 6a1 1 0 100-2 1 1 0 000 2z"/>
                            </svg>
                            No recent contributions matching filters found
                        </div>
                    </section>
                </div>
            </section>
            <section class="habits">
                <h2 class="field wrap">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                        <path fill-rule="evenodd" d="M8 1.5c-2.363 0-4 1.69-4 3.75 0 .984.424 1.625.984 2.304l.214.253c.223.264.47.556.673.848.284.411.537.896.621 1.49a.75.75 0 01-1.484.211c-.04-.282-.163-.547-.37-.847a8.695 8.695 0 00-.542-.68c-.084-.1-.173-.205-.268-.32C3.201 7.75 2.5 6.766 2.5 5.25 2.5 2.31 4.863 0 8 0s5.5 2.31 5.5 5.25c0 1.516-.701 2.5-1.328 3.259-.095.115-.184.22-.268.319-.207.245-.383.453-.541.681-.208.3-.33.565-.37.847a.75.75 0 01-1.485-.212c.084-.593.337-1.078.621-1.489.203-.292.45-.584.673-.848.075-.088.147-.173.213-.253.561-.679.985-1.32.985-2.304 0-2.06-1.637-3.75-4-3.75zM6 15.25a.75.75 0 01.75-.75h2.5a.75.75 0 010 1.5h-2.5a.75.75 0 01-.75-.75zM5.75 12a.75.75 0 000 1.5h4.5a.75.75 0 000-1.5h-4.5z"/>
                    </svg>
                    Recent coding habits
                    <small class="h-details">(computed from last 45 commits)</small>
                </h2>
                <div class="row">
                    <ul class="facts">
                        <li>Uses spaces for indentation</li>
                        <li>Has approximately 37.0 characters per line of code written</li>
                        <li>Mostly pushes code around 02:00</li>
                        <li>Mostly active on Saturday</li>
                    </ul>
                </div>
            </section>
            <section>
                <h2 class="field">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                        <path fill-rule="evenodd" d="M3.267 1.457c.3.286.312.76.026 1.06A6.475 6.475 0 001.5 7a6.472 6.472 0 001.793 4.483.75.75 0 01-1.086 1.034 8.89 8.89 0 01-.276-.304l.569-.49-.569.49A7.971 7.971 0 010 7c0-2.139.84-4.083 2.207-5.517a.75.75 0 011.06-.026zm9.466 0a.75.75 0 011.06.026A7.975 7.975 0 0116 7c0 2.139-.84 4.083-2.207 5.517a.75.75 0 11-1.086-1.034A6.475 6.475 0 0014.5 7a6.475 6.475 0 00-1.793-4.483.75.75 0 01.026-1.06zM8.75 8.582a1.75 1.75 0 10-1.5 0v5.668a.75.75 0 001.5 0V8.582zM5.331 4.736a.75.75 0 10-1.143-.972A4.983 4.983 0 003 7c0 1.227.443 2.352 1.177 3.222a.75.75 0 001.146-.967A3.483 3.483 0 014.5 7c0-.864.312-1.654.831-2.264zm6.492-.958a.75.75 0 00-1.146.967c.514.61.823 1.395.823 2.255 0 .86-.31 1.646-.823 2.255a.75.75 0 101.146.967A4.983 4.983 0 0013 7a4.983 4.983 0 00-1.177-3.222z"/>
                    </svg>
                    Shifoo RSS feed
                </h2>
                <div class="row fill-width">
                    <section>
                        <div class="field rss">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M8 5.5a2.5 2.5 0 100 5 2.5 2.5 0 000-5zM4 8a4 4 0 118 0 4 4 0 01-8 0z"/>
                            </svg>
                            <div class="infos">
                                <div class="title">Packrat Parsing and Parsing Expression Grammars</div>
                                <div class="date">23 Nov 2023</div>
                            </div>
                        </div>
                        <div class="field rss">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M8 5.5a2.5 2.5 0 100 5 2.5 2.5 0 000-5zM4 8a4 4 0 118 0 4 4 0 01-8 0z"/>
                            </svg>
                            <div class="infos">
                                <div class="title">Nix is the New Arch!</div>
                                <div class="date">23 Jun 2023</div>
                            </div>
                        </div>
                        <div class="field rss">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M8 5.5a2.5 2.5 0 100 5 2.5 2.5 0 000-5zM4 8a4 4 0 118 0 4 4 0 01-8 0z"/>
                            </svg>
                            <div class="infos">
                                <div class="title">Building a Simple User Presence</div>
                                <div class="date">3 Jun 2023</div>
                            </div>
                        </div>
                        <div class="field rss">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M8 5.5a2.5 2.5 0 100 5 2.5 2.5 0 000-5zM4 8a4 4 0 118 0 4 4 0 01-8 0z"/>
                            </svg>
                            <div class="infos">
                                <div class="title">Sorting: Average-case Lower Bounds...</div>
                                <div class="date">1 Jun 2023</div>
                            </div>
                        </div>
                    </section>
                </div>
            </section>
            <section class="stargazers">
                <h2 class="field">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                        <path fill-rule="evenodd" d="M8 .25a.75.75 0 01.673.418l1.882 3.815 4.21.612a.75.75 0 01.416 1.279l-3.046 2.97.719 4.192a.75.75 0 01-1.088.791L8 12.347l-3.766 1.98a.75.75 0 01-1.088-.79l.72-4.194L.818 6.374a.75.75 0 01.416-1.28l4.21-.611L7.327.668A.75.75 0 018 .25zm0 2.445L6.615 5.5a.75.75 0 01-.564.41l-3.097.45 2.24 2.184a.75.75 0 01.216.664l-.528 3.084 2.769-1.456a.75.75 0 01.698 0l2.77 1.456-.53-3.084a.75.75 0 01.216-.664l2.24-2.183-3.096-.45a.75.75 0 01-.564-.41L8 2.694v.001z"/>
                    </svg>
                    Stargazers
                </h2>
                <div class="row margin-bottom">
                    <section class="column chart">
                        <h3>Total stargazers</h3>
                        <div class="chart-bars">
                            <div class="entry">
                                <span class="value">340</span>
                                <div class="bar" style="height: 2.5px; background-color: var(--color-calendar-graph-day-L1-bg)"></div>
                                12
                                <div class="bottom">Jan.</div>
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 2.5px; background-color: var(--color-calendar-graph-day-L1-bg)"></div>
                                13
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 2.5px; background-color: var(--color-calendar-graph-day-L1-bg)"></div>
                                14
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 2.5px; background-color: var(--color-calendar-graph-day-L1-bg)"></div>
                                15
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 2.5px; background-color: var(--color-calendar-graph-day-L1-bg)"></div>
                                16
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 2.5px; background-color: var(--color-calendar-graph-day-L1-bg)"></div>
                                17
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 2.5px; background-color: var(--color-calendar-graph-day-L1-bg)"></div>
                                18
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 2.5px; background-color: var(--color-calendar-graph-day-L1-bg)"></div>
                                19
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 2.5px; background-color: var(--color-calendar-graph-day-L1-bg)"></div>
                                20
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 2.5px; background-color: var(--color-calendar-graph-day-L1-bg)"></div>
                                21
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 2.5px; background-color: var(--color-calendar-graph-day-L1-bg)"></div>
                                22
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 2.5px; background-color: var(--color-calendar-graph-day-L1-bg)"></div>
                                23
                            </div>
                            <div class="entry">
                                <span class="value">341</span>
                                <div class="bar" style="height: 50px; background-color: var(--color-calendar-graph-day-L4-bg)"></div>
                                24
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 50px; background-color: var(--color-calendar-graph-day-L4-bg)"></div>
                                25
                            </div>
                        </div>
                    </section>
                    <section class="column chart">
                        <h3>New stargazers per day</h3>
                        <div class="chart-bars">
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 0px; background-color: var(--color-calendar-graph-day-L0-bg)"></div>
                                12
                                <div class="bottom">Jan.</div>
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 0px; background-color: var(--color-calendar-graph-day-L0-bg)"></div>
                                13
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 0px; background-color: var(--color-calendar-graph-day-L0-bg)"></div>
                                14
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 0px; background-color: var(--color-calendar-graph-day-L0-bg)"></div>
                                15
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 0px; background-color: var(--color-calendar-graph-day-L0-bg)"></div>
                                16
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 0px; background-color: var(--color-calendar-graph-day-L0-bg)"></div>
                                17
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 0px; background-color: var(--color-calendar-graph-day-L0-bg)"></div>
                                18
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 0px; background-color: var(--color-calendar-graph-day-L0-bg)"></div>
                                19
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 0px; background-color: var(--color-calendar-graph-day-L0-bg)"></div>
                                20
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 0px; background-color: var(--color-calendar-graph-day-L0-bg)"></div>
                                21
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 0px; background-color: var(--color-calendar-graph-day-L0-bg)"></div>
                                22
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 0px; background-color: var(--color-calendar-graph-day-L0-bg)"></div>
                                23
                            </div>
                            <div class="entry">
                                <span class="value">+1</span>
                                <div class="bar" style="height: 50px; background-color: var(--color-calendar-graph-day-L4-bg)"></div>
                                24
                            </div>
                            <div class="entry">
                                <span class="value"></span>
                                <div class="bar" style="height: 0px; background-color: var(--color-calendar-graph-day-L0-bg)"></div>
                                25
                            </div>
                        </div>
                    </section>
                </div>
            </section>
            <section>
                <h2 class="field">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                        <path fill-rule="evenodd" d="M0 8a8 8 0 1116 0v5.25a.75.75 0 01-1.5 0V8a6.5 6.5 0 10-13 0v5.25a.75.75 0 01-1.5 0V8zm5.5 4.25a.75.75 0 01.75-.75h3.5a.75.75 0 010 1.5h-3.5a.75.75 0 01-.75-.75zM3 6.75C3 5.784 3.784 5 4.75 5h6.5c.966 0 1.75.784 1.75 1.75v1.5A1.75 1.75 0 0111.25 10h-6.5A1.75 1.75 0 013 8.25v-1.5zm1.47-.53a.75.75 0 011.06 0l.97.97.97-.97a.75.75 0 011.06 0l.97.97.97-.97a.75.75 0 111.06 1.06l-1.5 1.5a.75.75 0 01-1.06 0L8 7.81l-.97.97a.75.75 0 01-1.06 0l-1.5-1.5a.75.75 0 010-1.06z"/>
                    </svg>
                    Recent activity
                </h2>
                <div class="row">
                    <section>
                        <div class="row fill-width">
                            <section class="activity">
                                <div class="field">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                        <path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"/>
                                    </svg>
                                    <div class="content">
                                        Pushed 1 commit in
                                        <span class="repo">luciferreeves/luciferreeves</span>
                                    </div>
                                </div>
                                <div class="details">
                                    <div>on branch <span class="code">master</span></div>
                                    <div class="commit">
                                        <div class="sha">#bde8c6c</div>
                                        <div class="message">Update metrics.yml</div>
                                    </div>
                                </div>
                            </section>
                        </div>
                        <div class="row fill-width">
                            <section class="activity">
                                <div class="field">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                        <path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"/>
                                    </svg>
                                    <div class="content">
                                        Pushed 1 commit in
                                        <span class="repo">luciferreeves/mana</span>
                                    </div>
                                </div>
                                <div class="details">
                                    <div>on branch <span class="code">main</span></div>
                                    <div class="commit">
                                        <div class="sha">#9e1adf7</div>
                                        <div class="message">Updated Documentation</div>
                                    </div>
                                </div>
                            </section>
                        </div>
                        <div class="row fill-width">
                            <section class="activity">
                                <div class="field">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                        <path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"/>
                                    </svg>
                                    <div class="content">
                                        Pushed 1 commit in
                                        <span class="repo">luciferreeves/mana</span>
                                    </div>
                                </div>
                                <div class="details">
                                    <div>on branch <span class="code">main</span></div>
                                    <div class="commit">
                                        <div class="sha">#868de80</div>
                                        <div class="message">Updated Documentation</div>
                                    </div>
                                </div>
                            </section>
                        </div>
                        <div class="row fill-width">
                            <section class="activity">
                                <div class="field">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                        <path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"/>
                                    </svg>
                                    <div class="content">
                                        Pushed 1 commit in
                                        <span class="repo">luciferreeves/mana</span>
                                    </div>
                                </div>
                                <div class="details">
                                    <div>on branch <span class="code">main</span></div>
                                    <div class="commit">
                                        <div class="sha">#5dfc4cd</div>
                                        <div class="message">Updated Documentation</div>
                                    </div>
                                </div>
                            </section>
                        </div>
                        <div class="row fill-width">
                            <section class="activity">
                                <div class="field">
                                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                        <path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"/>
                                    </svg>
                                    <div class="content">
                                        Pushed 1 commit in
                                        <span class="repo">luciferreeves/mana</span>
                                    </div>
                                </div>
                                <div class="details">
                                    <div>on branch <span class="code">main</span></div>
                                    <div class="commit">
                                        <div class="sha">#5fb0537</div>
                                        <div class="message">Updated Documentation</div>
                                    </div>
                                </div>
                            </section>
                        </div>
                    </section>
                </div>
            </section>
            <section>
                <h2 class="field">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                        <path fill-rule="evenodd" d="M3.217 6.962A3.75 3.75 0 010 3.25v-.5C0 1.784.784 1 1.75 1h1.356c.228-.585.796-1 1.462-1h6.864a1.57 1.57 0 011.462 1h1.356c.966 0 1.75.784 1.75 1.75v.5a3.75 3.75 0 01-3.217 3.712 5.014 5.014 0 01-2.771 3.117l.144 1.446c.005.05.03.12.114.204.086.087.217.17.373.227.283.103.618.274.89.568.285.31.467.723.467 1.226v.75h1.25a.75.75 0 110 1.5H2.75a.75.75 0 010-1.5H4v-.75c0-.503.182-.916.468-1.226.27-.294.606-.465.889-.568a1.03 1.03 0 00.373-.227c.084-.085.109-.153.114-.204l.144-1.446a5.014 5.014 0 01-2.77-3.117zM3 2.5H1.75a.25.25 0 00-.25.25v.5c0 .98.626 1.813 1.5 2.122V2.5zm4.457 7.97l-.12 1.204c-.093.925-.858 1.47-1.467 1.691a.764.764 0 00-.3.176c-.037.04-.07.093-.07.21v.75h5v-.75c0-.117-.033-.17-.07-.21a.763.763 0 00-.3-.176c-.609-.221-1.374-.766-1.466-1.69l-.12-1.204a5.052 5.052 0 01-1.087 0zM13 5.373V2.5h1.25a.25.25 0 01.25.25v.5A2.25 2.25 0 0113 5.372zM4.5 1.568c0-.037.03-.068.068-.068h6.864c.037 0 .068.03.068.068V5.5a3.5 3.5 0 11-7 0V1.568z"/>
                    </svg>
                    Achievements
                </h2>
                <div class="row">
                    <section class="achievements detailed largeable-flex-wrap">
                        <div class="achievement s largeable-width-half">
                            <div class="icon">
                                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" height="44" width="44">
                                    <defs>
                                        <mask id="mask">
                                            <circle class="gauge-base" r="25" cx="28" cy="28" fill="white"/>
                                        </mask>
                                    </defs>
                                    <svg xmlns="http://www.w3.org/2000/svg" class="gauge info">
                                        <circle class="gauge-base" r="25" cx="28" cy="28"/>
                                        <circle class="gauge-arc" transform="rotate(-90 28 28)" r="25" cx="28" cy="28" stroke-dasharray="77.5 155"/>
                                    </svg>
                                    <svg xmlns="http://www.w3.org/2000/svg" mask="url(#mask)">
                                        <g stroke-linecap="round" stroke-width="2" fill="none" fill-rule="evenodd">
                                            <path d="M17.135 7.988l-3.303.669a2 2 0 00-1.586 2.223l4.708 35.392a1.498 1.498 0 01-1.162 1.66 1.523 1.523 0 01-1.775-1.01L4.951 19.497a2 2 0 011.215-2.507l2.946-1.072" stroke="#731237" stroke-linejoin="round"/>
                                            <path d="M36.8 48H23a2 2 0 01-2-2V7a2 2 0 012-2h26a2 2 0 012 2v32.766" stroke="#EB355E"/>
                                            <path d="M29 20.955l-3.399 3.399a.85.85 0 000 1.202l3.399 3.4M43.014 20.955l3.399 3.399a.85.85 0 010 1.202l-3.4 3.4" stroke="#EB355E" stroke-linejoin="round"/>
                                            <path stroke="#EB355E" d="M38.526 18l-5.053 14.016"/>
                                            <path d="M44 36a8 8 0 110 16 8 8 0 010-16z" stroke="#EB355E" stroke-linejoin="round"/>
                                            <path d="M43.068 40.749l3.846 2.396a1 1 0 01-.006 1.7l-3.846 2.36a1 1 0 01-1.523-.853v-4.755a1 1 0 011.529-.848z" stroke="#EB355E" stroke-linejoin="round"/>
                                        </g>
                                    </svg>
                                </svg>
                            </div>
                            <div class="info">
                                <div class="title">
                                    <span class="prefix">Master</span>
                                    polyglot
                                </div>
                                <div class="text">Using 24 different programming languages</div>
                            </div>
                        </div>
                        <div class="achievement a largeable-width-half">
                            <div class="icon">
                                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" height="44" width="44">
                                    <defs>
                                        <mask id="mask">
                                            <circle class="gauge-base" r="25" cx="28" cy="28" fill="white"/>
                                        </mask>
                                    </defs>
                                    <svg xmlns="http://www.w3.org/2000/svg" class="gauge info">
                                        <circle class="gauge-base" r="25" cx="28" cy="28"/>
                                        <circle class="gauge-arc" transform="rotate(-90 28 28)" r="25" cx="28" cy="28" stroke-dasharray="80.60000000000001 155"/>
                                    </svg>
                                    <svg xmlns="http://www.w3.org/2000/svg" mask="url(#mask)">
                                        <g stroke-linecap="round" stroke-width="2" fill="none" fill-rule="evenodd">
                                            <g stroke="#B59151">
                                                <path d="M20 24l-3.397 3.398a.85.85 0 000 1.203L20.002 32M37.015 24l3.399 3.398a.85.85 0 010 1.203L37.014 32" stroke-linejoin="round"/>
                                                <path d="M31.029 21.044L25.976 35.06"/>
                                            </g>
                                            <path stroke="#FFD576" stroke-linejoin="round" d="M23.018 10h8.984M26 47h5M8 16h16m9 0h15.725M8 41h13"/>
                                            <path d="M5.027 34.998c.673 2.157 1.726 4.396 2.81 6.02m43.38-19.095C50.7 19.921 49.866 17.796 48.79 16" stroke="#FFD576"/>
                                            <path stroke="#B59151" stroke-linejoin="round" d="M26 41h17"/>
                                            <path d="M7.183 16C5.186 19.582 4 23.619 4 28M42.608 47.02c2.647-1.87 5.642-5.448 7.295-9.18C51.52 34.191 52.071 30.323 52 28" stroke="#B59151"/>
                                            <path stroke="#B59151" stroke-linejoin="round" d="M7.226 16H28M13.343 47H21"/>
                                            <path d="M13.337 47.01a24.364 24.364 0 006.19 3.45 24.527 24.527 0 007.217 1.505c2.145.108 4.672-.05 7.295-.738" stroke="#B59151"/>
                                            <path stroke="#B59151" stroke-linejoin="round" d="M36 47h6.647M12 10h6M37 10h6.858"/>
                                            <path d="M43.852 10c-4.003-3.667-9.984-6.054-16.047-6-2.367.021-4.658.347-6.81 1.045" stroke="#B59151"/>
                                            <path stroke="#FFD576" stroke-linejoin="round" d="M5.041 35h4.962M47 22h4.191"/>
                                        </g>
                                    </svg>
                                </svg>
                            </div>
                            <div class="info">
                                <div class="title">
                                    <span class="prefix">Super</span>
                                    developer
                                    <span class="gh">ranked 300k out of 130m users</span>
                                </div>
                                <div class="text">Published 76 public repositories</div>
                            </div>
                        </div>
                        <div class="achievement a largeable-width-half">
                            <div class="icon">
                                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" height="44" width="44">
                                    <defs>
                                        <mask id="mask">
                                            <circle class="gauge-base" r="25" cx="28" cy="28" fill="white"/>
                                        </mask>
                                    </defs>
                                    <svg xmlns="http://www.w3.org/2000/svg" class="gauge info">
                                        <circle class="gauge-base" r="25" cx="28" cy="28"/>
                                        <circle class="gauge-arc" transform="rotate(-90 28 28)" r="25" cx="28" cy="28" stroke-dasharray="33.20670773442847 155"/>
                                    </svg>
                                    <svg xmlns="http://www.w3.org/2000/svg" mask="url(#mask)">
                                        <g xmlns="http://www.w3.org/2000/svg" transform="translate(5 4)" fill="none" fill-rule="evenodd">
                                            <path d="M46 44.557v1a2 2 0 01-2 2H2a2 2 0 01-2-2v-1" stroke="#FFD576" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path d="M.75 40.993l.701.561a2.323 2.323 0 002.903 0l1.675-1.34a3 3 0 013.748 0l1.282 1.026a3 3 0 003.71.03l1.4-1.085a3 3 0 013.75.061l1.103.913a3 3 0 003.787.031l1.22-.976a3 3 0 013.748 0l1.282 1.026a3 3 0 003.71.03l1.4-1.085a3 3 0 013.75.061l1.429 1.182a2.427 2.427 0 003.103-.008l.832-.695A2 2 0 0046 39.191v-1.634a2 2 0 00-2-2H2a2 2 0 00-2 2v1.875a2 2 0 00.75 1.561z" stroke="#B59151" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path d="M42 31.609v.948m-38 0v-.992m25.04-15.008H35a2 2 0 012 2v1m-28 0v-1a2 2 0 012-2h6.007" stroke="#FFD576" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path d="M22 8.557h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6a1 1 0 011-1z" stroke="#B59151" stroke-width="2" stroke-linejoin="round"/>
                                            <path d="M4.7 10.557c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.317-1.121-.573-1.372-1.71-1.679 1.135-.313 1.389-.566 1.7-1.689zm35-8c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.317-1.121-.573-1.372-1.71-1.679 1.135-.313 1.389-.566 1.7-1.689z" stroke="#B59151" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path d="M23 5.557a2 2 0 002-2C25 2.452 24.433 0 22.273 0c-.463 0 .21 1.424-.502 1.979A2 2 0 0023 5.557z" stroke="#B59151" stroke-width="2"/>
                                            <path d="M4.78 27.982l1.346 1.076a3 3 0 003.748 0l1.252-1.002a3 3 0 013.748 0l1.282 1.026a3 3 0 003.711.03l1.4-1.085a3 3 0 013.75.061l1.102.913a3 3 0 003.787.031l1.22-.976a3 3 0 013.748 0l1.281 1.025a3 3 0 003.712.029l1.358-1.053a2 2 0 00.775-1.58v-.97a1.95 1.95 0 00-1.95-1.95H5.942a1.912 1.912 0 00-1.912 1.912v.951a2 2 0 00.75 1.562z" stroke="#B59151" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                                            <circle stroke="#FFD576" cx="16.5" cy="2.057" r="1"/>
                                            <circle stroke="#FFD576" cx="14.5" cy="12.057" r="1"/>
                                            <circle stroke="#FFD576" cx="31.5" cy="9.057" r="1"/>
                                        </g>
                                    </svg>
                                </svg>
                            </div>
                            <div class="info">
                                <div class="title">
                                    <span class="prefix">Super</span>
                                    member
                                </div>
                                <div class="text">Registered 6 years ago</div>
                            </div>
                        </div>
                        <div class="achievement a largeable-width-half">
                            <div class="icon">
                                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" height="44" width="44">
                                    <defs>
                                        <mask id="mask">
                                            <circle class="gauge-base" r="25" cx="28" cy="28" fill="white"/>
                                        </mask>
                                    </defs>
                                    <svg xmlns="http://www.w3.org/2000/svg" class="gauge info">
                                        <circle class="gauge-base" r="25" cx="28" cy="28"/>
                                        <circle class="gauge-arc" transform="rotate(-90 28 28)" r="25" cx="28" cy="28" stroke-dasharray="31 155"/>
                                    </svg>
                                    <svg xmlns="http://www.w3.org/2000/svg" mask="url(#mask)">
                                        <g stroke-width="2" fill="none" fill-rule="evenodd">
                                            <path d="M37.303 21.591a5.84 5.84 0 00-1.877-1.177 6.138 6.138 0 00-4.432 0 5.822 5.822 0 00-1.879 1.177L28 22.638l-1.115-1.047c-1.086-1.018-2.559-1.59-4.094-1.59-1.536 0-3.008.572-4.094 1.59-1.086 1.02-1.696 2.4-1.696 3.84 0 1.441.61 2.823 1.696 3.841l1.115 1.046L28 38l8.189-7.682 1.115-1.046a5.422 5.422 0 001.256-1.761 5.126 5.126 0 000-4.157 5.426 5.426 0 00-1.256-1.763z" stroke="#B59151" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path d="M15.967 42.705A18.922 18.922 0 0028 47a18.92 18.92 0 0011.076-3.56m-.032-30.902A18.914 18.914 0 0028 9c-4.09 0-7.876 1.292-10.976 3.49" stroke="#FFD576" stroke-linecap="round"/>
                                            <g transform="translate(7 10)" stroke="#B59151">
                                                <path d="M6 0v7c0 2.21-1.343 3-3 3s-3-.79-3-3V0" stroke-linecap="round" stroke-linejoin="round"/>
                                                <path stroke-linecap="round" d="M3 0v19.675"/>
                                                <rect stroke-linejoin="round" x="1" y="20" width="4" height="16" rx="2"/>
                                            </g>
                                            <g transform="translate(43 10)" stroke="#B59151">
                                                <path stroke-linecap="round" d="M2 15.968v3.674"/>
                                                <path d="M4 15.642H0L.014 4.045A4.05 4.05 0 014.028 0L4 15.642z" stroke-linecap="round" stroke-linejoin="round"/>
                                                <rect stroke-linejoin="round" y="19.968" width="4" height="16" rx="2"/>
                                            </g>
                                            <path d="M41.364 8.062A23.888 23.888 0 0028 4a23.89 23.89 0 00-11.95 3.182M4.75 22.021A24.045 24.045 0 004 28c0 1.723.182 3.404.527 5.024m10.195 14.971A23.888 23.888 0 0028 52c4.893 0 9.444-1.464 13.239-3.979m9-10.98A23.932 23.932 0 0052 28c0-2.792-.477-5.472-1.353-7.964" stroke="#FFD576" stroke-linecap="round"/>
                                        </g>
                                    </svg>
                                </svg>
                            </div>
                            <div class="info">
                                <div class="title">
                                    <span class="prefix">Super</span>
                                    forker
                                </div>
                                <div class="text">Forked 12 public repositories</div>
                            </div>
                        </div>
                        <div class="achievement b largeable-width-half">
                            <div class="icon">
                                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" height="44" width="44">
                                    <defs>
                                        <mask id="mask">
                                            <circle class="gauge-base" r="25" cx="28" cy="28" fill="white"/>
                                        </mask>
                                    </defs>
                                    <svg xmlns="http://www.w3.org/2000/svg" class="gauge info">
                                        <circle class="gauge-base" r="25" cx="28" cy="28"/>
                                        <circle class="gauge-arc" transform="rotate(-90 28 28)" r="25" cx="28" cy="28" stroke-dasharray="95.58333333333334 155"/>
                                    </svg>
                                    <svg xmlns="http://www.w3.org/2000/svg" mask="url(#mask)">
                                        <g stroke-width="2" fill="none" fill-rule="evenodd">
                                            <g stroke="#B2A8FF">
                                                <path d="M11 40a2 2 0 100-4 2 2 0 000 4z"/>
                                                <path d="M11 34v1m0 5v3m0 3v3" stroke-linecap="round"/>
                                            </g>
                                            <g stroke="#B2A8FF" stroke-linecap="round" stroke-linejoin="round">
                                                <path d="M47.01 41.009h-4M45.016 39v4"/>
                                            </g>
                                            <path d="M27.982 5c2.79 1.873 4.46 5.876 5.008 12.01l2.059.659a1.606 1.606 0 011.606-1.665h.84a2.513 2.513 0 012.511 2.508l.004 1.496 3.197 1.588a1.951 1.951 0 011.684-.952l.509.002c.898.003 1.625.73 1.629 1.629l.008 2.115L51 27.606v1.945l-4.815-1.211c-.474.894-.87 1.48-1.192 1.757-.345-.328-.814-1.158-1.406-2.49L38.744 26.5c-.402 1.153-.845 1.828-1.328 2.026-.451-.444-1.04-1.55-1.409-2.821-1.481-.286-2.486-.56-2.994-.688-.27 2.397-1.036 6.884-2.009 10.982l5.006 4.438-6.555-1.08-1.454 3.654-1.45-3.658-6.56 1.082 4.996-4.417c-.899-4.02-1.576-7.684-2.03-10.992a37.29 37.29 0 01-2.967.679c-.38 1.252-.845 2.191-1.396 2.817-.63-.184-1.142-1.474-1.338-2.023-.705.15-2.323.519-4.853 1.107-.601 1.388-1.07 2.218-1.41 2.49a7.032 7.032 0 01-1.173-1.758L5 29.55v-1.945l3.99-3.265v-2.102a1.604 1.604 0 011.625-1.604l.528.007c.68.008 1.307.37 1.654.956l3.184-1.614.003-1.467a2.503 2.503 0 012.511-2.497l.863.003a1.6 1.6 0 011.594 1.646 62.42 62.42 0 012.024-.667c.572-6.097 2.24-10.098 5.006-12.002z" stroke="#7D6CFF" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path stroke="#B2A8FF" stroke-linecap="round" d="M45.016 36.032v-2M45.016 49.032v-3M38.978 36.089v-3.153M17.016 36.089v-3.153M51.031 51.165v-2.193m0-2.972V35.013M4.974 51.165v-2.193m0-2.972V35.013"/>
                                        </g>
                                    </svg>
                                </svg>
                            </div>
                            <div class="info">
                                <div class="title">
                                    <span class="prefix">Great</span>
                                    deployer
                                </div>
                                <div class="text">Repositories have been deployed 385 times</div>
                            </div>
                        </div>
                        <div class="achievement b largeable-width-half">
                            <div class="icon">
                                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" height="44" width="44">
                                    <defs>
                                        <mask id="mask">
                                            <circle class="gauge-base" r="25" cx="28" cy="28" fill="white"/>
                                        </mask>
                                    </defs>
                                    <svg xmlns="http://www.w3.org/2000/svg" class="gauge info">
                                        <circle class="gauge-base" r="25" cx="28" cy="28"/>
                                        <circle class="gauge-arc" transform="rotate(-90 28 28)" r="25" cx="28" cy="28" stroke-dasharray="77.5 155"/>
                                    </svg>
                                    <svg xmlns="http://www.w3.org/2000/svg" mask="url(#mask)">
                                        <g stroke-linecap="round" stroke-width="2" fill="none" fill-rule="evenodd">
                                            <g stroke="#B2A8FF" stroke-linejoin="round">
                                                <path d="M30 51H16.543v-2.998h-4v2.976l-5.537.016a2 2 0 01-2.006-2v-8.032a2 2 0 01.75-1.562l9.261-7.406 5.984 5.143m29.992 3.864v10h-6v-3h-5v3h-6m-.987-33c.133-1.116.793-2.106 1.978-2.968.44-.32 5.776-3.664 16.01-10.032v36"/>
                                                <path d="M19 34.994v-8.982m16 0V49a2 2 0 01-2 2h-8.987l.011-6.957"/>
                                            </g>
                                            <path stroke="#B2A8FF" d="M40 38h5M40 34h5"/>
                                            <path stroke="#7D6CFF" d="M25 30h5M25 34h5M25 26h5"/>
                                            <path d="M35.012 22.003H9.855a4.843 4.843 0 010-9.686h1.479c1.473-4.268 4.277-6.674 8.41-7.219 6.493-.856 9.767 4.27 10.396 5.9.734-.83 2.137-2.208 4.194-1.964a4.394 4.394 0 011.685.533" stroke="#7D6CFF" stroke-linejoin="round"/>
                                        </g>
                                    </svg>
                                </svg>
                            </div>
                            <div class="info">
                                <div class="title">
                                    <span class="prefix">Great</span>
                                    worker
                                </div>
                                <div class="text">Joined 3 organizations</div>
                            </div>
                        </div>
                        <div class="achievement c largeable-width-half">
                            <div class="icon">
                                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" height="44" width="44">
                                    <defs>
                                        <mask id="mask">
                                            <circle class="gauge-base" r="25" cx="28" cy="28" fill="white"/>
                                        </mask>
                                    </defs>
                                    <svg xmlns="http://www.w3.org/2000/svg" class="gauge info">
                                        <circle class="gauge-base" r="25" cx="28" cy="28"/>
                                        <circle class="gauge-arc" transform="rotate(-90 28 28)" r="25" cx="28" cy="28" stroke-dasharray="68.88888888888889 155"/>
                                    </svg>
                                    <svg xmlns="http://www.w3.org/2000/svg" mask="url(#mask)">
                                        <g transform="translate(4 4)" fill="none" fill-rule="evenodd">
                                            <path d="M20.065 47.122c.44-.525.58-1.448.58-1.889 0-2.204-1.483-3.967-3.633-4.187.447-1.537.58-2.64.397-3.31-.25-.92-.745-1.646-1.409-2.235m-5.97-7.157c.371-.254.911-.748 1.62-1.48a8.662 8.662 0 001.432-2.366M47 22h-7c-1.538 0-2.749-.357-4-1h-5c-1.789.001-3-1.3-3-2.955 0-1.656 1.211-3.04 3-3.045h2c.027-1.129.513-2.17 1-3m3.082 32.004C34.545 43.028 34.02 40.569 34 39v-1h-1c-2.603-.318-5-2.913-5-5.997S30.397 26 33 26h9c2.384 0 4.326 1.024 5.27 3" stroke="#79B8FF" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
                                            <g transform="translate(36)" stroke="#2088FF" stroke-width="2">
                                                <path fill="#2088FF" stroke-linecap="round" stroke-linejoin="round" d="M5.395 5.352L6.009 4l.598 1.348L8 5.408l-1.067 1.12.425 1.47-1.356-.908-1.35.91.404-1.469L4 5.41z"/>
                                                <circle cx="6" cy="6" r="6"/>
                                            </g>
                                            <g transform="translate(0 31)" stroke="#2088FF" stroke-width="2">
                                                <circle cx="6" cy="6" r="6"/>
                                                <g stroke-linecap="round">
                                                    <path d="M6 4v4M4 6h4"/>
                                                </g>
                                            </g>
                                            <circle stroke="#2088FF" stroke-width="2" cx="10.5" cy="10.5" r="10.5"/>
                                            <g stroke-linecap="round">
                                                <path d="M32.01 1.37A23.96 23.96 0 0024 0c-.999 0-1.983.061-2.95.18M.32 20.072a24.21 24.21 0 00.015 7.948M12.42 45.025A23.892 23.892 0 0024 48c13.255 0 24-10.745 24-24 0-2.811-.483-5.51-1.371-8.016" stroke="#79B8FF" stroke-width="2"/>
                                                <path stroke="#2088FF" stroke-width="2" d="M8.999 7.151v5.865"/>
                                                <path d="M9 3a2 2 0 110 4 2 2 0 010-4zm0 10.8a2 2 0 11-.001 4 2 2 0 01.001-4z" stroke="#2088FF" stroke-width="1.8"/>
                                                <path d="M9.622 11.838c.138-.007.989.119 1.595-.05.607-.169 1.584-.539 1.829-1.337" stroke="#2088FF" stroke-width="2"/>
                                                <path d="M14.8 7.202a2 2 0 110 4 2 2 0 010-4z" stroke="#2088FF" stroke-width="1.8"/>
                                            </g>
                                        </g>
                                    </svg>
                                </svg>
                            </div>
                            <div class="info">
                                <div class="title">
                                    <span class="prefix"></span>
                                    Inspirer
                                    <span class="gh">ranked 275k out of 59m repositories</span>
                                </div>
                                <div class="text">Maintaining or created a repository which has been forked 45 times</div>
                            </div>
                        </div>
                        <div class="achievement c largeable-width-half">
                            <div class="icon">
                                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" height="44" width="44">
                                    <defs>
                                        <mask id="mask">
                                            <circle class="gauge-base" r="25" cx="28" cy="28" fill="white"/>
                                        </mask>
                                    </defs>
                                    <svg xmlns="http://www.w3.org/2000/svg" class="gauge info">
                                        <circle class="gauge-base" r="25" cx="28" cy="28"/>
                                        <circle class="gauge-arc" transform="rotate(-90 28 28)" r="25" cx="28" cy="28" stroke-dasharray="51.40703517587939 155"/>
                                    </svg>
                                    <svg xmlns="http://www.w3.org/2000/svg" mask="url(#mask)">
                                        <g stroke-width="2" fill="none" fill-rule="evenodd">
                                            <path stroke="#79B8FF" stroke-linecap="round" stroke-linejoin="round" d="M26.022 5.014h6M26.012 53.005h6M27.003 47.003h12M44.01 20.005h5M19.01 11.003h12"/>
                                            <path stroke="#2088FF" stroke-linecap="round" stroke-linejoin="round" d="M38.005 11.008h6M41 14.013v-6M14.007 47.003h6M17.002 50.004v-6"/>
                                            <path d="M29.015 5.01l-5.003 5.992 5.003-5.992zM33.015 47.01l-5.003 5.992 5.003-5.992z" stroke="#79B8FF"/>
                                            <path stroke="#2088FF" stroke-linecap="round" stroke-linejoin="round" d="M8.01 19.002h6"/>
                                            <path stroke="#79B8FF" stroke-linecap="round" stroke-linejoin="round" d="M47.011 29h6"/>
                                            <path stroke="#2088FF" stroke-linecap="round" stroke-linejoin="round" d="M44.012 39.003h6"/>
                                            <g stroke="#79B8FF">
                                                <path d="M5.36 29c4.353 0 6.4 4.472 6.4 8"/>
                                                <path stroke-linecap="round" stroke-linejoin="round" d="M13.99 37.995h-5M10.989 29h-6"/>
                                            </g>
                                            <path d="M24.503 22c1.109 0 2.007.895 2.007 2 0 1.104-.898 2-2.007 2a2.004 2.004 0 01-2.008-2c0-1.105.9-2 2.008-2zM24.5 32a2 2 0 110 4 2 2 0 010-4zm9.5 0a2 2 0 110 4 2 2 0 010-4z" stroke="#2088FF" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path stroke="#2088FF" d="M24.5 26.004v6.001"/>
                                            <path d="M31.076 23.988l1.027-.023a1.998 1.998 0 011.932 2.01L34 31" stroke="#2088FF" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path stroke="#2088FF" stroke-linecap="round" stroke-linejoin="round" d="M31.588 26.222l-2.194-2.046 2.046-2.194"/>
                                            <path d="M29.023 43c7.732 0 14-6.268 14-14s-6.268-14-14-14-14 6.268-14 14 6.268 14 14 14z" stroke="#2088FF"/>
                                        </g>
                                    </svg>
                                </svg>
                            </div>
                            <div class="info">
                                <div class="title">
                                    <span class="prefix"></span>
                                    Contributor
                                </div>
                                <div class="text">Opened 67 pull requests</div>
                            </div>
                        </div>
                        <div class="achievement c largeable-width-half">
                            <div class="icon">
                                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" height="44" width="44">
                                    <defs>
                                        <mask id="mask">
                                            <circle class="gauge-base" r="25" cx="28" cy="28" fill="white"/>
                                        </mask>
                                    </defs>
                                    <svg xmlns="http://www.w3.org/2000/svg" class="gauge info">
                                        <circle class="gauge-base" r="25" cx="28" cy="28"/>
                                        <circle class="gauge-arc" transform="rotate(-90 28 28)" r="25" cx="28" cy="28" stroke-dasharray="25.703517587939697 155"/>
                                    </svg>
                                    <svg xmlns="http://www.w3.org/2000/svg" mask="url(#mask)">
                                        <g transform="translate(4 4)" stroke-width="2" fill="none" fill-rule="evenodd">
                                            <path d="M33.432 1.924A23.922 23.922 0 0024 0c-3.945 0-7.668.952-10.95 2.638m-9.86 9.398A23.89 23.89 0 000 24a23.9 23.9 0 002.274 10.21m3.45 5.347a23.992 23.992 0 0012.929 7.845m13.048-.664c4.43-1.5 8.28-4.258 11.123-7.848m3.16-5.245A23.918 23.918 0 0048 24c0-1.87-.214-3.691-.619-5.439M40.416 6.493a24.139 24.139 0 00-1.574-1.355" stroke="#79B8FF" stroke-linecap="round"/>
                                            <path stroke="#79B8FF" d="M4.582 33.859l1.613-7.946"/>
                                            <circle stroke="#79B8FF" cx="6.832" cy="23" r="3"/>
                                            <path stroke="#2088FF" d="M17.444 39.854l4.75 3.275"/>
                                            <path stroke="#79B8FF" stroke-linecap="round" d="M7.647 14.952l-.433 4.527"/>
                                            <circle stroke="#2088FF" cx="15" cy="38" r="3"/>
                                            <path stroke="#2088FF" d="M22.216 9.516l.455 4.342"/>
                                            <path stroke="#79B8FF" stroke-linecap="round" d="M34.272 6.952l-2.828 5.25"/>
                                            <path stroke="#2088FF" stroke-linecap="square" d="M11.873 7.235l6.424-.736"/>
                                            <path stroke="#79B8FF" stroke-linecap="round" d="M28.811 5.445l3.718-.671"/>
                                            <path stroke="#2088FF" d="M42.392 22.006l.456-5.763M34.349 24.426l4.374.447"/>
                                            <path d="M20 28c.267-1.727 1.973-3 4-3 2.08 0 3.787 1.318 4 3m-4-9a3 3 0 110 6 3 3 0 010-6z" stroke="#2088FF" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path d="M24 14c5.523 0 10 4.477 10 10s-4.477 10-10 10-10-4.477-10-10 4.477-10 10-10z" stroke="#2088FF" stroke-linecap="round" stroke-linejoin="round"/>
                                            <circle stroke="#79B8FF" cx="35.832" cy="4" r="3"/>
                                            <circle stroke="#79B8FF" cx="44" cy="36" r="3"/>
                                            <circle stroke="#79B8FF" cx="34.832" cy="37" r="3"/>
                                            <circle stroke="#2088FF" cx="21.654" cy="6.437" r="3"/>
                                            <path d="M25.083 48.102a3 3 0 100-6 3 3 0 000 6z" stroke="#2088FF"/>
                                            <path d="M8.832 5a3 3 0 110 6 3 3 0 010-6z" stroke="#2088FF" stroke-linecap="round"/>
                                            <circle stroke="#79B8FF" cx="4" cy="37" r="3"/>
                                            <path d="M42.832 10a3 3 0 110 6 3 3 0 010-6z" stroke="#2088FF" stroke-linecap="round"/>
                                            <path stroke="#79B8FF" stroke-linecap="round" d="M32.313 38.851l-1.786 1.661"/>
                                            <circle stroke="#2088FF" cx="42" cy="25" r="3"/>
                                            <path stroke="#2088FF" stroke-linecap="square" d="M18.228 32.388l-1.562 2.66"/>
                                            <path stroke="#79B8FF" d="M37.831 36.739l2.951-.112"/>
                                        </g>
                                    </svg>
                                </svg>
                            </div>
                            <div class="info">
                                <div class="title">
                                    <span class="prefix"></span>
                                    Influencer
                                    <span class="gh">ranked 370k out of 130m users</span>
                                </div>
                                <div class="text">Followed by 34 users</div>
                            </div>
                        </div>
                        <div class="achievement c largeable-width-half">
                            <div class="icon">
                                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" height="44" width="44">
                                    <defs>
                                        <mask id="mask">
                                            <circle class="gauge-base" r="25" cx="28" cy="28" fill="white"/>
                                        </mask>
                                    </defs>
                                    <svg xmlns="http://www.w3.org/2000/svg" class="gauge info">
                                        <circle class="gauge-base" r="25" cx="28" cy="28"/>
                                        <circle class="gauge-arc" transform="rotate(-90 28 28)" r="25" cx="28" cy="28" stroke-dasharray="17.53253253253253 155"/>
                                    </svg>
                                    <svg xmlns="http://www.w3.org/2000/svg" mask="url(#mask)">
                                        <g transform="translate(4 4)" fill="none" fill-rule="evenodd">
                                            <path d="M39 15h.96l4.038 3-.02-3H45a2 2 0 002-2V3a2 2 0 00-2-2H31a2 2 0 00-2 2v4.035" stroke="#79B8FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path stroke="#2088FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M36 5.014l-3 3 3 3M40 5.014l3 3-3 3"/>
                                            <path d="M6 37a1 1 0 110 2 1 1 0 010-2m7 0a1 1 0 110 2 1 1 0 010-2m-2.448 1a1 1 0 11-2 0 1 1 0 012 0z" fill="#2088FF"/>
                                            <path d="M1.724 15.05A23.934 23.934 0 000 24c0 .686.029 1.366.085 2.037m19.92 21.632c1.3.218 2.634.331 3.995.331a23.92 23.92 0 009.036-1.76m13.207-13.21A23.932 23.932 0 0048 24c0-1.363-.114-2.7-.332-4M25.064.022a23.932 23.932 0 00-10.073 1.725" stroke="#79B8FF" stroke-width="2" stroke-linecap="round"/>
                                            <path d="M19 42.062V43a2 2 0 01-2 2H9.04l-4.038 3 .02-3H3a2 2 0 01-2-2V33a2 2 0 012-2h4.045" stroke="#79B8FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path d="M6 0a6 6 0 110 12A6 6 0 016 0z" stroke="#2088FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path stroke="#2088FF" stroke-width="2" stroke-linecap="round" d="M6 3v6M3 6h6"/>
                                            <path d="M42 36a6 6 0 110 12 6 6 0 010-12z" stroke="#2088FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path stroke="#2088FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M44.338 40.663l-3.336 3.331-1.692-1.686M31 31c-.716-2.865-3.578-5-7-5-3.423 0-6.287 2.14-7 5"/>
                                            <path d="M24 16a5 5 0 110 10 5 5 0 010-10z" stroke="#2088FF" stroke-width="2" stroke-linecap="round"/>
                                            <circle stroke="#2088FF" stroke-width="2" cx="24" cy="24" r="14"/>
                                        </g>
                                    </svg>
                                </svg>
                            </div>
                            <div class="info">
                                <div class="title">
                                    <span class="prefix"></span>
                                    Maintainer
                                    <span class="gh">ranked 307k out of 59m repositories</span>
                                </div>
                                <div class="text">Maintaining a repository with 114 stars</div>
                            </div>
                        </div>
                        <div class="achievement c largeable-width-half">
                            <div class="icon">
                                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" height="44" width="44">
                                    <defs>
                                        <mask id="mask">
                                            <circle class="gauge-base" r="25" cx="28" cy="28" fill="white"/>
                                        </mask>
                                    </defs>
                                    <svg xmlns="http://www.w3.org/2000/svg" class="gauge info">
                                        <circle class="gauge-base" r="25" cx="28" cy="28"/>
                                        <circle class="gauge-arc" transform="rotate(-90 28 28)" r="25" cx="28" cy="28" stroke-dasharray="6.231155778894473 155"/>
                                    </svg>
                                    <svg xmlns="http://www.w3.org/2000/svg" mask="url(#mask)">
                                        <g fill="none" fill-rule="evenodd">
                                            <path d="M6 42c.45-3.415 3.34-6 7-6 1.874 0 3.752.956 5 3m-6-13a5 5 0 110 10 5 5 0 010-10zm38 16c-.452-3.415-3.34-6-7-6-1.874 0-3.752.956-5 3m6-13a5 5 0 100 10 5 5 0 000-10z" stroke="#79B8FF" stroke-width="2" stroke-linecap="round"/>
                                            <path d="M37 51c-.92-4.01-4.6-7-9-7-4.401 0-8.083 2.995-9 7" stroke="#2088FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path d="M28.01 31.004a6.5 6.5 0 110 13 6.5 6.5 0 010-13z" stroke="#2088FF" stroke-width="2" stroke-linecap="round"/>
                                            <path d="M28 14.011a5 5 0 11-5 4.998 5 5 0 015-4.998z" stroke="#79B8FF" stroke-width="2" stroke-linecap="round"/>
                                            <path d="M22 26c1.558-1.25 3.665-2 6-2 2.319 0 4.439.761 6 2" stroke="#79B8FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path d="M51 9V8c0-1.3-1.574-3-3-3h-8c-1.426 0-3 1.7-3 3v13l4-4h6c2.805-.031 4-1.826 4-4V9zM5 9V8c0-1.3 1.574-3 3-3h8c1.426 0 3 1.7 3 3v13l-4-4H9c-2.805-.031-4-1.826-4-4V9z" stroke="#2088FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path d="M43 11a1 1 0 11-2 0 1 1 0 012 0zm4 0a1 1 0 11-2 0 1 1 0 012 0zm-36 0a1 1 0 11-2 0 1 1 0 012 0zm4 0a1 1 0 11-2 0 1 1 0 012 0z" fill="#2088FF"/>
                                        </g>
                                    </svg>
                                </svg>
                            </div>
                            <div class="info">
                                <div class="title">
                                    <span class="prefix"></span>
                                    Chatter
                                </div>
                                <div class="text">Participated in discussions 9 times</div>
                            </div>
                        </div>
                        <div class="achievement c largeable-width-half">
                            <div class="icon">
                                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" height="44" width="44">
                                    <defs>
                                        <mask id="mask">
                                            <circle class="gauge-base" r="25" cx="28" cy="28" fill="white"/>
                                        </mask>
                                    </defs>
                                    <svg xmlns="http://www.w3.org/2000/svg" class="gauge info">
                                        <circle class="gauge-base" r="25" cx="28" cy="28"/>
                                        <circle class="gauge-arc" transform="rotate(-90 28 28)" r="25" cx="28" cy="28" stroke-dasharray="0 155"/>
                                    </svg>
                                    <svg xmlns="http://www.w3.org/2000/svg" mask="url(#mask)">
                                        <g stroke-width="2" fill="none" fill-rule="evenodd">
                                            <path d="M20 48.875v-12.75c0-1.33.773-2.131 2.385-2.125h26.23c1.612-.006 2.385.795 2.385 2.125v12.75C51 50.198 50.227 51 48.615 51h-26.23C20.773 51 20 50.198 20 48.875zM37 40.505h9M37 44.492h6" stroke="#2088FF" stroke-linecap="round" stroke-linejoin="round"/>
                                            <path stroke="#79B8FF" stroke-linecap="round" stroke-linejoin="round" d="M14 30h-4M16 35h-3M47 10H5M42 15H24M19 15h-9M16 25h-3M42 20h-2M42 20h-2M42 25h-2M16 20h-3"/>
                                            <path stroke="#2088FF" stroke-linecap="round" stroke-linejoin="round" d="M31.974 25H24"/>
                                            <path d="M22 20h12a2 2 0 012 2v6a2 2 0 01-2 2H22a2 2 0 01-2-2v-6a2 2 0 012-2z" stroke="#2088FF"/>
                                            <path d="M5 33V7a2 2 0 012-2h38a2 2 0 012 2v23" stroke="#79B8FF" stroke-linecap="round"/>
                                            <path d="M5 30v8c0 1.105.892 2 1.993 2H16" stroke="#79B8FF" stroke-linecap="round"/>
                                            <g stroke="#2088FF" stroke-linecap="round">
                                                <path d="M26.432 37.933v7.07M26.432 37.933v9.07M24.432 40.433h7.07M24.432 40.433h8.07M24.432 44.433h7.07M24.432 44.433h8.07M30.432 37.933v9.07"/>
                                            </g>
                                        </g>
                                    </svg>
                                </svg>
                            </div>
                            <div class="info">
                                <div class="title">
                                    <span class="prefix"></span>
                                    Gister
                                </div>
                                <div class="text">Published 1 gist</div>
                            </div>
                        </div>
                        <div class="achievement secret largeable-width-half">
                            <div class="icon">
                                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" height="44" width="44">
                                    <defs>
                                        <mask id="mask">
                                            <circle class="gauge-base" r="25" cx="28" cy="28" fill="white"/>
                                        </mask>
                                    </defs>
                                    <svg xmlns="http://www.w3.org/2000/svg" class="gauge info">
                                        <circle class="gauge-base" r="25" cx="28" cy="28"/>
                                        <circle class="gauge-arc" transform="rotate(-90 28 28)" r="25" cx="28" cy="28" stroke-dasharray="155 155"/>
                                    </svg>
                                    <svg xmlns="http://www.w3.org/2000/svg" mask="url(#mask)">
                                        <g stroke-linecap="round" stroke-linejoin="round" stroke-width="2" fill="none" fill-rule="evenodd">
                                            <path d="M46 17.036v13.016c0 4.014-.587 8.94-4.751 13.67-5.787 5.911-12.816 8.279-13.243 8.283-.426.003-7.91-2.639-13.222-8.283C10.718 39.4 10 34.056 10 30.052V17.036a2 2 0 012-2h32a2 2 0 012 2zM16 15c0-6.616 5.384-12 12-12s12 5.384 12 12" stroke="#FF92D8"/>
                                            <path d="M21 15c0-3.744 3.141-7 7-7 3.86 0 7 3.256 7 7m4.703 29.63l-3.672-3.647m-17.99-17.869l-7.127-7.081" stroke="#FF92D8"/>
                                            <path d="M28 23a8 8 0 110 16 8 8 0 010-16z" stroke="#FF48BD"/>
                                            <path stroke="#FF48BD" d="M30.966 29.005l-4 3.994-2.002-1.995"/>
                                        </g>
                                    </svg>
                                </svg>
                            </div>
                            <div class="info">
                                <div class="title">
                                    <span class="prefix"></span>
                                    Verified
                                </div>
                                <div class="text">Registered a GPG key to sign commits</div>
                            </div>
                        </div>
                        <div class="achievement secret largeable-width-half">
                            <div class="icon">
                                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" height="44" width="44">
                                    <defs>
                                        <mask id="mask">
                                            <circle class="gauge-base" r="25" cx="28" cy="28" fill="white"/>
                                        </mask>
                                    </defs>
                                    <svg xmlns="http://www.w3.org/2000/svg" class="gauge info">
                                        <circle class="gauge-base" r="25" cx="28" cy="28"/>
                                        <circle class="gauge-arc" transform="rotate(-90 28 28)" r="25" cx="28" cy="28" stroke-dasharray="155 155"/>
                                    </svg>
                                    <svg xmlns="http://www.w3.org/2000/svg" mask="url(#mask)">
                                        <g transform="translate(4 5)" stroke-width="2" fill="none" fill-rule="evenodd">
                                            <g stroke-linecap="round" stroke-linejoin="round">
                                                <path stroke="#FF48BD" d="M26.478 22l.696 2.087 3.478.696v2.782l-3.478 1.392-.696 1.39 1.392 3.48-1.392 1.39L23 33.827l-1.391.695L20.217 38h-2.782l-1.392-3.478-1.39-.696-3.48 1.391-1.39-1.39 1.39-3.48-.695-1.39L7 27.565v-2.782l3.478-1.392.696-1.391-1.391-3.478 1.39-1.392 3.48 1.392 1.39-.696 1.392-3.478h2.782l1.392 3.478 1.391.696 3.478-1.392 1.392 1.392z"/>
                                                <path stroke="#FF92D8" d="M24.779 12.899l-1.475-2.212 1.475-1.475 2.95 1.475 1.474-.738.737-2.934h2.212l.737 2.934 1.475.738 2.95-1.475 1.474 1.475-1.475 2.949.738 1.475 2.949.737v2.212l-2.95.737-.737 1.475 1.475 2.949-1.475 1.475-2.949-1.475"/>
                                            </g>
                                            <path stroke="#FF48BD" stroke-linecap="round" d="M5.932 5.546l7.082 6.931"/>
                                            <path stroke="#FF92D8" stroke-linecap="round" d="M32.959 31.99l8.728 8.532"/>
                                            <circle stroke="#FF92D8" cx="44" cy="43" r="3"/>
                                            <circle stroke="#FF48BD" cx="13" cy="2" r="2"/>
                                            <circle stroke="#FF92D8" cx="35" cy="44" r="2"/>
                                            <circle stroke="#FF92D8" cx="3" cy="12" r="2"/>
                                            <circle stroke="#FF48BD" cx="45" cy="34" r="2"/>
                                            <path d="M3.832 0a3 3 0 110 6 3 3 0 010-6zM8.04 10.613l2.1-.613M10.334 9.758l1.914-5.669" stroke="#FF48BD" stroke-linecap="round"/>
                                            <path stroke="#FF92D8" stroke-linecap="round" d="M40.026 35.91l-2.025.591M35.695 41.965l1.843-5.326"/>
                                            <path d="M16 2h23.038a6 6 0 016 6v24.033" stroke="#FF48BD" stroke-linecap="round"/>
                                            <path d="M32.038 44.033H9a6 6 0 01-6-6V14" stroke="#FF92D8" stroke-linecap="round"/>
                                            <path d="M17.533 22.154l5.113 3.22a1 1 0 01-.006 1.697l-5.113 3.17a1 1 0 01-1.527-.85V23a1 1 0 011.533-.846zm11.58-7.134v-.504a1 1 0 011.53-.85l3.845 2.397a1 1 0 01-.006 1.701l-3.846 2.358" stroke="#FF48BD" stroke-linecap="round" stroke-linejoin="round"/>
                                        </g>
                                    </svg>
                                </svg>
                            </div>
                            <div class="info">
                                <div class="title">
                                    <span class="prefix"></span>
                                    Automator
                                </div>
                                <div class="text">Use GitHub Actions to automate profile updates</div>
                            </div>
                        </div>
                    </section>
                </div>
            </section>
            <section>
                <h2 class="field">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                        <path fill-rule="evenodd" d="M4 1.75C4 .784 4.784 0 5.75 0h5.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v8.586A1.75 1.75 0 0114.25 15h-9a.75.75 0 010-1.5h9a.25.25 0 00.25-.25V6h-2.75A1.75 1.75 0 0110 4.25V1.5H5.75a.25.25 0 00-.25.25v2.5a.75.75 0 01-1.5 0v-2.5zm7.5-.188V4.25c0 .138.112.25.25.25h2.688a.252.252 0 00-.011-.013l-2.914-2.914a.272.272 0 00-.013-.011zM5.72 6.72a.75.75 0 000 1.06l1.47 1.47-1.47 1.47a.75.75 0 101.06 1.06l2-2a.75.75 0 000-1.06l-2-2a.75.75 0 00-1.06 0zM3.28 7.78a.75.75 0 00-1.06-1.06l-2 2a.75.75 0 000 1.06l2 2a.75.75 0 001.06-1.06L1.81 9.25l1.47-1.47z"/>
                    </svg>
                    Code snippet of the day
                </h2>
                <div class="row">
                    <section class="largeable-column-fields">
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <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"/>
                            </svg>
                            From
                            <span class="blue space">luciferreeves/mana</span>
                        </div>
                    </section>
                    <section class="largeable-column-fields">
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M1.5 8a6.5 6.5 0 1113 0 6.5 6.5 0 01-13 0zM8 0a8 8 0 100 16A8 8 0 008 0zm.5 4.75a.75.75 0 00-1.5 0v3.5a.75.75 0 00.471.696l2.5 1a.75.75 0 00.557-1.392L8.5 7.742V4.75z"/>
                            </svg>
                            On 24 Jan 2024, 16:58:00
                        </div>
                    </section>
                </div>
                <div class="row">
                    <section class="largeable-column-fields">
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"/>
                            </svg>
                            Updated Documentation
                        </div>
                        <div class="field">
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
                                <path fill-rule="evenodd" d="M8 1.5a6.5 6.5 0 100 13 6.5 6.5 0 000-13zM0 8a8 8 0 1116 0A8 8 0 010 8zm6.5-.25A.75.75 0 017.25 7h1a.75.75 0 01.75.75v2.75h.25a.75.75 0 010 1.5h-2a.75.75 0 010-1.5h.25v-2h-.25a.75.75 0 01-.75-.75zM8 6a1 1 0 100-2 1 1 0 000 2z"/>
                            </svg>
                            <span class="code">5dfc4cd6</span>
                            <span class="code">README.md</span>
                            <span class="code">
                                <span class="snippet additions">++5</span>
                                <span class="snippet deletions">--1</span>
                            </span>
                        </div>
                    </section>
                </div>
                <div class="row">
                    <section class="snippet">
                        <div class="body markdown">
                            <code class="language-diff" xml:space="preserve"><span class="token coord">@@ -56,5 +56,9 @@</span><br /><span class="token unchanged"><span class="token prefix unchanged">·</span><span class="token line">}<br /></span><span class="token prefix unchanged">·</span><span class="token line"><br /></span><span class="token prefix unchanged">·</span><span class="token line">// this will either add x and y if x is less than y, or return the difference between x and y<br /></span></span><span class="token deleted-sign deleted"><span class="token prefix deleted">-</span><span class="token line">let result = if (x &lt; y) { add(x, y) } else { subtract(x, y) };<br /></span></span><span class="token inserted-sign inserted"><span class="token prefix inserted">+</span><span class="token line">let result = if (x &lt; y) { <br /></span><span class="token prefix inserted">+</span><span class="token line">   add(x, y) <br /></span><span class="token prefix inserted">+</span><span class="token line">} else { <br /></span><span class="token prefix inserted">+</span><span class="token line">   subtract(x, y) <br /></span><span class="token prefix inserted">+</span><span class="token line">}; // result = 15<br /></span></span><span class="token unchanged"><span class="token prefix unchanged">·</span><span class="token line">```<br /></span></span>\No newline at end of file</code>
                        </div>
                    </section>
                </div>
            </section>
            <footer>
                <span>These metrics include private contributions</span>
                <span>Last updated 25 Jan 2024, 13:18:15 (timezone America/New_York) with lowlighter/[email protected]</span>
            </footer>
        </div>
        <div xmlns="http://www.w3.org/1999/xhtml" id="metrics-end"></div>
    </foreignObject>
</svg>