-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
955 lines (947 loc) · 106 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Kyle Holmberg Portfolio Website" />
<meta name="author" content="Kyle Holmberg" />
<title>Kyle Holmberg</title>
<link rel="stylesheet" type="text/css" href="dist/css/main.min.css" />
</head>
<body id="page-top">
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button
type="button"
class="navbar-toggle x collapsed"
data-toggle="collapse"
data-target="#navbar-collapse"
>
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand page-scroll" href="#top">KMH</a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a class="page-scroll" href="#top"><span class="sr-only">(current)</span></a>
</li>
<li data-toggle="collapse" data-target="#navbar-collapse.in">
<a class="page-scroll" href="#about">About</a>
</li>
<li data-toggle="collapse" data-target="#navbar-collapse.in">
<a class="page-scroll" href="#skills">Skills</a>
</li>
<li data-toggle="collapse" data-target="#navbar-collapse.in">
<a class="page-scroll" href="#projects">Projects</a>
</li>
<li data-toggle="collapse" data-target="#navbar-collapse.in">
<a class="page-scroll" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<header>
<div class="header-content">
<div class="header-content-inner">
<h1>Kyle Holmberg</h1>
<hr />
<p>
I'm a software engineer interested in front-end web development, developer experience, graphic design,
data visualization, soccer, travel, and video games.
</p>
<a href="#contact" class="btn btn-primary btn-xl page-scroll">Contact Me</a>
</div>
</div>
</header>
<!-- MARK: About -->
<section class="bg-primary" id="about">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="section-heading text-center">About</h2>
<br />
<img
src="public/img/me.jpg"
alt="My pretty face."
class="img-responsive center-block img-circle"
width="340px"
/>
<br />
<div class="center-block">
<p>
Howdy, my name is Kyle! I'll just jump into a bunch of things that aren't
immediately obvious from my resume... Lately, I've really enjoyed being
involved with component libraries, design systems, and improving continuous integration.
I'm still hoping that
<a href="https://www.creativebloq.com/web-design/snowfall-51411702">
"Snowfall" journalistic web design</a
>
becomes a more popular concept. I'm also constantly tinkering and bemoaning my
<a href="https://fantasy.premierleague.com">
Fantasy Premier League</a
> team. If I'm not coding or watching a concert, you will likely find me eternally suffering
as a fan of
<a href="http://www.arsenal.com/">Arsenal Football Club</a> or eating Taco Bell (or
"Taco Bae" as I so fondly refer to it). I'm one class away from earning my degree at
the University of Oregon with a Bachelor of Science in Computer Science and a minor
in Business Administration... and it'll probably stay that way forever!
</p>
</div>
</div>
</div>
<div class="row professional-exp">
<div class="col-lg-12">
<h3 class="section-heading text-center">I've Worked Professionally For:</h3>
<hr class="primary" />
<ol>
<li>Capsule</li>
<li>Air Labs Inc.</li>
<li>Acorns</li>
<li>NIKE [Contract]</li>
<li>AutoGravity <s>(now TurnCar)</s> (no longer exists)</li>
<li>LAIKA [Internship]</li>
<li>Charter Communications [Contract]</li>
<li>The Center on Teaching and Learning @ University of Oregon</li>
</ol>
</div>
</div>
</div>
</section>
<!-- MARK: Skills -->
<section class="bg-secondary" id="skills">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Skills</h2>
<hr class="primary" />
<br />
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<h3>Programming Languages</h3>
<hr class="light large" />
<div class="row icons">
<div class="col-lg-3 col-md-4 col-sm-4 col-xs-6">
<div class="flip-container" ontouchend="this.classList.toggle('hover');">
<div class="icon-container">
<svg class="icon center-block front" role="img" title="Python">
<use xlink:href="#python" />
</svg>
<div class="icon center-block back">
<h6>Python</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="JavaScript">
<use xlink:href="#javascript" />
</svg>
<div class="icon center-block back">
<h6>JavaScript</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="C">
<use xlink:href="#c" />
</svg>
<div class="icon center-block back">
<h6>C</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="C++">
<use xlink:href="#cpp" />
</svg>
<div class="icon center-block back">
<h6>C++</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br />
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<h3>Front-End</h3>
<hr class="light large" />
<div class="row icons">
<div class="col-lg-3 col-md-3 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="React">
<use xlink:href="#react" />
</svg>
<div class="icon center-block back">
<h6>React.js</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="Vue">
<use xlink:href="#vue" />
</svg>
<div class="icon center-block back">
<h6>Vue.js</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="Sass">
<use xlink:href="#sass" />
</svg>
<div class="icon center-block back">
<h6>Sass</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="Bootstrap">
<use xlink:href="#bootstrap" />
</svg>
<div class="icon center-block back">
<h6>Bootstrap</h6>
</div>
</div>
</div>
</div>
</div>
<div class="row icons">
<div class="col-lg-3 col-md-3 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="HTML">
<use xlink:href="#html" />
</svg>
<div class="icon center-block back">
<h6>HTML5</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="CSS">
<use xlink:href="#css" />
</svg>
<div class="icon center-block back">
<h6>CSS3</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="Photoshop">
<use xlink:href="#ps" />
</svg>
<div class="icon center-block back">
<h6>Photoshop</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="Illustrator">
<use xlink:href="#ai" />
</svg>
<div class="icon center-block back">
<h6>Illustrator</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br />
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<h3>Back-End</h3>
<hr class="light large" />
<div class="row icons">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="Flask">
<use xlink:href="#flask" />
</svg>
<div class="icon center-block back">
<h6>Flask</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="Django">
<use xlink:href="#django" />
</svg>
<div class="icon center-block back">
<h6>Django</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br />
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<h3>Infrastructure</h3>
<hr class="light large" />
<div class="row icons">
<div class="col-lg-2 col-md-4 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="Git">
<use xlink:href="#git" />
</svg>
<div class="icon center-block back">
<h6>Git</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-2 col-md-4 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="Gulp.js">
<use xlink:href="#gulpjs" />
</svg>
<div class="icon center-block back">
<h6>Gulp.js</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-2 col-md-4 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="Docker">
<use xlink:href="#docker" />
</svg>
<div class="icon center-block back">
<h6>Docker</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-2 col-md-4 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="Terminal">
<use xlink:href="#bash" />
</svg>
<div class="icon center-block back">
<h6>
Terminal<br />
<p>(Bash Scripting)</p>
</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-2 col-md-4 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="MySQL">
<use xlink:href="#mysql" />
</svg>
<div class="icon center-block back">
<h6>MySQL</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-2 col-md-4 col-sm-4 col-xs-6">
<div
class="flip-container"
ontouchstart="this.classList.toggle('hover');"
ontouchend="this.classList.toggle('hover');"
>
<div class="icon-container">
<svg class="icon center-block front" role="img" title="Postgres">
<use xlink:href="#postgres" />
</svg>
<div class="icon center-block back">
<h6>Postgres</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- MARK: Projects -->
<section class="bg-white" id="projects">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading" style="color:#222;">Projects</h2>
<hr class="dark" />
<div class="proj-desc">
<p>
As a young developer, I adhere to standard practice while also trying to push the
boundaries with new technologies.
<br />
<br />
I always work with Object-Oriented Principles in mind; I always design according the
Model-View-Controller pattern; and I always strive to write readable, scalable, and
speedy code!
<br />
<br />
Here are some of my favorite projects:
</p>
</div>
</div>
</div>
</div>
</section>
<section class="no-padding">
<div class="container-fluid">
<div class="row no-gutter popup-gallery">
<div class="col-lg-4 col-sm-6">
<a
href="https://github.com/kylemh/LOST"
class="portfolio-box"
ontouchstart="this.classList.toggle('hover');"
>
<img src="public/img/proj1.jpg" class="img-responsive" alt="LOST" />
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-name">
LOST Inventory Tracker
</div>
<div class="project-category text-faded">
Flask Web Application with a
<br />Linux, Apache, and Postgres Back-end
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a
href="https://github.com/operationcode/operationcode_frontend"
class="portfolio-box"
ontouchstart="this.classList.toggle('hover');"
>
<img src="public/img/proj4.jpg" id="oc" class="img-responsive" alt="OperationCode" />
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-name">
OperationCode:
<br />
React.js Front-End Redesign
</div>
<div class="project-category text-faded">
Website update for a non-profit, organization dedicated to getting American
Veterans into the tech industry.
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a
href="https://github.com/kylemh/FPL_Data_Visualization"
class="portfolio-box"
ontouchstart="this.classList.toggle('hover');"
>
<img src="public/img/proj3.jpg" class="img-responsive" alt="FPL Data Visualization" />
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-name">
Fantasy Premier League
<br />
Data Visualization
</div>
<div class="project-category text-faded">
An exploratory statistics report
<br />examining FPL via Python and d3.js
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a
href="https://github.com/kylemh/Ringo_Starr"
class="portfolio-box"
ontouchstart="this.classList.toggle('hover');"
>
<img src="public/img/proj2.jpg" class="img-responsive" alt="Ringo" />
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-name">
Ringo Starr: The Dancing Robot
</div>
<div class="project-category text-faded">
Integrated Arduino System
<br />with a lot of "moving parts"
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a
href="https://github.com/kylemh/Multithreaded_Network_Driver"
class="portfolio-box"
ontouchstart="this.classList.toggle('hover');"
>
<img
src="public/img/proj5.jpg"
class="img-responsive"
alt="Multithreaded Network Driver"
/>
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-name">
PThread-based Network Driver
</div>
<div class="project-category text-faded">
C project utilizing POSIX Threads
<br />to create a network demultiplexor
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a
href="https://github.com/kylemh/UO_CIS330/tree/master/assignment5"
class="portfolio-box"
ontouchstart="this.classList.toggle('hover');"
>
<img src="public/img/proj6.jpg" class="img-responsive" alt="" />
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-name">
Game of Life:
<br />
Farmers, Sheeps, and Wolves
</div>
<div class="project-category text-faded">
An ASCII variation on Conway's GoL using C++
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<!-- MARK: Contact -->
<section class="bg-primary" id="contact">
<div class="container text-center">
<h2 class="section-heading">Contact</h2>
<hr class="primary" />
<div class="flex-container contact-links">
<a class="contact-icon" href="mailto:[email protected]">
<svg
class="icon center-block"
aria-label="Send me an email: [email protected]"
title="My Email"
role="img"
>
<use xlink:href="#email" />
</svg>
</a>
<a class="contact-icon" href="https://www.linkedin.com/in/kylemh">
<svg
class="icon center-block"
aria-label="See my LinkedIn Account: kylemh"
title="My LinkedIn"
role="img"
>
<use xlink:href="#linkedin" />
</svg>
</a>
<a class="contact-icon" href="https://www.github.com/kylemh">
<svg
class="icon center-block"
aria-label="See my GitHub Account: kylemh"
title="My GitHub"
role="img"
>
<use xlink:href="#github" />
</svg>
</a>
<a class="contact-icon" href="public/resume.pdf">
<svg
class="icon center-block"
aria-label="See my Resume in PDF format"
role="img"
title="My Resume"
>
<use xlink:href="#pdf" />
</svg>
</a>
</div>
<div id="thank-you">
<h4>Thank you, and have a nice day.</h4>
</div>
</div>
</section>
<script src="https://use.fontawesome.com/05e6ca2cc0.js"></script>
<script src="dist/js/main.min.js"></script>
<!-- map.svg for internal SVG loading -->
<svg xmlns="http://www.w3.org/2000/svg" fill="white" style="display:none;">
<symbol id="ai" viewBox="0 0 1000 1000">
<title>Adobe Illustrator</title>
<path
d="M370.2 230.7C355 315 317 457.4 286.7 569h170.6c-20.2-79.9-67.7-254-85.6-338.3h-1.5z"
/>
<path
d="M899.6 0H100.4C45 0 0 45 0 100.4v799.2C0 955 45 1000 100.4 1000h799.2c55.4 0 100.4-45 100.4-100.4V100.4C1000 45 955 0 899.6 0zM676.8 908.6H557.3c-5.7 0-9.3-1.4-10.8-6.4l-59-216.7H257.2l-56.8 215.9c-1.4 5.7-3.6 7.2-10.8 7.2H83.7c-7.2 0-8.6-2.2-7.2-10.8l204.4-715.4c3.6-13 5.7-24.5 7.2-59.7 0-5 2.2-7.2 5.7-7.2H445c5 0 7.2 1.4 8.6 7.2l228.8 776.5c1.5 5.8.1 9.4-5.6 9.4zm242.5-8.6c0 5.7-1.4 8.6-8.6 8.6H799.1c-7.2 0-9.3-3.6-9.3-9.3V332.1h-.7c0-5.7 2.2-8.6 8.6-8.6h113c5.7 0 8.6 2.2 8.6 8.6V900zm-66.2-657.8c-41.8 0-72-25.9-72-73.4 0-46.1 32.4-73.4 73.4-73.4 43.9 0 73.4 29.5 73.4 73.4 0 47.5-30.9 73.4-74.8 73.4z"
/>
</symbol>
<symbol id="bootstrap" viewBox="0 0 1000 1000">
<title>Bootstrap</title>
<path
d="M608 425.3c15.3-11.3 22.9-29.7 22.9-55.1 0-14.1-2.6-25.7-7.6-34.8s-11.9-16.1-20.4-21.2c-8.5-5.1-18.2-8.6-29.2-10.6s-22.5-3-34.4-3H414.6v141.6h134.8c23.8.1 43.3-5.5 58.6-16.9zM629.2 553c-17.5-13.3-40.7-19.9-69.5-19.9h-145v166.2h142.5c13 0 25.4-1.3 37.3-3.8 11.9-2.6 22.3-6.8 31.4-12.7 9-5.9 16.2-14 21.6-24.2s8-23.2 8-39c0-31.1-8.8-53.3-26.3-66.6z"
/>
<path
d="M871 0H129C57.7 0 0 57.7 0 129v742c0 71.2 57.7 129 129 129h742c71.2 0 129-57.7 129-129V129c0-71.3-57.8-129-129-129zM770.8 706.5c-11.9 22.3-27.8 40.6-47.9 54.7s-43 24.6-68.7 31.4c-25.7 6.8-52.2 10.2-79.3 10.2H281.5V197.3h284.9c28.8 0 55.1 2.6 78.9 7.6 23.8 5.1 44.1 13.4 61 25 17 11.6 30.1 27 39.4 46.2 9.3 19.2 14 43 14 71.2 0 30.5-6.9 56-20.8 76.3s-34.4 37-61.5 50c37.3 10.8 65.2 29.5 83.5 56.4 18.4 26.8 27.6 59.2 27.6 97.1.1 30.6-5.8 57-17.7 79.4z"
/>
</symbol>
<symbol id="c" viewBox="0 0 1000 1000">
<title>C</title>
<path
d="M639 579.3c-5.5-3.2-11.1-6.4-16.7-9.6-4.5-2.5-5.8-2.1-8.4 2-14.3 22.2-32.7 39.8-57 50.6-17 7.5-34.9 10.7-53.4 11-20.6.3-40.5-3.4-59-12.4-23-11.1-40.6-28.4-54.5-49.4-.7-1-.9-2.4-1.5-3.6-.7-1.5-1.4-3.1-2.2-4.6-2.9-5.2-6.4-10.1-8.5-15.7-8.1-21.3-9.9-43.4-6.8-65.9 4.3-31.2 17.8-58 41.1-79.3 32.4-29.5 71-39.6 114-33 35.3 5.4 63 23.4 83.3 52.8 2.4 3.5 4.7 7.2 7.1 10.9 39.1-22.6 78-45.2 117.1-67.8-2.7-3.6-5.2-7-7.7-10.4-13.3-18.9-27.9-36.3-44.7-52.1-30.9-29-66.6-49.8-107.8-60.5-39.3-10.2-78.8-10.6-118.6-4-54.1 8.9-100.4 33.4-139.3 71.9-31.5 31.2-53.9 68.2-67.5 110.4-10.7 33.6-14.6 68.2-11.2 103.3 2.1 23 7.4 45.4 15.3 67.1 5.5 15.2 11.4 30.3 19.9 44.1 18 29.2 40.3 54.9 67.4 76.1 43.9 34.3 93.8 52.7 149.3 55.6 33.1 1.7 65.6-2.6 97.1-13 56-18.5 101.6-51.3 135.2-100.1 4.2-6.1 7.9-12.6 12-19.1-1.9-1.5-3.4-3.1-5.1-4.1-30.1-17-59.5-34.1-88.9-51.2z"
/>
<path
d="M899.6 0H100.4C45 0 0 45 0 100.4v799.2C0 955 45 1000 100.4 1000h799.2c55.4 0 100.4-45 100.4-100.4V100.4C1000 45 955 0 899.6 0zM918 691.4c0 11.9-2.1 23.5-6.7 34.5-8.1 19.3-22.2 33.2-40 43.6-97.7 56.6-195.4 113.2-293.2 169.7-12.9 7.4-25.8 14.8-39.1 21.4-14.6 7.2-30.1 9.6-46.4 7.8-14.6-1.6-27.9-6.8-40.5-14.1C378.1 911.5 304 868.9 230 826c-35.2-20.5-70.7-40.8-105.4-62-25.7-15.7-38.6-39.5-38.8-69.8-.1-15.7-.1-31.3-.1-46.9 0-.9-.3-1.8-.4-2.7V313.5c.1-1.1.4-2.2.4-3.2-.1-7.7.2-15.5 1.9-23.1 5-22 17.7-38.7 36.4-50.6 13.9-8.8 28.1-17 42.3-25.2 56.7-32.7 113.6-65.4 170.4-98.1 41-23.5 81.7-47.3 122.9-70.5 25.8-14.6 52.6-15.7 79.4-2.9 11.2 5.3 22 11.8 32.8 18.1 58.5 33.7 117.1 67.7 175.6 101.5 40.6 23.5 81.1 47 121.6 70.6 9.8 5.7 19.2 12.2 26.9 20.8 15.4 16.8 22 36.9 22 59.3.1 126.9.1 254.1.1 381.2z"
/>
</symbol>
<symbol id="cpp" viewBox="0 0 1000 1000">
<title>C++</title>
<path
d="M639 579.3c-5.5-3.2-11.1-6.4-16.7-9.6-4.5-2.5-5.8-2.1-8.4 2-14.3 22.2-32.7 39.8-57 50.6-17 7.5-34.9 10.7-53.4 11-20.6.3-40.5-3.4-59-12.4-23-11.1-40.6-28.4-54.5-49.4-.7-1-.9-2.4-1.5-3.6-.7-1.5-1.4-3.1-2.2-4.6-2.9-5.2-6.4-10.1-8.5-15.7-8.1-21.3-9.9-43.4-6.8-65.9 4.3-31.2 17.8-58 41.1-79.3 32.4-29.5 71-39.6 114-33 35.3 5.4 63 23.4 83.3 52.8 2.4 3.5 4.7 7.2 7.1 10.9 39.1-22.6 78-45.2 117.1-67.8-2.7-3.6-5.2-7-7.7-10.4-13.3-18.9-27.9-36.3-44.7-52.1-30.9-29-66.6-49.8-107.8-60.5-39.3-10.2-78.8-10.6-118.6-4-54.1 8.9-100.4 33.4-139.3 71.9-31.5 31.2-53.9 68.2-67.5 110.4-10.7 33.6-14.6 68.2-11.2 103.3 2.1 23 7.4 45.4 15.3 67.1 5.5 15.2 11.4 30.3 19.9 44.1 18 29.2 40.3 54.9 67.4 76.1 43.9 34.3 93.8 52.7 149.3 55.6 33.1 1.7 65.6-2.6 97.1-13 56-18.5 101.6-51.3 135.2-100.1 4.2-6.1 7.9-12.6 12-19.1-1.9-1.5-3.4-3.1-5.1-4.1-30.1-17-59.5-34.1-88.9-51.2z"
/>
<path d="M736.5 453h-30.4v32.4h-32.4v30.2h32.5V548h30.4v-32.3h32.2v-30.2h-32.3V453z" />
<path
d="M899.6 0H100.4C45 0 0 45 0 100.4v799.2C0 955 45 1000 100.4 1000h799.2c55.4 0 100.4-45 100.4-100.4V100.4C1000 45 955 0 899.6 0zM918 691.4c0 11.9-2.1 23.5-6.7 34.5-8.1 19.3-22.2 33.2-40 43.6-97.7 56.6-195.4 113.2-293.2 169.7-12.9 7.4-25.8 14.8-39.1 21.4-14.6 7.2-30.1 9.6-46.4 7.8-14.6-1.6-27.9-6.8-40.5-14.1C378.1 911.5 304 868.9 230 826c-35.2-20.5-70.7-40.8-105.4-62-25.7-15.7-38.6-39.5-38.8-69.8-.1-15.7-.1-31.3-.1-46.9 0-.9-.3-1.8-.4-2.7V313.5c.1-1.1.4-2.2.4-3.2-.1-7.7.2-15.5 1.9-23.1 5-22 17.7-38.7 36.4-50.6 13.9-8.8 28.1-17 42.3-25.2 56.7-32.7 113.6-65.4 170.4-98.1 41-23.5 81.7-47.3 122.9-70.5 25.8-14.6 52.6-15.7 79.4-2.9 11.2 5.3 22 11.8 32.8 18.1 58.5 33.7 117.1 67.7 175.6 101.5 40.6 23.5 81.1 47 121.6 70.6 9.8 5.7 19.2 12.2 26.9 20.8 15.4 16.8 22 36.9 22 59.3.1 126.9.1 254.1.1 381.2z"
/>
<path
d="M849.9 453.1h-30.1v32.4h-32.4v30.1h32.5V548h30.2v-32.4h32.4v-30.3H850c-.1-10.9-.1-21.5-.1-32.2z"
/>
</symbol>
<symbol id="css" viewBox="0 0 1000 1000">
<title>CSS</title>
<path
d="M513.8 339.1l-11.9 4.6L298 428.5l6.7 83.9v.7l196.7.4h105.7l-6.8 111.8-98.9 27.7-.6.2-95.4-24.1-5.8-69.2H311v-.5h-.4l11.6 134.4 179.4 53.1v-.8l.3.1L680 694.3l23.1-265.8H501l.5-.2 208.9-89.2h1.1l8.6-86H279.9l10.6 86z"
/>
<path
d="M900 0H100C44.8 0 0 44.8 0 100v800c0 55.2 44.8 100 100 100h800c55.2 0 100-44.8 100-100V100c0-55.2-44.8-100-100-100zM786.1 817.3l-284.5 76.6-284.5-76.6-65.6-711.1h700.1l-65.5 711.1z"
/>
</symbol>
<symbol id="d3js" viewBox="0 0 1000 1000">
<title>d3.js</title>
<path
d="M899.6 0H100.4C45 0 0 45 0 100.4v799.2C0 955 45 1000 100.4 1000h799.2c55.4 0 100.4-45 100.4-100.4V100.4C1000 45 955 0 899.6 0zm-24.9 802.8c-36.9 48.5-86.1 78.6-145.8 91.4-23.8 5.1-48 5-72.3 4.9-66.6-.1-133.1-.1-199.7-.1h-62.3c.1-1.7 1.5-1.9 2.4-2.5 68.2-43.4 121.8-100.5 161.5-170.7 1.7-3 3.5-3.8 6.8-3.8 38.1.1 76 .1 114.1 0 18.1 0 33.9-6.1 47.4-18.4 32.4-29.6 28.3-82.6-8.2-107-11.8-7.8-24.8-11.6-38.9-11.6-22.1-.1-44.2-.1-66.3 0-2.9 0-3.7-.4-3.1-3.6 4.9-26 7.4-52.3 7.7-78.8.3-22.2-1-44.4-4-66.5-1.2-8.6-2.4-17.2-4.1-25.7-.4-2 .3-2.5 2.2-2.5 14 .1 27.9.1 41.9.1h25.6c33.9-.1 63.5-24.6 68.4-56.7 5.3-35.4-14.2-67-48-77.5-7.1-2.2-14.6-3-22.1-3-37.9 0-75.8 0-113.7.1-3 0-4.6-.9-6.1-3.6-40.1-70.8-94.5-127.8-163.5-171-1.1-.7-2.4-1-3-2.3h304.7c5.4 2.5 11.2 1.3 16.9 2.1 25.2 3.6 49.3 10.8 72.4 21.8 26.5 12.6 50 29.3 70.4 50.3 28.6 29.3 48.8 63.7 60.1 103.1 3.5 12.3 6.2 25 7.7 37.8 7.9 68.1-9.4 129.2-51.7 183.1-2.6 3.3-3.7 5.1-.4 8.5 4.6 4.8 8.4 10.4 11.8 16.3 2.1 1.1 2.9 3.3 4 5.2 7 11.4 13.5 23.1 18.4 35.5 5.7 14.4 11.3 28.8 14.4 44 14.5 73.8 0 141.3-45.6 201.1zM368.8 460.1c-7.5-45.7-27.6-85.1-59.2-118.8-8.1-8.6-17.2-16.3-26.2-23.9-12.6-9-25.6-17.5-39.6-24.2-27-12.9-55.3-20.3-85.2-21.9-20.8-1.1-41.5-.3-62.2-.5-7.3-.1-14.7-.1-22-.1h-.1c0-57.8 0-115.7-.1-173.4 0-.8 0-1.4.1-1.9.3-1.2 1.1-1.6 3.2-1.6 29.7.2 59.3.1 89.1.1 3.8 1.6 7.9 1 11.9 1.4 90.2 7.7 168.8 42 236.3 101.9 4.8 4.3 9.6 8.5 14 13.4 12.9 11.9 24.3 25.2 35 39 35.8 46 60.6 97.3 74.2 154 5.3 22.2 8.6 44.6 10 67.4 4.6 74.1-9.6 144.4-43.8 210.3-36.5 70.7-89.8 125.9-158.6 165.8-39.1 22.6-80.8 37.9-125 46.3-23.9 4.5-48.1 6.9-72.5 6.8-23.7-.1-47.4 0-71.1 0-.9 0-1.8-.1-2.6-.2h-.1V723.2h.1c25.1 0 50.2.1 75.3.1 20.6 0 40.9-3.1 60.5-9.3 67.2-21.2 115.3-64 143.6-128.4 17.5-40.2 22.1-82.2 15-125.5z"
/>
</symbol>
<symbol id="django" viewBox="0 0 1000 1000">
<title>Django</title>
<path
d="M536.5 404.9c-25-7-50.3-8.2-75.7-3.6-40.7 7.3-69.3 29.7-83.4 69-10.7 29.7-11.6 60.3-6.5 91.2 3.7 22.6 12.3 43.2 28.6 59.7 20 20.4 45.2 28.7 72.9 31.2 21.4 2 42.7 0 64-2.4 4.6-.5 5.2-2.1 5.2-6.2-.1-38.7-.1-77.3-.1-116 0-38.9-.1-77.6.1-116.5 0-3.8-1.3-5.3-5.1-6.4zM899.6 0H100.4C45 0 0 45 0 100.4v799.2C0 955 45 1000 100.4 1000h799.2c55.4 0 100.4-45 100.4-100.4V100.4C1000 45 955 0 899.6 0zm23.8 49.9c0 50-.1 100 0 149.9 0 4.1-1 5.3-5.2 5.2-47.5-.2-95.1-.2-142.6 0-4.2 0-5.2-1.2-5.2-5.3.1-48.2.1-96.3.1-144.5 0-1.8-.2-3.6-.3-5.4 51.1.1 102.1.1 153.2.1zM438.4 768c-34.9-3.4-69.1-10.4-101.6-24.2-60.2-25.5-100.4-69.1-118.7-132.1-5.8-20.2-8.9-40.8-10.2-61.7-1.9-30.3-.3-60.4 6.5-90.2 16.2-70.2 54.7-123.4 119.2-156.8 31.6-16.4 65.4-25 100.7-28.5 26.1-2.5 52.1-2.8 78.1 1.1 6.6 1 13.3 2.2 19.7 3.9 3.9 1 4.2-.2 4.2-3.5-.1-33.4-.1-67-.1-100.4V55.3c0-1.8.1-3.6.1-5.5h152.3c0 1.8.1 3.6.1 5.5 0 229.4 0 458.9.1 688.4 0 4.6-.8 6.3-5.8 7.2-40.7 7.5-81.6 13.8-122.9 16.9-40.6 3.1-81.2 4.1-121.7.2zm484.9-129.2c0 33-.9 66-4.1 98.8-3.7 37.6-10.8 74.1-27 108.6-21.4 45.7-55 79.4-98.6 103.8-9 5-18.3 9.8-27.4 14.9-1.8 1-3.4 1.5-5.5.5-45.9-21.7-91.9-43.4-137.8-65.1-.1-.1-.2-.2-.8-.7 10.7-5.5 21.3-10.6 31.5-16.3 23.2-12.6 45.1-27 62.9-46.9 22.7-25.3 35.9-55.3 43.3-88.2 5.7-25.7 7.9-51.9 9.1-78.1 3.6-79.5 1.5-159.2 1.9-238.8.3-50.4.1-100.9 0-151.3 0-4.1 1-5 5-5 47.5.1 95.1.2 142.6 0 4.1 0 5 1.1 5 5.1 0 119.7 0 239.2-.1 358.7z"
/>
</symbol>
<symbol id="docker" viewBox="0 0 1000 1000">
<title>Docker</title>
<path
d="M240.1 485.4H165v-75.1h75.1v75.1zm41.8 177.4c-19.1 5.4-42 8.9-68.6 10.4-10 .6-20.6.9-31.6.9-12.8 0-26.2-.4-40.3-1.1 47 47 104.9 83.2 212.1 83.9 7.9 0 15.8-.2 23.6-.5-51.3-24.3-79.5-57.4-95.2-93.6zm56.3-264.1h75.1v-75.1h-75.1v75.1zm-11.5 11.6h-75.1v75.1h75.1v-75.1zm0-86.7h-75.1v75.1h75.1v-75.1zM322 607.1c11.4 0 20.7 9.3 20.7 20.7s-9.3 20.7-20.7 20.7c-11.4 0-20.7-9.3-20.7-20.7 0-11.4 9.3-20.7 20.7-20.7zm2.3 12.1c0-2.2 1.2-4.2 3-5.2-1.7-.6-3.5-1-5.4-1-8.2 0-14.8 6.6-14.8 14.8s6.6 14.8 14.8 14.8 14.8-6.6 14.8-14.8c0-2-.4-3.9-1.1-5.7-1 1.9-3 3.2-5.3 3.2-3.3 0-6-2.7-6-6.1zm13.9-133.8h75.1v-75.1h-75.1v75.1zM1000 100v800c0 55.2-44.8 100-100 100H100C44.8 1000 0 955.2 0 900V100C0 44.8 44.8 0 100 0h800c55.2 0 100 44.8 100 100zm-78 323.7l-11.9-6.9c-29-16.7-67.6-19-100.5-9.4-4.1-35-27-65.6-54.4-87.6l-10.9-8.7-9.1 10.5c-18.3 21.2-23.7 56.3-21.3 83.4 1.8 19.9 8.1 40 20.3 56-9.3 5.6-19.9 10-29.3 13.2-19.2 6.5-40 10.1-60.2 10.1h-43.8v-88.6h-86.6V222.6h-104v86.6H237.2v86.6h-86.6v88.6H76.4l-1.2 13.1c-4.1 43.7 1.9 87.5 20 127.4l7.8 15.8.9 1.5c53.4 90.8 147.3 129 249.6 129 198 0 361.3-88.5 436.3-275.3 50.1 2.6 101.4-12.2 125.9-60.1l6.3-12.1zm-497.1 61.7H500v-75.1h-75.1v75.1zm86.6 0h75.1v-75.1h-75.1v75.1zm-86.6-86.7H500v-75.1h-75.1v75.1zm0-86.6H500V237h-75.1v75.1z"
/>
</symbol>
<symbol id="email" viewBox="0 0 1000 1000">
<title>Email</title>
<path
d="M500 584c-47.1 0-94.3-17.9-130.2-53.8L161.6 322v369.7c0 13.8 11.2 25 25 25h626.8c13.8 0 25-11.2 25-25V322L630.2 530.2C594.3 566.1 547.1 584 500 584z"
/>
<path
d="M900 0H100C44.8 0 0 44.8 0 100v800c0 55.2 44.8 100 100 100h800c55.2 0 100-44.8 100-100V100c0-55.2-44.8-100-100-100zm-11.6 691.7c0 41.4-33.6 75-75 75H186.6c-41.4 0-75-33.6-75-75V308.3c0-41.4 33.6-75 75-75h626.8c41.4 0 75 33.6 75 75v383.4z"
/>
<path d="M594.8 494.8l211.5-211.5H193.7l211.5 211.5c52.3 52.3 137.3 52.3 189.6 0z" />
</symbol>
<symbol id="flask" viewBox="0 0 1000 1000">
<title>Flask</title>
<path
d="M899.6 0H100.4C45 0 0 45 0 100.4v799.2C0 955 45 1000 100.4 1000h799.2c55.4 0 100.4-45 100.4-100.4V100.4C1000 45 955 0 899.6 0zm24.3 826.2c-.4 1.2-1.1 2.3-1.1 3.5-.1 4.3-2.8 6.2-6.4 7.7-8.7 3.7-18.1 5-27.3 6.5-10.8 1.7-21.9 3.2-31.1 9.7-4 2.8-7 3.3-11.7 1.5-10-3.9-20.5-3-30.7.2-10.1 3.1-20.3 6.5-30.4 9.7-8 2.6-16.4 3.3-24.8 3.5-7.7.2-15.5 1.9-23.2 2.7-20.1 2-40.2 4.1-60.2 5.8-7.8.7-15.7.4-23.4 1-19.2 1.3-38.3-.9-57.3-2.4-20.9-1.6-41.8-3.5-62.7-5.8-35.6-4-70.5-11.7-104.5-23.4-26.5-9.1-51.5-21.2-75.4-35.5-34.2-20.5-65.4-45.1-93.2-73.6-12.9-13.2-23.9-28.2-35-42.9-42.1-55.3-74.4-116-98.2-181.2-7.6-20.9-12.6-42.6-17.7-64.2-6.1-25.9-12.1-51.8-21.8-76.7-1.7-4.4-3.5-8.8-5.7-13.1-9.9-18.5-7.8-36 4.3-52.5 10.2-13.9 24.5-21.7 41-26.3 6.7-1.9 13.2-4.9 19.6-7.4 1.2-.5 2.2-1.4 3.1-2.5-6.3.6-12.3 1.9-18.1 4.8-3.3 1.7-6.6 3.6-10.1 4.5-8.2 2.2-13.8-3.5-12-11.9 1.7-8.2 9.2-15.1 18.2-16.8 4.6-.9 9.4-1.7 13.8-3.4 12.1-4.9 17.8-17 14-29.5-.6-2.1-2-4.2-3.5-5.9-2.6-2.9-3.2-5.4-.7-8.4 2.9-3.3 6.3-6.1 9.6-8.9 5.4-4.6 11.5-8.5 16.5-13.6 6.5-6.6 5.8-12.7-1.6-18.4-4.1-3.1-8.1-6-10.8-10.5-.4-.7-.9-1.3-1.3-2-7.2-12.8-3.4-22.8 10.5-27.2 7.3-2.3 14.9-2 22 1 10 4.2 14 13.5 10.7 24.8-1.1 4-2.7 8-3 12-.4 6.6 3 11.2 9.5 11.8 8.4.8 17 .2 25.4.5 4.7.1 9.5.3 14.1 1.3 4.3.9 6.1 3.8 6 8.3-.1 3.1-.7 6.3-1.6 9.3-.6 2.1-.3 3.3 1.2 4.7 6.4 6 14.5 8.3 22.7 9.8 7.6 1.5 15.5 2.6 23.1 4.2 3.2.7 6.3 1.9 9.2 3.3 5.5 2.7 8.4 7.3 8.6 13.6 0 .8.2 1.5.3 2.7 13.6.6 23.9 8.3 34.5 15.6 7.4 5 15.2 9.1 24.3 9.7.3 0 .7.1 1 .2 18.6 7.6 37.4 15 55.7 23.2 8.9 4 16.4 10.5 21.3 19.4 1.1 1.9 1.9 4.1 2.8 6.2-3.6 3.1-7.7 4.1-12.1 4.2-8.9.2-17.2-2.7-25.5-5.3-7.9-2.6-16-5.2-24-7.4-3-.8-6.3-1-9.4-.8-7.9.7-13.3 6.1-14.3 15.7-.8 7.1-.4 14.5 0 21.7 1.6 24.6 3.4 49.1 5.2 73.6 3.2 42.2 7.2 84.2 19.1 125.1 8 27.6 16.9 55 32.7 79.5 13.1 20.1 27.9 38.9 43.7 56.9 10.3 11.8 20.6 23.9 31.6 35 18.8 19 41 33.5 63.7 47.3 43.2 26.2 90.4 41 139.6 50.2 1.3.3 3.3-.5 4.4-1.5 9.2-9 18.2-18.4 27.5-27.3 5.4-5.2 11.4-9.6 18.7-12 6.3-2.1 12.6-1.8 18.2 2.1.9.7 1.8 2.3 1.7 3.5-.3 5.7-3.5 10.2-6.9 14.5-3.8 4.9-8.1 9.4-11.8 14.5-1.5 2.1-3.4 5.9-2.5 7.4 1.2 1.9 4.9 3.1 7.5 3.2 5.4.3 10.8.1 16.2-.7 8.7-1.3 16.9 1 25.1 3.2 4.2 1.2 8.5 2.4 12.9 3.3 9 1.9 16.8-1 23.3-7.3 1-.9 1.9-1.9 2.9-2.9.1-.1.2-.1.6-.2 7 7.3 16.3 8.4 25.8 8.3 8.2-.1 16.6-.7 24.8-.9 2.5-.1 5 0 7.4.1 7.4.4 13.5 2.8 15.6 10.9-.2 2.4-.2 4.9-.2 7.4z"
/>
<path
d="M415.4 707.8c-3.3-.8-6.6-1.4-9.9-2.2-1.7-.4-3.7-.7-5-1.7-6.4-5-13.8-5.8-21.5-5.3-.8.1-1.5.5-3 1 14.2 6.4 27.2 13.5 43.1 9.6-1.3-.4-2.5-1.1-3.7-1.4zm-9 46.6c-4.8-5.8-23-13.6-26.7-11.5 3.3 6.5 18.6 13.2 26.7 11.5zm-5.4 50.5c.5-.2 1.1-.3 1.6-.5.4-1.7.9-3.4 1.3-5.1-1.7-.3-3.4-.9-5-.9-.9 0-1.7 1.1-2.5 1.7 1.5 1.6 3 3.2 4.6 4.8zm10.8-58.3c-.8-1.1-1.4-2.9-2.4-3.1-1.8-.5-3.8-.1-5.7 0-.1.6-.1 1.1-.2 1.7 2.4.8 4.8 1.6 7.2 2.5.4-.5.7-.8 1.1-1.1zm-2.5 24.4v-1.3c-3.7-.2-7.4-.4-11.1-.7 3.6 4.3 8.2 4.7 11.1 2zm-40.2-2c-3.4-1-7.8.1-10.9 2.8 4.1 2.4 9.5 1.8 10.9-2.8zm4.6-19.2c.1-.2-.9-1.6-1.5-1.7-2.5-.3-5.1-.4-7.7-.5-.1.6-.2 1.3-.4 1.9 2.5.8 4.9 1.9 7.4 2.4.6.1 1.7-1.2 2.2-2.1zm-13.5-58.1c-7.2-4.8-14.5-8.3-23-9.8 2.7 5.7 15.3 11 23 9.8zm20.9 31.3c2.8 5.8 16.3 10.7 21 8-3-3.7-15.5-8.5-21-8zm-96.9-127.8c2.9.8 4.2-.7 2.9-3.5-1.4-3.2-3.2-6.2-5.1-9.1-1.5-2.3-3.1-5-5.4-6.3-3.9-2.3-6.2-5.6-7.4-9.7-1.1-3.8-1.8-7.7-2.7-11.5-1.1-4.5-1.9-9.1-3.5-13.5-1.5-4.1-4.6-4.8-7.9-3 1.9 5 4 9.8 5.5 15 1.1 3.7-.8 5.5-4.6 5.4-1.2 0-2.5-.2-3.6-.6-5.3-2.1-10.6-4.4-16.1-6.4-3.5-1.3-7-2.6-10.6-3.1-3.8-.6-5.6 1.5-4.2 5.1 1.8 4.4 4.2 8.6 6.5 13.2-.1.1-.5.6-1.3 1.5 1.8 1 3.3 1.9 4.9 2.7 6.8 3 13.8 5.8 20.5 9 7.7 3.7 15.3 7.9 23 11.6 2.9 1.2 6 2.4 9.1 3.2zM393 717.3c.7 0 1.4-.8 2.1-1.3-.5-.7-.8-1.8-1.4-2-3.1-1.3-6.3-2.3-9.4-3.4-1.7-.6-3.4-1-5-1.9-4.9-2.7-9.7-5.7-14.8-8.1-2.8-1.4-6.1-1.9-9.2-2.8-.2.3-.4.7-.6 1 .2.5.3 1.1.7 1.4 7.7 5.6 14 13.7 23.9 15.8 4.4.9 9.2 1 13.7 1.3zm-84.1-34.4c-3.8-2.7-11.5-4-14.7-2.5 4.9 1.6 9 5 14.7 2.5zm-70.4-67.1c4.9 2.7 9.7 5.4 14.7 8.2-2.9-6.1-10.1-10.3-14.7-8.2zm-18.7-16.4c1 3.1 5.8 7 10.9 8.9-1.5-5.8-6.5-9.8-10.9-8.9zm208.4 175.4c-2.7-1.9-7.9-1.5-10.9 1.4 4 1.6 7.7 3.1 11.5 4.6 1.5-3.6 1.3-4.7-.6-6zM357.1 662c-.1-.1-1 1.1-1.5 1.7 1.2.6 2.4 1.2 3.7 1.9.3-.4.6-.9.9-1.3-1.1-.7-2-1.5-3.1-2.3zM327 689c-4.4-1.2-8.3-2.3-12.2-3.4 3.2 4.8 8.8 6.4 12.2 3.4zm49.2-15.3l-3.9-3c-.3.6-.9 1.5-.8 1.6 1.1 1.1 2.3 2 3.5 3 .4-.5.8-1 1.2-1.6zm-46.7 4c-3.5-3.2-7.1-6.4-10.7-9.7 2.4-5 2.1-6.9-1.7-10.7-2.1-2.1-4.4-3.9-6.6-5.8-2.5-2.2-4-4.7-1.4-7.6-5.4-3.7-10.6-7.3-15.8-10.9.2-.5.4-1 .5-1.5h11.9c-2.2-1.9-4.5-3-6.4-4.5-1.3-1-3.1-2.7-3.1-4 .1-1.2 2.2-2.5 3.7-3.3 2.1-1.1 4.4-1.7 6.5-2.8 1.3-.6 2.4-1.7 4.2-2.9-1.5-.6-2.2-1-2.9-1.2-6.4-1.9-12.9-3.8-19.3-5.5-3.5-.9-7-1.7-10.6-2.3-1.2-.2-2.5.4-3.8.6.5 1.3.8 2.7 1.6 3.8 1 1.4 2.5 2.5 4.2 4.2-4.3-1.5-7.9-2.7-12.6-4.2.9 3.5 1.4 5.8 2.1 8.3-3.5-.4-6.5-.7-10.3-1.2 3.7 6.3 10.2 8.8 13.3 15.5-3-.2-5.3-.3-8-.5 7.6 6.5 15.7 11.8 22.2 18.9l-.6.9c-5.3-2.5-10.6-4.9-16.1-7.4-.3.3-.6.5-.8.8.9 1.4 1.6 3 2.7 4.1 1.9 1.6 4 3 6.1 4.2 11.3 6.3 22.8 12.6 34.2 18.8 3.9 2.1 7.8 4.1 11.8 5.9 1.5.7 3.2 1 4.8 1.5.5-.8.7-1.2.9-1.5zm45 117.5h4.3c-.9-1.7-1.4-2.6-1.8-3.4-.4-.1-.8-.1-1.2-.2-.5 1.1-.9 2.3-1.3 3.6zm257.4 29c-5.4-1.8-10.5 2.2-11.1 9 4.7-2.2 8.9-4.2 11.1-9zm32.1 8.1c-4.8-.7-13.6 3.8-14.9 7.3-.4 1.1.1 2.5.3 4.6 5.8-3.6 10.6-6.9 14.6-11.9zm-33.1 7.2c2.3-2.1 4.5-4.4 6.6-6.7-.3-.4-.6-.7-.9-1.1-3.5 0-6.3 1.7-8.4 4.3-.4.5-.3 2.1.2 2.7.4.7 2.1 1.2 2.5.8zM372 439.8c0-.6.1-1.1.1-1.7.9-11.8 2.1-23.7 2.5-35.5.2-5.3-1-10.7-2.1-16.1-.6-3.1-2.6-5.6-5.6-4.6 1.5-11 3.5-22.2 4.5-33.4.9-9.1.6-18.4-3.5-27-2.6-5.4-7-7.1-12.8-5-1.7.6-3.2 1.7-4.8 2.4-2.7 1.1-5.3 2.3-8.1 2.8-5.9 1-11.9 1.3-17.8 2.5-8.7 1.7-17.4 3.6-25.6 7.6 4.4 3.7 10.2 5.1 14.2 10.6-11.6-.6-21.6-4.6-31.9-6.4-.2.4-.5.7-.5 1-2.2 8.6-4.7 10.6-13.6 10.3-5.4-.2-10.7-.8-16.5-1.2.6.4 1 .8 1.4.9 5.4 1.3 6.4 5.9 1.5 9.7-3.8 2.9-8 5.5-12.4 7.3-7.2 2.9-14.8 4.4-22.5 1.2-.6-.2-1.5 0-2.1.3-3.5 1.9-5.6 4.8-4.9 8.8.5 2.7 1.5 5.4 2.7 7.9 2.4 5 5.3 9.7 7.5 14.8 1.9 4.3 1.1 6.3-2.5 9.4-.4.4-1 .8-1.1 1.2-.4 3.9-3.4 4-6.2 4.4-4.4.6-8.8.8-13.2 1.6-5.7 1-8.9 4.4-9.8 10.1-.3 1.8-.4 3.7-.6 5.6-.9-.2-1.4-.3-2-.4-4.9-1.1-7.2.7-6.8 5.7.5 5.6 2.8 10.6 7.3 14.1 1.6 1.2 5.2 2.1 6.3 1.2 3-2.4 5.4-1.2 8.1-.3 14.8 5 20.8 13.6 20.4 29-.1 5.8-.3 11.5-.7 17.4-.1 1.5-.9 4.1-1.6 4.2-1.6.2-4.2-.3-5-1.5-2.9-4.3-6-8.8-7.5-13.8-2.4-7.8.4-11.2 8.3-12.2.1 0 .2-.3.7-1-3.3-4-6.6-8.3-10.3-12.1-2.9-2.9-6.4-3-9.1-.2-5.2 5.4-10.1 11.1-15.3 17 4.7 3.5 9.3 6.6 13.7 10 2.3 1.9 4.4 4.2 6.1 6.7 2 3 1.3 5.8-1.6 8-1.5 1.1-3.2 2-5.3 3.3 14.2 2.3 20.5 11.7 24 23.9 1 3.5 2 6.9 3.1 10.4 1.9 6.1 7.9 7.5 12.2 2.8.9-1 1.9-2 2.8-2.9 2.2-2.3 4.7-2.4 7.4-1 .7.4 1.5.8 2.2 1.2-.8-1.6-1.9-2.9-3.1-4-6.1-5.7-12.3-11.3-18.5-17.1-2.2-2.1-4.4-4.3-6.3-6.6-.8-1-1-2.6-1.5-3.9 1.2-.4 2.5-1.1 3.7-1 3.1.2 6.2.8 9.6 1.3-.1-2.3-.1-4.4-.3-6.5-.4-4.2-1.1-8.3-1.4-12.4-.2-2.8-.4-5.8 2.5-7.6 2.1-1.3 4.5-2.3 6.8-3.4 0 .3.2 1.1.2 1.8-.4 4-1.1 8.1-1.4 12.1-.3 4.3-.6 8.6-.4 12.9.3 5.4 2.9 6.6 7.3 3.3 3.4-2.6 6.6-5.4 9.5-8.6 4.9-5.5 7.4-5.6 11.9.4 2.6 3.5 5.5 6.9 7.9 10.6 1.8 2.7 3.4 5.6 4.3 8.7 1.3 4.4-1.1 7.8-5.6 8-3.3.1-6.7-.5-9.9-1.5-3.7-1.2-7.1-3.1-10.7-4.7.8 2.2 1.8 4.4 3.4 5.9 5.7 5.5 11.7 10.6 17.5 16.2 5.2 4.9 8 11 7 18.4-.8 5.9 1.7 10.5 4.9 15 2 2.7 4.9 3.4 8.2 2.6 2.4-.6 4.8-1.2 7.3-1.8.9 2.4 1.6 4.7 2.6 6.7.6 1.2 1.8 2 2.8 3.1.8-1.2 1.9-2.3 2.2-3.6.8-3.5 1.2-7 1.8-10.5 11.6 2 19.4 8 22.4 19.7.7 2.7 1.9 5.3 3 7.9 1 2.1 2.2 4.9 5.1 3.4.9-.4.9-4 .3-5.7-2.5-6.5-5.4-13-8.1-19.4-.5-1.3-.9-2.6-1.3-3.9 1.3.2 2.1.6 2.7 1.3 6.6 7.2 13.4 14.5 19.9 21.9 1.5 1.7 2.6 4 3.4 6.2 3.1 8.2-.3 14.4-9.5 16.6-4.2 1-8.5 1.2-12.3 1.7 5 4.4 10.2 8.9 15.5 13.5 5 4.3 10.4 8.2 17.4 8.4 4.3.2 7.8 1.8 10.5 4.7 4.1 4.4 8 9.2 11.3 14.3 1.6 2.5 2.3 5.9 2.6 9 .5 4.8-2.2 8.1-6.9 7.6-5.3-.6-11-1.7-15.4-4.4-8.3-5.2-16.9-9.6-26.2-12.6-2.1-.6-4.3-.8-6.4-1.2-.1.3-.3.6-.4.9.8.9 1.4 2 2.3 2.6 4.6 3 9.1 6.4 14.1 8.7 21 9.7 42.1 19.1 63.1 28.7 19.6 8.9 36.7 21 50.7 37.6 4.3 5.1 9.1 9.6 13.9 14.7-4.2 2.2-9.2 2.6-14.3 2.3-7.4-.3-14.7-1.6-21-5.8-3.6-2.5-3.3-5.2.7-7 1.6-.7 3.4-1.2 5.1-1.9-7-2.1-14-3.5-21-4.6-3.8-.6-5.4 1.7-3.7 5.2 2.6 5.5 5.7 10.6 11.8 13 3.2 1.2 6.3 2.7 9.6 3.3 9.8 1.6 19.7 2.8 29.6 4.1 4 .5 8 .7 12.9 1.1-3.1 4.5-5.7 8.4-8.6 12.7 1.7.5 2.8.8 4 1.1 1.2.2 2.4.2 4.2.4-1.2.9-1.8 1.5-2.5 1.9-4.5 3.1-4.4 5.2.3 7.8 3.1 1.7 6.2 3.6 9.4 5.2.6.3 1.7.1 2.4-.2 8.5-3.6 12.9-2.3 18.1 5.5 1.9 2.8 3.7 5.7 5.8 8.3 2.7 3.3 5.8 3.9 9.3 1.6 3.4-2.3 6.3-5.4 9.5-8.1 2.9-2.4 6-4.7 9.1-7 .2.3.4.5.6.8-3.4 4.4-6.9 8.7-10.3 13.2.2.3.5.6.7.8 1.2-.4 2.5-.7 3.6-1.3 3.1-1.6 6.2-3.3 9.1-5.1 6.5-4 13.7-5.1 21.2-4.8 10 .5 19.3 3.8 28.5 7.2 14.3 5.2 27.3 13.7 42.9 15.4 6.8.8 13.6 3.7 20.2 5.7 8.9 2.7 17-.4 24.9-3.9 1.8-.8 2-2.2.1-3.2-2-1-4.1-1.9-6.2-2.5-8.7-2.4-17.6-4.3-26.3-6.9-4.6-1.4-9.1-3.4-13.4-5.6-2.9-1.5-2.8-3.6-.7-6.1.4-.4.7-.9 1.4-1.7-9.4 2.2-18.3 2.4-27-.3-13.8-4.1-24.3-13-33.2-23.8-3.5-4.3-7.5-6.5-12.8-7.9-23.3-6.2-45.2-15.5-63.8-31.4-7.3-6.2-13.4-13.6-18-22-.9-1.6-2.1-3.4.7-4.8.4-.2.3-2.4-.3-3.1-2.4-3.2-5-6.4-7.7-9.4-4.2-4.7-9.2-8.8-12.9-14.1-9.4-13.7-18.4-27.8-27.5-41.7-.7-1-1.2-2.3-2.2-2.9-5.8-3.5-9.6-8.8-13.5-14.3-.8-1.2-1.3-2.5-2-3.8l-1.8 1.2c-.6 3.7-1.2 7.3-1.6 10.3-1.9-4.2-3.5-9-6.1-13.1-4.2-6.4-9.2-12-18.2-11.2-.1-6 2.7-10.2 7.9-13.2 4.2-2.3 4.4-3.7 1.1-7.2-2.4-2.5-3.6-5.3-4-8.7-.2-1.6-.6-3.1-1-4.6-7-24.4-14.4-48.6-18.6-73.7-.1-.7-.3-1.3-.5-1.9-.9-2.4-2.5-2.8-4.4-1.2-1.3 1.2-2.7 2.5-3.6 4-2.4 4-4.6 8.2-6.9 12.3.3-6.3 1.3-12.7 2.7-18.9.4-1.7 2-3.1 3.1-4.6 1.4 1 2.8 2 4.6 3.3 1.2-3.3 2.8-6.8 3.5-10.5.8-4.1-2.1-6.4-6.1-5.8-.7.1-1.4.4-2.5.6.6-1.6 1-2.9 1.4-4.2 2.5-8.1 3.6-16.4 1.9-24.8-.7-4.4-1.8-5.2-5.4-4.5zm-100.1-53.1c1.7-.6 3.5 2.9 3.5 7.1-.3.3-1.8 1.7-1.9 1.6-1.9-1.5-3.7-3.3-5.5-5.1 1.2-1.1 2.3-3.1 3.9-3.6zm-22.1-.7c3.4 7 9.5 10.9 16.1 14.5 1.6.9 2.8 2.6 4.2 4l-4.5 3c2.4 2.6 5 5.4 7.6 8.2-.3.4-.5.7-.8 1.1-1.9-.8-4-1.3-5.7-2.3-4.4-2.7-8.7-5.5-13.1-8.4-.7-.5-1.6-1.7-1.4-2.3 1.6-5.7-.8-10.6-2.6-15.8-.3-.8-.5-1.6-.9-2.9.6.5 1 .7 1.1.9zm-7.8 28.5c12.9.9 23.9 6.3 34.4 13.3l-.6 1.5c-11.4-4.4-23-8.8-34.4-13.4.2-.5.4-.9.6-1.4zm-5.5 47c-2 4.5-6.4 6.2-9.8 2.9-6.7-6.5-12.8-13.6-19.1-20.5.4-.5.8-1.1 1.2-1.6 4.7 2.9 9.5 5.8 14.3 8.7.3-.3.6-.5.8-.8-.4-5.5-5.2-8.9-7.5-13.9.4.1.8 0 1 .2 3.9 3.2 8.2 5.6 13 7.8 6.2 3.2 8.9 11.1 6.1 17.2zm-1.3-17c-5.1-4-9.4-9.1-14.1-13.8-.7-.8-1.2-1.8-1.8-2.9 6-.8 25.4 11.7 28.3 18.5-4.6 1.3-9.1.8-12.4-1.8zm6 14.3c1.9-1.1 3.1-1.7 4.2-2.4l1 1c-.6 1-1.1 2.3-1.9 3-.3.2-1.7-.8-3.3-1.6zm4.4 17.9c.3 0 .7 0 1-.1.5 3.2.9 6.5 1.5 10.3-4.5-2.4-5-5.3-2.5-10.2zm-.9-42.5c-6.6-2.2-8.8-8-11.4-13.5-.8-1.7.3-2.9 2.3-2.4 2.1.5 4.3.8 6.1 1.9 8.3 5.2 16.5 10.6 24.6 16.2 1.8 1.2 3 3.2 4.4 4.8-.3.4-.5.8-.8 1.3-2.6-.7-5.3-1.4-7.9-2.3-5.9-1.8-11.5-4.1-17.3-6zm6.6 21c.3-.2.6-.5.9-.7 2.2 2.9 4.4 5.9 7.1 9.5-5.1-.4-7-2.9-8-8.8zm15.7 40.6c-.4.2-.9.4-1.3.7-1.7-2.2-3.8-4.3-4.9-6.8-.4-.9 1.2-3 2.2-4.2.2-.3 2.6.5 3.1 1.3 1.5 2.8 2.4 5.8.9 9zm31.6 67.6c-1.2-2-2.2-3.7-3.4-5.8 4.6.1 5.4 1.6 3.4 5.8zm3.5-58.6c-2.1.9-2.4 2.5-2.1 4.4.2 1.1.5 2.2.8 3.3.3.9.7 1.9 1.2 3.2-1.7-1.6-3.1-2.9-4.6-4.2-2.3-2-4.3-1.9-6.3.6-3.6 4.4-4.9 4.3-8.5 0-.5-.6-1-1.2-1.4-1.9-7.6-12.7-12.2-26.4-13.9-41.1-.1-1.2 0-2.5 0-3.7 4.9 11.2 10 22.2 17.2 32.1l.9-.3c-.3-1.3-.4-2.7-.9-4-2-5.1-4.1-10.2-6.1-15.5-1-2.4-1.8-4.9-2.7-7.4.3-.2.6-.4.9-.7 1.2.7 2.5 1.2 3.5 2.1 9.1 7.9 17 17 23.8 26.9 2.2 3.6 1.9 4.5-1.8 6.2zm13.4-35.3c-.2-3.6-.4-7.1-.7-10.7.5 0 .9-.1 1.4-.1.3 3.5.7 7.1 1 10.6-.6.1-1.2.2-1.7.2zm25.3-52.8c1.6 3.4 3.3 6.8 4.9 10.3-.4.2-.9.4-1.3.6-1.6-3.5-3.1-6.9-4.7-10.4.5-.2.8-.4 1.1-.5zm7.7 91.6c-1.5 3.7-4.4 4-6 .4-3-6.5-9.2-11-10.2-18.8-1.2-8.8-1.7-17.6 1-26.2.4-1.4 1.8-2.6 2.8-3.8.9 1.3 2.2 2.5 2.7 4 1 3.1 1.5 6.3 2.3 9.7.7-.1 1.3-.1 2-.2 3.8-.4 5.3.8 5.3 4.6-.1 3.6-.5 7.2-.7 10.8-.2 3.1.4 5.7 4.9 6.1-1.6 4.9-2.5 9.3-4.1 13.4zm14.2-36.1h-1.1c-2.4-4.8.2-9.4 1.1-14.1v14.1zm2.6-107.2c-2.1 7.3-4.3 14.7-6.9 21.9-1 2.7-3 6-6.5 5.5-3.8-.5-5.1-4.1-5.8-7.5-1.4-6.7-.3-13.4 1.4-19.8 1.2-4.4 3-8.7 4.9-13 .5-1.2 2.2-1.9 3.4-2.9.7 1.2 2 2.3 2.1 3.5.3 2.7.3 5.6-.1 8.3-.7 5-2 9.9-2.8 15-.2 1.3.3 2.8.4 4.2 6.1-6.3 4.2-15.5 9.3-21.9.4.1.7.1 1.1.2-.1 2.2.1 4.5-.5 6.5zm87.3 309.3c6 3.3 18.3 19.7 16.4 26.6-7.1-1.5-17.6-18.4-16.4-26.6zm-14.3-21.6c-4.1 2.9-7.1-2.6-8.1-9.7 4 1.3 7.1 5.2 8.1 9.7zm-29.9-40.8v9c-3.8-3-3.8-5.1 0-9zm-16.9-43.5c.9.5 2.2.7 2.8 1.5 4.2 5.5 4.4 11.6 2.7 18.9-3.6-5.7-6.1-11.2-6.5-17.4-.1-1 .6-2 1-3zM380.7 522c.3 0 .6 0 .9-.1v7.2h-.9V522zm-13.8-42.4c.3-6.4-.1-13.1 3.1-19 1.5 6.8-.4 12.9-3.1 19zm283.6 349.8c-3.6 2.2-7.3 4.5-10.9 6.7.2.3.4.6.5.9 5 .1 8.2-3 11-6.6-.2-.4-.4-.7-.6-1zM776 769.1v-6.5c-.5-.1-.9-.3-1.4-.4-.6 1.5-1.5 3.1-1.6 4.7-.1.5 1.6 1.3 3 2.2zM438.6 292.7c3.9 2.6 8.7 4.1 10.8 9.1.8 1.9 2.5 1.6 3.4-.6 1.2-3.1.5-6.6-2.4-9.2-3.7-3.4-8.1-5.2-13.9-5.7-.5.2-1.5.6-2.6 1.1.6 1 .9 2.2 1.7 3.1.8.9 2 1.5 3 2.2zm85.9 440.2c1.8.6 3.6.9 5.8 1.4-.9-3.1-2.7-4.5-5.3-4.3-.6 0-1.5.7-1.7 1.3-.1.4.6 1.4 1.2 1.6zm-11.6-14.2c-.3-2.5.2-5.4-3-5.2-1.1 0-3.1 2.6-2.9 3.7.6 3.1 3.4 1.6 5.9 1.5zm-33.2 61.1c-3.4-2-10.3-1.3-14.1 1.5 4.4 4.3 10.7 3.2 14.1-1.5zM456 792.2c5.9.4 11.7.7 17.7 1.1 0-.4.1-.8.1-1.2-5.9-.5-11.8-.9-17.8-1.4v1.5zm68 39.3c4.7-1.2 5.3-2.2 3.8-5.9-3.1 1-4.3 2.9-3.8 5.9zm-91-7.4c3 1 5.7 1.8 8.3 2.7.4-.3.8-.5 1.3-.8-.4-1.3-.4-3-1.2-3.7-1.9-1.7-5.8-.9-8.4 1.8zm90.2 23c-4.3-3.5-9.1-5.5-14.1-6.7-12.3-2.9-24.8-5.2-37.2-7.7-4.3-.9-8.7-1.7-13.9-2.7 9 9 55.6 21.2 65.2 17.1zm44.3-20.7c1 .5 2.6.2 3.7-.3 1.6-.8 3-2 4.4-3.1 2.1-1.6 3.7-1.4 4.6 1.3.3 1.1.5 2.3 1.2 3.1s2 1.5 2.9 1.4c3.5-.6 8.8-7.2 8.8-10.8-.2-1.9-.3-3.8-.5-5.7-.8-6.1-3.8-7.8-9-4.6-4.7 2.9-9.1 6.3-13.4 9.8-1.5 1.3-2.4 3.5-3.1 5.5-.4 1-.2 3.1.4 3.4zm35.5 8.8c3.9.9 9.2-4 9.8-9.8-4.9.9-8.5 3.1-11.3 6.6-1.4 1.6-.6 2.7 1.5 3.2zm11.1-20.7c-.1-.4-1.5-.8-2.3-.7-5.1.5-9.6 2.4-13.2 6.2-.9.9-1.2 2.3-1.6 3 .1 3 2.5 5.4 3.9 4.4 4.3-3.2 8.4-6.6 12.6-10.1.6-.6.8-2 .6-2.8zM230.3 636.8c-1.7-5.4-6.1-9.6-10.8-10 3.4 3.1 6.8 6.3 10.8 10zM571 809.5l-.6-.9c-3.3 2.2-6.7 4.3-10 6.5 5.1.7 7.8-2.4 10.6-5.6zM349.4 705.9c-4-1.7-8.3-2.9-12.6-4.2-7.6-2.4-15.2-5.1-23-7-3.8-.9-8.1-.8-12.1-.5-4 .3-5 2.9-2.6 6.2 3.3 4.6 6.9 9 13.3 9.6 1 .1 2 .4 2.9.9 6.6 4.1 14 5 21.5 5.5 4-.5 8.1-.8 12-1.7 2.6-.6 6.5-1 6.4-4.3-.1-1.5-3.5-3.5-5.8-4.5zm-216-259.3c-1.4-3.8-2.4-7.2-4-10.2-.6-1.1-2.6-1.5-4-2.2-.6 1.5-1.7 3-1.6 4.4.2 3.9 3.9 7 9.6 8zm31.1-57.8c-.4-.5-1-1.6-1.9-1.9-1.7-.6-3.6-1.2-5.2-.9-2.5.5-6 1.2-6.8 2.9-1.4 3 2.1 4.4 4.3 5.8 2.9 2.1 9.5-1.6 9.6-5.9zm-41.2-31.2c-2.1.6-4.1 1.7-6.1 2.6 1.5 1 3 2.8 4.4 2.7 1.6-.2 3-2.1 5.3-3.9-1.9-.8-2.9-1.6-3.6-1.4zm50 202.8c-.1-.7-.3-1.3-.7-1.8-5.8-8.5-9.7-17.9-12.7-27.7-3-10.1-7.2-19.8-13.9-28.1-.9-1.1-1-2.9-1.5-4.3 2.5 3.4 4 7.8 9.3 9.1-.2-2.6-.2-4.9-.7-7.1-3.2-12.9-8.6-24.8-15.6-35.9-.6-1-1.7-1.7-2.6-2.6-.3.2-.5.3-.8.5 1.2 11.4 7.1 21.6 9.5 32.7-.8-1.2-1.7-2.3-2.4-3.5-3.4-5.7-6.6-11.5-10.2-17.2-1.2-1.9-3-3.3-4.6-4.9l-.9.6c.1 1-.1 2 .2 2.9 1.8 5.2 3.5 10.5 5.7 15.6 3.9 8.7 8.2 17.4 12.3 26.1 4.1 8.9 7.8 18.1 12.3 26.8 4.4 7.5 9.9 14.1 17.3 18.8zm-41.2-234.8c-2.2.9-4.6 1.6-6.7 2.8-5 2.7-6.6 7.1-3.6 11.9 5.7 9.1 14.1 14.7 24.9 15.7 5.6.5 8.3-2.7 7.9-8.4-.1-1.4-.3-2.8-.5-4.3 3.2-.3 6.2-.4 9.1-.8 4.8-.6 9.6-1.6 14.5-2.1 3.8-.4 4.9 1.3 3.5 4.9-.5 1.4-1.1 2.7-2.1 4.8 5.2-1.2 10-1.8 14.4-3.6 10.2-4.2 20.3-8.8 30.3-13.7 11-5.3 21.8-11.3 34.1-12.8 8.4-1 17-.8 25.4-1.8 18.2-2.2 36.4-4.6 54.1-9.5 8.4-2.3 16.8-4.5 25.1-6.9 11.2-3.4 20.4-9.7 26.3-20.2 2.8-4.9 3.9-10.1 1.8-15.7-1.2-3.1-2.9-4.6-6.4-4.7-16-.8-31.9-.4-47.9 1.2-27.2 2.9-54 7.8-80.2 15.6-26.6 7.8-52.9 16.8-80.3 21.6-4.4.8-8.8 1.8-13.3 3-1.1.3-2.8 1.6-2.8 2.4.1 1.2 1.2 2.6 2.3 3.3 2.7 1.7 5.6 3 8.3 4.5 1 .5 1.9 1.3 3.1 2.2-1.6.7-2.7 1-3.7 1.6-1.2.8-3.3 2-3.2 2.9.1 1.3 1.6 2.7 2.9 3.7 2 1.6 4.4 2.7 6.5 4.2 1.4 1 2.4 2.9.5 3.8-2.8 1.4-6.1 3.2-9 2.9-5.1-.6-10.1-2.3-15-4.2-10.1-4.1-12.9-9.7-10.1-20.9-2.5.4-4.6.7-6.6 1-11.5 1.9-22.9 4.7-32.7 11.3-8.6 5.8-13 13.8-10.6 24.5 1.6 7.2 5.4 13.4 9.8 19.2.4.6 1.5.6 2.4.9-.3-5.3-.8-10-.9-14.8-.1-6.6.5-13.2 3.6-19.2 4.7-8.4 17.4-11.7 24.8-6.3zm208.2-44.7c2.2-5.4 5.6-9.7 11.7-11.1.7-.2 1.6-.3 2.3-.1.9.3 2.1.8 2.3 1.5.2.6-.6 2-1.3 2.3-2.9 1.2-5.8 2.4-8.8 3.2-2 .5-3.2 1-3 3.4.1 1.3-.7 2.6-1 3.9-.4 0-.8.1-1.2.1-.4-1.1-1.3-2.4-1-3.2zm-21.8-11.1c1.2-3.8 4.3-5 7.7-3 4.3 2.5 7 6.3 7.8 11.3.6 3.9-1.3 6.4-5.2 6.1-3.4-.2-6.9-1-10.2-2.2-1-.4-1.3-2.8-1.7-3.9.6-3.2.8-5.8 1.6-8.3zm-35 17c-1.5 1-2.5 1.9-3.6 2.3-2.5.9-5.2 1.5-7.8 2.3-2.9.9-5.5 1.1-8.3-.7-3.1-2-6.8-1.4-10.2-.2-2.8.9-5.4 2.2-8.2 3.1-2.2.6-4.4.8-7.3 1.4 5.4-9.1 35.4-14.3 45.4-8.2zm-48.3 8.6c.3.1.6.2.9.4-.6 1.4-1.2 2.9-2 5-2.9-3.6-.6-4.4 1.1-5.4zm-21.6 6.7c3.6-1.9 13.2 1.6 14.6 5.4.3.9-.6 3-1.4 3.3-1.9.8-4.1.9-6.2 1.2-4.5.8-6.8-2.6-9-5.2-1.9-1.9 0-3.7 2-4.7zm-12.2.6c.4 4-2 5.2-6.6 3.2 2.6-1.2 4.5-2.2 6.6-3.2zm7.7 11.7c4.4 2.9 7.9 6.7 10 11.7.5 1.2.1 2.8.1 4.1-1.3 0-2.7.2-3.8-.2-1.9-.7-3.7-1.7-5.4-2.7-5-3.1-9.9-6.3-16.2-6 2-9.4 7.8-11.9 15.3-6.9zm95.3 436.4c-.7-.1-1.6-.3-2.1-.8-4.7-4.9-9.4-9.8-14-14.9-1.2-1.3-2.5-2.9-2.7-4.5-.2-1.6 1-3.3 1.5-5.1-8.5 1.5-14.3-2.6-18.5-9.5-2.8-4.5-5.4-9.1-8.1-13.8-1.8-3-3.8-5.8-8-4.6-.5.1-1.3-.3-1.9-.5-6.7-2.4-11.2-7.1-13.9-13.7-1.9-4.8-3.4-9.8-5-14.8-3.3-10.8-9.4-19.5-19.2-25.5-1-.6-1.8-1.9-2.4-3-2.3-4.5-4-9.4-6.9-13.5-4.8-6.8-10.4-13.2-15.8-19.7-7-8.7-13.3-17.8-16.9-28.5-3.5-10.5-8.9-20.1-15.2-29.1-1.3-2-3-3.7-4.5-5.6l-.9.6c.1.5 0 1.1.2 1.6.5 1.6 1 3.2 1.6 4.8 9.4 25.4 22.6 48.9 37.9 71.3 14.2 20.8 28.4 41.5 40.8 63.5 10.5 18.7 23.4 36 40.4 49.6 10.6 8.4 20.5 17.5 29.7 27.3 7.3 7.8 17.1 11.3 27.4 13.1 1.5.2 3.8-.2 4.5-1.2.7-1 .2-3.4-.7-4.6-6.6-9.8-15.1-17.1-27.3-18.9zM165 425.1c-2.4-2.7-12.1-4.4-16.2-2.6 3.7 4.1 8.3 5.9 13.1 7.3 1 .3 2.6-1.4 3.7-2.4.4-.2-.1-1.7-.6-2.3zm-.4-22.6c-1.3-.1-2.7 2.3-4 3.6 1.7.7 3.5 1.5 5.9 2.5-.1-3.3.9-6-1.9-6.1zm-16.7 45.9c3.6 1.8 6.8 3.3 10.4 5-.7-4.8-5.6-7.3-10.4-5zm5.9-13.7c-1.4.5-3.3 1.8-3.5 2.9-.2 1.1 1.2 3.2 2.4 3.8 3.1 1.4 6.5 2.1 10.1 3.2.9-6.4-4.8-11.4-9-9.9zm692.3 384.6c.1.3 2.7.5 2.9.1.7-1.3.8-2.9 1.1-4.4-.4-.1-.8-.2-1.3-.4-1.9.9-3.3 2.3-2.7 4.7zm17.3 1.6c5 4.2 35.2 3 42.6-1.6-7.4-2.5-38-1.3-42.6 1.6zm-229 41.8c-12.3.7-24.5.7-36-4.5-1.2-.5-2.8-.3-4.2-.2-9.2.6-18.6 2.4-27.7 1.8-18.1-1.2-36-3.5-54-5.8-8.3-1.1-16.9-1.6-24.8-5.2-8.1-3.7-16.5-6.9-24.8-10.2-28.8-11.3-57.9-22.2-84.7-38.1-4.5-2.7-10-3.5-15.2-5.2-.2.5-.4.9-.7 1.4 1.5 1.2 2.9 2.6 4.5 3.6 14.3 9 29 17.2 44.8 23.4 3 1.2 5.6 3.1 8.4 4.7-.1.3-.2.6-.4.8-1-.2-2.1-.4-3.1-.7-8.7-3.5-17.6-6.6-26.1-10.6-9.8-4.6-19.3-9.9-29-14.9-2-1-4.2-1.7-6.3-2.5l-.6 1.2c3.4 2.3 6.8 4.6 10.3 6.8 19.7 12.6 41.4 20.9 62.9 29.6 17.8 7.2 35.8 13.7 54.8 16.6 31.3 4.9 62.8 9.2 94.2 13.3 29.2 3.7 58.5 4.8 87.9 1.1 5.2-.6 10.4-1.6 15.7-2.4 0-.3 0-.6.1-.9-3.3-.9-6.6-2.1-9.9-2.8-12.1-2.7-24.1-1.1-36.1-.3zM805 821.1c.7.6 1.8 2 2.1 1.8 1.2-.6 2.2-1.7 3.7-2.9-1.1-1.3-1.6-1.9-2.2-2.6-1.2 1.2-2.4 2.4-3.6 3.7zm-107 42.2c-3 .6-5.7 1.1-8.4 1.6 3.3 4.2 7.5 3.6 8.4-1.6zm-473.2-287c-1.9.2-3.8.4-5.7.5v2.2h5.8c0-.9 0-1.8-.1-2.7zm513.7 210c1.5-.6 2.6-2.3 3.7-3.6.1-.1-1.1-1.2-2.1-2.3-1.9 1.3-3.5 2.5-5.1 3.6 1.1.9 2.7 2.6 3.5 2.3zm-1.5 26.8c-5.5-.4-11.2.7-16.8 1.7-3.6.7-6.4 3.1-7.1 8 4.7.3 8.9.6 13.3.7 5.7.1 11.5-.3 17.3 0 9 .5 18.1 1.5 27.1 1.9 4.5.2 9-.5 13.5-1.3 2.8-.5 5.5-1.9 6.9-5.2-4-.4-7.8-.8-11.5-1.2-14.2-1.6-28.4-3.5-42.7-4.6zM233 185.4c-3.9-3.3-11-4-15.3-1.9-2 1-3.4 2.5-2.9 5.3 6.4.8 12.3.2 18.2-3.4zm-37.9-43.2c2.4-.2 4.8-1.5 3.6-4.4-1.2-3.1-2.7-6.4-4.9-8.7-5.1-5.1-13.3-4.9-18.9 0-6.3 5.4-8.3 14.7-4.4 20.5.9 1.4 2 2.7 3 4.1l1-1c-.8-1.6-1.8-3.1-2.5-4.7-1.8-4.1-.7-6.1 3.7-6.2 2.9-.1 5.9.2 8.8.3 3.6 0 7.1.3 10.6.1zm26.3 69c1.2 7.6 5.5 13.6 10.9 18.8 4.2 4 8.6 7.8 15.2 7 3.7-.4 5.3-2.2 4.8-5.9-.3-2.4-1.2-4.8-1.7-7.2-.2-.9-.3-2.5.1-2.7.8-.5 2.1-.4 3.1-.2 1.7.5 3.2 1.3 5.6 2.3-1.6-4.2-3.9-6.7-7-8-9.8-4-19.8-7.6-30.5-11.6-.2 2.9-.8 5.3-.5 7.5zm-33.2 22.3c2-.6 4-2 6-2.1 6.9-.3 14-.3 20.9-.2 3.2 0 6.4.3 9.8.4-1.6-5.3-8.3-9.9-12.6-8.7-9.3 2.6-18.6 5.5-27.8 8.4-1.8.6-3.4 1.7-5.1 2.6.2.5.3 1 .5 1.4 2.8-.6 5.6-1.1 8.3-1.8zM183.4 496c2.6 2.9 4.8 2.4 6.7.5 0-.4-.1-.7-.1-1.1l-6.6.6zm12.7-109.7c-3.3-.3-6.6-.7-9.9-.7-1.3 0-2.7.8-4 1.2.9 1.2 1.5 2.8 2.6 3.5 6.3 3.9 12.6 2.2 18.6-2.1 1.7-1.2 3.4-4.2 3.1-6.1-.3-1.8-3-4.4-4.9-4.6-8-1.1-16.2-1.4-24.3-2-.4 0-.8.3-1.2.4-.1.3-.2.5-.3.8l20.5 8.4c-.1.4-.2.8-.2 1.2zm28.3-34.5c-.2-.3-.4-.6-.7-.9-1.5.6-2.9 1.2-4.4 1.9 0 .3.1.7.1 1 .9.5 1.9 1 3 1.6.9-1.4 1.4-2.5 2-3.6zm-55.2 45.7c0 .5-.1 1-.1 1.5 1.8.7 3.5 1.6 5.3 1.9.9.1 1.9-1.1 2.9-1.7-.6-.8-1.3-2.3-1.9-2.3-2.1-.1-4.2.4-6.2.6zm68.7 117.7c-.7.9-1.9 1.8-2 2.7-.3 2.8 1.9 3.1 4.5 3.5-.1-1.6 0-2.9-.4-4-.4-.9-1.4-1.5-2.1-2.2zm91.6 92.6c-.4-6-4.3-9.1-8.8-7.8-.8.2-1.8.8-2 1.5-.2.6.5 1.9 1.1 2.2 3 1.4 6.2 2.6 9.7 4.1zm-128.4-93.3c-3.3-2.1-9.4-1.7-12.4.7 3.8 4.3 9.6 4.1 12.4-.7zm-29.3-248.6c8-2.2 16-5 24.2-6.8 16.9-3.7 33.9-6.7 49 4.9-.5-2.9-1.4-5.8-1.5-8.8-.1-1.3.8-3.4 1.8-3.9s3.3 0 4.2.9c2.5 2.5 4.6 5.5 6.8 8.3 1.9 2.4 3.6 5 5.8 7 6.5 6 12.7 4.3 15.4-4.1.3-1 .7-2 .7-3 .1-3.7 0-7.4 0-11 3.9 3.5 7.5 8 13.3 9.8-1.5-5.8-5.7-9.8-8.9-14.5 1.3-2.2 2.6-4.3 3.6-6.5 1-2.3.1-3.9-2.4-4-2.6-.1-5.3-.2-7.7.4-21.7 5.5-43.4 11.1-65 17-13.4 3.5-26.6 7.3-39.9 11.1-1.7.5-3.2 1.5-4.8 2.3.1.4.3.9.4 1.3 1.7-.1 3.4 0 5-.4z"
/>
</symbol>
<symbol id="git" viewBox="0 0 1000 1000">
<title>Git</title>
<path
d="M899.6 0H100.4C45 0 0 45 0 100.4v799.2C0 955 45 1000 100.4 1000h799.2c55.4 0 100.4-45 100.4-100.4V100.4C1000 45 955 0 899.6 0zm11.1 540.5C788.4 662.9 666 785.2 543.7 907.6c-10.8 10.8-23.4 17.6-38.7 18.1-15.5.6-29-4.6-40.2-15.6-15.2-15.1-30.2-30.2-45.4-45.3-108.5-108.4-217-217-325.5-325.4-23.3-23.3-23.5-56.4-.2-79.7 83.6-83.7 167.5-167.5 251.2-251.2.6-.6 1.3-1.2 2.3-2.1 1.4 1.3 2.6 2.4 3.7 3.5 29.6 29.6 59.1 59.2 88.9 88.8 2.7 2.7 3 4.7 1.8 8.3-10.2 30.8 3.7 64.4 32.9 79 3.4 1.7 4.4 3.5 4.4 7.3-.1 74.2-.1 148.4 0 222.6 0 3.8-1 5.8-4.6 7.6-24.9 12.6-38.8 38.4-35.7 66.3 2.8 26.4 22.9 49.2 49.4 56 38.3 9.7 76.8-16.8 81-56.2 3-28.1-8.4-49.4-32.2-64.3-2.7-1.7-3.7-3.4-3.7-6.6.1-73.6.1-147.3.1-220.9 0-1.3.2-2.5.3-4.5 1.5 1.3 2.4 2.1 3.3 3l80.7 80.7c2.2 2.1 2.5 3.9 1.6 6.8-13 38.4 11.6 79.2 51.7 85.8 36.8 6.1 71.3-20.5 75.8-57.7 3.8-31.2-17.3-67.1-56.5-72.2-8.6-1.1-17.7.8-26.5 1.8-2.6.3-4.3.1-6.2-1.8-29.5-29.6-59.1-59.2-88.8-88.9-1.9-1.9-2.2-3.5-1.5-6.1 10.4-39-14.6-77.3-54.4-82.5-8.6-1.1-17.7 1.1-26.5 1.6-1.7.1-3.9-.1-5-1.1-31.4-31.3-62.8-62.7-94.1-94.1-.3-.3-.5-.7-1-1.5 1-1.1 2-2.3 3.1-3.4l71.4-71.4c24-23.9 56.8-24 80.7-.1 123.2 123.3 246.2 246.3 369.3 369.4 22.8 22.7 22.7 56.3.1 78.9z"
/>
</symbol>
<symbol id="github" viewBox="0 0 1000 1000">
<title>GitHub Account: kylemh</title>
<path
d="M352.5 999.7c38.8-5.6 22.4-89.5 22.4-118.7-125 25-156.2-31.2-168.7-56.2-6.2-12.5-31.2-56.2-50-68.7-18.7-6.2-43.7-31.2 0-31.2 37.5 0 68.7 37.5 75 50 43.7 68.7 118.7 50 143.7 37.5 6.2-31.2 18.7-56.2 31.2-68.7-75-6.2-150-31.2-187.5-93.7-50-81.2-50-212.5 12.5-287.4-6.2-12.5-25-62.5 6.2-131.2 0 0 43.7-12.5 137.5 50 81.2-25 168.7-25 249.9 0 93.7-62.5 137.5-50 137.5-50 25 68.7 12.5 118.7 6.2 131.2 68.7 75 68.7 206.2 12.5 287.4-43.7 62.5-118.7 87.5-187.5 93.7 43.7 37.5 31.2 106.2 31.2 156.2 0 25-12.5 93.7 25 100h257.9c49.5-3.8 88.9-43.7 92-93.3v-813C996.5 41.4 953.1 0 900 0H100C44.8 0 0 44.8 0 100v800c0 52.6 40.6 95.7 92.2 99.7"
/>
</symbol>
<symbol id="gulpjs" viewBox="0 0 1000 1000">
<title>Gulp.js</title>
<path
d="M581.9 274.5l-.4 1.5c0 2.4-9 4.4-20.3 4.4-11.1 0-20.3-2-20.3-4.4 0-.2.1-.4.2-.6l.3-1.2c-3.4 1.2-5.4 2.6-5.4 4.2 0 3.8 11.2 6.8 25.2 6.8 13.9 0 25.2-3.1 25.2-6.8 0-1.4-1.7-2.8-4.5-3.9z"
/>
<path
d="M899.6 0H100.4C45 0 0 45 0 100.4v799.2C0 955 45 1000 100.4 1000h799.2c55.4 0 100.4-45 100.4-100.4V100.4C1000 45 955 0 899.6 0zM626.1 794.5l-8.4 146.9c0 16.3-51.8 29.5-115.7 29.5s-115.7-13.3-115.7-29.5L375.7 796l-27.2-46.5c8.5 3.6 19.7 7 33.7 10.4 20.4 4.9 62.9 13.2 117.8 13.2s97.4-8.2 117.8-13.2c14.2-3.4 25.4-6.9 34-10.5l-25.7 45.1zM684.2 536c-5.6 5-10.6 9.3-15 13.1-6.2 5.3-11.3 9.6-15.5 12.9-4 3.2-7.2 5.4-9.4 6.7-2.2 1.3-3.9 1.9-5.1 1.9-1.4 0-2.4-.3-3.1-.9-.6-.6-.9-1.4-.9-2.4.1-.7 1-2.1 2.7-4.2 1.7-2.1 3.9-4.5 6.4-7.5 2.5-2.9 5.3-6.2 8.2-9.8 2.9-3.6 5.6-7.3 8.1-11 2.5-3.8 4.6-7.5 6.3-11.3 1.7-3.7 2.5-7.3 2.5-10.6 0-2.5-.5-4.7-1.6-6.6-1.1-1.9-2.5-3.5-4.2-4.7s-3.7-2.2-5.9-2.8c-2.2-.6-4.4-1-6.7-1-3.3 0-6.5.7-9.8 2-3.3 1.4-6.5 3.1-9.6 5.3s-6.1 4.6-9.1 7.3c-2.9 2.7-5.6 5.4-8.1 8.1.2-.5.4-1.2.7-2.3.2-1 .5-2.2.7-3.3.2-1.2.4-2.3.5-3.3.1-1 .2-1.8.2-2.3 0-2.4-.6-4.2-1.8-5.5-1.2-1.2-3.2-1.9-5.9-1.9-1.8 0-3.4.9-4.9 2.8-1.5 1.9-2.9 4.1-4.1 6.7-1.2 2.6-2.3 5.2-3.3 7.8-1 2.7-1.7 4.7-2.2 6.2-.9 3.3-2 6.6-3.1 10.1-.6.2-1.1.6-1.6 1-1.9 1.9-4.1 4-6.5 6.3-2.4 2.3-4.9 4.6-7.6 6.9-2.6 2.3-5.3 4.5-8 6.6-2.7 2.1-5.3 4-7.7 5.7-2.5 1.6-4.8 3-6.9 4-2.1 1-3.9 1.5-5.3 1.5-1.2 0-1.9-.4-2.3-1.1-.4-.7-.6-1.7-.6-2.9 0-1.9.4-4.1 1.1-6.6.7-2.5 1.4-4.6 2.2-6.5 1.7-4.3 3.7-9.5 6.1-15.5 2.3-5.9 4.9-12.2 7.5-18.9 2.7-6.6 5.4-13.5 8.3-20.4 2.8-7 5.6-13.8 8.3-20.2 2.7-6.4 5.2-12.4 7.5-18s4.4-10.1 6.1-14c.9-1.8 1.6-3.6 2.2-5.2.6-1.6.9-3.1.9-4.6 0-3.1-.9-5.3-2.6-6.6-1.7-1.4-3.7-2.1-5.8-2.1s-4.2.6-6.3 1.9c-2.1 1.3-3.7 3.5-4.9 6.6l-31 78.1c-2 5.1-4.3 10.8-6.7 17.1s-4.9 12.4-7.2 18.8c-1.3 3.3-2.4 7-3.4 10.9-.9.7-1.7 1.4-2.6 2-3.4 2.6-6.7 4.6-9.8 6.1-3.1 1.4-5.7 2.2-7.8 2.2-3 0-4.5-1.4-4.5-4.3 0-3.1.5-6.5 1.4-10.2.9-3.7 2.1-7.4 3.5-11.2s2.9-7.6 4.5-11.3c1.6-3.7 3.1-7.2 4.5-10.4 1.4-3.3 2.5-6.2 3.5-8.7.9-2.5 1.4-4.5 1.4-6 0-2.6-.7-4.8-2.1-6.6-1.4-1.8-3.4-2.8-5.8-2.8-2.2 0-4.1.9-5.6 2.7-1.5 1.8-2.8 4-4 6.6-1.2 2.7-2.2 5.5-3.2 8.7-1 3.1-2.1 6.1-3.4 8.8-1.8 4.1-4.1 8.6-6.9 13.7-2.8 4.9-5.8 9.6-9.2 14-3.4 4.3-7.1 7.9-11.1 10.8s-8.2 4.3-12.7 4.3c-1.6 0-2.7-.6-3.4-1.8-.7-1.2-1-2.5-1-4 .1-3.5.7-7 1.7-10.7 1-3.7 2.2-7.3 3.7-10.8 1.4-3.5 3-7 4.6-10.3 1.7-3.3 3.2-6.4 4.7-9.2 1.5-2.9 2.8-5.4 3.9-7.6 1.1-2.2 1.8-4 2.2-5.4.2-.7.3-1.5.3-2.3 0-1.2-.3-2.3-.8-3.2-.5-.9-1.3-1.7-2.1-2.3-.9-.6-1.8-1-2.9-1.3-1-.3-2-.4-3-.4-2.2 0-4.2.7-6.1 2s-3.5 3.5-4.9 6.6c-5.6 11.6-9.9 21.5-13 29.7-3.1 8.1-5.3 14.8-6.8 19.9-1.5 5.1-2.3 8.8-2.6 11.2-.3 2.4-.4 3.6-.4 3.7 0 3.5.5 6.3 1.4 8.6 1 2.3 2.2 4.1 3.8 5.5 1.6 1.4 3.4 2.3 5.4 2.9 2.1.6 4.2.8 6.5.8 5 0 9.5-.8 13.9-2.5 4.2-1.6 8-3.8 11.4-6.5 3.4-2.7 6.4-5.6 9.1-8.8 2.6-3.2 4.9-6.4 6.6-9.5-1.1 4.9-1.6 9.2-1.6 13 0 5.2 1 8.9 3.1 11.1 2 2.2 4.7 3.3 8 3.3s6.9-.9 11-2.7c4.1-1.8 8.2-4.2 12.4-7.2l3.6-2.7c.1.7.2 1.5.4 2.2.5 2.1 1.3 3.9 2.4 5.4 1.1 1.5 2.6 2.7 4.5 3.6 1.9.9 4.2 1.3 7 1.3 4.1 0 8.3-1 12.7-2.9s8.7-4.5 13.1-7.8 8.8-7 13.3-11.3l.6-.6c-.7 1.6-1.4 3.3-2.1 4.9-3.5 7.9-7.2 16-11 24.1s-7.5 16.2-11.2 24.3c-.5 1.4-1.1 3-1.8 4.5-.6 1.6-1.3 3.2-1.9 4.8s-1.1 3.3-1.5 5c-.4 1.7-.6 3.3-.6 4.9 0 3.3.8 5.5 2.4 6.7 1.6 1.2 3.6 1.8 6.1 1.8 1.9 0 3.6-.4 5.1-1.3 1.5-.8 2.9-2 4.1-3.4 1.2-1.4 2.2-3 3.2-4.9.9-1.9 1.7-3.8 2.4-5.9.2-.7.7-2.1 1.4-4.1.7-2 1.6-4.3 2.6-7s2-5.5 3.2-8.4c1.1-3 2.2-5.8 3.2-8.5s1.9-5 2.7-7.1c.8-2 1.3-3.4 1.7-4.1.3-.6.7-1.6 1.4-3.1.6-1.5 1.4-3.2 2.2-5.1.8-1.9 1.7-3.9 2.7-6s1.9-4.2 2.8-6.2c.9-2 1.7-3.8 2.4-5.4s1.3-2.9 1.7-3.7c1.4-2.8 3-5.9 4.9-9.2s4.1-6.7 6.4-10c2.3-3.3 4.9-6.5 7.5-9.5 2.7-3.1 5.4-5.8 8.3-8.1 2.8-2.4 5.7-4.3 8.6-5.7 2.9-1.4 5.7-2.1 8.4-2.1 1.6 0 2.7.3 3.4.8.7.6 1 1.3 1 2.3 0 1.6-.8 3.7-2.4 6.3s-3.7 5.4-6.2 8.5c-2.5 3.1-5.2 6.4-8.1 9.8-2.9 3.5-5.7 6.9-8.3 10.3-2.6 3.4-4.8 6.6-6.6 9.8-1.8 3.1-2.9 5.9-3.2 8.3-.1.4-.1.7-.1 1v.9c0 3.9 1.4 7 4.2 9.3 2.8 2.3 6.8 3.4 12 3.4 5.5 0 10.7-1 15.6-3.1 4.8-2.1 9.8-5 14.9-8.9 5.1-3.8 10.4-8.4 16.2-13.8 1.5-1.4 3.1-2.9 4.8-4.4L661.6 732c-3.5 9-71.7 31.3-161.5 31.3S342.2 741.1 338.6 732l-13.9-145.8 1.8 1.2c3.4 2.1 7.5 3.1 12.3 3.1 4.1 0 8.5-1 13-3s8.9-4.6 13.4-7.8c4.4-3.2 8.7-6.8 13-10.7 4.2-4 8.1-8 11.7-12-1.2 3.8-2.6 8.1-4.1 12.9-1.5 4.8-3 9.4-4.3 14s-2.5 8.5-3.4 12c-1 3.5-1.5 6-1.5 7.2-.1.6-.1 1.2-.1 1.8v1.7c0 3.9.5 6.5 1.5 8 1 1.4 2.6 2.2 4.7 2.2 1.3 0 2.5-.5 3.8-1.4 1.2-.9 2.3-2.1 3.4-3.5 1-1.4 1.9-2.9 2.6-4.5s1.3-3 1.6-4.3c.1-.4.5-1.7 1.1-3.9.6-2.2 1.4-4.9 2.3-8.1.9-3.2 2-6.8 3.1-10.8 1.2-4 2.4-8 3.6-12.2 1.3-4.1 2.5-8.2 3.7-12.2 1.2-4 2.3-7.6 3.3-10.8 1-3.2 1.9-5.9 2.6-8s1.2-3.4 1.5-3.8c1.2-3.5 2.5-6.9 3.8-10.2s2.5-6.5 3.5-9.7c1.1-3.2 1.9-6.5 2.6-9.9.7-3.4 1-7 1-10.9 0-1.4-.2-2.7-.7-3.8-.4-1.1-1-2-1.8-2.7-.7-.7-1.6-1.2-2.5-1.5-1-.3-1.9-.5-2.9-.5-2 0-3.9.6-5.8 1.9s-3.4 3.5-4.5 6.5l-9.5 28.5c-1.2 2.4-2.9 5.3-5.2 8.5-2.3 3.3-5 6.7-7.9 10.2-3 3.5-6.2 7-9.7 10.5-3.5 3.5-6.9 6.6-10.3 9.3-3.4 2.7-6.7 4.9-9.9 6.6-3.2 1.7-6 2.5-8.6 2.5-2.2 0-4.1-.6-5.6-1.9-1.5-1.2-2.6-2.8-3.5-4.8-.9-1.9-1.4-4.1-1.7-6.5s-.5-4.7-.5-6.9c0-6.8 1.1-14.5 3.3-23 2.2-8.5 5.2-17.2 8.9-25.9s8-17.4 13-25.7 9.9-15.8 15.3-22.3c5.3-6.5 10.6-11.7 16.1-15.7 5.4-3.9 10.5-5.9 15.3-5.9 3.1 0 5.9.9 8.5 2.6s5 4.5 7.2 8.4c2.3 4.3 4.4 7.5 6.3 9.8 1.9 2.3 3.9 3.4 6.1 3.4 2.4 0 4.4-1 6.2-3.1 1.7-2.1 2.6-4.9 2.6-8.6 0-1.5-.2-3.2-.5-4.9-.3-1.7-1-3.4-2.2-5.1-5-7.6-10.4-13.1-16.3-16.5-5.8-3.4-11.8-5.1-18-5.1-5.4 0-10.8 1.2-16.3 3.5s-10.9 5.6-16.3 9.7-10.6 9.1-15.8 14.9c-5.1 5.8-9.9 12-14.5 19-4.5 6.8-8.7 14.2-12.6 21.9-3.8 7.7-7.2 15.6-10.1 23.7-1.4 3.9-2.7 7.9-3.9 11.8l-25-229.9c4.3 2.4 8.8 3.9 11.5 4.8 11.1 3.7 27 7 47 9.7 40.4 5.6 93.9 8.7 150.7 8.7s110.3-3.1 150.7-8.7c20-2.8 35.7-6.1 47-9.7 2.7-.9 7.2-2.4 11.5-4.8L684.2 536zm29.5-266.1c0 16.2-94.8 29.2-211.7 29.2S290.2 286 290.2 269.9c0-16.2 94.8-29.2 211.7-29.2 16.6 0 32.6.3 48.1.8l23.1-89.2L685.3 34.2l.1-.1c2.5-2.5 10.6-.3 18.1 6.4 7.5 6.7 12 14.5 9.8 17l-.1.1-105.3 111.2-18.4 74.6c73.3 4.5 124.2 14.7 124.2 26.5z"
/>
</symbol>
<symbol id="html" viewBox="0 0 1000 1000">
<title>HTML5</title>
<path
d="M286.8 306.8c3.1 34.8 6.3 69.4 9.4 104.2 3 34 6 67.8 8.9 101.8.3 2.9 1.3 4.2 4.2 4 1.6-.1 3.3 0 4.9 0 95.8.1 191.5.2 287.3.1 4.4 0 6.1.9 5.6 5.6-1.3 12.4-2.1 24.7-3.2 37.2-1.9 21.4-4 42.7-5.7 64-.3 3.6-1.5 5.5-5.1 6.5-30.1 8-60.3 16.2-90.4 24.2-1.4.4-3.2.3-4.7-.1-30-8-60-16.2-90-24.2-2.7-.8-4-1.7-4.3-4.8-1.7-20.2-3.9-40.5-5.4-60.7-.3-4.5-2-5.2-6-5.2-25.7.2-51.4.1-77.2.1-1.8 0-3.5.2-5.2.3 0 1.5-.1 2.4 0 3.5 1.7 19.3 3.5 38.5 5.1 57.7 2.1 23.8 4.1 47.6 6.1 71.4.3 3.4 1.6 5 5 6 57.3 15.8 114.4 31.7 171.7 47.5 1.9.5 4.2.7 6.1.1 57.6-15.9 114.9-31.9 172.5-47.7 2.9-.8 3.9-2 4.1-5 1.2-15.7 2.6-31.2 4-47 1.9-20.2 3.8-40.4 5.6-60.6 1.8-20 3.3-40.1 5.1-60.2 2.4-27.3 5-54.8 7.6-82.1.4-4.8.7-9.7 1.1-15-2.6-.2-4.7-.5-6.8-.5-66.9.2-133.7.3-200.7.4-35.1.1-70.2-.1-105.3.1-4.4 0-5.6-1.6-6-5.6-1.9-22.6-4-45-6-67.5-.4-5.1-.8-10.3-1.1-15.8h333.3c.4-1.9 1-3.4 1.1-5 1.1-12.5 2.1-24.7 3.2-37.2 1.1-12.7 2.1-25.4 3.5-38.1.8-7.7 1-7.9-7-7.9-141.4.1-282.7.1-424 .2-1.3 0-2.6 0-4 .1-.6 0-1.3.3-2 .4-.1 1.1-.3 2-.2 2.9 1.9 17.7 3.3 34.8 4.9 51.9z"
/>
<path
d="M901 1H101C45.8 1 1 45.8 1 101v800c0 55.2 44.8 100 100 100h800c55.2 0 100-44.8 100-100V101c0-55.2-44.8-100-100-100zm-73.5 346.4c-2.1 23.6-4.4 47.2-6.5 70.9-1.8 20-3.5 40.1-5.2 60.2-1.8 20.2-3.7 40.4-5.5 60.7-1.8 19.9-3.5 39.8-5.2 59.7l-5.6 61.6c-1.4 16-2.9 32-4.2 47.9l-5.6 62.6c-1.1 12.6-2.4 25.1-3.1 37.7-.3 3.9-1.4 5.6-5.2 6.7l-280.1 78.3H500c-9.8-2.9-19.6-6.1-29.5-8.8-83.1-23.1-166.3-46.1-249.5-69.1-3.8-1-5-2.6-5.3-6.6-1.9-24.2-4.3-48.2-6.4-72.4-1.8-19.9-3.5-39.8-5.2-59.7l-5.6-61.6c-1.8-19.8-3.5-39.5-5.2-59.2L188 494c-1.8-19.9-3.5-39.8-5.2-59.7l-5.6-61.6c-1.4-16-2.8-32-4.2-47.9-1.9-20.9-3.8-41.7-5.6-62.6-1.8-19.6-3.5-39.1-5.1-58.7-1.9-20.9-3.8-41.7-5.6-62.6-1.1-12.1-2-24.1-3.1-36.7h695.8c-.6 4.5-.8 9.2-1.3 13.8-2.2 25.1-4.5 50.2-6.7 75.4-2.4 27.3-5 54.8-7.5 82.1-2.3 24.1-4.2 48-6.4 71.9z"
/>
</symbol>
<symbol id="jira" viewBox="0 0 1000 1000">
<title>JIRA</title>
<path
d="M899.6 0H100.4C45 0 0 45 0 100.4v799.2C0 955 45 1000 100.4 1000h799.2c55.4 0 100.4-45 100.4-100.4V100.4C1000 45 955 0 899.6 0zM699.5 84.9c36.7.1 65.5 29 65.3 65.9-.2 35.8-29.4 65.2-65.3 65.3-36 .2-66.1-29.7-66.1-65.8 0-36.4 29.4-65.5 66.1-65.4zM509.3 31.1c35.7.5 65 30.2 64.9 65.9-.2 36.1-30 65.6-66.4 65.5-36.3-.1-65.2-29.6-65-66.4.4-36.6 29.9-65.5 66.5-65zm-77.1 276.2h138.2c16.3 0 22.3 7.3 18.1 23.2-1.9 7.2-5 14.4-8.8 20.7-21 34.4-49.5 62.3-78.9 91.2C468.9 411 440 379 418.2 341.3c-1.4-2.5-2.7-5.1-3.7-7.7-7.2-19-2.2-26.3 17.7-26.3zM309.5 84.9c36.6 0 66.1 29.2 66 65.6-.1 36-30.3 66-66.3 65.7s-64.9-29.4-65-65.5c-.1-36.9 28.5-65.8 65.3-65.8zm157.4 739.6c-18.8 29.2-35.8 59.3-42 93.9-2.9 16.5-2.5 33.4-3.7 50.9H272c1.1-101.7 32.7-192.9 90.5-279 36 41.4 70.7 81.3 105.5 121 4.8 5.5 1.6 9-1.1 13.2zm354.7-447.4c-34 78.6-84.6 146.1-143.3 207.7-21.5 22.6-45.2 43.2-68.2 65.1 74.6 92.5 115 202.4 117.8 319H579.3c-1.9-19.3-2.1-46.6-6.3-64.6-9.7-42.2-33.6-77.6-58.9-111.8-40.8-55.5-87.3-106-136.3-154.4-56.1-55.5-110.5-112.4-153.6-179.1-32.8-50.8-60-104-71.2-164.2-1.8-9.8-3.1-20-3-30 .1-19 11.1-25.2 27.8-15.9 9.4 5.2 17.9 12.1 27.3 17.3 31.8 17.2 66.5 25 102.2 28 2.5.2 4.9.5 7 .7 29.7 92.3 93 160.7 157.7 228 9.4 9.8 19.7 19 31 29.8 25.8-27.6 51.7-54.1 76-81.9 36.4-41.5 69.4-85.5 92.2-136.2 3.4-7.5 7.1-15.2 8.7-23.2 2.2-11 7.3-15.4 19-16.4 44.2-3.8 84.8-17.7 121.2-43.9 5.5-4 16-6.1 21.6-3.5 4.6 2.1 7.6 12.6 7.5 19.2-.3 39-12.5 75.2-27.6 110.3z"
/>
</symbol>
<symbol id="javascript" viewBox="0 0 1000 1000">
<title>JavaScript</title>
<path
d="M922 996v-3.4c-8.3 2.2-17 3.4-26 3.4h26zm-847.5 0H100c-8.8 0-17.4-1.1-25.5-3.3v3.3z"
/>
<path
d="M899.6 0H100.4C45 0 0 45 0 100.4v799.2c0 46.6 31.7 85.7 74.8 97.1 8.1 2.1 16.8 3.3 25.6 3.3h799.2c9 0 17.8-1.2 26.1-3.4 42.8-11.4 74.3-50.5 74.3-97V100.4C1000 45 955 0 899.6 0zm-312 873c-13.2 34.1-38.2 55.1-73.2 64.2-32.2 8.3-64.5 7.9-96.2-2.9-34.4-11.7-58.3-35.2-74.4-67.6-.2-.5-.3-1.1-.6-2.1 22.8-13.8 45.8-27.7 69-41.7 2.6 4.3 4.7 8.4 7.5 12.1 4.5 6.3 8.7 12.8 14.2 18.3 12.2 12.6 28 14.8 44.7 12.2 19.2-2.9 30-14.4 32.4-33.5 1-7.9 1.6-16.1 1.6-24.1.1-92.1.1-184.3.1-276.4v-7.2h84.7c.1 1.6.2 3 .2 4.4v282c-.4 21.4-2.4 42.2-10 62.3zm350.3-32.8c-2.9 25.6-13.1 47.6-31.8 65.5-17.6 16.8-38.6 26.6-62 31.8-37.4 8.3-74.7 7.1-111.2-5-39.1-13-68.8-37.6-88.3-74.2-.4-.7-.7-1.5-1.4-2.7 23.2-13.5 46-26.6 69.2-40 1.8 2.8 3.5 5.2 5.1 7.7 11.3 16.5 24.9 30.6 44.2 37.6 22.8 8.3 45.8 9.3 68.4-.7 30.4-13.6 30.6-50.9 7.2-67.8-12.8-9.3-27.3-15.2-41.4-21.7-20-9.2-40.4-18-59.8-28.1-19.1-9.8-35.3-23.4-47.7-41.4-14.9-21.6-20-46-19.5-71.9 1.2-52.1 34.6-93.3 85.2-105.2 32.9-7.8 65.4-6.9 97.3 5.2 24.8 9.4 43 27 57.2 49 1.8 2.9 3.5 5.9 5.5 9.2-22.1 14.3-44.1 28.3-65.8 42.3-4.2-5.9-7.8-11.5-12-16.7-15-17.9-34.3-22.7-56.2-17.7-13.6 3.1-23.1 11.8-26.2 25.8-3.4 15.4.2 29.1 12.8 39.4 12.2 10 26.8 16 41.2 22.1 26 11.2 52.1 21.9 75.7 37.7 21.9 14.8 39.6 33 48.4 58.6 6.9 20 8.3 40.4 5.9 61.2z"
/>
</symbol>
<symbol id="linkedin" viewBox="0 0 1000 1000">
<title>LinkedIn Account: kylemh</title>
<path
d="M900 0H100C44.8 0 0 44.8 0 100v800c0 55.2 44.8 100 100 100h800c55.2 0 100-44.8 100-100V100c0-55.2-44.8-100-100-100zM295 850.9H149.2V376.4H295v474.5zm-74.5-542.4c-42.9.3-84.5-40.1-83.2-87 1.2-44.3 40.2-84.2 84.5-82.2 49.6-1.5 86 38.8 85.9 83.6-.1 46.1-34.5 85.2-87.2 85.6zm631.1 531.9v10.5H704.5v-10.8c0-82.9.5-165.7-.4-248.6-.2-18.3-3.7-37.3-9.3-54.8-8-25.2-26.6-39.6-53.6-43.2-25.2-3.3-48.4.1-69.6 14.6-16 10.9-23.7 27.3-27.8 44.9-3.6 15.7-5.6 32.2-5.7 48.3-.6 79.5-.3 159-.3 238.5V851H391.2V376.7h138.9v62.7l2.4 1.5c2.3-2.4 4.9-4.6 6.7-7.3 22.3-35.2 54.4-56.4 94.8-64.7 15.6-3.2 31.7-5.9 47.4-5.3 39.7 1.5 78.4 8.4 110.4 34.9 19 15.7 32.1 36 40.7 58.9 8.5 22.8 14.5 46.5 15.3 70.9 1.8 53.9 3 107.8 3.7 161.7.5 50.1.1 100.2.1 150.4z"
/>
</symbol>
<symbol id="mysql" viewBox="0 0 1000 1000">
<title>MySQL</title>
<path
d="M899.6 0H100.4C45 0 0 45 0 100.4v799.2C0 955 45 1000 100.4 1000h799.2c55.4 0 100.4-45 100.4-100.4V100.4C1000 45 955 0 899.6 0zm25.5 918.7c-1.9-1.3-4-2.4-5.5-4-6.2-6.8-13.6-12.1-21-17.4-11.3-8.1-22.2-17.1-34.5-23.7-10.7-5.7-21.7-11.1-32.7-16.1-20-8.9-38.6-20.2-55.9-33.6-8.8-6.8-18-13.1-25.2-21.7-7-8.4-14-17-18.8-26.9-1.4-2.9-2.4-5.9-3.6-8.8-.5-1.2-1.1-2.6-2-3.5-1.6-1.6-1.4-3.2-.5-4.8.8-1.4 1.7-2.8 3-3.8 1.5-1.2 3.2-2.2 5-2.8 13.3-4.4 26.5-8.9 40-12.9 12.1-3.5 24.6-5.2 37.1-6.4 16.2-1.5 32.3-1.9 48.5-1.6.4 0 .8-.1 1.8-.1-.8-1.7-1.2-3.5-2.2-4.6-3.2-3.5-6.4-7.1-10.2-9.9-5.7-4.3-11.9-8-17.9-12-13.3-9-26.3-18.3-39.6-27.3-8.9-6.1-18.1-11.9-27.1-17.8-7.3-4.7-15.6-7.4-23.6-10.2-12.6-4.4-25.2-9-37.9-13.3-9.3-3.1-18.8-5.7-27.6-10-4.9-2.4-9.1-5.6-12.4-10.1-10.8-14.8-19.3-30.9-26.9-47.5-15.7-33.9-31.4-68-47-102-4.4-9.7-8.5-19.6-12.2-29.6-5.9-16.4-14.3-31.5-23.1-46.4-28.5-48.4-64-91.2-106.4-127.9-30.9-26.8-64.5-49.8-101.3-67.8-13.9-6.7-28.1-13-43-17.1-6.6-1.9-13.7-2.6-20.6-3.2-11.7-1-23.5-.8-35.1-3-2.7-.5-5.7-.3-8.5-.1-4 .3-7.5-.9-10.6-3.1-3.1-2.1-6.3-4.2-9-6.8-9-8.7-19.4-15.4-30.4-21.2-16.4-8.6-33.2-16-50.6-22.1-6.1-2.2-12.4-3.8-19.1-2.7-4.2.7-8.6 2-11.3 5.3-3.1 3.8-4.9 8.5-4.3 13.7.9 8.1 4.5 15.3 8.4 22.2 5.7 10.1 13.7 18.6 20.5 27.9 10 13.8 20.1 27.5 29.4 41.8 9.2 14.1 14.5 29.9 19.8 45.8 6 18.2 11.7 36.4 18 54.5 6 17.8 15 34.1 25.7 49.5 2.6 3.8 6.3 6.9 9.5 10.3 2 2.1 4.2 4.1 6.1 6.2 6.5 7.3 8.7 15.8 6.7 25.5-2.7 13.4-7.5 25.9-12.4 38.6-5.4 14.1-8.5 28.7-10.5 43.7-1.8 13.8-2.5 27.5-2 41.4.8 25 4.1 49.5 13.2 73 4.1 10.6 8.1 21.3 14.7 30.7 4.3 6.2 9.9 10.9 17.4 13.3 2.3.7 4.1-.3 4.3-2.7 1.2-10.4 2.3-21 3.6-31.4 2.2-18.9 4.9-37.6 12.9-55 1.3-3 2.7-6 4.6-8.6 7.3-9.9 15-19.7 22.8-30 1.2 1.6 2.3 2.8 3.1 4.1.6.9 1 2 1.4 3.1 8.6 27 20.7 52.5 33.7 77.6 18.5 35.4 39.5 69.4 63.5 101.3 8.2 10.9 17.5 21.1 27.2 30.6 1.9 1.8 4.2 3.1 6.2 4.8 2.8 2.4 5.5 4.9 8.2 7.3l-.6.9c-3-1.7-6.1-3.1-8.9-5.1-3.6-2.6-7.3-5.3-10.3-8.5-11.3-11.9-24-22.3-36.6-32.7-21.3-17.6-40.7-37-56.7-59.6-4-5.7-6.7-12-9.8-18.2-6.1-12.2-12.1-24.4-18.9-36.8-.7 2.1-1.6 4.1-1.9 6.2-2.7 16.5-5.2 32.8-7.8 49.3-1.1 6.7-2.7 13.3-6.1 19.3-8.3 14.9-27.7 20.3-43.6 12.4-9.7-4.8-17-12.3-23.6-20.7-13.5-17.2-21.9-36.7-27.8-57.5-4.8-17.2-7.5-34.7-8.7-52.5-.9-13.4-.8-26.8.2-40.2 1.5-19.8 5.3-39.2 11.1-58.1 2.4-8 3.9-16.5 5.8-24.7 1.4-5.7 3.3-11.3 6.4-16.4.4-.7.5-1.9.2-2.8-.8-3.5-2.5-6.6-5.2-8.9-10.4-8.7-16.7-20.5-23.3-31.9-12.4-21.4-21-44.5-29-67.8-5.2-15.2-10.9-30.2-14.8-45.9-2.3-9.7-7.6-18.1-13.6-26-11.6-15.8-23.7-31.2-35.4-46.9-8.1-10.7-15.6-22-20-34.9-5.8-17.1-4-33.1 6.3-48 7-10.1 17-15.8 29.1-17.8 14.2-2.3 27.8.2 41.3 4.1 22.5 6.5 43.2 17 62.9 29.4 6.5 4.1 12.2 9.5 18.3 14.4l1.5 1.2c5 4.4 10.4 6.9 17.5 7 11.6.1 23.2.9 34.7 1.8 3.9.3 7.8 1.6 11.6 2.5 15 3.4 29.9 7 44.4 12.3 9.5 3.6 18.5 8.4 27.2 13.7 33.7 20.3 66.1 42.4 96.1 67.9 36.3 30.9 67.8 66.2 94.9 105.3 10.8 15.7 21.9 31.4 30.4 48.5 6.1 12.3 11 25.3 16.5 38 16.8 39.8 34.5 79 54.3 117.4 4.9 9.6 9.1 19.6 14.1 29.2 2.5 4.9 5.6 9.5 8.6 14.3 2.5 3.9 5.9 6.7 10.3 8.2 14.6 4.7 27.9 12 41.9 18.1 10.3 4.4 20.6 9.2 30.2 15 23.2 13.8 45 29.5 66.1 46.4 10.4 8.3 20.8 17 31 25.5 6.3 5.3 11.1 11.9 16.2 18.5 4.1 5.2 8.3 10.3 12.6 15.4 2 2.4 1.2 6-1.7 6.8-11.2 3.1-22.4 6.5-33.7 9-7.9 1.8-16.1 2.4-24.1 3.3-10.8 1.1-21.6 3-32 6.1-10.7 3.2-21.5 6-32.6 7.3 2.9 7.8 8.1 13.9 14.4 19.1 10 8.4 21.2 15.3 32.5 21.5 31.5 17.3 57.3 41 79.4 69.2 3 3.8 6.6 7.2 10.3 10.4 6.3 5.5 11.3 11.7 13.9 19.9.6 2 1.9 3.8 2.9 5.7.3.6.5 1.2 1 2.4-1.8-1.1-2.6-1.3-3.2-1.7zm-633.4-658c-1.2 8.9-4.8 16.5-12.8 21.8-1.1-2.2-2.2-4.4-3.2-6.6-2.3-4.8-4.7-9.6-6.8-14.5-2.2-5.1-5.4-9.4-9-13.7-4.2-5-8.1-10.4-12.1-15.6-.4-.5-1-.9-1.4-1.4v-.7c4.4-.7 6.9-1.2 11.3-1.8 1.1-.2 5.8-.7 7-.8 0 0 6-.3 8.9 3.1l11.5 10.6c3.3 3.6 7.2 15.6 6.6 19.6z"
/>
</symbol>
<symbol id="nodejs" viewBox="0 0 1000 1000">
<title>Node.js</title>
<path
d="M900 0H100C44.8 0 0 44.8 0 100v800c0 55.2 44.8 100 100 100h800c55.2 0 100-44.8 100-100V100c0-55.2-44.8-100-100-100zm23.7 698c.2 26.3-15.9 51.2-39 63.2-116 65.4-231.9 130.9-347.9 196.3-23.6 13.5-54.4 12.5-77.3-2.1l-104.4-60.3c-7.1-4.2-15.1-7.7-20.1-14.5 4.4-5.9 12.4-6.7 18.8-9.4 14.5-4.6 27.9-12 41.2-19.2 3.4-2.3 7.5-1.4 10.7.6 29.7 17 59.2 34.6 89.1 51.5 6.4 3.6 12.8-1.2 18.3-4.2C626.8 835.4 740.8 771.4 854.6 707c4.2-2 6.5-6.5 6.2-11.1.1-130.5 0-261 0-391.5.5-5.2-2.6-10.1-7.3-12.2C738 227 622.4 161.8 506.9 96.7c-4.1-2.8-9.5-2.8-13.6 0-115.6 65.2-231.1 130.4-346.7 195.5-4.7 2.1-7.9 6.8-7.3 12.2V696c-.4 4.6 2.1 9 6.3 11 30.8 17.5 61.7 34.8 92.6 52.3 17.4 9.4 38.7 14.9 57.9 7.8 16.9-6 28.8-23.4 28.4-41.3.2-129.8-.1-259.5.1-389.3-.4-5.7 5-10.5 10.6-10 14.8-.1 29.7-.2 44.5 0 6.2-.1 10.4 6 9.7 11.9-.1 130.6.2 261.1-.1 391.7 0 34.8-14.3 72.7-46.4 89.7-39.7 20.5-88.7 16.2-127.9-3.5-33.9-16.9-66.3-36.9-99.6-55.1-23.2-12-39.2-37.1-39-63.2V302.3c-.2-25.8 15-50.6 37.5-62.7 116-65.5 231.9-130.9 347.9-196.5 23.2-13.3 53.3-13.3 76.4 0C654.6 108.9 771 174.5 887.4 240.4c21.9 12.3 36.5 36.7 36.3 61.9V698zM712.1 570c-3.6-13.1-17.2-19.1-29-23.2-60.2-19-125.5-12.1-185.1-33.6-24.2-8.6-47.6-24.7-56.9-49.5-13-35.1-7-78.7 20.3-105.6C488 331.3 526.5 321 563 317.3c50.6-3.2 104.7-1.9 150.3 23 35.2 19.1 54.8 59.2 55.4 98.3-1 5.2-6.5 8.2-11.5 7.9-14.7 0-29.4.2-44-.1-6.2.2-9.8-5.5-10.6-11-4.2-18.7-14.4-37.3-32.1-46.3-27.1-13.6-58.5-12.9-88-12.6-21.5 1.1-44.7 3-63 15.7-14 9.6-18.3 29-13.3 44.6 4.7 11.2 17.7 14.8 28.2 18.1 61 15.9 125.6 14.4 185.4 35.3 24.8 8.6 49 25.2 57.5 51.1 11.1 34.7 6.2 76.2-18.5 104.1-20 23-49.2 35.4-78.4 42.2-38.7 8.7-78.9 8.9-118.3 5-37-4.2-75.5-13.9-104-39.2-24.4-21.2-36.3-54.3-35.2-86.1.3-5.3 5.6-9.2 10.8-8.7 14.8-.1 29.6-.2 44.3 0 5.9-.4 10.3 4.6 10.6 10.3 2.7 17.8 9.4 36.6 25 47.1 30 19.3 67.7 18 102.1 18.6 28.5-1.3 60.5-1.6 83.7-20.4 12.4-10.8 16-28.7 12.7-44.2z"
/>
</symbol>
<symbol id="pdf" viewBox="0 0 1000 1000">
<title>Resume in PDF</title>
<path
d="M221.6 262.4h-11.5v-57.7h14.2c10.5 0 15 5.9 15 19.3v18.5c0 15.1-6.7 19.9-17.7 19.9zm54.9 205.5h-30.9v140.8h30.9c20.8 0 32.1-9.5 32.1-39.2v-62.4c-.1-29.7-11.4-39.2-32.1-39.2zm229.8 0h-36.8v297h36.8c20.8 0 33.3-10.7 33.3-40.4V508.3c0-29.7-12.5-40.4-33.3-40.4zM1000 100v800c0 55.2-44.8 100-100 100H100C44.8 1000 0 955.2 0 900V100C0 44.8 44.8 0 100 0h800c55.2 0 100 44.8 100 100zM486.1 320.9c0 30 15 47.2 44 47.2s44-17.2 44-47.2v-143h-27.9v144.8c0 13.4-5.9 18.2-15.3 18.2s-15.3-4.8-15.3-18.2V177.9h-29.5v143zm-197.7 44.8h80.5v-26.8h-51v-55h40.5v-26.8h-40.5v-52.3h51V178h-80.5v187.7zm-107.8 0h29.5v-76.4h10.2c13.4 0 19.3 6.4 19.3 23.9v29.5c0 15.3 1.1 18.2 2.7 23.1h30c-3-7-3.2-13.7-3.2-22.8v-29c0-19.6-4.8-33.5-19.6-39.7v-.5c13.1-6.2 19.3-18.5 19.3-37.8v-14.8c0-29-13.1-43.2-43.7-43.2h-44.5v187.7zm193.3 145.5c0-66.5-32.1-102.7-97.4-102.7h-96.2v415.7h65.3V668h30.9c65.3 0 97.4-36.2 97.4-102.7v-54.1zm52.6-143.4c29 0 44-17.2 44-47.2 0-21.5-7.8-37-32.5-58.7-19.3-16.9-25.2-27.1-25.2-40.8 0-13.4 5.4-18.5 14.8-18.5s14.8 5.1 14.8 18.5v7.8h27.9V223c0-30-14.8-47.2-43.5-47.2S383.3 193 383.3 223c0 21.5 7.8 37 32.5 58.7 19.3 16.9 25.2 27.1 25.2 40.8 0 13.4-5.9 18.2-15.3 18.2s-15.3-4.8-15.3-18.2v-13.4h-27.9v11.5c0 30.1 15.1 47.2 44 47.2zm178.4 143.4c0-66.5-32.1-102.7-97.4-102.7H404.2v415.7h103.3c65.3 0 97.4-36.2 97.4-102.7V511.2zm36.7-145.5h27.9L689.4 231h.5v134.7h27.9V177.9h-41L657 311.2h-.5L635 177.9h-41v187.8h25.8V232.9h.5l21.3 132.8zm177.7 42.8H646.5v415.7h65.3V652.6h84.3v-59.4h-84.3V467.9h107.5v-59.4zm.5-230.6h-80.5v187.8h80.5v-26.8h-51v-55h40.5v-26.8h-40.5v-52.3h51v-26.9z"
/>
</symbol>
<symbol id="postgres" viewBox="0 0 1000 1000">
<title>PostgreSQL</title>
<path
d="M899.6 0H100.4C45 0 0 45 0 100.4v799.2C0 955 45 1000 100.4 1000h799.2c55.4 0 100.4-45 100.4-100.4V100.4C1000 45 955 0 899.6 0zm25.8 600.3c-3.3 24.4-17.2 43-34.5 59.3-20.9 19.6-47.2 26.5-74.3 30.8-21.4 3.4-43 4.5-64.4 1.1-6.1-1-4.8 2.8-5.1 5.8-4.6 43.9-9.8 87.8-17 131.3-7 43.1-26.4 77.5-68.2 95.7-26.7 11.7-54.6 18.7-83.8 18.7-21.7 0-42.4-4.5-60.7-16.6-22.1-14.5-36.4-34.4-41.8-60.4-9.5-45.8-10.6-92.3-11.6-138.8-.1-3.4-.1-6.7-.1-10.1 0-3.1-.9-4.5-4.1-2.7-28.6 16.3-58.9 13.7-89.4 7.4-12.1-2.5-24.5-4.5-36.2-8.8-10.1-3.7-19.7-8-25.9-17.6-10.5 10.3-21.8 19.1-36.4 22-24.9 4.8-43.9-6.3-60.5-23.1-20.6-20.8-34.7-46-47-72.1C134.3 558 113.9 490.5 97 421.8c-9.6-39.4-19.6-78.8-22.4-119.3-3.6-47.5-.1-94.2 21.2-137.9 21.8-44.8 58-71.5 105.6-83.7 44.5-11.3 89.1-8.4 133.7-.9 21.5 3.7 42.7 8.8 63.5 15.4 4.5 1.4 8.1 1.4 12.4-.9 39.3-21.6 81.6-25.8 125.4-21.7 13 1.2 25.8 3.2 38.4 6.3 3.2.8 6-.1 9-1 65.1-19.8 130.6-23.7 196.5-4.8 50.3 14.4 91.3 43.1 123.4 84.1 12.8 16.3 15.6 35.9 16.9 55.8 2.5 40.4-4.3 79.7-13.8 118.7-20.1 82.3-52.5 159.5-95.1 232.6-5.1 8.8-5.1 8.7 5.3 9.4 21.2 1.3 42-1.3 62.8-5.3 4.3-.8 8.7-1.6 13.1-2 20.6-1.7 35.2 13 32.5 33.7z"
/>
<path
d="M715.4 328.8c-8.5 0-15.7 1.3-21.9 5.4-5.2 3.4-5.7 7.5-1.6 12.2 7.6 8.8 19.9 10.1 29.2 2.8 4.7-3.7 10.4-7.9 8.4-14.5-2.2-6.7-9.6-5.4-14.1-5.9zm169.7 256.5c-5.9-1.1-11.9-.6-17.9.5-21 3.8-41.9 7.7-63.4 6.7-7.3-.3-14.5-1.5-21.4-3.9-4.5-1.6-6.7-3.6-3-8.2 2.1-2.6 3.7-5.6 5.5-8.5 44.3-71.3 77.6-147.4 98.1-228.8 10.7-42.7 18.6-85.9 11.8-130.2-2.5-16.4-6.1-32.2-17.7-45.8-45-52.9-103.8-75.7-171.5-79.1-40.3-2.1-79.8 3.1-118.5 15-3.3 1-6.5 1-9.9.5-10.2-1.6-20.5-3.5-30.8-4.4-45.4-3.9-89.8-2.9-129 25-3 2.1-5.6 1.7-8.7.6-16.4-5.9-33.1-10.7-50.1-14.6-49.3-11.4-98.9-16-148.9-3.6-47.6 11.7-80.8 39.9-97.1 86.6-13.9 39.7-16.5 80.7-13.1 122.2 2.2 27.4 8.1 54.3 14.1 81.1 17.1 77.1 37.3 153.1 72.8 224.3 11.3 22.7 24.7 44 44.6 60.3 21.4 17.5 45.9 18 68 1.6 7.3-5.5 13.5-12.2 19.4-19.2 19.7-23.2 39.6-46.2 60.3-68.4 1.7-1.9 3-5.6 6.7-3.6 14 7.2 28.8 11 44.7 12.1-11.9 20.9-22.7 28.3-48.3 34-11.6 2.6-23.5 4.6-34.4 9.7-20.7 9.7-22.3 29.2-3.7 42.7 9.2 6.6 19.7 10.3 30.7 12.7 36.2 7.6 70.8 4.7 102-17.2 2.8-2 5.6-4.1 8.5-6.2 2 2.4 1.2 4.5 1.2 6.5.4 26 0 52 1.2 77.9 1.7 34.9 2 70 15.5 103.4 10.3 25.9 29 41.4 54.4 49.5s50.4 2.7 75.1-4.4c41.4-12 67-38.8 76-81.3 3.7-17.6 6.4-35.2 8.8-53 4.5-33.4 8.5-67 12.6-100.5.8-7.1 4-9.4 10.7-7.9 12 2.5 24.3 2.5 36.4 1.8 40.4-2.4 77.9-12.3 108.6-40.5 5.6-5.1 10.8-10.5 14.1-17.5 5.7-12.4-.9-25.3-14.4-27.9zM667.9 113.1c44.6-2.7 87.7 3 127.9 23.6 25.9 13.3 47.5 31.6 65.3 54.5 8.8 11.3 10 25.4 10.7 39.3 1.8 37.2-4.8 73.5-14.2 109.3-19.6 75.7-50.5 146.7-91.4 213.4-1.6 2.6-2.8 8.5-6.8 6.3-5.1-2.8 0-6.8 1.5-9.9 13.4-26.3 16.8-54.3 14.7-83.3-2-26.6-7.7-53-5.3-79.9 1.2-13.7 2.5-27.5 5.1-41 6.2-32.6 0-62.6-15.5-91.7-30.6-57.5-72.6-103.5-132-132.1-.8-.4-1.5-1.2-3.1-2.4 14.9-3.8 29-5.2 43.1-6.1zm81.5 337.2c2.7 22.5 4.3 45-2.2 67.2-1.4 4.9-3.3 9.7-5.7 16.5-14.4-27.2-27.8-52.3-40.9-77.6-10.1-19.6-18.6-40-24.5-61.3-2.9-10.2-5-20.7-5.3-31.4-.7-27.3 12.4-42.1 39.6-45.5 12.4-1.5 24.8-.9 37.2-.2 5.1.3 6.1 2.5 5.5 6.9-2 15.2-3.9 30.3-6 45.5-3.6 26.8-1 53.3 2.3 79.9zM358.5 578.8c-23.2 24.2-44.1 50.5-66.7 75.2-18.2 19.9-34.1 19.7-53.1.2-13-13.4-22.5-29.2-30.7-45.7-31.3-62.8-49.8-129.7-65.9-197.5-7.7-32.5-15.1-65.4-18-98.8-3.5-40.5-1.1-80.5 16.5-118.2 16.1-34.3 43.6-54.7 79.6-64.3 16.9-4.5 34.1-6.2 56.9-6.2 33.4.5 71.1 7.9 108 19 3.7 1.1 6.4 1.9 2.3 6.3-34.6 36.7-50.8 82-59.9 130.4-5.9 31-7.1 62.2-5.1 93.9 1.8 28.5.6 57.1-2.9 85.5-5.5 43.8 6.5 81.6 38.3 112.8 2.6 2.5 3.8 4.2.7 7.4zm69.2-1.5c-37.4-4.2-62-25.2-76.9-58.8-9.5-21.5-8.7-43.9-5.9-66.6 3.7-29.2 4.3-58.5 1.5-87.8-1.1-11.8 2.3-18.6 12.9-23.8 19.3-9.5 38.9-17.6 60.4-18.9 27.7-1.7 41.8 9 47.3 36.2 4.8 23.4 8.4 47 8.8 80.5.5 19.3-5.5 46.7-17.3 72.9-8.9 19.9-17 40.2-23.2 61-1.3 4.3-3.1 5.8-7.6 5.3zm53.6 67.7c-22.9 29.7-53.8 38.9-89.9 34.4-11-1.3-22.1-3.1-32.9-10.1 10.5-4 20.1-6.2 29.6-8 23.1-4.3 42.5-14.6 56-34.5 3.9-5.7 8.9-10.7 13.8-15.9 3.8-4.1 8.3-4.4 13.5-2.2 14.2 6 19.3 24.2 9.9 36.3zm227.3-13.6c-3.3 53.7-10.8 106.9-18.4 160.1-1.6 11.3-3.5 22.6-5.8 33.7-6.2 29.2-21.8 50.5-51.2 60.4-17.9 6-35.7 11-54.8 9.9-18.5-1.1-32.9-9.3-44-24.4-14.4-19.6-17.9-42.2-19.8-65.5-4.7-57-3.7-114.3-3.1-171.4.2-23-13.7-42.9-34.3-49.7-4.5-1.5-9.1-2.6-13.8-1.9-5.6.8-5.3-1.5-4-5.6 4.9-15.1 9.4-30.3 16.6-44.5 27.3-54.1 29.2-110.6 17.4-168.7-1-5.1-1.9-10.2-3.1-15.3-8.7-35.7-32.8-53.9-69.8-52.1-22.9 1.1-44.4 7.9-64.9 18.1-2.3 1.1-4.6 2.2-7.6 3.6-1-10 1.3-19.1 2.6-28.1 4.4-28.7 12.3-56.3 25.4-82.3 29.9-59.4 78.6-87.9 144.9-86.1 78.8 2 141.1 36.3 188.7 98.2 16 20.7 28.9 43.1 38.2 67.6.6 1.7 1.1 3.4 1.8 5.7-14-.9-27.4-1.8-40.9.1-25.8 3.7-47.6 13.6-57.9 39.7-6 15.2-5.8 30.9-3.2 46.9 6.2 38.6 23 73.1 41 107.2 9.5 18.2 19.7 35.9 28.6 54.5 6.2 13 15.4 24 24 35.4 1.7 2.2 5.1 4.8-.6 6.8-22.6 7.8-30.7 25.6-32 47.7zM804 642c-19 3.2-38.1 5.3-57.2 2.4-13.9-2.1-14.8-3.3-12.8-16.9 2.1-14 6.9-19.1 20.9-22.5 2.6-.6 4.9-.8 7.4.7 19.8 12.6 41.8 12.4 64 11 13.5-.9 26.7-3 40.1-4.9-18.1 16.4-38.9 26.2-62.4 30.2zM452.9 354.4c3.6-4.9 2.7-9.5-2-12.7-10.6-7.1-22.5-8.6-34.7-4.9-6.1 1.8-8 6.6-5.1 12.2 4.6 9 12 14.7 23.4 15.4 7-.6 13.7-3.5 18.4-10z"
/>
</symbol>
<symbol id="ps" viewBox="0 0 1000 1000">
<title>Adobe Photoshop</title>
<path
d="M899.6 0H100.4C45 0 0 45 0 100.4v799.2C0 955 45 1000 100.4 1000h799.2c55.4 0 100.4-45 100.4-100.4V100.4C1000 45 955 0 899.6 0zM246.5 602.5c-25.6 0-34.4-1.3-52.6-1.3v259c0 5.4-2 8.1-8.1 8.1H82.5c-5.4 0-8.1-2-8.1-8.1V135.7c0-4.7 9.4-8.1 14.9-8.1 43.2-2 107.2-3.4 174-3.4 186.8 0 259.6 102.5 259.6 233.3.1 171.5-124 245-276.4 245zm485.6 277.2c-58.6 0-109.2-12.1-138.3-29-4.7-2-5.4-5.4-5.4-10.8v-99.2c0-6.7 3.4-8.7 8.1-5.4 42.5 27.6 91.1 39.8 135.5 39.8 53.3 0 75.5-22.3 75.5-52.6 0-24.3-15.6-45.9-83.6-80.9-95.8-45.9-135.5-92.4-135.5-170 0-87 68.2-159.1 186.1-159.1 58 0 98.5 8.7 120.8 18.9 5.4 3.4 6.7 8.7 6.7 13.5V437c0 5.4-3.4 8.7-10.1 6.7-29.7-18.9-73.5-30.3-117.4-30.3-53.3 0-71.5 27-71.5 49.2 0 24.3 12.1 41.2 83.6 78.2 105.9 51.5 139 100.8 139 173 .1 107.9-82.2 165.9-193.5 165.9zM259.2 231.5c-27 0-52.6 1.3-64.8 2v260.3c15.6 1.3 27.6 1.3 54.6 1.3 78.9 0 153.1-27.6 153.1-134.9.2-85.5-53.1-128.7-142.9-128.7z"
/>
</symbol>
<symbol id="python" viewBox="0 0 1000 1000">
<title>Python</title>
<path
d="M619 858.9c20.7 0 37.3-16.7 37.3-37.2 0-20.5-16.8-37.1-37.2-37.1-20.6 0-37.1 16.6-37.1 37.1-.1 20.7 16.4 37.2 37 37.2zM384.8 140.4c-20.8 0-37.3 16.5-37.3 37.1s16.6 37.2 37.1 37.2c20.6 0 37.2-16.6 37.3-37 .1-20.6-16.5-37.3-37.1-37.3z"
/>
<path
d="M899.6 0H100.4C45 0 0 45 0 100.4v799.2C0 955 45 1000 100.4 1000h799.2c55.4 0 100.4-45 100.4-100.4V100.4C1000 45 955 0 899.6 0zM268.3 607.5c-.3 33.2-.1 66.5 0 99.8 0 1.9-.4 2.3-2.3 2.3-23.1-.1-46.1-.1-69.2 0-13.2.1-25.6-2.9-37.4-8.3-19.7-8.9-34.8-23.1-46.9-40.8-12.9-18.9-21-39.9-26.7-61.9-7.9-31-10.6-62.7-11-94.6v-10.2c0-3.6.1-7.2.3-10.8.5-17.2 2-34.2 4.8-51.2 3.1-18.7 7.9-36.9 15.4-54.4 8.8-20.8 20.8-39.4 38.1-54.1 18.1-15.5 38.9-24.5 62.4-27.4 7.5-.9 15-.5 22.5-.4 19.8.1 39.6 0 59.3 0H500c2 0 2.7-.5 2.6-2.6-.1-8 0-16.1-.1-24 0-3.1.3-2.7-2.7-2.7H298c-1.9 0-2.5-.4-2.5-2.4v-55.7c0-12.9.1-25.7-.1-38.5-.1-5.1.1-10.1 1.3-15.2 3.4-14.4 11.4-25.9 22.3-35.6 11.6-10.5 25.3-17.9 39.9-23.6 21.8-8.5 44.5-13.3 67.6-16.3 21-2.7 42.1-3.8 63.2-4.2h19.6c8.8.4 17.7.7 26.5 1.1 7.7.4 15.4 1.3 23 2.1 4 .4 8 .8 11.9 1.4 5.6.8 11.2 1.8 16.9 2.9 9.8 1.9 19.5 4 29 6.9 9.6 2.9 19.1 6.3 28.2 10.5 13 6.1 25 13.6 35.4 23.3 12.3 11.4 21.2 25.2 25.5 41.7 2.2 8.3 2.2 16.8 2.1 25.3-.2 61.1-.1 122.4-.1 183.5 0 9.8-.6 19.7-2.6 29.4-5.4 27-19.1 48.6-42.4 63.6-21.6 13.9-45.6 20.2-71 20.3-67.5.3-135 .1-202.5.1-12.8 0-25.3.9-37.8 3.9-25.7 6.2-46.7 19.5-61.4 41.7-15 22.8-21.5 48.1-21.7 75.1zm657.4-51.1c-.1.5-.3.9-.4 1.4-1.5 11.1-3.6 22.2-6.4 33.1-6.1 23.6-15.2 45.9-30 65.4-19.4 25.4-44.7 41.2-76.3 46.4-8.3 1.4-16.7 1.1-25 1.1-55.5-.2-111-.1-166.6-.1-39.1 0-78.1 0-117.2-.1-2.2 0-2.7.6-2.7 2.7.1 7.8.1 15.6.1 23.4 0 3.2 0 3.2 3.3 3.2 67 0 134 0 201-.1 2 0 2.6.5 2.6 2.5-.1 8.5.1 17.2.1 25.7.1 24.1.2 48.2.2 72.3 0 2.8-.2 5.6-.7 8.4-2.5 13.3-9 24.3-18.3 33.9-11.8 12.3-26.4 20.7-42.1 27.1-25.5 10.4-52.2 15.4-79.4 18.4-13.8 1.5-27.5 2.3-41.4 2.7-24.1.7-48.2.3-72.2-1.8-10.6-.9-21.3-2.2-31.8-4-14.1-2.4-27.9-5.6-41.5-10.1-19.4-6.4-37.7-15-53.3-28.3-14.8-12.6-25.4-27.7-30-46.8-2-8.1-1.8-16.4-1.7-24.7.2-60.9.1-122 .1-182.9 0-10.8.7-21.5 3.1-32.1 6.5-28.9 22.6-50.7 48.7-64.9 20.1-10.9 41.8-16.2 64.5-16.3 67.8-.2 135.5-.1 203.3-.1 13.5 0 26.7-1.3 39.8-4.8 21.3-5.7 39.4-16.6 53.2-33.9 18.2-22.9 26.3-49.6 26.9-78.4.7-34.3.2-68.7.1-102.9 0-2.1.5-2.6 2.6-2.6 23.1.1 46.2.1 69.4 0 11.7 0 22.9 2.5 33.7 6.9 19.8 8.1 35.2 21.7 47.8 38.8 11.3 15.5 18.8 32.8 24.9 50.9 4.5 13.6 7.5 27.6 9.8 41.8.7 4.4 1.4 8.7 2.1 13.2-.3 38.7-.3 77.2-.3 115.6z"
/>
</symbol>
<symbol id="react" viewBox="0 0 1000 1000">
<title>React.js</title>
<defs>
<style>
.cls-1 {
fill: #333;
}
</style>
</defs>
<path
d="M427.55 626.65a1072.81 1072.81 0 0 0 145.72-.28q20.2-30.34 38.39-61.94Q630 532.67 646 499.66q-16.2-32.65-34.49-64.2T573 373.9a968.45 968.45 0 0 0-145.85 0q-20.56 30.13-38.8 61.77-18.22 31.6-34 64.51 15.84 32.87 34.14 64.47t39.06 62zM500 427.87c92 0 92.14 142.9 0 142.9s-92.16-142.9 0-142.9zM616.8 378.32q12.6 19.74 24.33 40 11.92 20.59 23 41.64a729.14 729.14 0 0 0 25.61-68.9c-22.95-5.23-47.41-9.52-72.94-12.74zM664.48 539.11q-11.13 21.45-23.21 42.39-11.88 20.6-24.57 40.72a725.46 725.46 0 0 0 74.64-12.72 726 726 0 0 0-26.86-70.39zM383.26 378.25c-25.37 3.17-49.71 7.34-72.54 12.45 7 22.42 15.47 45.63 25.43 69.24q10.81-21 22.59-41.38t24.52-40.31zM699 358.11q1.94-7.92 3.6-15.91c16.83-81.72 6.41-144-20.38-159.49-25.16-14.51-80.37 5.79-139.44 57.2q-9.41 8.21-18.4 16.88A803 803 0 0 1 592 341.21a818.85 818.85 0 0 1 107 16.9zM547.47 338.08a731 731 0 0 0-47.09-56.84c-16 17.28-31.94 36.32-47.48 56.82q47.26-2.21 94.57.02zM384 622.83q-13-20.24-25.12-41.09-11.83-20.43-22.68-41.4c-10.2 24.11-18.89 47.82-25.95 70.66A727.81 727.81 0 0 0 384 622.83zM705.05 661.78q-1.88-9.47-4.33-19.36c-33.14 7.66-69.69 13.27-108.37 16.7-22 31.84-44.52 60.5-67.07 85.17q9.8 9.45 20.12 18.34c58.15 50 112.08 69 137.3 54.42 44.42-25.72 30.17-115.79 22.35-155.28zM500 663.11q-23.81 0-46.81-.91c15.78 20.8 31.94 40.13 48.14 57.61a726.93 726.93 0 0 0 47-57.78q-23.83 1.07-48.33 1.08zM296 333.11q2.44 12.39 5.5 24.65a835.22 835.22 0 0 1 106.77-16.59 819.12 819.12 0 0 1 68.16-84.35c-4-3.84-8-7.54-12-11.08-29.71-26.38-103.31-88.49-148.35-62-42.39 24.92-27.39 112.1-20.08 149.37z"
/>
<path
d="M900 0H100A100 100 0 0 0 0 100v800a100 100 0 0 0 100 100h800a100 100 0 0 0 100-100V100A100 100 0 0 0 900 0zM748.66 629.1q-7.27 2.41-14.88 4.65 2.71 10.9 4.8 21.39c11 55.57 20.92 149.16-33.08 187.8-57.38 41.06-139.62-17.59-182.39-54.4Q512 779 501.48 768.81q-8.37 8.09-16.7 15.39c-70.21 61.37-142.31 86.8-185.26 62.06-41.59-24-54.66-94-37.93-182.12q2.74-14.37 6.29-28.57-10.9-3.11-21.64-6.76c-54.06-18.48-142.72-58.19-146.14-126.11-3.45-68.52 86.05-108.88 138.64-127.22q14.67-5.09 29.61-9.31-3.29-13.17-5.91-26.5c-17.55-89.7-5.2-161.38 36.5-185.52 43.49-25.17 115.92 1.86 188.17 66q6.74 6 13.26 12.25 9.73-9.39 19.92-18.28c68.95-60 137.21-85.1 179-61 43.54 25.1 56.28 101.35 36.79 196q-1.83 8.82-4 17.57 13 3.73 25.76 8.12C810.87 393.05 903 433.28 899.91 502.6s-96.78 108.46-151.25 126.5z"
/>
<path
d="M746.69 407.11c-7.66-2.64-15.6-5.13-23.79-7.51a801.93 801.93 0 0 1-38.9 99.89c16.72 35.22 30.39 69.31 40.52 101.37 4.58-1.36 9.07-2.76 13.44-4.2C776.19 584 860 553.94 865.53 504c5.67-51.52-82.87-84.51-118.84-96.89zM301 643.95q-3.29 13.2-5.84 26.57c-11.52 60.69-17.31 177.51 77.54 144 27.42-9.69 58.52-28.93 89.57-56.07q7.79-6.83 15.24-14a831.78 831.78 0 0 1-68.68-84.86c-38.76-3.18-75.04-8.39-107.83-15.64zM277.53 399.1q-13.89 3.9-27.53 8.67c-58.34 20.34-162.42 73.68-86 139.12 22.09 18.91 54.31 36.24 93.32 49.58q9.8 3.33 19.75 6.18a832.26 832.26 0 0 1 39.48-102.49 819.79 819.79 0 0 1-39.02-101.06z"
/>
<path
class="cls-1"
d="M757.81 374.79q-12.77-4.38-25.76-8.12 2.15-8.75 4-17.57c19.5-94.65 6.75-170.9-36.79-196-41.74-24.07-110 1-179 61q-10.16 8.9-19.89 18.32-6.52-6.24-13.26-12.25C414.86 156 342.43 129 298.94 154.15c-41.7 24.14-54.05 95.82-36.5 185.52q2.62 13.32 5.91 26.5-14.94 4.22-29.61 9.31c-52.63 18.36-142.09 58.7-138.64 127.22 3.42 67.9 92.12 107.65 146.14 126.11q10.73 3.65 21.64 6.76-3.54 14.19-6.29 28.57c-16.74 88.14-3.67 158.12 37.93 182.12 43 24.77 115.06-.69 185.26-62.06q8.32-7.28 16.7-15.39Q512 779 523.11 788.54c42.59 36.65 125.3 95.78 182.39 54.4 53.83-39 44.13-132 33.08-187.8q-2.07-10.48-4.8-21.39 7.6-2.24 14.88-4.65C803.45 611 896.45 572 899.91 502.6c3.44-69.23-89.34-109.65-142.1-127.81zM542.73 239.92c59.07-51.41 114.28-71.71 139.44-57.2 26.79 15.45 37.21 77.77 20.38 159.49q-1.66 8-3.6 15.91a818.85 818.85 0 0 0-107-16.9 803 803 0 0 0-67.64-84.41q9.01-8.68 18.42-16.89zM336.18 540.34q10.85 21 22.68 41.4 12.07 20.84 25.12 41.09A727.81 727.81 0 0 1 310.25 611c7.06-22.84 15.75-46.55 25.93-70.66zm0-80.39c-10-23.61-18.47-46.82-25.43-69.24 22.83-5.11 47.18-9.28 72.54-12.45q-12.74 19.87-24.53 40.31t-22.62 41.38zm18.17 40.2q15.8-32.88 34-64.51 18.22-31.61 38.8-61.77a968.45 968.45 0 0 1 145.85 0q20.36 30.09 38.55 61.56T646 499.66q-16 33-34.38 64.77-18.14 31.57-38.35 61.93a1072.8 1072.8 0 0 1-145.72.28q-20.72-30.26-39.11-62-18.28-31.64-34.13-64.49zm287 81.36q12.07-20.94 23.21-42.39a726 726 0 0 1 26.87 70.39 725.46 725.46 0 0 1-74.64 12.72q12.6-20.12 24.48-40.73zM664.15 460q-11.09-21-23-41.64-11.73-20.27-24.33-40c25.53 3.22 50 7.51 73 12.75A729.14 729.14 0 0 1 664.15 460zM500.38 281.24a731 731 0 0 1 47.09 56.84q-47.26-2.23-94.57 0c15.54-20.52 31.47-39.56 47.48-56.84zm-184.32-97.51c26.77-15.5 86 6.6 148.35 62 4 3.54 8 7.25 12 11.08a819.12 819.12 0 0 0-68.16 84.35 835.22 835.22 0 0 0-106.77 16.59q-3.06-12.26-5.5-24.65c-15.03-76.85-5.05-134.82 20.08-149.37zM277 602.65q-10-2.85-19.75-6.18c-39-13.34-71.24-30.67-93.32-49.58C87.7 481.56 191.66 428.1 250 407.77q13.64-4.73 27.54-8.67a819.79 819.79 0 0 0 39 101.05A832.26 832.26 0 0 0 277 602.65zm185.29 155.81c-31 27.14-62.15 46.39-89.57 56.07-94.69 33.44-89.06-83.34-77.54-144q2.55-13.36 5.84-26.57c32.77 7.25 69.05 12.46 107.83 15.61a831.78 831.78 0 0 0 68.68 84.86q-7.45 7.19-15.24 14.03zm39-38.63c-16.16-17.49-32.29-36.83-48.1-57.62 31.69 1.25 63.43 1.25 95.12-.17a726.93 726.93 0 0 1-46.98 57.78zm207.61 47.55c-4.77 25.69-14.35 42.81-26.2 49.67-25.22 14.6-79.15-4.38-137.3-54.42q-10.31-8.89-20.12-18.34c22.55-24.66 45.08-53.33 67.07-85.17 38.68-3.43 75.23-9 108.37-16.7q2.44 9.88 4.33 19.36c8.01 40.44 9.15 77.01 3.85 105.6zm29-170.72c-4.37 1.45-8.86 2.85-13.44 4.2-10.13-32.06-23.8-66.15-40.52-101.37a801.93 801.93 0 0 0 38.96-99.89c8.18 2.37 16.13 4.87 23.79 7.51 35.67 12.28 125 45.53 118.85 96.92-6.01 49.97-89.03 79.84-127.62 92.63z"
/>
<path class="cls-1" d="M500 570.78c92 0 92.14-142.9 0-142.9s-92.16 142.9 0 142.9z" />
</symbol>
<symbol id="sass" viewBox="0 0 1000 1000">
<title>Sass</title>
<path
d="M589.5 633.4c-9.4 12.6-19.5 24.7-30.3 36.1-2.6 2.8-5.1 5.6-7.7 8.4-.4.5-1 1-.7 1.7s1.1.5 1.8.5c1.4 0 2.6-.5 3.8-1.1 10.7-5.7 19.8-13.2 26.7-23.2 4.7-6.8 7.3-14.4 7-23.2-.3.5-.5.6-.6.8zM276.1 628.5c-1.1-.6-2.3 1-3.5 1.7-22.9 13.3-44.8 27.8-64.8 45.2-9.3 8.1-17.5 17.2-23.4 28.1-5.6 10.3-9.6 21.2-8.9 33.1.6 11.2 5.8 18.1 18.6 18.5 9.3.3 17.9-2.2 26.2-6 13.9-6.2 25.6-15.5 35.4-27.1 15.8-18.8 24.5-40.2 24.6-64.9.1-8.4-1.1-16.7-3-24.9-.4-1.3-.4-3.2-1.2-3.7zM436.5 535.3c-2.7-.2-5.2.4-7.6 1.5-7.6 3.3-13.7 8.6-19 14.9-5.9 7.1-10.5 15.1-14.9 23.1-12 21.8-18.5 45.1-18.8 72.6 0 3.9.4 10.3 1.6 16.5.8 4.3 1.9 8.6 4.5 12.3 2.1 2.8 4.4 3.1 7.2.8 1.2-1 2.3-2.2 3.3-3.5 3.7-4.9 6.4-10.5 8.9-16 5.9-12.7 10.7-25.8 15.8-38.8 8-20.3 15.4-40.7 20.9-61.8 1.4-5.5 2.9-11.1 2.7-16.9-.1-3-1.6-4.5-4.6-4.7zM694.3 598.4c-13.8 12.5-23.1 27.7-28.6 45.4-.7 2.4-1.3 4.8-1.1 7.3.2 2.1.9 2.5 2.9 1.8.7-.3 1.4-.5 2-.8 18.6-7.8 28.6-22.1 28.7-41.8.3-3.5-.7-7.4-1.7-11.2-.4-2.1-.5-2.1-2.2-.7z"
/>
<path
d="M900 0H100C44.8 0 0 44.8 0 100v800c0 55.2 44.8 100 100 100h800c55.2 0 100-44.8 100-100V100c0-55.2-44.8-100-100-100zm-14.2 667.5c-6 6.4-13.1 11.3-21.3 14.5-2.1.8-4.4 1.2-6.7 1.1-1.4-.1-2.2-.7-2.7-2s-.3-2.3.6-3.3c1.2-1.3 2.8-2.2 4.3-3.2 6.3-4 11.9-8.8 16.2-15 8-11.6 8.8-24 4.1-37-5.6-15.5-16.3-26.7-30.2-34.9-12.1-7.1-25.3-11.1-39-13.5-10.1-1.8-20.2-2.6-30.4-2.6-18.5-.1-36.5 2.6-53.8 9.4-1.7.7-2 1.3-1.4 3 3.2 8.4 5.4 17.1 5.9 26.2.8 13.2-4 24.4-12.4 34.2-11.7 13.7-26.2 23.5-43.2 29.5-5.3 1.9-10.5 4-16.2 4.9-11 1.7-20.9-6.1-21.7-17.2-.9-12 2.6-22.9 8-33.4 7.9-15.4 18.8-28.4 31.6-39.9 1.9-1.7 3.8-3.4 5.7-5 1-.8 1.2-1.5.6-2.6-3.6-7.1-7.3-14.1-10.2-21.5-4.7-11.7-7.4-23.9-10.1-36.1-.3-1.6-.6-3.1-.9-4.7-.8.3-.9 1.1-1.2 1.8-13 25.9-27.3 51.1-43.9 75-2.3 3.3-2.7 5.8-1.1 9.5 4.4 10.1 7.2 20.8 7.4 31.9.2 21-8.7 37.3-25.8 49.1-14.9 10.3-31.3 16.7-49.4 18.6-6 .7-12.1.9-18.1-.5-5.7-1.3-9.9-5.4-10.5-10.7-.4-3.9.7-7.6 2.8-10.8 4.7-7.5 10.5-14.1 16.1-20.9 10.5-12.8 21.7-25.1 31.7-38.4 2.6-3.5 5.1-7.1 7.8-10.6.7-.9.6-1.6.1-2.5-3.2-6.5-6.3-13.1-9.5-19.6-6.1-12.3-9.3-25.5-12.3-38.7-.7-3-1.2-6.1-2-9.7-1.7 4.3-3.3 8-4.8 11.7-12.3 30-25.4 59.7-40.4 88.5-8 15.3-16.1 30.5-24.6 45.5-4.9 8.7-10.9 16.4-18.6 22.8-3.3 2.7-6.9 4.9-11.1 5.5-8.1 1.2-15.3-2.6-19.3-10.2-2.8-5.3-4.1-11.1-4.9-17-1.3-11-.7-21.9.7-32.9.1-.5.1-1.1.1-1.6 0-.2 0-.4-.1-.8-.9.9-1.1 2-1.5 2.9-6.8 16.4-13.9 32.6-22.4 48.2-2.9 5.3-6.1 10.4-10.5 14.8-6.5 6.6-14.5 8.4-23.5 7.6-9.4-.8-15.6-6.2-20.6-13.5-7.1-10.5-11.4-22.2-14.4-34.5-2.5-10.1-4-20.3-3.5-30.7.9-18.7 3.5-37.2 9.7-55.1.2-.6.4-1.3.6-1.9-.8-.5-1.3.1-1.8.4-14 7.5-27.7 15.7-41.5 23.7-1.2.7-1.4 1.2-.8 2.6 4.7 9.3 7.1 19.3 8.4 29.6 1 7.4 1.4 14.9 1.2 22.3-1.2 33.5-11.9 63.4-35 88.2-17.5 18.8-38.5 31.9-63.4 38.3-18.7 4.8-37.4 4.8-56.1.2-7.1-1.8-12.4-6-16.9-11.4-8-9.7-12.3-21-13.3-33.4-1.8-22.8 5-43.1 19.1-61 11.6-14.7 26-26.4 41-37.2 20.1-14.5 41.5-26.8 63.6-38 2.3-1.1 4.4-2.4 6.8-3.7-2.2-2.3-4.6-4-6.9-5.9-13-10.2-26.8-19.4-40.4-28.8-18.1-12.6-36.2-25.3-52.9-39.8-16-13.8-30.7-28.9-41.8-47.1-6.9-11.3-12-23.3-14.4-36.4-.2-1 .1-2-.6-2.9v-11.2c.4-.3.3-.7.4-1.1.3-4.5 1.2-9 2.3-13.4 4.3-17.3 12.1-33.1 21.8-47.9 14.5-22.3 32.6-41.5 52.6-58.8 25.2-21.9 52.9-40.2 82.2-56.2 20.9-11.5 42.3-21.7 64.3-30.8 22.2-9.1 44.6-17.5 68-22.9 11.2-2.6 22.4-4.6 33.8-6.1 8.9-1.1 17.8-1.8 26.7-2.2v-.3h20.8v.3c8.1.4 16.2 1 24.3 2.1 25.9 3.7 50.5 10.8 72 26.4 15.4 11.2 26.5 25.5 31.4 44.2 3 11.4 3.8 23 2.8 34.7-2.5 29.3-14.4 54.9-31.7 78.2-22 29.6-49.9 52-83.8 66.8-20.3 8.8-41.4 14.9-63.2 18.9-12.5 2.3-25.1 3.8-37.9 4.3-17.3.7-34.5-.1-51.3-4.6-15.1-4.1-28.4-11.7-39.4-22.9-5.1-5.2-9.2-11-11.2-18.2-.5-1.8-1.1-3.6-.6-5.5.8-3.5 3.8-4.5 6.6-2.4 2.8 2.2 4.9 5.1 7.5 7.5 8.1 7.2 17.7 11.7 28 14.8 12.4 3.8 25.2 5.1 38.1 4.6 17.1-.7 33.9-3.7 50.4-8 26.1-6.8 50.6-17.4 73.1-32.3 21.3-14.1 40-31.1 54.3-52.4 7.6-11.4 13.6-23.5 16.7-36.9 2.8-12.3 2.9-24.4-2.1-36.3-3.4-8.2-9.5-14-16.8-18.7-9.9-6.3-20.9-9.9-32.3-12.4-14.3-3-28.9-4-43.5-3.5-18.5.6-36.8 3.2-54.9 7.3-27.5 6.2-53.9 15.6-79.5 27.5-26.7 12.4-52.4 26.6-76.9 42.8-20 13.2-38.9 27.8-55.5 45.2-11 11.6-20.7 24.2-27.7 38.7-5.5 11.3-8.8 23.2-9.7 35.8-1.4 18.7 4.3 35.2 14.9 50.3 7.5 10.6 16.6 19.8 26.3 28.4 15.9 14.1 33.1 26.5 49.7 39.6 11.2 8.9 22.2 18.1 32.1 28.5 2.6 2.7 2.6 2.7 5.9.9 25-13.6 49.9-27.3 74.9-40.9 1.1-.6 1.8-1.4 2.6-2.4 13-17.3 28.8-31.4 48.4-40.9 6.3-3.1 13-5.3 20.1-5.5 14.2-.4 23.2 6.9 26.1 20.8 2 9.7 1.5 19.5-.2 29.2-.1.4-.1.8-.2 1.4 1.4-1 2.6-1.9 3.8-2.8 2.1-1.5 4.4-2.2 6.9-2.2 4 0 7.6 1.2 11 3.2 4.9 3 6.4 7 4.8 13.1-3.5 13.6-7.2 27.1-10.7 40.7-3.3 12.7-6.4 25.4-8.8 38.3-1.3 7-1.7 14-.7 21.1.1.6 0 1.5.8 1.7s1.3-.6 1.7-1.2c3-3.8 4.9-8.2 7.2-12.5 9.1-17.4 17.1-35.4 25.1-53.3 11.4-25.5 22.6-51 34-76.5 5.7-12.8 11-25.7 13.7-39.5.9-4.5 3.4-7 7.6-8.2 11.3-3.1 22.7-4.3 34.4-2 2.4.5 4.7 1.6 6.5 3.3 1.8 1.8 2.5 3.7 1.6 6.3-2.9 8.4-5.8 16.7-7.8 25.4-2.3 9.9-1.9 19.8-1 29.8 1.2 12.3 5.9 23.1 11.5 33.8.2.5.3 1.2.9 1.2.7.1.8-.8 1.1-1.2 12.6-20.7 24.6-41.8 35.6-63.4 4.1-8.1 8.2-16.2 11.1-24.8 2-6.3 2.9-12.8 5-19.1.8-2.5 1.7-5.1 2.4-7.6.5-1.8 1.7-3 3.3-3.8 4.4-2.4 9.3-3.2 14.2-3.8 6.6-.8 13.3-1.4 19.9-.5 3.7.5 7.3 1.4 10.2 4.1 2 1.8 2.5 3.9 1.6 6.5-3 8.9-6.2 17.8-8.1 27.1-1.9 9.1-1.8 18.2-.5 27.4 1 6.8 1.8 13.6 4.6 20 3.7 8.5 8.1 16.7 12.2 24.9.6 1.3 1.4.9 2.2.4 10.9-5.1 22.1-9.1 33.9-11.8 9.6-2.2 19.4-3.5 29.2-4 16.7-.9 33.1.6 49.2 5.3 20.4 6 38 16.4 51.6 32.9 10.2 12.4 16.6 26.6 17.8 42.8 1.2 15.5-2.9 29.4-13.8 41z"
/>
</symbol>
<symbol id="swift" viewBox="0 0 1000 1000">
<title>Swift</title>
<path d="M499 487.2h.3c-.1-.1-.2-.1-.2-.2-.1 0-.1.1-.1.2z" />
<path
d="M899.6 0H100.4C45 0 0 45 0 100.4v799.2C0 955 45 1000 100.4 1000h799.2c55.4 0 100.4-45 100.4-100.4V100.4C1000 45 955 0 899.6 0zm20.8 854c-.7 5.2-1.6 10.4-3.8 15.3-.9 1.9-1.7 4.3-4.1 4.4-2.4.1-3-2.3-3.9-4-9.4-18-21.2-34-37.3-46.6-15.5-12-33-19-52.4-21.6-19.3-2.5-38.2-.5-57 3.7-16.1 3.6-31.6 8.9-46.6 15.6-6.7 2.9-13 6.8-19.5 10.1-22.4 11.1-45.7 19.5-70 25.4-16.6 4-33.2 7-50.2 8.8-20.4 2.1-40.8 2.7-61.2 1.9-26.8-1.1-53.3-4.6-79.5-10.3-40.8-8.8-79.8-22.7-117.4-40.6-39.5-18.8-76.2-42-110.4-69.2-14-11-27.3-22.8-40.3-35-6.3-5.9-12.6-12-18.5-18.3-26.7-28-50.5-58-71.2-90.7-.3-.5-.5-1-.8-1.5l.2-.2c10 8 20.3 15.6 31 22.6 16.3 10.5 33.1 19.8 50.4 28.6 9.2 4.7 18.7 9 28.1 13.3 7.6 3.4 15.4 6.4 23.2 9.4 9.5 3.7 19.3 7.1 29 10.2 10.7 3.4 21.7 6.4 32.6 9.1 9 2.2 18.1 4.1 27.1 5.9 5.6 1.1 11.2 2 17 2.6 4.9.5 9.7 1.7 14.6 2.1 3.5.3 7.1.6 10.6 1 4.9.5 9.9 1 14.9 1.1 9.6.2 19.4.7 29 .4 12.4-.3 24.9-1 37.2-2.4 13.8-1.6 27.4-3.9 41-7 32.8-7.6 63.8-19.8 92.6-37.1.7-.4 1.3-.8 2-1.2.2-.1.3-.3.6-.5-4-3.1-8-6.2-12-9.4-7.8-6.2-15.7-12.6-23.5-18.9-1.6-1.3-3.1-2.6-4.7-3.9-11.4-9.2-22.5-19-33.5-28.7-39.8-35.1-77.6-72.4-114-111-7.8-8.3-15.6-16.6-23.3-25-7.6-8.3-15.3-16.9-22.8-25.3-6-6.7-11.9-13.6-17.8-20.4-28.3-33-56-66.5-82.9-100.7-6.3-8-12.3-16.2-18.9-24-5.5-6.6-11.6-12.8-16.9-19.6-10.8-14-20.3-28.9-30-43.6-.1-.2-.1-.4-.2-.5 2 .9 3.4 2.6 4.9 4.1 34.4 31 70.2 60.5 106.4 89.4 38.7 30.7 78.1 60.5 118 89.6 9 6.6 18.2 13.2 27.4 19.6 5.3 3.8 10.6 7.6 16.1 11.3 12.8 8.6 25.6 17.2 38.5 25.8 9.5 6.3 19.2 12.3 29 18.2.5.3.9.9 1.6.6-3.5-3.9-7-7.7-10.6-11.5-15.1-16.2-29.7-32.6-44.3-49.4-27-31.1-53.2-63-78.7-95.4-35.7-45.6-70.5-91.9-103.2-139.8-1-1.5-1.9-3-2.8-4.5l.3-.3c2.9 2.9 5.9 5.7 8.8 8.6 33.8 33.7 68.6 66.6 104.3 98.4 36.5 32.5 73.9 64.1 112.2 94.5 22.3 17.7 44.8 34.8 67.6 51.9 12.4 9.4 25.2 18.6 37.9 27.6 9.6 6.8 19.4 13.7 29.2 20.3 17 11.3 33.9 22.6 51.5 33 1.1.7 1.4.6 1.9-.6 7.3-19 12.8-38.5 16.5-58.4 1.8-9.7 3.2-19.5 4.1-29.3 1.7-18.2 2.1-36.3 1.1-54.5-3.7-68.7-24.2-132.5-56-193.1-12.1-23.2-26-45.3-41.4-66.5-.4-.5-.7-1-1.2-1.7.9-.2 1.4.4 1.9.7 36.6 22.5 70.5 48.5 101.5 78.2 50 48 90.8 102.7 120.8 165.4 5.5 11.4 10.6 23.1 15.1 35 2.9 7.9 5.7 15.9 8.4 23.8 6 17.8 10.6 35.9 14.2 54.4 3.1 16.3 5.2 32.7 6.3 49.3 1.1 16.8 1.1 33.4-.1 50.2-1.1 15.4-3.2 30.5-6.5 45.6-.6 2.5-.8 5.2-2.1 7.5 0 2.9-1 5.5-1.8 8.2-1.1 4.1-1.8 8.3-3.5 12.2-.3.8.1 1.1.5 1.6 24.4 30.2 43.3 63.6 55.8 100.3 6.6 19.5 11.2 39.6 13.6 60 1.8 15.3 2.3 30.4.3 45.4z"
/>
</symbol>
<symbol id="bash" viewBox="0 0 1000 1000">
<title>Terminal Navigation and Bash Scripting</title>
<path
d="M899.6 0H100.4C45 0 0 45 0 100.4v799.2C0 955 45 1000 100.4 1000h799.2c55.4 0 100.4-45 100.4-100.4V100.4C1000 45 955 0 899.6 0zM126 335.3L75.7 285c33.4-33.4 67.3-67.4 101.2-101.2-34-34-67.9-67.8-101.7-101.6 17.3-17.3 34.1-34 50.6-50.5 50.6 50.6 101.4 101.4 152 151.9C227.3 234 176.5 284.8 126 335.3zm356.4 1H279.1v-50.1c.1-.1.2-.2.2-.3.1-.1.2-.2.3-.2.7-.1 1.4-.2 2.1-.2h200.5c.9 2.8 1 46.8.2 50.8z"
/>
</symbol>
<symbol id="vue" viewBox="0 0 1000 1000">
<title>Vue.js</title>
<defs>
<style>
#INNER_V {
fill: #333;
}
</style>
</defs>
<path
d="M900 0H100A100 100 0 0 0 0 100v800a100 100 0 0 0 100 100h800a100 100 0 0 0 100-100V100A100 100 0 0 0 900 0zM498.16 846.27L98.31 153.73h159.94l239.91 415.52 239.91-415.52H898z"
id="BG"
/>
<path
id="INNER_V"
data-name="INNER V"
d="M738.07 153.73H590.5l-92.34 159.93-92.34-159.93H258.25l239.9 415.52 239.92-415.52z"
/>
</symbol>
</svg>
</body>
</html>