the-plain-portfolio 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/_sass/syntax.scss ADDED
@@ -0,0 +1,254 @@
1
+ .highlight {
2
+ margin: 40px 0;
3
+ .c {
4
+ color: #998;
5
+ font-style: italic;
6
+ }
7
+ // Comment
8
+ .err {
9
+ color: #a61717;
10
+ background-color: #e3d2d2;
11
+ }
12
+ // Error
13
+ .k {
14
+ font-weight: bold;
15
+ }
16
+ // Keyword
17
+ .o {
18
+ font-weight: bold;
19
+ }
20
+ // Operator
21
+ .cm {
22
+ color: #998;
23
+ font-style: italic;
24
+ }
25
+ // Comment.Multiline
26
+ .cp {
27
+ color: #999;
28
+ font-weight: bold;
29
+ }
30
+ // Comment.Preproc
31
+ .c1 {
32
+ color: #998;
33
+ font-style: italic;
34
+ }
35
+ // Comment.Single
36
+ .cs {
37
+ color: #999;
38
+ font-weight: bold;
39
+ font-style: italic;
40
+ }
41
+ // Comment.Special
42
+ .gd {
43
+ color: #000;
44
+ background-color: #fdd;
45
+ }
46
+ // Generic.Deleted
47
+ .gd .x {
48
+ color: #000;
49
+ background-color: #faa;
50
+ }
51
+ // Generic.Deleted.Specific
52
+ .ge {
53
+ font-style: italic;
54
+ }
55
+ // Generic.Emph
56
+ .gr {
57
+ color: #a00;
58
+ }
59
+ // Generic.Error
60
+ .gh {
61
+ color: #999;
62
+ }
63
+ // Generic.Heading
64
+ .gi {
65
+ color: #000;
66
+ background-color: #dfd;
67
+ }
68
+ // Generic.Inserted
69
+ .gi .x {
70
+ color: #000;
71
+ background-color: #afa;
72
+ }
73
+ // Generic.Inserted.Specific
74
+ .go {
75
+ color: #888;
76
+ }
77
+ // Generic.Output
78
+ .gp {
79
+ color: #555;
80
+ }
81
+ // Generic.Prompt
82
+ .gs {
83
+ font-weight: bold;
84
+ }
85
+ // Generic.Strong
86
+ .gu {
87
+ color: #aaa;
88
+ }
89
+ // Generic.Subheading
90
+ .gt {
91
+ color: #a00;
92
+ }
93
+ // Generic.Traceback
94
+ .kc {
95
+ font-weight: bold;
96
+ }
97
+ // Keyword.Constant
98
+ .kd {
99
+ font-weight: bold;
100
+ }
101
+ // Keyword.Declaration
102
+ .kp {
103
+ font-weight: bold;
104
+ }
105
+ // Keyword.Pseudo
106
+ .kr {
107
+ font-weight: bold;
108
+ }
109
+ // Keyword.Reserved
110
+ .kt {
111
+ color: #458;
112
+ font-weight: bold;
113
+ }
114
+ // Keyword.Type
115
+ .m {
116
+ color: #099;
117
+ }
118
+ // Literal.Number
119
+ .s {
120
+ color: #d14;
121
+ }
122
+ // Literal.String
123
+ .na {
124
+ color: #008080;
125
+ }
126
+ // Name.Attribute
127
+ .nb {
128
+ color: #0086b3;
129
+ }
130
+ // Name.Builtin
131
+ .nc {
132
+ color: #458;
133
+ font-weight: bold;
134
+ }
135
+ // Name.Class
136
+ .no {
137
+ color: #008080;
138
+ }
139
+ // Name.Constant
140
+ .ni {
141
+ color: #800080;
142
+ }
143
+ // Name.Entity
144
+ .ne {
145
+ color: #900;
146
+ font-weight: bold;
147
+ }
148
+ // Name.Exception
149
+ .nf {
150
+ color: #900;
151
+ font-weight: bold;
152
+ }
153
+ // Name.Function
154
+ .nn {
155
+ color: #555;
156
+ }
157
+ // Name.Namespace
158
+ .nt {
159
+ color: #000080;
160
+ }
161
+ // Name.Tag
162
+ .nv {
163
+ color: #008080;
164
+ }
165
+ // Name.Variable
166
+ .ow {
167
+ font-weight: bold;
168
+ }
169
+ // Operator.Word
170
+ .w {
171
+ color: #bbb;
172
+ }
173
+ // Text.Whitespace
174
+ .mf {
175
+ color: #099;
176
+ }
177
+ // Literal.Number.Float
178
+ .mh {
179
+ color: #099;
180
+ }
181
+ // Literal.Number.Hex
182
+ .mi {
183
+ color: #099;
184
+ }
185
+ // Literal.Number.Integer
186
+ .mo {
187
+ color: #099;
188
+ }
189
+ // Literal.Number.Oct
190
+ .sb {
191
+ color: #d14;
192
+ }
193
+ // Literal.String.Backtick
194
+ .sc {
195
+ color: #d14;
196
+ }
197
+ // Literal.String.Char
198
+ .sd {
199
+ color: #d14;
200
+ }
201
+ // Literal.String.Doc
202
+ .s2 {
203
+ color: #d14;
204
+ }
205
+ // Literal.String.Double
206
+ .se {
207
+ color: #d14;
208
+ }
209
+ // Literal.String.Escape
210
+ .sh {
211
+ color: #d14;
212
+ }
213
+ // Literal.String.Heredoc
214
+ .si {
215
+ color: #d14;
216
+ }
217
+ // Literal.String.Interpol
218
+ .sx {
219
+ color: #d14;
220
+ }
221
+ // Literal.String.Other
222
+ .sr {
223
+ color: #009926;
224
+ }
225
+ // Literal.String.Regex
226
+ .s1 {
227
+ color: #d14;
228
+ }
229
+ // Literal.String.Single
230
+ .ss {
231
+ color: #990073;
232
+ }
233
+ // Literal.String.Symbol
234
+ .bp {
235
+ color: #999;
236
+ }
237
+ // Name.Builtin.Pseudo
238
+ .vc {
239
+ color: #008080;
240
+ }
241
+ // Name.Variable.Class
242
+ .vg {
243
+ color: #008080;
244
+ }
245
+ // Name.Variable.Global
246
+ .vi {
247
+ color: #008080;
248
+ }
249
+ // Name.Variable.Instance
250
+ .il {
251
+ color: #099;
252
+ }
253
+ // Literal.Number.Integer.Long
254
+ }
@@ -0,0 +1 @@
1
+ <svg id="bf987f75-b15a-4b7f-a137-75b4492c4a21" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1167.52" height="756.03" viewBox="0 0 1167.52 756.03"><defs><linearGradient id="b752362c-f89d-48d5-9dd1-266417fc8d3c" x1="588.17" y1="804.7" x2="588.17" y2="185.7" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="gray" stop-opacity="0.25"/><stop offset="0.54" stop-color="gray" stop-opacity="0.12"/><stop offset="1" stop-color="gray" stop-opacity="0.1"/></linearGradient><linearGradient id="a11e32f9-0bc0-4cef-b66b-30dd4b707f0c" x1="567.7" y1="1179.83" x2="567.7" y2="1173.83" gradientTransform="translate(74.47 -1004.13)" xlink:href="#b752362c-f89d-48d5-9dd1-266417fc8d3c"/><linearGradient id="ada07a9a-e50a-4215-9506-0eaaef22308f" x1="588.52" y1="693.03" x2="588.52" y2="483.16" xlink:href="#b752362c-f89d-48d5-9dd1-266417fc8d3c"/></defs><title>about me</title><ellipse cx="560.76" cy="725.03" rx="541" ry="31" fill="#448aff" opacity="0.1"/><g opacity="0.2"><path d="M1023.5,798.41a17.73,17.73,0,0,1-1.73,2.67q-8.64-6.09-17.57-11.93c.12-.25.25-.51.39-.76a16.84,16.84,0,0,1,6-6.52c3.29-2,7-2.48,10-.86s4.76,4.94,4.94,8.78A16.84,16.84,0,0,1,1023.5,798.41Z" transform="translate(-16.24 -71.99)" fill="#3f3d56"/><ellipse cx="1022.06" cy="778.26" rx="14.01" ry="10.7" transform="translate(-160.29 1245.24) rotate(-62.09)" fill="#3f3d56"/><ellipse cx="1030.07" cy="763.12" rx="14.01" ry="10.7" transform="translate(-142.65 1244.27) rotate(-62.09)" fill="#3f3d56"/><ellipse cx="1038.09" cy="747.99" rx="14.01" ry="10.7" transform="translate(-125.01 1243.3) rotate(-62.09)" fill="#3f3d56"/><ellipse cx="1046.11" cy="732.85" rx="14.01" ry="10.7" transform="translate(-107.37 1242.33) rotate(-62.09)" fill="#3f3d56"/><path d="M1065.55,610.51a51.89,51.89,0,0,1-.78-7l27,9.08-27-14A51.4,51.4,0,0,1,1083,562.14L1109.11,600l-20.31-42.07a51.28,51.28,0,1,1,48,90.35,51.19,51.19,0,0,1,.8,11l-41.15-.32,40.52,6.67a51.33,51.33,0,0,1-29.84,38.68,51.28,51.28,0,1,1-71.23-37.72,51.29,51.29,0,0,1,29.67-56Z" transform="translate(-16.24 -71.99)" fill="#448aff"/><path d="M1131.64,681.39a51,51,0,0,1-24.53,22.88,51.28,51.28,0,1,1-71.23-37.72C1033.89,655.62,1134.34,676.31,1131.64,681.39Z" transform="translate(-16.24 -71.99)" opacity="0.1"/></g><g opacity="0.2"><path d="M991.37,495.94a31.64,31.64,0,0,1-2.25,4.64q-15.11-8.06-30.61-15.66c.14-.43.3-.88.47-1.31a27.2,27.2,0,0,1,8.3-11.66c4.87-3.9,10.74-5.37,16-3.38s8.62,7,9.67,13.11A27.21,27.21,0,0,1,991.37,495.94Z" transform="translate(-16.24 -71.99)" fill="#3f3d56"/><ellipse cx="985.03" cy="463.85" rx="22.69" ry="17.33" transform="translate(184.88 1147.47) rotate(-69.16)" fill="#3f3d56"/><ellipse cx="994.89" cy="437.94" rx="22.69" ry="17.33" transform="translate(215.46 1139.99) rotate(-69.16)" fill="#3f3d56"/><ellipse cx="1004.76" cy="412.02" rx="22.69" ry="17.33" transform="translate(246.03 1132.51) rotate(-69.16)" fill="#3f3d56"/><ellipse cx="1014.62" cy="386.11" rx="22.69" ry="17.33" transform="translate(276.61 1125.04) rotate(-69.16)" fill="#3f3d56"/><path d="M1021.49,185.69a83.36,83.36,0,0,1-2.65-11.18l45.22,9.21-46.16-17.18a83.11,83.11,0,0,1,21.91-62L1089.37,160l-41-63.53a83,83,0,1,1,95.09,135.6,83.42,83.42,0,0,1,3.46,17.51l-66.17,7.68,66.43,2.65A83.07,83.07,0,0,1,1106.93,328a83,83,0,1,1-122-46.42,83,83,0,0,1,36.52-95.93Z" transform="translate(-16.24 -71.99)" fill="#448aff"/><path d="M1141.79,286.39A82.59,82.59,0,0,1,1106.93,328a83,83,0,1,1-122-46.42C979.6,264.46,1145.11,277.69,1141.79,286.39Z" transform="translate(-16.24 -71.99)" opacity="0.1"/></g><g opacity="0.2"><path d="M194.62,582.15a37.29,37.29,0,0,0,2,5.8q19-7.28,38.43-14c-.11-.53-.22-1.08-.36-1.62a32.41,32.41,0,0,0-8.07-15c-5.18-5.32-11.89-7.92-18.34-6.34s-11.2,7-13.35,14A32.49,32.49,0,0,0,194.62,582.15Z" transform="translate(-16.24 -71.99)" fill="#3f3d56"/><ellipse cx="206.83" cy="545.22" rx="20.61" ry="26.98" transform="translate(-139.61 -7.4) rotate(-13.72)" fill="#3f3d56"/><ellipse cx="199.01" cy="513.19" rx="20.61" ry="26.98" transform="translate(-132.24 -10.16) rotate(-13.72)" fill="#3f3d56"/><ellipse cx="191.2" cy="481.16" rx="20.61" ry="26.98" transform="translate(-124.87 -12.93) rotate(-13.72)" fill="#3f3d56"/><ellipse cx="183.38" cy="449.12" rx="20.61" ry="26.98" transform="translate(-117.5 -15.7) rotate(-13.72)" fill="#3f3d56"/><path d="M204.82,211.62a97.86,97.86,0,0,0,4.78-12.8L154.89,203l57-13.46a98.81,98.81,0,0,0-16.71-76.43L128.5,171.35l57.77-68.92a98.72,98.72,0,1,0-132.2,146,99.32,99.32,0,0,0-6.67,20.16l76.95,18.81-78.78-6.67A98.81,98.81,0,0,0,83,367a98.71,98.71,0,1,0,150.76-36.8,98.71,98.71,0,0,0-29-118.58Z" transform="translate(-16.24 -71.99)" fill="#448aff"/><path d="M48,312.71A98.29,98.29,0,0,0,83,367a98.71,98.71,0,1,0,150.76-36.8C242.64,310.75,45.39,302,48,312.71Z" transform="translate(-16.24 -71.99)" opacity="0.1"/></g><path d="M1072.54,185.7H103.8a8.64,8.64,0,0,0-8.63,8.66V787.24a17.43,17.43,0,0,0,17.4,17.46h951.2a17.43,17.43,0,0,0,17.4-17.46V194.36A8.65,8.65,0,0,0,1072.54,185.7Z" transform="translate(-16.24 -71.99)" fill="url(#b752362c-f89d-48d5-9dd1-266417fc8d3c)"/><path d="M1077.25,222.51V783.75A17.26,17.26,0,0,1,1060,801H116.51a17.26,17.26,0,0,1-17.26-17.26V222.51Z" transform="translate(-16.24 -71.99)" fill="#fff"/><path d="M1077.25,197.57v24.94h-978V197.57a8.56,8.56,0,0,1,8.56-8.56h960.88A8.56,8.56,0,0,1,1077.25,197.57Z" transform="translate(-16.24 -71.99)" fill="#ededf4"/><circle cx="98.51" cy="133.52" r="4" fill="#fa5959" opacity="0.8"/><circle cx="109.51" cy="133.52" r="4" fill="#fed253" opacity="0.8"/><circle cx="120.51" cy="133.52" r="4" fill="#8ccf4d" opacity="0.8"/><rect x="640.17" y="169.7" width="4" height="6" transform="translate(798.63 -541.45) rotate(90)" fill="url(#a11e32f9-0bc0-4cef-b66b-30dd4b707f0c)"/><rect x="307.93" y="199.71" width="94" height="10" fill="#ededf4"/><rect x="307.93" y="228.71" width="528" height="10" fill="#ededf4"/><rect x="307.93" y="257.71" width="528" height="10" fill="#ededf4"/><rect x="307.93" y="286.71" width="528" height="10" fill="#ededf4"/><rect x="307.93" y="315.71" width="528" height="10" fill="#ededf4"/><rect x="408.76" y="371.03" width="326" height="252" fill="#ededf4"/><path d="M645.2,521.09c-.42,0-.84.06-1.27.07a5.58,5.58,0,0,0,.14-1.78,17,17,0,0,0-2-7.21,31.3,31.3,0,0,0-2.48-3.76c-2.72-3.76-5.24-7.6-8.23-11.15a17.93,17.93,0,0,1-3.17-4.67,22.83,22.83,0,0,0-1.08-2.71,5.83,5.83,0,0,0-5.45-2.65,8.65,8.65,0,0,0-5.52,2.92c-.84.9-1.53,2.29-.83,3.31s2.22,1.15,2.31,2.27c0,.6,0,1.58-.61,1.77a10.87,10.87,0,0,0-3.06,1.34,3.61,3.61,0,0,0-1.61,2.8c1.73.26,3.18-1.19,4.75-2a8.77,8.77,0,0,1,6.28-.23,5.88,5.88,0,0,1,2.16,1.09,7.61,7.61,0,0,1,1.4,1.88,20.07,20.07,0,0,1,3.46,9.38l.88,5.62a36.49,36.49,0,0,0-3.88.52,24.37,24.37,0,0,1-10.33-.7c-3.5-1-7-2.82-10.61-2-1.69.37-3.23,1.31-4.94,1.58a13.53,13.53,0,0,1-4-.21l-2.75-.44c-.09-.23-.16-.47-.23-.71a20.74,20.74,0,0,1-.78-6.17,11,11,0,0,0,9.4-15.59,9.33,9.33,0,0,0,3.55-3.53L606,490l.66-1a1.18,1.18,0,0,1-.19-1.87,3.77,3.77,0,0,0-1.89-.42c.21-.39-.13-.87-.54-1a4.7,4.7,0,0,0-1.3-.08,6.37,6.37,0,0,1-1.86-.43c-4.27-1.47-8.9-2.76-13.25-1.53a16.57,16.57,0,0,0-5.29,2.78,6.91,6.91,0,0,0-2.82,9.07,23.48,23.48,0,0,1,1.41,5.09,16.16,16.16,0,0,1-.55,4.83,19.69,19.69,0,0,0,2.91.65,16.5,16.5,0,0,1-2.89,5.92,23.52,23.52,0,0,1-2,2.21h-.12a48.59,48.59,0,0,1-6,.74c-2.12,0-4.2-.8-6.31-.65a17.11,17.11,0,0,0-3.67.83,56.23,56.23,0,0,1-16.91,2.26l-.69.07.64-4.08a20.07,20.07,0,0,1,3.46-9.38,7.61,7.61,0,0,1,1.4-1.88,5.92,5.92,0,0,1,2.17-1.09,8.74,8.74,0,0,1,6.27.23c1.57.77,3,2.22,4.76,2a3.64,3.64,0,0,0-1.62-2.8,10.87,10.87,0,0,0-3.06-1.34c-.58-.19-.66-1.17-.61-1.77.09-1.12,1.68-1.36,2.31-2.28s0-2.4-.83-3.31a8.66,8.66,0,0,0-5.52-2.91,5.81,5.81,0,0,0-5.44,2.65,21.29,21.29,0,0,0-1.09,2.71,17.93,17.93,0,0,1-3.17,4.67c-3,3.55-5.51,7.39-8.23,11.15a33.31,33.31,0,0,0-2.48,3.75,17.24,17.24,0,0,0-2,7.22,5.64,5.64,0,0,0,.14,1.79,1.15,1.15,0,0,0-.11.45,2.08,2.08,0,0,0,.78,1.4c1.53,1.54,3.14,3.13,5.2,3.79a31.94,31.94,0,0,0,3.89.67c3.16.57,6.07,2.4,9.28,2.39,2.21,0,4.39-.88,6.57-.57,3,.41,5.16,2.85,7,5.22a18,18,0,0,1,3.45,6.31c.71,2.79.27,5.93,1.76,8.39a5.71,5.71,0,0,1,.86,1.66,5.56,5.56,0,0,1-.61,2.72c-1.26,3.87,1.5,8,1.21,12-.14,1.95-1,3.79-1.09,5.74-.15,2.51.87,5.32-.53,7.41.85-.44,1.71-.83,2.59-1.18-4.2,12.31-8,25-7.71,37.94.22,8.39,2,17.63-2.82,24.52a9.68,9.68,0,0,0-1.61,2.75c-.38,1.35,0,2.78.25,4.16.89,6-2.35,11.91-2.57,18a36.29,36.29,0,0,0,.36,5.61l1.18,10.14a7.36,7.36,0,0,0-3.22,1.6c-1.24,1-2.33,2.64-1.75,4.14.47,1.21,1.85,1.79,3.12,2.09a7.82,7.82,0,0,1,3.62,1.37,13.88,13.88,0,0,0,1.09,1.08,4,4,0,0,0,2.42.45c1.53-.06,3-.19,4.56-.4a1.81,1.81,0,0,0,.91-.29,2,2,0,0,0,.51-1.5,19.87,19.87,0,0,0-.19-4.56c-.06-.29-.14-.57-.22-.86a17.75,17.75,0,0,0,1.11-4c.31-2,.36-4.09.49-6.14.3-5.22,1-10.4,1.8-15.58l1-6.66c.31-2.19.63-4.38,1-6.57A206.62,206.62,0,0,1,584,611.59c.85-2.43,2.3-5.28,4.87-5.35l1.53,3c2,3.76,3.22,7.93,4.74,11.88,2,5.19,1.32,11.25,4,16.13.44.81,1,1.58,1.33,2.43a14,14,0,0,1,.82,4.07l1.77,18c.8,8.09,1.66,16.4,5.29,23.67a9.12,9.12,0,0,0,.8,1.34,23.25,23.25,0,0,0-.05,3.64,1.43,1.43,0,0,0,1.42,1.79c1.51.2,3,.33,4.55.39a4,4,0,0,0,2.42-.45,11.2,11.2,0,0,0,1.1-1.08,7.78,7.78,0,0,1,3.61-1.37c1.27-.29,2.65-.87,3.12-2.09.59-1.5-.51-3.13-1.75-4.14a7,7,0,0,0-3.56-1.65,5.92,5.92,0,0,1-1.62-.13,8,8,0,0,0,.12-2,10,10,0,0,1-.1-2.38,14.13,14.13,0,0,1,.82-2.34c1.15-3.54-1.3-7.14-2.16-10.76-1.15-4.82.56-9.87.25-14.82-.48-7.77-5.9-15.06-4.46-22.71,1.15-6.12.17-12.41-.92-18.54l-4-22.81a25.28,25.28,0,0,0-1.45-5.41,12.75,12.75,0,0,0,2.18-.58c1-2.44.83-5.13.53-7.75s-1-5.18-1.35-7.78a51.29,51.29,0,0,1-.52-6.31,25.43,25.43,0,0,1,.44-6.22,29.92,29.92,0,0,1,1.87-5.23,92.87,92.87,0,0,1,7-14c4.11-.32,8.09-.67,12.19-1a16.93,16.93,0,0,0,2.92-.39,36.93,36.93,0,0,1,3.73-1.07,5,5,0,0,0,1.38-.27c.9-.41,1.45-1.56,2.44-1.6a4.24,4.24,0,0,0,1.12,0c.44-.14.66-.62,1-1,.62-.69,1.63-.83,2.44-1.28A3.54,3.54,0,0,0,645.2,521.09Z" transform="translate(-16.24 -71.99)" fill="url(#ada07a9a-e50a-4215-9506-0eaaef22308f)"/><circle cx="576.94" cy="427.16" r="11" fill="#a1616a"/><path d="M580.48,512.84a27.41,27.41,0,0,1-3.75,3.79,29.79,29.79,0,0,0,21.5,3.54c-.27-.75-1.25-.86-1.94-1.24a4.19,4.19,0,0,1-1.7-2.68,20.94,20.94,0,0,1-.64-8.11,5,5,0,0,0,0-2,4.29,4.29,0,0,0-2.07-2.28,20.41,20.41,0,0,0-5-2.25c-1.82-.54-2.86-.79-2.93,1.33A16.85,16.85,0,0,1,580.48,512.84Z" transform="translate(-16.24 -71.99)" fill="#a1616a"/><path d="M631.52,519.76l-1.12-7.1a26.39,26.39,0,0,0-.89-4.22,27.21,27.21,0,0,0-2.56-5.12,7.56,7.56,0,0,0-1.4-1.87,5.88,5.88,0,0,0-2.16-1.09,8.71,8.71,0,0,0-6.26.24c-1.57.76-3,2.2-4.75,1.95a3.58,3.58,0,0,1,1.62-2.79,10.57,10.57,0,0,1,3-1.34c.57-.18.66-1.16.61-1.76-.09-1.11-1.68-1.35-2.31-2.26s0-2.39.82-3.3a8.61,8.61,0,0,1,5.51-2.89,5.78,5.78,0,0,1,5.44,2.63,21.16,21.16,0,0,1,1.09,2.7,18,18,0,0,0,3.16,4.65c3,3.53,5.51,7.35,8.22,11.09a34.61,34.61,0,0,1,2.48,3.74,16.91,16.91,0,0,1,2,7.18,4.47,4.47,0,0,1-.33,2.27,3.52,3.52,0,0,1-3,1.72,10.63,10.63,0,0,1-3.59-.72L632.74,522a2.84,2.84,0,0,1-1.4-.77A1.1,1.1,0,0,1,631.52,519.76Z" transform="translate(-16.24 -71.99)" fill="#a1616a"/><path d="M544.37,521.33l1.11-7.1a27.55,27.55,0,0,1,.9-4.22,26.62,26.62,0,0,1,2.56-5.12,7.07,7.07,0,0,1,1.39-1.86,5.66,5.66,0,0,1,2.16-1.09,8.74,8.74,0,0,1,6.27.23c1.57.76,3,2.2,4.75,1.95a3.6,3.6,0,0,0-1.62-2.79,10.69,10.69,0,0,0-3-1.34c-.57-.18-.66-1.16-.61-1.76.09-1.11,1.67-1.35,2.31-2.26s0-2.39-.83-3.29a8.6,8.6,0,0,0-5.51-2.9,5.79,5.79,0,0,0-5.44,2.63,21.11,21.11,0,0,0-1.08,2.7,18.21,18.21,0,0,1-3.16,4.65c-3,3.53-5.51,7.35-8.23,11.09a34,34,0,0,0-2.47,3.74,17.07,17.07,0,0,0-2,7.18,4.53,4.53,0,0,0,.34,2.28,3.53,3.53,0,0,0,3.05,1.71,10.34,10.34,0,0,0,3.58-.72l4.37-1.43a2.77,2.77,0,0,0,1.39-.77A1.1,1.1,0,0,0,544.37,521.33Z" transform="translate(-16.24 -71.99)" fill="#a1616a"/><path d="M623.57,683.41c1.24,1,2.33,2.63,1.75,4.12-.48,1.21-1.85,1.78-3.12,2.08a7.88,7.88,0,0,0-3.61,1.36A11,11,0,0,1,617.5,692a3.93,3.93,0,0,1-2.42.45c-1.52-.06-3-.19-4.55-.39a1.81,1.81,0,0,1-.91-.29,1.93,1.93,0,0,1-.5-1.49,19.13,19.13,0,0,1,.18-4.54,6.5,6.5,0,0,1,2.19-3.87c1.16-.9,4.68-3.57,6-1.86.35.46.21,1.09.7,1.47s1.26.17,1.82.24A7,7,0,0,1,623.57,683.41Z" transform="translate(-16.24 -71.99)" fill="#3f3d56"/><path d="M556,683.93c-1.24,1-2.33,2.63-1.75,4.12.47,1.21,1.84,1.79,3.11,2.08a7.84,7.84,0,0,1,3.61,1.36,11.2,11.2,0,0,0,1.1,1.08,4,4,0,0,0,2.41.45c1.52-.06,3-.19,4.55-.4a1.78,1.78,0,0,0,.91-.29,1.93,1.93,0,0,0,.51-1.49,19.59,19.59,0,0,0-.19-4.53,6.45,6.45,0,0,0-2.19-3.88c-1.15-.9-4.67-3.57-6-1.86-.35.46-.21,1.1-.71,1.47s-1.25.17-1.82.24A7.06,7.06,0,0,0,556,683.93Z" transform="translate(-16.24 -71.99)" fill="#3f3d56"/><path d="M573,577.23c-4.51,13-8.89,26.45-8.55,40.24.22,8.35,2,17.55-2.81,24.4a9.54,9.54,0,0,0-1.61,2.74c-.38,1.34,0,2.76.24,4.14.9,6-2.33,11.86-2.56,17.92a36,36,0,0,0,.36,5.58l1.25,10.68c.42,3.66,5.14,5.16,8.78,5.67a13.61,13.61,0,0,0,3.09-7.19c.31-2,.36-4.07.48-6.1.31-5.2,1.06-10.36,1.8-15.51l1-6.63c.32-2.18.63-4.36,1-6.54A205.66,205.66,0,0,1,584.1,612c.85-2.43,2.3-5.26,4.86-5.33l1.53,2.94c2,3.73,3.21,7.89,4.73,11.82,2,5.17,1.31,11.19,4,16.06.44.8,1,1.57,1.32,2.41a13.9,13.9,0,0,1,.82,4l1.77,17.88c.8,8.05,1.65,16.32,5.28,23.55a5.47,5.47,0,0,0,1.67,2.2c1.48,1,3.55.49,5-.55a8.53,8.53,0,0,0,3.46-7.38,11.07,11.07,0,0,1-.1-2.37,15.76,15.76,0,0,1,.82-2.33c1.16-3.52-1.29-7.1-2.16-10.7-1.15-4.8.56-9.82.26-14.75-.48-7.74-5.89-15-4.46-22.61,1.15-6.09.17-12.35-.91-18.45l-4.05-22.7c-.64-3.58-1.6-7.62-4.79-9.37a11.9,11.9,0,0,0-5.83-1C589.05,575.32,581.15,576.47,573,577.23Z" transform="translate(-16.24 -71.99)" fill="#3f3d56"/><path d="M645.2,521.9a14.3,14.3,0,0,1-8.4-1.74,16.86,16.86,0,0,0-3.09-1.62c-2-.65-4.2-.08-6.3.23a24.6,24.6,0,0,1-10.31-.7c-3.5-1-7-2.81-10.6-2-1.69.37-3.22,1.3-4.93,1.57a13.12,13.12,0,0,1-4-.21l-11.4-1.78a31.18,31.18,0,0,0-7.82-.56,50.62,50.62,0,0,1-6,.75c-2.11,0-4.19-.8-6.3-.66a17.16,17.16,0,0,0-3.66.83,56.33,56.33,0,0,1-16.87,2.25,25.33,25.33,0,0,0-12.69,4.4,2,2,0,0,0-1,1.39,2.05,2.05,0,0,0,.79,1.38c1.52,1.54,3.13,3.12,5.19,3.78a31.43,31.43,0,0,0,3.88.66c3.15.58,6.06,2.39,9.26,2.39,2.21,0,4.38-.88,6.56-.57,3,.41,5.15,2.83,7,5.19a18.17,18.17,0,0,1,3.45,6.28c.7,2.78.26,5.9,1.75,8.35a5.78,5.78,0,0,1,.86,1.65,5.5,5.5,0,0,1-.61,2.71c-1.26,3.85,1.5,7.92,1.21,12-.14,1.93-1,3.77-1.09,5.7-.14,2.51.87,5.3-.53,7.38A35.85,35.85,0,0,1,587,577.14a21.88,21.88,0,0,1,3,.28,42,42,0,0,1,5.68,1.58c4.18,1.33,8.78,2.28,12.9.76,1-2.43.83-5.11.52-7.71s-.95-5.16-1.34-7.75a50.81,50.81,0,0,1-.52-6.28,25.19,25.19,0,0,1,.44-6.19,29.34,29.34,0,0,1,1.87-5.2,91.61,91.61,0,0,1,7-14c4.1-.33,8.07-.68,12.17-1a18.85,18.85,0,0,0,2.91-.39,37.45,37.45,0,0,1,3.72-1.06,4.91,4.91,0,0,0,1.38-.28c.9-.41,1.46-1.55,2.44-1.58a4.69,4.69,0,0,0,1.12,0c.44-.13.65-.62,1-1,.62-.69,1.63-.83,2.44-1.27A3.52,3.52,0,0,0,645.2,521.9Z" transform="translate(-16.24 -71.99)" fill="#448aff"/><path d="M595.09,503.12a2,2,0,0,0,2.27.14,2.82,2.82,0,0,0,.84-1.54,35.41,35.41,0,0,0,.87-3.8,4.17,4.17,0,0,1,.5-1.59c.73-1.12,2.31-1.18,3.54-1.69a9.2,9.2,0,0,0,3.63-3.56l-.69-.14.65-1a1.16,1.16,0,0,1-.18-1.85,3.69,3.69,0,0,0-1.9-.43c.21-.38-.13-.86-.54-1a4.27,4.27,0,0,0-1.29-.07,6.38,6.38,0,0,1-1.86-.44c-4.26-1.46-8.88-2.75-13.22-1.52a16.44,16.44,0,0,0-5.29,2.77,6.87,6.87,0,0,0-2.81,9,23.28,23.28,0,0,1,1.4,5.05,16.08,16.08,0,0,1-.54,4.82,15.72,15.72,0,0,0,3.65.71,5.24,5.24,0,0,0,3.5-1c1-.86,1.56-2.19,2.38-3.27a3.39,3.39,0,0,1,2.89-1.52C594,501.36,594.2,502.49,595.09,503.12Z" transform="translate(-16.24 -71.99)" fill="#3f3d56"/><path d="M566.17,692H554.46a1.53,1.53,0,0,0,0,3h2.34v19.87H516.73a1.11,1.11,0,0,0-.89-.54h-11.7a1.53,1.53,0,0,0,0,3h2.34v20.41H467.79a1.24,1.24,0,0,0-1.1-1.08H455a1.52,1.52,0,0,0,0,3h1.17v21H416.84a1,1,0,0,0-.48-.13h-11.7a1.53,1.53,0,0,0,0,3h1.17v20H367a1.12,1.12,0,0,0-1-.68h-11.7a1.53,1.53,0,0,0,0,3h1.17V808H620V692Z" transform="translate(-16.24 -71.99)" fill="#3f3d56"/><path d="M189.26,308.3a27.69,27.69,0,0,0-3.91-4.18,3.36,3.36,0,0,1,.37-5.35c.48-.31.95-.64,1.42-1,5.46-4.15,8.22-9.72,6.15-12.45s-8.18-1.57-13.64,2.58a21,21,0,0,0-1.81,1.51,3.35,3.35,0,0,1-5.24-1,28.28,28.28,0,0,0-2.69-4.28c-4.86-6.4-11.38-9.63-14.57-7.21s-1.85,9.58,3,16a27.58,27.58,0,0,0,3.15,3.5,3.38,3.38,0,0,1-.74,5.39l0,0c-6,3.43-9.39,8.6-7.69,11.57s7.92,2.6,13.87-.82a26.13,26.13,0,0,0,2.66-1.77,3.38,3.38,0,0,1,5.1,1.24,26.26,26.26,0,0,0,3,5c4.85,6.4,11.38,9.63,14.57,7.21S194.11,314.71,189.26,308.3Z" transform="translate(-16.24 -71.99)" fill="#448aff" opacity="0.1"/><path d="M897.58,481.11a27.22,27.22,0,0,0,2.87-4.95,3.34,3.34,0,0,1,5.21-1.2c.44.36.9.71,1.37,1.06,5.56,4,11.7,5,13.7,2.25s-.88-8.28-6.44-12.3q-1-.71-2-1.29a3.35,3.35,0,0,1-.55-5.31,27.17,27.17,0,0,0,3.3-3.82c4.71-6.51,5.89-13.69,2.65-16s-9.7,1-14.41,7.55a28.2,28.2,0,0,0-2.43,4,3.38,3.38,0,0,1-5.37.87l0,0c-5-4.69-11-6.47-13.31-4s-.17,8.33,4.84,13a24.14,24.14,0,0,0,2.47,2,3.38,3.38,0,0,1,.29,5.24,26.85,26.85,0,0,0-3.93,4.39c-4.71,6.51-5.89,13.69-2.64,16S892.87,487.63,897.58,481.11Z" transform="translate(-16.24 -71.99)" fill="#448aff" opacity="0.1"/><ellipse cx="886.46" cy="740.19" rx="33.8" ry="6.5" fill="#448aff"/><ellipse cx="885.9" cy="737.43" rx="3.94" ry="5.15" fill="#3f3d56"/><ellipse cx="885.9" cy="731.13" rx="3.94" ry="5.15" fill="#3f3d56"/><ellipse cx="885.9" cy="724.84" rx="3.94" ry="5.15" fill="#3f3d56"/><ellipse cx="885.9" cy="718.54" rx="3.94" ry="5.15" fill="#3f3d56"/><ellipse cx="885.9" cy="712.24" rx="3.94" ry="5.15" fill="#3f3d56"/><ellipse cx="885.9" cy="705.95" rx="3.94" ry="5.15" fill="#3f3d56"/><ellipse cx="885.9" cy="699.65" rx="3.94" ry="5.15" fill="#3f3d56"/><path d="M916.87,728.55a19.94,19.94,0,0,0,1.46-2.16L908,724.69l11.18.09a18.84,18.84,0,0,0,.36-14.94l-15,7.78,13.84-10.17a18.85,18.85,0,1,0-31.14,21.1,19.29,19.29,0,0,0-2.15,3.44l13.43,7-14.32-4.8a18.89,18.89,0,0,0,3,17.7,18.85,18.85,0,1,0,29.64,0,18.87,18.87,0,0,0,0-23.31Z" transform="translate(-16.24 -71.99)" fill="#448aff"/><path d="M883.2,740.2a18.83,18.83,0,0,0,4,11.66,18.85,18.85,0,1,0,29.64,0C919.39,748.65,883.2,738.09,883.2,740.2Z" transform="translate(-16.24 -71.99)" opacity="0.1"/><ellipse cx="270.46" cy="741.74" rx="15.3" ry="2.94" fill="#448aff"/><ellipse cx="270.21" cy="740.49" rx="1.78" ry="2.33" fill="#3f3d56"/><ellipse cx="270.21" cy="737.64" rx="1.78" ry="2.33" fill="#3f3d56"/><ellipse cx="270.21" cy="734.79" rx="1.78" ry="2.33" fill="#3f3d56"/><ellipse cx="270.21" cy="731.94" rx="1.78" ry="2.33" fill="#3f3d56"/><ellipse cx="270.21" cy="729.09" rx="1.78" ry="2.33" fill="#3f3d56"/><ellipse cx="270.21" cy="726.24" rx="1.78" ry="2.33" fill="#3f3d56"/><ellipse cx="270.21" cy="723.39" rx="1.78" ry="2.33" fill="#3f3d56"/><path d="M293.11,775.87a8.08,8.08,0,0,0,.67-1l-4.68-.77,5.06,0a8.54,8.54,0,0,0,.78-3.57,8.43,8.43,0,0,0-.62-3.19l-6.79,3.52,6.26-4.6a8.53,8.53,0,1,0-14.09,9.55,8.57,8.57,0,0,0-1,1.55l6.07,3.16-6.48-2.18a8.54,8.54,0,0,0,1.38,8,8.54,8.54,0,1,0,13.41,0,8.52,8.52,0,0,0,0-10.55Z" transform="translate(-16.24 -71.99)" fill="#448aff"/><path d="M277.87,781.14a8.53,8.53,0,0,0,1.83,5.28,8.54,8.54,0,1,0,13.41,0C294.26,785,277.87,780.18,277.87,781.14Z" transform="translate(-16.24 -71.99)" opacity="0.1"/></svg>
data/assets/core.scss ADDED
@@ -0,0 +1,6 @@
1
+ ---
2
+ # Front matter comment to ensure Jekyll properly reads file.
3
+ ---
4
+
5
+ @import 'main';
6
+ @import 'syntax';
@@ -0,0 +1 @@
1
+ <svg id="59725d3d-bdd8-4af0-9b66-49b8d09410bc" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1041.32" height="554.17" viewBox="0 0 1041.32 554.17"><defs><linearGradient id="dff037aa-d578-4bab-81e7-399360663117" x1="597.75" y1="725.44" x2="597.75" y2="347.69" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="gray" stop-opacity="0.25"/><stop offset="0.54" stop-color="gray" stop-opacity="0.12"/><stop offset="1" stop-color="gray" stop-opacity="0.1"/></linearGradient></defs><title>programming</title><path d="M1040.82,611.12q-1.74,3.75-3.47,7.4-2.7,5.67-5.33,11.12c-.78,1.61-1.56,3.19-2.32,4.77-8.6,17.57-16.63,33.11-23.45,45.89A73.21,73.21,0,0,1,942.44,719l-151.65,1.65h-1.6l-13,.14-11.12.12-34.1.37-1.38,0-17.36.19h-.53l-107,1.16-95.51,1-11.11.12-69,.75H429l-44.75.48h-.48l-141.5,1.53-42.33.46a88.07,88.07,0,0,1-26.67-3.82,86.39,86.39,0,0,1-39.09-24.75C116,678.37,102.75,655,93.85,629.64q-1.93-5.49-3.6-11.12C59.44,514.37,97,380,164.6,290.08q4.25-5.64,8.64-11l.07-.08c20.79-25.52,44.1-46.84,68.93-62,44-26.91,92.75-34.49,140.7-11.9,40.57,19.12,78.45,28.11,115.17,30.55,3.71.24,7.42.42,11.11.53,84.23,2.65,163.17-27.7,255.87-47.29,3.69-.78,7.39-1.55,11.12-2.28,66.13-13.16,139.49-20.1,226.73-5.51a189.09,189.09,0,0,1,26.76,6.4q5.77,1.86,11.12,4c41.64,16.94,64.35,48.24,74,87.46q1.37,5.46,2.37,11.11C1134.3,384.41,1084.19,518.23,1040.82,611.12Z" transform="translate(-79.34 -172.91)" fill="#448aff" opacity="0.1"/><g opacity="0.1"><path d="M242.24,217V726.62l-42.33.46a88.07,88.07,0,0,1-26.67-3.82V279h.07C194.1,253.45,217.41,232.13,242.24,217Z" transform="translate(-79.34 -172.91)" fill="#448aff"/><path d="M1117.24,290.08H164.6q4.25-5.64,8.64-11V279h941.63Q1116.24,284.43,1117.24,290.08Z" transform="translate(-79.34 -172.91)" fill="#448aff"/><path d="M1040.82,191.51v427h-3.47q-2.7,5.67-5.33,11.12c-.78,1.61-1.56,3.19-2.32,4.77V187.47Q1035.47,189.33,1040.82,191.51Z" transform="translate(-79.34 -172.91)" fill="#448aff"/><path d="M776.21,186.58V720.83l-11.12.12V188.86C768.78,188.08,772.48,187.31,776.21,186.58Z" transform="translate(-79.34 -172.91)" fill="#448aff"/><path d="M509.22,236.15V723.73l-11.11.12V235.62C501.82,235.86,505.53,236,509.22,236.15Z" transform="translate(-79.34 -172.91)" fill="#448aff"/><path d="M1037.35,618.52q-2.7,5.67-5.33,11.12H93.85q-1.93-5.49-3.6-11.12Z" transform="translate(-79.34 -172.91)" fill="#448aff"/></g><rect x="211.6" y="265.83" width="19" height="57.66" fill="#3f3d56"/><rect x="722.93" y="262.83" width="19" height="61" fill="#3f3d56"/><polygon points="863.1 533.65 863.1 546.65 711.18 548.05 709.56 548.08 651.82 548.61 650.44 548.63 632.89 548.78 632.37 548.78 525.39 549.77 349.78 551.4 349.63 551.4 304.98 551.82 304.5 551.83 106.1 553.65 106.1 538.65 152.75 510.65 246.35 509.87 248.35 509.86 249.01 509.85 251.01 509.82 295.95 509.45 297.96 509.44 298.6 509.43 300.6 509.42 315.01 509.3 315.39 509.29 350.94 508.99 351.23 508.99 628.63 506.65 635.42 506.6 636.1 506.6 641.28 506.55 678.93 506.24 680.93 506.21 682.78 506.19 683.74 506.19 695.45 506.1 697.77 506.07 700.88 506.05 710.63 505.96 726.1 505.83 728.1 505.81 731.58 505.79 732.23 505.79 806.94 505.15 863.1 533.65" fill="#65617d"/><polygon points="863.1 533.65 863.1 546.65 711.18 548.05 709.56 548.08 651.82 548.61 650.44 548.63 632.89 548.78 632.37 548.78 525.39 549.77 349.78 551.4 349.63 551.4 304.98 551.82 304.5 551.83 106.1 553.65 106.1 538.65 152.75 510.65 246.35 509.87 248.35 509.86 249.01 509.85 251.01 509.82 295.95 509.45 297.96 509.44 298.6 509.43 300.6 509.42 315.01 509.3 315.39 509.29 350.94 508.99 351.23 508.99 628.63 506.65 635.42 506.6 636.1 506.6 641.28 506.55 678.93 506.24 680.93 506.21 682.78 506.19 683.74 506.19 695.45 506.1 697.77 506.07 700.88 506.05 710.63 505.96 726.1 505.83 728.1 505.81 731.58 505.79 732.23 505.79 806.94 505.15 863.1 533.65" opacity="0.2"/><path d="M375.44,656.57v24.49a6.13,6.13,0,0,1-3.5,5.54,6,6,0,0,1-2.5.6l-34.9.74a6,6,0,0,1-2.7-.57,6.12,6.12,0,0,1-3.57-5.57V656.57Z" transform="translate(-79.34 -172.91)" fill="#3f3d56"/><path d="M375.44,656.57v24.49a6.13,6.13,0,0,1-3.5,5.54,6,6,0,0,1-2.5.6l-34.9.74a6,6,0,0,1-2.7-.57,6.12,6.12,0,0,1-3.57-5.57V656.57Z" transform="translate(-79.34 -172.91)" opacity="0.1"/><path d="M377.44,656.57v24.49a6.13,6.13,0,0,1-3.5,5.54,6,6,0,0,1-2.5.6l-34.9.74a6,6,0,0,1-2.7-.57,6.12,6.12,0,0,1-3.57-5.57V656.57Z" transform="translate(-79.34 -172.91)" fill="#3f3d56"/><rect x="680.93" y="483.66" width="47.17" height="31.5" fill="#3f3d56"/><rect x="680.93" y="483.66" width="47.17" height="31.5" opacity="0.1"/><rect x="678.93" y="483.66" width="47.17" height="31.5" fill="#3f3d56"/><polygon points="230.6 265.82 230.6 271.55 211.6 271.06 211.6 265.82 230.6 265.82" opacity="0.1"/><path d="M435,277.31l-22.83,164a4.3,4.3,0,0,1-4.37,3.71L225,440.28l-3.47-.09a4.3,4.3,0,0,1-4.16-4.87L243,263.64a4.3,4.3,0,0,1,4.54-3.63L431,272.43A4.29,4.29,0,0,1,435,277.31Z" transform="translate(-79.34 -172.91)" fill="#65617d"/><polygon points="175.93 99.16 156.6 250.49 324.6 255.82 345.26 109.82 175.93 99.16" fill="#448aff"/><rect x="384.6" y="96.82" width="204.67" height="173.33" rx="5.33" ry="5.33" fill="#65617d"/><rect x="394.26" y="108.49" width="186" height="144.33" fill="#448aff"/><polygon points="741.93 262.82 741.93 266.61 722.93 267 722.93 262.82 741.93 262.82" opacity="0.1"/><path d="M907,432.53a3.08,3.08,0,0,1-3,3.28L716.8,439.68a3.08,3.08,0,0,1-3.13-2.79L697.58,269.61a3.08,3.08,0,0,1,2.92-3.37L886.28,257l2-.1a3.07,3.07,0,0,1,3.22,2.8Z" transform="translate(-79.34 -172.91)" fill="#65617d"/><polygon points="628.93 103.16 798.6 94.82 812.93 246.82 644.6 250.82 628.93 103.16" fill="#448aff"/><path d="M907,432.53a3.08,3.08,0,0,1-3,3.28L886.28,257l2-.1a3.07,3.07,0,0,1,3.22,2.8Z" transform="translate(-79.34 -172.91)" opacity="0.1"/><path d="M247.57,260,225,440.28l-3.47-.09a4.3,4.3,0,0,1-4.16-4.87L243,263.64A4.3,4.3,0,0,1,247.57,260Z" transform="translate(-79.34 -172.91)" opacity="0.1"/><rect x="211.6" y="306.41" width="19" height="17.08" opacity="0.1"/><polygon points="298.1 483.65 298.1 488.62 250.93 489.88 250.93 483.65 298.1 483.65" opacity="0.1"/><path d="M460.69,485.27v168.2a4,4,0,0,1-3.85,3.95l-191.65,5.1h-.05a4,4,0,0,1-3.95-3.95V485.27a4,4,0,0,1,3.95-3.95h191.6A4,4,0,0,1,460.69,485.27Z" transform="translate(-79.34 -172.91)" fill="#65617d"/><path d="M265.19,481.32v181.2h-.05a4,4,0,0,1-3.95-3.95V485.27a4,4,0,0,1,3.95-3.95Z" transform="translate(-79.34 -172.91)" opacity="0.1"/><polygon points="194.6 319.15 372.1 319.15 372.1 467.4 194.6 471.4 194.6 319.15" fill="#d4dfec"/><rect x="722.93" y="306.41" width="19" height="17.42" opacity="0.1"/><polygon points="726.1 483.65 726.1 490.06 678.93 488.8 678.93 483.65 726.1 483.65" opacity="0.1"/><path d="M867.69,485.27v173.3a4,4,0,0,1-4,3.95h0L672,657.42a4,4,0,0,1-3.85-3.95V485.27a4,4,0,0,1,3.95-3.95h191.6A4,4,0,0,1,867.69,485.27Z" transform="translate(-79.34 -172.91)" fill="#65617d"/><path d="M867.69,485.27v173.3a4,4,0,0,1-4,3.95h0V481.32h0A4,4,0,0,1,867.69,485.27Z" transform="translate(-79.34 -172.91)" opacity="0.1"/><polygon points="775.6 319.15 598.1 319.15 598.1 467.4 775.6 471.4 775.6 319.15" fill="#d4dfec"/><path d="M663.19,485.27v168.2a4,4,0,0,1-3.85,3.95l-191.65,5.1h0a4,4,0,0,1-4-3.95V485.27a4,4,0,0,1,3.95-3.95h191.6A4,4,0,0,1,663.19,485.27Z" transform="translate(-79.34 -172.91)" fill="#65617d"/><polygon points="397.1 319.15 574.6 319.15 574.6 467.4 397.1 471.4 397.1 319.15" fill="#d4dfec"/><polygon points="863.1 533.65 863.1 546.65 711.18 548.05 709.56 548.08 651.82 548.61 650.44 548.63 632.89 548.78 632.37 548.78 525.39 549.77 349.78 551.4 349.63 551.4 304.98 551.82 304.5 551.83 106.1 553.65 106.1 538.65 308.61 537.32 309.09 537.32 350.08 537.04 350.27 537.04 633.35 535.17 633.64 535.17 633.81 535.16 634.28 535.16 639.07 535.13 640.53 535.13 715.02 534.63 719.42 534.61 720.4 534.6 863.1 533.65" opacity="0.1"/><circle cx="487.26" cy="272.16" r="51.33" fill="#fbbebe"/><path d="M383.74,725.09c0-.11.06-.23.1-.35,1-3.59,2.78-9.66,4.11-14.51.17-.6.33-1.19.48-1.75,1.47-5.47,4.33-18.28,5.92-26.27.56-2.81,1-5,1.09-6.1.2-1.69,3.21-8.92,6.62-17.23,2.39-5.84,5-12.22,6.91-17.6a61.38,61.38,0,0,0,2.93-9.85,5.1,5.1,0,0,0,0-2.13,14.69,14.69,0,0,1-.48-3.5v0c-.23-6.2,1.62-16,4.48-20.11,3.5-5,6-23.66,6-23.66s5.18.75,6-3.53a6.15,6.15,0,0,0,.1-1.4,7.41,7.41,0,0,0-.09-1.11c-.89-6.24,14.72-12.88,23.5-14.31a19.67,19.67,0,0,1,3-.28,27.24,27.24,0,0,0,6.25-1.44q1.4-.43,3-1c3.68-1.24,8.08-2.88,12.75-4.68,17.56-6.81,38.82-16,38.82-16,.15-.71.32-1.39.51-2.06a27.71,27.71,0,0,1,16.35-18.93h0c0-.66,0-1.33,0-2,0-3.45-.15-7-.3-10.54,0-.69-.06-1.38-.1-2.07,0-.2,0-.41,0-.61s0-.35,0-.52c0-.7-.07-1.4-.11-2.09l-.18-.14a16.41,16.41,0,0,1-3.9-4.2,15.27,15.27,0,0,1-1.42-3c-1.25-3.39-1.54-7.17-2.38-10.75l-.18-.74a84,84,0,0,0-4-10.58c-2.21-5.42-3.91-11-5.6-16.65q-1.54-5.13-3.11-10.28l-1.58-5.24c-.3-1-.6-2-.83-3v0a13.27,13.27,0,0,1-.26-1.4,0,0,0,0,1,0,0,10,10,0,0,1,.24-4.61,32.09,32.09,0,0,1,1.32-3,7.87,7.87,0,0,0,.5-1.38v0a3,3,0,0,0,.08-.32,5.65,5.65,0,0,0,.11-1.08,18.46,18.46,0,0,0-.52-3.89.07.07,0,0,1,0-.05,2.56,2.56,0,0,0-.05-.27,25.48,25.48,0,0,1-.36-3,28.45,28.45,0,0,1,3.47-15.57l.19-.36a25.22,25.22,0,0,1,1.84-2.78h0c.31-.42.63-.82,1-1.22-1.4,1.34-3.7.75-5-.69a3.61,3.61,0,0,1-.55-.75,3.81,3.81,0,0,1-.23-.45c-.05-.12-.09-.25-.13-.38-.7-2.45.52-5.06,2.12-7.05a18.49,18.49,0,0,1,5.74-4.7h0a3.84,3.84,0,0,1,.4-.21,17.12,17.12,0,0,1,2.64-1.06h0a15.06,15.06,0,0,1,1.63-.44l-3.71-.34-1.5-.14a14.49,14.49,0,0,1,13-10.91h1.08a11.73,11.73,0,0,1,1.57.13,4.44,4.44,0,0,1-2.65-4.33,14.41,14.41,0,0,0,9.19,3.06h.38a30,30,0,0,1-.34-3.27h0a0,0,0,0,1,0,0,0,0,0,0,1,0,0,33.19,33.19,0,0,1,0-4.46,8.44,8.44,0,0,0,6.78,2.26l-2.08-2.9a9.49,9.49,0,0,0,6.56,2.05l.48-.05a7,7,0,0,0,1.19-.23l.09,0c-.19-.24-.36-.49-.53-.75l-.06-.12a9.67,9.67,0,0,1-1-2.09,6.59,6.59,0,0,1-.24-.87h0a8.75,8.75,0,0,1,.45-5.45c3.23,2.7,6.77,6.39,11,3.6s4.37-7.91,11-7.39a10.2,10.2,0,0,1,8.41,6.12,6.75,6.75,0,0,1,7.67-1.75,6.85,6.85,0,0,1,3.88,6.89c2.75-.69,5.71-1.37,8.35-.33s4.34,4.41,2.84,6.66a1.43,1.43,0,0,1-.14.2c-1.23,1.59-3.95,2.46-3.66,4.46l.42.3,1.3.94a.05.05,0,0,1,0,0q7.65,5.52,14.9,11.6c2.48,2.08,5.12,4.58,5.29,7.83a8.64,8.64,0,0,1-.24,2.37h0c-.16.78-.38,1.56-.55,2.34a19.51,19.51,0,0,0-.34,6.05h0c.07.59.16,1.17.27,1.76,1.53,7.73,7.71,14.11,8.32,22l0,.56a17.78,17.78,0,0,1-.07,2.53c-.46,4.8-2.68,9.41-4.48,14-.11.28-.22.56-.32.84-3.47,9-5.47,18.59-7,28.16a100.26,100.26,0,0,1-2,10.09A26.73,26.73,0,0,1,611,492.07a16.22,16.22,0,0,1-3.36,3,18.67,18.67,0,0,1-2.65,1.41s0,0,0,.06c.11.61.2,1.22.31,1.83.06.32.11.64.17,1h0a.14.14,0,0,0,0,.06c.84,4.73,1.8,9.36,2.81,13.76l.51,2.19c12.6,4.55,14.09,13.87,14.18,17.44a9.64,9.64,0,0,1,0,1.43s19,.5,26.5,6a20.34,20.34,0,0,0,4.51,2.3,83,83,0,0,0,9.25,2.89c1.61.42,3.29.83,5,1.23,3,.69,6.18,1.36,9.25,2,8.19,1.65,15.9,3,19.81,4,9.33,2.36,30.67,22.82,30.67,22.82s2.5,20.64,5,23.65,7,13.59,7,13.59l16.54,29.41,7,12.37h4.5c.62,0,1.84.88,3.21,2.1,1.19,1.06,2.51,2.38,3.67,3.58l1.92,2.05,1.2,1.33s7.27.18,9.24,5.93c5.92-.17,13.19.22,18.28,2.5a14.14,14.14,0,0,1,2,1.08,8.68,8.68,0,0,1,4.13,5.66,8.34,8.34,0,0,1,.18,1.44c0,.57,0,1.14,0,1.7-.36,7.57-5.29,13.87-9.82,18.11l.32.57s-.15.36-.44,1c-.08.19-.18.4-.29.64h0c-.59,1.26-1.53,3.15-2.76,5.36a63.31,63.31,0,0,1-9.57,13.17l-.29.3-57.74.53-.17-.2L719.87,708l-5.57-6.64-.17-.21-.16,1.59-.54,5.3-1.3,12.81-.07.64,0,.17-.15,1.48.11-1.48h-.29l-107,1L429.11,724.6l0,.84h-.14l0-.84-44.75.48Z" transform="translate(-79.34 -172.91)" fill="url(#dff037aa-d578-4bab-81e7-399360663117)"/><path d="M617.94,550.07s-99.5,12-90,0c3.44-4.34,4.39-17.2,4.2-31.85-.06-4.45-.22-9.06-.45-13.65-1.1-22-3.75-43.5-3.75-43.5s87-41,77-8.5c-4,13.13-2.69,31.57.35,48.88.89,5.05,1.92,10,3,14.7A344.67,344.67,0,0,0,617.94,550.07Z" transform="translate(-79.34 -172.91)" fill="#fbbebe"/><path d="M617.94,550.07s-99.5,12-90,0c3.44-4.34,4.39-17.2,4.2-31.85,15.17-6.48,34.47-1.65,34.47-1.65,20.32-4.05,33.35-3.26,41.68-.42A344.67,344.67,0,0,0,617.94,550.07Z" transform="translate(-79.34 -172.91)" opacity="0.1"/><path d="M429.08,725.44l0-.84,175.62-1.91,107-1H712l-.11,1.48.15-1.48h.19l0-.17,1.37-13.45.52-5.09.16-1.59.14-1.33,6.18-20.61,6.18-20.58,5.2-17.33,7.94-26.48s-4.5-10.5-7-13.5-5-23.5-5-23.5-21.34-20.33-30.67-22.67c-3.91-1-11.63-2.33-19.83-4-3.07-.62-6.22-1.28-9.25-2-1.71-.39-3.39-.8-5-1.21a87.91,87.91,0,0,1-9.25-2.86,20.7,20.7,0,0,1-4.5-2.29c-7.35-5.39-25.77-6-26.48-6h0a.42.42,0,0,1,0-.07v-.09a10.26,10.26,0,0,0,0-1.26c0-.4,0-.87-.09-1.4,0-.16,0-.33-.07-.5-.05-.36-.11-.74-.2-1.14a5,5,0,0,0-.12-.53,17.21,17.21,0,0,0-1.25-3.49c-.07-.16-.16-.33-.24-.49a18.25,18.25,0,0,0-1.7-2.63c-.13-.17-.27-.35-.42-.52a19.58,19.58,0,0,0-2.72-2.64c-.27-.21-.55-.43-.84-.63a4.67,4.67,0,0,0-.51-.36l-.89-.58-.83-.48c-.73-.4-1.5-.79-2.34-1.16-.26-.12-.54-.23-.82-.34s-.72-.28-1.09-.42l-.06,0L608,518c-.57-.19-1.15-.36-1.76-.53l-.93-.24-1-.23-1-.21c-1-.2-2.07-.38-3.19-.52l-1.14-.14-1.17-.12-1.21-.1-1.72-.1-2-.07a124.68,124.68,0,0,0-26.24,2.79,72.27,72.27,0,0,0-18.26-1.68l-.87,0-1,.06-.64,0-1.29.12c-.43,0-.87.09-1.3.15s-.88.11-1.31.18l-.66.11c-.65.11-1.31.23-2,.37q-.33.06-.66.15c-.87.19-1.74.42-2.6.68-.43.12-.86.26-1.29.41-.22.06-.43.14-.64.22l-.64.23-.63.25-.75.3c-.38.16-.75.33-1.12.51-.21.09-.42.19-.62.3s-.41.2-.6.31a27.75,27.75,0,0,0-6.21,4.38l-.51.49-.5.51c-.17.17-.33.35-.49.53a23.82,23.82,0,0,0-1.82,2.25c-.16.21-.31.42-.46.64a26.69,26.69,0,0,0-1.72,2.92c-.13.24-.25.49-.37.73a32.7,32.7,0,0,0-2,5.25q-.28,1-.51,2S494,550.24,476.44,557c-4.67,1.8-9.07,3.43-12.75,4.66-1.07.36-2.07.69-3,1a26.7,26.7,0,0,1-6.25,1.44,19.67,19.67,0,0,0-3,.28c-8.07,1.31-21.9,7-23.41,12.71a3.69,3.69,0,0,0-.1,1.4s0,.07,0,.11c1,7-6,6-6,6s-2.5,18.5-6,23.5c-2.53,3.6-4.26,11.63-4.48,17.69v0a19.61,19.61,0,0,0,.44,5.63c0,.05,0,.1,0,.14.4,1.34-.56,5-2.19,9.69-1.77,5.15-4.35,11.55-6.83,17.59-3.74,9.12-7.26,17.4-7.48,19.22-.09.81-.35,2.26-.71,4.13-1.46,7.62-4.7,22.13-6.3,28-1.19,4.38-2.92,10.38-4.11,14.5,0,.12-.07.24-.1.35L429,724.6l0,.84h.14Z" transform="translate(-79.34 -172.91)" fill="#448aff"/><path d="M445.44,607.57s57,29.5,77.5,26Z" transform="translate(-79.34 -172.91)" opacity="0.1"/><path d="M561.44,595.57s55.5,18,74,20.5S561.44,595.57,561.44,595.57Z" transform="translate(-79.34 -172.91)" opacity="0.1"/><path d="M623,537.65c-29,5.34-83.6,4.19-107.2,3.38,8.65-31,50.83-20.46,50.83-20.46C618.84,510.15,622.84,531.77,623,537.65Z" transform="translate(-79.34 -172.91)" opacity="0.1"/><path d="M623,535.65c-29,5.34-83.6,4.19-107.2,3.38,8.65-31,50.83-20.46,50.83-20.46C618.84,508.15,622.84,529.77,623,535.65Z" transform="translate(-79.34 -172.91)" fill="#448aff"/><path d="M776.94,672.32s34.16-5.25,34.83,9.75-17.42,25.48-17.42,25.48Z" transform="translate(-79.34 -172.91)" fill="#fbbebe"/><path d="M605.29,501.45a47,47,0,0,1-4.5,1.74c-10.78,3.72-21.65,7.47-33,8.83s-23.26.16-33.16-5.5a28.77,28.77,0,0,1-3-1.95c-1.1-22-3.75-43.5-3.75-43.5s87-41,77-8.5C600.9,465.7,602.25,484.14,605.29,501.45Z" transform="translate(-79.34 -172.91)" opacity="0.1"/><path d="M552.52,364.84a9.47,9.47,0,0,1-8.32-1.75l2.08,2.89a8.47,8.47,0,0,1-6.78-2.25,34.08,34.08,0,0,0,.32,7.75,14.52,14.52,0,0,1-9.56-3,4.42,4.42,0,0,0,2.64,4.31,14.34,14.34,0,0,0-15.6,10.71l5.22.48a18.47,18.47,0,0,0-10.44,6.37c-1.6,2-2.82,4.56-2.12,7s4.08,4,5.92,2.26a27.94,27.94,0,0,0-6.1,22.79,14.47,14.47,0,0,1,.46,5.26c-.33,1.65-1.37,3.08-1.89,4.69-1,2.92-.05,6.09.84,9l4.69,15.42c1.7,5.57,3.39,11.15,5.61,16.54a82.08,82.08,0,0,1,4,10.51c1.26,4.84,1.31,10.14,4,14.37a19.93,19.93,0,0,0,7.18,6.33c9.89,5.66,21.84,6.86,33.16,5.5s22.18-5.11,32.95-8.83a31,31,0,0,0,6.84-3c7.45-4.88,9.11-14.86,10.5-23.65,1.55-9.8,3.62-19.58,7.29-28.8,2.18-5.49,5-11.06,4.52-16.94-.61-7.81-6.79-14.14-8.32-21.82a19,19,0,0,1,.07-7.77,17.66,17.66,0,0,0,.79-4.7c-.17-3.22-2.81-5.7-5.29-7.77Q609.11,380,600.52,374c-.29-2,2.43-2.86,3.66-4.44,1.74-2.23-.06-5.77-2.7-6.81s-5.6-.36-8.35.33a6.59,6.59,0,0,0-11.55-5.11,10.2,10.2,0,0,0-8.42-6.08c-6.63-.52-6.76,4.55-11,7.34s-7.74-.89-11-3.57A9.28,9.28,0,0,0,552.52,364.84Z" transform="translate(-79.34 -172.91)" fill="#3f3d56"/><path d="M802.27,702.32s-.89,2.12-2.53,5.19a69,69,0,0,1-9,13.17l-.27.29-1.62,0-57.74.53-1.38,0-.17-.2-11.2-13.29L714.14,703l-.17-.21-.36-.42-.2-.24-.26-.31-8.21-9.74,3-12.5,5.11-21.06.13-.51,1-4,.71-3,2.38-9.78,8.16-33.65,14.5,7.5,15.29,27,8.21,14.5h4.5c.85,0,2.8,1.64,4.76,3.53.7.67,1.4,1.38,2,2,1.78,1.84,3.19,3.42,3.19,3.42s7.29.16,9.25,5.9a7,7,0,0,1,.25.85,40.3,40.3,0,0,0,2.53,6.56c1.29,2.81,2.91,6,4.55,9.19,3.05,5.85,6.15,11.42,7.29,13.44l.14.25Z" transform="translate(-79.34 -172.91)" fill="#448aff"/><path d="M716.37,657.17l-.1,1.43v.1l-.17,2.3-1.33,18.51-1.61,22.3-.46,6.28-1,13.44v.17l-107,1L429.11,724.6l0,.84h-.14l0-.84v-.28l.45-14.36.86-28.06.74-23.79.07-2.37a10.53,10.53,0,0,1,11.42-10.17c4.72.4,10.85.89,18.18,1.41l3,.22c42.33,2.94,120.56,6.74,199.5,2,1.66-.09,3.33-.19,5-.31,12.24-.77,24.47-1.76,36.58-3a10.53,10.53,0,0,1,11.6,11.23Z" transform="translate(-79.34 -172.91)" opacity="0.1"/><path d="M429.08,725.44l0-.84,175.62-1.91,107-1H712v-.17l1-13.44.43-6,1.64-22.61,1.29-17.9,0-.44a10.62,10.62,0,0,0-.11-2.47.3.3,0,0,0,0-.1,10.39,10.39,0,0,0-2-4.64,10.54,10.54,0,0,0-9.42-4c-12.11,1.24-24.34,2.23-36.58,3-1.67.12-3.34.22-5,.31-78.94,4.69-157.17.89-199.5-2l-3-.22c-7.33-.52-13.46-1-18.18-1.41a10.54,10.54,0,0,0-11.24,8.53,11,11,0,0,0-.18,1.64l-.68,22.16L429.54,710l-.44,14.36v.28l0,.84Z" transform="translate(-79.34 -172.91)" fill="#3f3d56"/><path d="M716.67,664.18l-1.23,15.33-1.83,22.85-.46,5.72-1,12.81-.06.64v.17h0l-.15,1.48.11-1.48h-.29l-107,1L429.11,724.6v-.28l.49-14.36,1-28.06.64-18.65A6.36,6.36,0,0,1,434.3,658a6.25,6.25,0,0,1,3.78-.9c2.1.17,4.68.37,7.69.59,4.89.36,10.92.78,17.94,1.22,13,.82,29.31,1.7,48,2.42,52,2,122.2,2.67,188.88-3.17,3-.26,6.1-.55,9.13-.84a6.26,6.26,0,0,1,3.48.66,5.16,5.16,0,0,1,.86.54,6.14,6.14,0,0,1,2,2.46,3.56,3.56,0,0,1,.25.61A6.28,6.28,0,0,1,716.67,664.18Z" transform="translate(-79.34 -172.91)" opacity="0.1"/><path d="M377.44,677.87v3.19a6.13,6.13,0,0,1-3.5,5.54l-40.1.77a6.12,6.12,0,0,1-3.57-5.57v-3Z" transform="translate(-79.34 -172.91)" opacity="0.1"/><polygon points="298.6 515.57 246.35 516.57 246.35 507.9 298.6 506.9 298.6 515.57" fill="#3f3d56"/><polygon points="298.6 515.57 246.35 516.57 246.35 507.9 298.6 506.9 298.6 515.57" opacity="0.1"/><polygon points="300.6 515.57 248.35 516.57 248.35 507.9 300.6 506.9 300.6 515.57" fill="#3f3d56"/><g opacity="0.1"><path d="M552.93,361.56a9.75,9.75,0,0,1-1.89-4.34,9.49,9.49,0,0,0,.42,4.6A9,9,0,0,0,552.93,361.56Z" transform="translate(-79.34 -172.91)"/><path d="M540.23,368.2a35.12,35.12,0,0,1-.37-3.7c0,1.23,0,2.47,0,3.71Z" transform="translate(-79.34 -172.91)"/><path d="M621.73,401.57a18.34,18.34,0,0,1,.36-2.65,18,18,0,0,0,.8-4.69,6.16,6.16,0,0,0-.16-1.06c-.17.92-.44,1.84-.64,2.75A19.14,19.14,0,0,0,621.73,401.57Z" transform="translate(-79.34 -172.91)"/><path d="M600.93,370.67l1.09.79a19.71,19.71,0,0,0,2.57-2.22,3.67,3.67,0,0,0,.38-3.64,3,3,0,0,1-.38.64C603.36,367.82,600.64,368.69,600.93,370.67Z" transform="translate(-79.34 -172.91)"/><path d="M518.76,380.29a12.32,12.32,0,0,0-.87,2.28,18.16,18.16,0,0,1,5-1.89Z" transform="translate(-79.34 -172.91)"/><path d="M532.55,369.41a14.83,14.83,0,0,1-1.88-1.23,4.25,4.25,0,0,0,.09,1.18A11.86,11.86,0,0,1,532.55,369.41Z" transform="translate(-79.34 -172.91)"/><path d="M630.32,428.33c-.41,4.85-2.67,9.52-4.5,14.12-3.67,9.22-5.74,19-7.29,28.81-1.39,8.79-3,18.77-10.5,23.64a30,30,0,0,1-6.83,3c-10.78,3.73-21.65,7.47-33,8.83s-23.26.17-33.16-5.49a20,20,0,0,1-7.18-6.33c-2.67-4.23-2.72-9.53-4-14.37a82.21,82.21,0,0,0-4-10.52c-2.21-5.38-3.91-11-5.6-16.53q-2.35-7.71-4.69-15.43a28.81,28.81,0,0,1-1.14-4.75c-.39,2.56.37,5.24,1.14,7.75q2.34,7.73,4.69,15.43c1.69,5.57,3.39,11.15,5.6,16.53a82.21,82.21,0,0,1,4,10.52c1.26,4.84,1.31,10.14,4,14.37a20,20,0,0,0,7.18,6.33c9.9,5.66,21.84,6.85,33.16,5.49s22.18-5.1,33-8.83a30,30,0,0,0,6.83-3c7.45-4.87,9.11-14.85,10.5-23.64,1.55-9.81,3.62-19.59,7.29-28.81,2.18-5.48,5-11.05,4.52-16.94C630.34,428.45,630.32,428.39,630.32,428.33Z" transform="translate(-79.34 -172.91)"/><path d="M510.63,424.46s0-.07,0-.11a14,14,0,0,0-.46-5.25,26.59,26.59,0,0,1-.39-3.32,27.35,27.35,0,0,0,.39,6.32C510.33,422.88,510.51,423.67,510.63,424.46Z" transform="translate(-79.34 -172.91)"/><path d="M513.68,400a27.74,27.74,0,0,1,2.61-3.67c-1.83,1.75-5.21.19-5.92-2.24a5.83,5.83,0,0,0,0,3A4.39,4.39,0,0,0,513.68,400Z" transform="translate(-79.34 -172.91)"/></g><path d="M763.44,656.57s3.17,11.5,0,21.5S763.44,656.57,763.44,656.57Z" transform="translate(-79.34 -172.91)" opacity="0.1"/><path d="M776.94,668.3s1.33,14.6-1.67,17.19S776.94,668.3,776.94,668.3Z" transform="translate(-79.34 -172.91)" opacity="0.1"/><line x1="198.99" y1="342.86" x2="300.6" y2="341.86" fill="none" stroke="#448aff" stroke-miterlimit="10" stroke-width="2"/><line x1="198.99" y1="355.33" x2="300.6" y2="354.34" fill="none" stroke="#448aff" stroke-miterlimit="10" stroke-width="2"/><line x1="198.99" y1="367.81" x2="300.6" y2="366.81" fill="none" stroke="#448aff" stroke-miterlimit="10" stroke-width="2"/></svg>
Binary file
Binary file
@@ -0,0 +1 @@
1
+ <svg id="aa7bae02-e79e-4d6b-a496-aba15f39787c" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="1144" height="617.32" viewBox="0 0 1144 617.32"><title>developer activity</title><path d="M1172,537.57a181.92,181.92,0,0,1-6.85,49.6,180.06,180.06,0,0,1-19.27,44.28c0,50.1-33.82,93.4-82.91,114a167.3,167.3,0,0,1-64.73,12.8H245.17c-40.25,0-77.55-10.86-108.14-29.36A185.76,185.76,0,0,1,112.2,711c-34-29.22-55.08-69.6-55.08-114.2A180.5,180.5,0,0,1,28,498.08c0-73.36,43.39-136.44,105.55-164.29a174.52,174.52,0,0,1,25.51-9.12q4.63-1.26,9.36-2.26a175.39,175.39,0,0,1,25.51-3.5q4.65-.29,9.35-.33H205c3.46,0,6.89.12,10.3.32l1.12-1.9q2.06-3.44,4.22-6.81,3.9-6.14,8.18-12.1,4.48-6.29,9.35-12.38l.83-1q2.76-3.44,5.64-6.8,9-10.49,19-20.35c72.11-70.68,185.08-116.18,312.08-116.18,98.82,0,189.15,27.55,258.34,73.07A174.18,174.18,0,0,1,920,191.86c97.74,0,177,80.37,177,179.51a184.9,184.9,0,0,1-1,18.78A180,180,0,0,1,1172,537.57Z" transform="translate(-28 -141.34)" fill="#448aff" opacity="0.1"/><path d="M263.66,257.52v20.35h-19Q253.59,267.39,263.66,257.52Z" transform="translate(-28 -141.34)" fill="#448aff" opacity="0.2"/><rect x="245.02" y="111.02" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="279.88" y="111.02" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="314.75" y="111.02" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="349.61" y="111.02" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="384.48" y="111.02" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="419.35" y="111.02" width="25.51" height="25.51" fill="#448aff"/><rect x="454.21" y="111.02" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="489.08" y="111.02" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="523.94" y="111.02" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="558.81" y="111.02" width="25.51" height="25.51" fill="#448aff"/><rect x="593.68" y="111.02" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="628.54" y="111.02" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="663.41" y="111.02" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="698.28" y="111.02" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="733.14" y="111.02" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="768.01" y="111.02" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="802.87" y="111.02" width="25.51" height="25.51" fill="#448aff"/><rect x="837.74" y="111.02" width="25.51" height="25.51" fill="#448aff"/><rect x="872.61" y="111.02" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="907.47" y="111.02" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="942.34" y="111.02" width="25.51" height="25.51" fill="#448aff"/><rect x="977.2" y="111.02" width="25.51" height="25.51" fill="#448aff"/><path d="M228.8,298.08v12.1h-8.18Q224.52,304,228.8,298.08Z" transform="translate(-28 -141.34)" fill="#448aff"/><rect x="210.15" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="245.02" y="143.33" width="25.51" height="25.51" fill="#448aff"/><rect x="279.88" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="314.75" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="349.61" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="384.48" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="419.35" y="143.33" width="25.51" height="25.51" fill="#448aff"/><rect x="454.21" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="489.08" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="523.94" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="558.81" y="143.33" width="25.51" height="25.51" fill="#448aff"/><rect x="593.68" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="628.54" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="663.41" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="698.28" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="733.14" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="768.01" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="802.87" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="837.74" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="872.61" y="143.33" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="907.47" y="143.33" width="25.51" height="25.51" fill="#448aff"/><rect x="942.34" y="143.33" width="25.51" height="25.51" fill="#448aff"/><rect x="977.2" y="143.33" width="25.51" height="25.51" fill="#448aff"/><path d="M159.06,324.67V342.5H133.55v-8.71A174.52,174.52,0,0,1,159.06,324.67Z" transform="translate(-28 -141.34)" fill="#448aff" opacity="0.2"/><polygon points="165.93 177.57 165.93 201.16 140.42 201.16 140.42 181.07 165.93 177.57" fill="#448aff" opacity="0.2"/><rect x="175.28" y="175.65" width="25.51" height="25.51" fill="#448aff"/><rect x="210.15" y="175.65" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="245.02" y="175.65" width="25.51" height="25.51" fill="#448aff"/><rect x="279.88" y="175.65" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="314.75" y="175.65" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="349.61" y="175.65" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="384.48" y="175.65" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="419.35" y="175.65" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="454.21" y="175.65" width="25.51" height="25.51" fill="#448aff"/><rect x="489.08" y="175.65" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="523.94" y="175.65" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="558.81" y="175.65" width="25.51" height="25.51" fill="#448aff"/><rect x="593.68" y="175.65" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="628.54" y="175.65" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="663.41" y="175.65" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="698.28" y="175.65" width="25.51" height="25.51" fill="#448aff"/><rect x="733.14" y="175.65" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="768.01" y="175.65" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="802.87" y="175.65" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="837.74" y="175.65" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="872.61" y="175.65" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="907.47" y="175.65" width="25.51" height="25.51" fill="#448aff"/><rect x="942.34" y="175.65" width="25.51" height="25.51" fill="#448aff"/><rect x="977.2" y="175.65" width="25.51" height="25.51" fill="#448aff"/><rect x="105.55" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="140.42" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="175.28" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="210.15" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="245.02" y="207.96" width="25.51" height="25.51" fill="#448aff"/><rect x="279.88" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="314.75" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="349.61" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="384.48" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="419.35" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="454.21" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="489.08" y="207.96" width="25.51" height="25.51" fill="#448aff"/><rect x="523.94" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="558.81" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="593.68" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="628.54" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="663.41" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="698.28" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="733.14" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="768.01" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="802.87" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="837.74" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="872.61" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="907.47" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="942.34" y="207.96" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="977.2" y="207.96" width="25.51" height="25.51" fill="#448aff"/><rect x="105.55" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="140.42" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="175.28" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="210.15" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="245.02" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="279.88" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="314.75" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="349.61" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="384.48" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="419.35" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="454.21" y="240.28" width="25.51" height="25.51" fill="#448aff"/><rect x="489.08" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="523.94" y="240.28" width="25.51" height="25.51" fill="#448aff"/><rect x="558.81" y="240.28" width="25.51" height="25.51" fill="#448aff"/><rect x="593.68" y="240.28" width="25.51" height="25.51" fill="#448aff"/><rect x="628.54" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="663.41" y="240.28" width="25.51" height="25.51" fill="#448aff"/><rect x="698.28" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="733.14" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="768.01" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="802.87" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="837.74" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="872.61" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="907.47" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="942.34" y="240.28" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="977.2" y="240.28" width="25.51" height="25.51" fill="#448aff"/><rect x="105.55" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="140.42" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="175.28" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="210.15" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="245.02" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="279.88" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="314.75" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="349.61" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="384.48" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="419.35" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="454.21" y="272.59" width="25.51" height="25.51" fill="#448aff"/><rect x="489.08" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="523.94" y="272.59" width="25.51" height="25.51" fill="#448aff"/><rect x="558.81" y="272.59" width="25.51" height="25.51" fill="#448aff"/><rect x="593.68" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="628.54" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="663.41" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="698.28" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="733.14" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="768.01" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="802.87" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="837.74" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="872.61" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="907.47" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="942.34" y="272.59" width="25.51" height="25.51" fill="#448aff" opacity="0.4"/><rect x="977.2" y="272.59" width="25.51" height="25.51" fill="#448aff"/><rect x="105.55" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="140.42" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="175.28" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="210.15" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="245.02" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.7"/><rect x="279.88" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="314.75" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="349.61" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="384.48" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="419.35" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="454.21" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="489.08" y="304.91" width="25.51" height="25.51" fill="#448aff"/><rect x="523.94" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="558.81" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="593.68" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="628.54" y="304.91" width="25.51" height="25.51" fill="#448aff"/><rect x="663.41" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="698.28" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="733.14" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="768.01" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="802.87" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="837.74" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="872.61" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="907.47" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="942.34" y="304.91" width="25.51" height="25.51" fill="#448aff" opacity="0.2"/><rect x="977.2" y="304.91" width="25.51" height="25.51" fill="#448aff"/><circle cx="734.52" cy="363.89" r="34.87" fill="#767d9f"/><path d="M760.71,460.87q5.22,22.78,8.86,45.9c.73,4.58,1.38,9.41-.28,13.74-1.39,3.61-4.22,6.43-6.44,9.59s-3.9,7.21-2.55,10.83,5.29,5.6,9.05,6.62c10.76,2.9,22.23.79,32.94-2.35a53.29,53.29,0,0,0,13.81-5.72c4.54-2.88,8.26-6.88,11.68-11,15.61-18.93,25.83-41.65,35.45-64.23a39.12,39.12,0,0,1-33.11-13.34c-3.94-4.63-6.83-11.08-4.61-16.74-6.51,3.57-14.24,3.81-21.25,6.25a75.49,75.49,0,0,0-12.5,6.15q-7.18,4.15-14.28,8.46C772.07,458.29,767,461.19,760.71,460.87Z" transform="translate(-28 -141.34)" fill="#ae6e79"/><path d="M833.64,487.05c-6.11,11.89-14.06,23.32-25.41,30.4s-26.63,9-38,2c-5.6-3.42-9.84-8.62-14.73-13s-11-8.13-17.57-7.56c-7.24.63-12.91,6.28-17.76,11.69-7.36,8.22-14.47,16.79-19.68,26.52-10,18.7-12.37,40.56-11.93,61.76s3.51,42.29,3.58,63.49c.1,26.08-4.32,51.95-8.79,77.64,41.1-5.06,82.25,6,123.44,10.19,26.36,2.71,52.92,2.65,79.42,2.58,4.66,0,9.62-.12,13.5-2.7a18.2,18.2,0,0,0,5.59-6.64c3.66-6.75,5.13-14.45,6.15-22.06,2.59-19.22,2.67-38.68,2.74-58.08.18-47,.35-94.17-5.62-140.8-1.47-11.47-3.35-23-7.75-33.73s-11.58-20.6-21.62-26.35c-6.45-3.7-21.4-10.14-29-6.41C841.67,460.15,837.73,479.09,833.64,487.05Z" transform="translate(-28 -141.34)" fill="#767d9f"/><path d="M836.68,619.77c-1.55-29-7.86-59.95,5.57-85.69,3.3-6.32-8.54-14.21-4.88-20.33a92.08,92.08,0,0,0,10.06-23.93c.76-2.89,1.37-5.95.65-8.85-1.33-5.29-6.56-8.44-11-11.66-4.9-3.56-7.42-14.41-9-20.28s12.57,1.2,18.26-.89c7.9-2.89,17.94-1.07,25.82,1.86,4.4,1.62,9.18,1.76,13.87,1.88,9.11.24,18.25.47,27.29-.65,4.06-.51,8.13-1.28,12.21-1.05,10.41.59,19.46,7.71,25.62,16.13s10.08,18.23,15.13,27.35c4.21,7.6,9.23,14.78,12.82,22.69,3.18,7,5.19,14.52,7.18,22l5.13,19.19a25.58,25.58,0,0,1,1.26,8.51c-.26,3.07-1.62,5.93-3,8.66A164.12,164.12,0,0,1,971,603.2c-10.79,13.23-23.89,25.16-30.3,41-2.5,6.17-3.89,12.73-5.16,19.27a707.94,707.94,0,0,0-10.9,79.15,174.2,174.2,0,0,0-36.52-12.21,177.61,177.61,0,0,0-19-3c-5.59-.58-12.8.52-18.12-1-8.9-2.53-9.88-17.58-11.23-25.46-2.16-12.55-2.59-25.32-2.67-38C837,648.53,837.45,634.14,836.68,619.77Z" transform="translate(-28 -141.34)" fill="#4c4981"/><path d="M641.23,565.54c4.21,24,8.85,48.07,18,70.62-.23.22-.46.42-.69.62-.81.69-1.65,1.34-2.53,2-2.05,1.44-4.3,2.66-6,4.54a8,8,0,0,0-1.5,2.45,5.48,5.48,0,0,0,0,4.47c-4.77,2.11-10.31,1.46-15.66,1.26-4.61-.17-9.08,0-12.78,2.53-5.14,3.54-6.69,10.34-7.52,16.52q-.46,3.38-.79,6.77-.32,3.15-.52,6.32a188.61,188.61,0,0,0-.19,21q.08,1.92.21,3.84c-16.34-.39-31.23-8.91-45.32-17.19-3.22-1.89-6.54-3.88-8.63-7A15.8,15.8,0,0,1,555,674c0-.51.09-1,.16-1.52a41.58,41.58,0,0,1,2.29-8.68,107.2,107.2,0,0,1,19.19-32.65c3.58-4.18,7.61-8.27,9.28-13.52.73-2.29,1-4.72,1.74-7,3.32-9.88,15.3-14.55,19.4-24.14,1-2.29,1.46-4.8,2.7-7a17.63,17.63,0,0,1,4.25-4.75c.73-.61,1.49-1.2,2.24-1.79q10.54-8.26,20.31-17.45,1.82-1.71,3.6-3.46A59.48,59.48,0,0,0,641.23,565.54Z" transform="translate(-28 -141.34)" fill="#4c4981"/><path d="M742,494.56c-1.44,1.52-3,2.95-4.53,4.37l-.41.37-1.62,1.5a39,39,0,0,0-7.55,8.79l-.17.28c-5.1,9.13-3.21,20.37-1.79,30.74a261.55,261.55,0,0,1,2.37,39c-.26,18-2.38,35.88-2.42,53.86,0,4.08.09,8.15.27,12.23.29,6.63.79,13.25,1.39,19.87.65,7.26,1.43,14.51,2.16,21.76.58,5.61,1.13,11.21,1.59,16.81.23,2.9.45,5.79.63,8.69.21,3.4.38,6.81.48,10.21h0c.07,2.16.11,4.31.11,6.47,0,1.23,0,2.45,0,3.67q0,3.51-.19,7-.2,4.49-.61,9c-.31,3.27-.86,6.84-3.16,9.14-.14.14-.29.27-.44.4l-3.24-.4a332.72,332.72,0,0,0-67.3-1.2c.49-3.38.94-6.75,1.38-10.14.2-1.6.4-3.21.59-4.82q.33-2.76.63-5.52c.23-2,.44-4,.64-6q.78-7.73,1.37-15.47.87-11.29,1.32-22.62.22-5.41.34-10.83.17-6.72.16-13.45,0-6.54-.11-13.1c0-1.44-.06-2.88-.18-4.31a27.35,27.35,0,0,0-.53-3.83,49.87,49.87,0,0,0-3-8.48c-.22-.52-.43-1-.64-1.55-.12-.27-.23-.55-.34-.82,5.76-5.13,9.86-12,13.8-18.76,6.39-10.89,12.93-22.26,14-34.84s-5.18-26.71-17.2-30.55c-3.27-1-6.73-1.28-10.1-1.87-3.18-.56-9.81-1.83-13.49-4.11q-3,3.08-6,6.05a22.15,22.15,0,0,1,2.17-8.71l1.42.07a2.71,2.71,0,0,1-.16-1c0-1.07.74-2.28,2.32-3.62,4.71-4,12.12-4.89,15.09-10.3,1.24-2.25,1.45-4.93,2.45-7.29,2.87-6.73,11.11-9.21,16.07-14.59s6.2-13,10.21-19a28.62,28.62,0,0,1,12-10c.4-.19.81-.38,1.22-.55,8.3-3.55,18.16-4.36,26.76-4.34,3.34,0,12,.1,16.24,1.79a5.32,5.32,0,0,1,1.85,1.13C752.37,480.61,745.34,491,742,494.56Z" transform="translate(-28 -141.34)" fill="#4c4981"/><path d="M642.72,542.69a60.88,60.88,0,0,1,46.74,4.87c7.2,4,13.66,9.58,17.62,16.78,5.95,10.8,5.69,23.82,5.27,36.15-.21,6.17-.48,12.56-3.2,18.1C706,625,700.06,629.4,694,633a42.24,42.24,0,0,1-12.32,5.33c-6.72,1.46-13.7.22-20.47-1-7.36-1.36-15.26-3-20.37-8.48-3-3.18-4.64-7.31-6.26-11.35q-3.49-8.75-7-17.48c-4.05-10.11-5.42-18.52-.07-28.37,2.43-4.49,5.4-8.69,7.8-13.21C636.51,556.14,640.81,543.28,642.72,542.69Z" transform="translate(-28 -141.34)" fill="#4c4981"/><path d="M1063,715.56v29.9a167.3,167.3,0,0,1-64.73,12.8H728.58c-.14.14-.29.27-.44.4l-3.24-.4H245.17c-40.25,0-77.55-10.86-108.14-29.36V683.25l230.72-26.63.18,0L502.29,668l34.77,3,18.06,1.53,37.38,3.17,19.23,1.63,28,2.38,3.94.33,20.18,1.71L691.23,684l38.5,3.26,64.18,5.45,45.15,3.83,74.14,6.29,14.1,1.19,1.52.13,1.32.11,18.62,1.58,20.44,1.74,2.37.2Z" transform="translate(-28 -141.34)" fill="#504f60"/><polygon points="764 573.12 474.86 523.77 463.65 580.46 596.19 596.33 637 601.44 749.26 579.33 764 573.12" fill="#9c9ca1"/><path d="M642.33,739.94l144.86-27.23a5,5,0,0,1,5.94,4.93h0a5,5,0,0,1-4.09,4.93L647.57,749.06Z" transform="translate(-28 -141.34)" fill="#9c9ca1"/><path d="M705.17,654.31c4.51-.42,9.08-1.13,13.14-3.13,5-2.49,8.89-6.78,13.52-9.94,10.18-7,23.8-7.94,35.47-3.92s21.41,12.63,28.23,22.91c4.53,6.85,7.93,15.59,4.73,23.15a30.51,30.51,0,0,1-4.12,6.44l-8.34,10.9a29,29,0,0,1-5.66,6.09c-3.12,2.27-7,3.2-10.82,3.76-10.15,1.48-20.48.64-30.71,1.32-17.57,1.17-34.73,6.83-52.34,6.64-10.12-.11-20.11-2.15-30-4.19l-43.77-9c-7.62-1.56-16.23-3.84-19.82-10.75-1.61-3.11-1.91-6.71-2.1-10.21-.52-9.64,0-20.36,6.68-27.31,6.28-6.52,16.21-8.58,23.71-13.4,9.18-5.91,12.21-4,21.89.44A120,120,0,0,0,705.17,654.31Z" transform="translate(-28 -141.34)" fill="#ae6e79"/><path d="M705.17,654.31c4.51-.42,9.08-1.13,13.14-3.13,5-2.49,8.89-6.78,13.52-9.94,10.18-7,23.8-7.94,35.47-3.92s21.41,12.63,28.23,22.91c4.53,6.85,7.93,15.59,4.73,23.15a30.51,30.51,0,0,1-4.12,6.44l-8.34,10.9a29,29,0,0,1-5.66,6.09c-3.12,2.27-7,3.2-10.82,3.76-10.15,1.48-20.48.64-30.71,1.32-17.57,1.17-34.73,6.83-52.34,6.64-10.12-.11-20.11-2.15-30-4.19l-43.77-9c-7.62-1.56-16.23-3.84-19.82-10.75-1.61-3.11-1.91-6.71-2.1-10.21-.52-9.64,0-20.36,6.68-27.31,6.28-6.52,16.21-8.58,23.71-13.4,9.18-5.91,12.21-4,21.89.44A120,120,0,0,0,705.17,654.31Z" transform="translate(-28 -141.34)" opacity="0.05"/><path d="M880.94,640.6c-12.28,4.75-24.63,9.52-37.49,12.35-21.56,4.75-44.12,4-65.51,9.43-11.3,2.88-22.53,7.52-34.14,6.58-5.19-.42-10.2-2-15.25-3.2-28.37-7-60.62-4.73-83.66,13.27-7.88,6.15-14.33,13.82-20.18,22a14.7,14.7,0,0,0,5.91,21.88A86.62,86.62,0,0,0,659,730.48c13.13,1.16,26.32-.7,39.38-2.56,19.38-2.75,38.77-5.51,58.1-8.6,6.94-1.11,13.88-2.26,20.86-3.14,50.23-6.35,101.37,1.37,151.73-3.93,5.09-.54,10.27-1.24,14.9-3.41,11.72-5.5,17.52-20,15.1-32.74s-11.76-23.33-23-29.83c-9.42-5.47-19.58-7.68-30.07-10C896.26,634,890.32,637,880.94,640.6Z" transform="translate(-28 -141.34)" fill="#ae6e79"/><path d="M988.67,564.44c5.54,7.26,6.72,17,6.12,26.09s-2.76,18.08-3.08,27.21c-.44,12.52,2.58,25,2.07,37.48-.36,8.73-2.43,17.29-4.88,25.67-2.89,9.89-7.07,20.52-16.2,25.27-12.12,6.31-37.54,2.76-50.29,7.7,1.16-7.23,12.28-17.7,13.44-24.93.8-5,1.61-10.14.75-15.15-1.1-6.39-4.85-12.06-9.3-16.78-7.08-7.51-16.32-13.16-26.47-15s-35-.33-43.12,6.08c-1-6.62,17.6-13,24.14-14.43,3.26-.73,7-.32,9.61-2.39,5-3.92,1.37-11.73,1.61-18,.19-5,3.11-9.58,3.7-14.58,1-8-4.22-16.15-2.17-24,.76-2.9,2.45-5.45,3.62-8.21,3.56-8.45,2-18.09.1-27.07-1.18-5.64-2.33-12,.81-16.81,2.91-4.49,11.17,11.5,16.46,10.76,17.47-2.45,33.28-15.4,47.39-4.8,7.19,5.4,8.13,11,11,18.71C976.77,554.6,984,558.36,988.67,564.44Z" transform="translate(-28 -141.34)" opacity="0.1"/><path d="M991.67,564.44c5.54,7.26,6.72,17,6.12,26.09s-2.76,18.08-3.08,27.21c-.44,12.52,2.58,25,2.07,37.48-.36,8.73-2.43,17.29-4.88,25.67-2.89,9.89-7.07,20.52-16.2,25.27-12.12,6.31-37.54,2.76-50.29,7.7,1.16-7.23,12.28-17.7,13.44-24.93.8-5,1.61-10.14.75-15.15-1.1-6.39-4.85-12.06-9.3-16.78-7.08-7.51-16.32-13.16-26.47-15s-35-.33-43.12,6.08c-1-6.62,17.6-13,24.14-14.43,3.26-.73,7-.32,9.61-2.39,5-3.92,1.37-11.73,1.61-18,.19-5,3.11-9.58,3.7-14.58,1-8-4.22-16.15-2.17-24,.76-2.9,2.45-5.45,3.62-8.21,3.56-8.45,2-18.09.1-27.07-1.18-5.64-2.33-12,.81-16.81,2.91-4.49,8.6-6.19,13.89-6.94a68.42,68.42,0,0,1,50,12.9c7.19,5.4,8.13,11,11,18.71C979.77,554.6,987,558.36,991.67,564.44Z" transform="translate(-28 -141.34)" fill="#4c4981"/><path d="M330,517.06,384.37,718a12.55,12.55,0,0,0,10.91,9.21L640,750.72a12.54,12.54,0,0,0,13.38-15.48L593.84,492.86a12.54,12.54,0,0,0-13.12-9.51L341.13,501.27A12.54,12.54,0,0,0,330,517.06Z" transform="translate(-28 -141.34)" fill="#9c9ca1"/><ellipse cx="787.11" cy="387.68" rx="26.9" ry="27.25" fill="#fff"/><path d="M837.2,479.31s5.67,16.86-11.06,23.95L824,507l10.48,10.34S847.4,493.77,846,485.4C846,485.4,844,476.9,837.2,479.31Z" transform="translate(-28 -141.34)" fill="#fff"/><circle cx="790.2" cy="388.99" r="25.94" fill="#448aff"/><path d="M846.13,489.23l-4.12-6.8-6-.85c1.28-22.39-4.53-29.06-4.53-29.06l-1.35-.13-5.88-.57-11.06-11.48v-3.26c15.54,1.85,24.13,9.23,28.77,17.88C850.16,470.14,846.13,489.23,846.13,489.23Z" transform="translate(-28 -141.34)" fill="#448aff"/><path d="M830.18,448.27v4.12l-5.88-.57-11.06-11.48S830.35,444.17,830.18,448.27Z" transform="translate(-28 -141.34)" stroke="#4c4981" stroke-miterlimit="10" opacity="0.1"/><path d="M846.13,489.23l-4.12-6.8V455C850.16,470.14,846.13,489.23,846.13,489.23Z" transform="translate(-28 -141.34)" stroke="#4c4981" stroke-miterlimit="10" opacity="0.1"/><ellipse cx="757.11" cy="518.2" rx="14.43" ry="26.32" transform="translate(-185.67 306.64) rotate(-30)" fill="#fff"/><path d="M761,516c7.27,12.59,16.19,21,9.29,25s-27,2-34.27-10.6-.67-30,6.23-34S753.72,503.38,761,516Z" transform="translate(-28 -141.34)" fill="#448aff"/><path d="M825.73,425.3c0,40.23-27.53,79-67.76,79a72.85,72.85,0,0,1,0-145.7C798.2,358.64,825.73,385.06,825.73,425.3Z" transform="translate(-28 -141.34)" opacity="0.1"/><circle cx="729.97" cy="288.15" r="72.85" fill="#ae6e79"/><path d="M751.57,397.21c8.67,3.19,13.8,12.15,21.58,17.14,11,7,25.32,5.19,37.88,1.73,7-1.91,14.32-4.24,21.21-2.12a6,6,0,0,0,3.23.46c1.5-.43,2.24-2.09,2.73-3.57,8.52-25.4,4.69-54.17-8.17-77.67-3.32-6.06-7.3-11.92-12.78-16.13-4.32-3.31-9.4-5.48-14.52-7.33a145,145,0,0,0-28.88-7.13,17.94,17.94,0,0,0-5.27-.17c-2.41.39-4.57,1.69-6.72,2.85A68.78,68.78,0,0,1,732,313.38c-14,.53-30-2.77-40.79,6.21-13,10.77-9.76,31.78-18.19,46.4-5.58,9.67-16.34,16.69-18.11,27.7a25.57,25.57,0,0,0,.63,10.07c4.12,16.94,20.52,30.06,38,30.37a14.42,14.42,0,0,0,7.76-1.59,17.55,17.55,0,0,0,4.09-3.89C716.84,415.09,729.94,389.25,751.57,397.21Z" transform="translate(-28 -141.34)" fill="#444053"/><path d="M838.2,403.48c-.49,1.48-1.23,3.14-2.73,3.57a6,6,0,0,1-3.23-.46c-6.89-2.12-14.25.21-21.2,2.12-12.57,3.46-26.92,5.31-37.88-1.73-7.79-5-12.91-14-21.59-17.14-21.63-8-34.73,17.88-46.21,31.44a17.55,17.55,0,0,1-4.09,3.89,14.42,14.42,0,0,1-7.76,1.59c-17.42-.31-33.83-13.43-38-30.37-.23-1-.43-2-.58-3,0,.09,0,.17-.05.26a25.57,25.57,0,0,0,.63,10.07c4.12,16.94,20.53,30.06,38,30.37a14.42,14.42,0,0,0,7.76-1.59,17.55,17.55,0,0,0,4.09-3.89c11.48-13.56,24.58-39.4,46.21-31.44,8.68,3.19,13.8,12.15,21.59,17.14,11,7,25.31,5.19,37.88,1.73,7-1.91,14.31-4.24,21.2-2.12a6,6,0,0,0,3.23.46c1.5-.43,2.24-2.09,2.73-3.57a90.29,90.29,0,0,0,4.48-32.26A88.8,88.8,0,0,1,838.2,403.48Z" transform="translate(-28 -141.34)" opacity="0.1"/></svg>
Binary file
metadata ADDED
@@ -0,0 +1,106 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: the-plain-portfolio
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Rosário Pereira Fernandes
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-02-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.5'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '12.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '12.0'
55
+ description:
56
+ email:
57
+ - rosariofernandes51@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE
63
+ - README.md
64
+ - _includes/footer.html
65
+ - _includes/head.html
66
+ - _includes/header.html
67
+ - _includes/image.html
68
+ - _layouts/compress.html
69
+ - _layouts/default.html
70
+ - _layouts/page.html
71
+ - _layouts/post.html
72
+ - _sass/main.scss
73
+ - _sass/syntax.scss
74
+ - assets/blog_posts.svg
75
+ - assets/core.scss
76
+ - assets/current_projects.svg
77
+ - assets/favicon.png
78
+ - assets/logo_wrapper.png
79
+ - assets/open_source.svg
80
+ - assets/touch-icon.png
81
+ homepage: https://github.com/rosariopfernandes/the-plain-portfolio
82
+ licenses:
83
+ - MIT
84
+ metadata:
85
+ plugin_type: theme
86
+ post_install_message:
87
+ rdoc_options: []
88
+ require_paths:
89
+ - lib
90
+ required_ruby_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ required_rubygems_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ requirements: []
101
+ rubyforge_project:
102
+ rubygems_version: 2.7.6
103
+ signing_key:
104
+ specification_version: 4
105
+ summary: A minimalist Jekyll theme for portfolios
106
+ test_files: []