mkctx 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,9 +1,13 @@
1
+ <h1 align="center">mkctx - Make Context</h1>
2
+
1
3
  <p align="center">
2
- <img src="./favicon.svg" alt="mkctx logo" width="120" height="140" style="background: #fff; padding: 10px; border-radius: 15px" >
4
+ <picture>
5
+ <source media="(prefers-color-scheme: dark)" srcset="./black-favicon.svg">
6
+ <source media="(prefers-color-scheme: light)" srcset="./white-favicon.svg">
7
+ <img src="./black-favicon.svg" alt="mkcommit logo" width="150">
8
+ </picture>
3
9
  </p>
4
10
 
5
- <h1 align="center">mkctx - Make Context</h1>
6
-
7
11
  <p align="center">
8
12
  A powerful command-line tool that generates comprehensive markdown context files from your project code, perfect for use with AI assistants like ChatGPT, Claude, and others.
9
13
  </p>
@@ -33,16 +37,19 @@ npm install -g mkctx
33
37
  ## Quick Start
34
38
 
35
39
  ### Generate context for your project
40
+
36
41
  ```bash
37
42
  mkctx
38
43
  ```
39
44
 
40
45
  ### Create configuration file
46
+
41
47
  ```bash
42
48
  mkctx config
43
49
  ```
44
50
 
45
51
  ### Show help
52
+
46
53
  ```bash
47
54
  mkctx help
48
55
  ```
@@ -50,6 +57,7 @@ mkctx help
50
57
  ## Usage
51
58
 
52
59
  ### Basic Usage
60
+
53
61
  Run `mkctx` in your project root to generate a `context.md` file containing all your project code:
54
62
 
55
63
  ```bash
@@ -58,6 +66,7 @@ mkctx
58
66
  ```
59
67
 
60
68
  ### Dynamic Mode
69
+
61
70
  If no configuration file exists, or if `dynamic: true` is set, mkctx will prompt you for the source path:
62
71
 
63
72
  ```
@@ -67,6 +76,7 @@ If no configuration file exists, or if `dynamic: true` is set, mkctx will prompt
67
76
  ```
68
77
 
69
78
  ### Configuration
79
+
70
80
  Create a configuration file to customize behavior:
71
81
 
72
82
  ```bash
@@ -74,6 +84,7 @@ mkctx config
74
84
  ```
75
85
 
76
86
  This creates:
87
+
77
88
  - `mkctx.config.json` - Configuration file
78
89
  - `mkctx/` directory - Output folder (added to .gitignore)
79
90
 
@@ -92,14 +103,14 @@ The `mkctx.config.json` file supports the following options:
92
103
  }
93
104
  ```
94
105
 
95
- | Option | Description | Default |
96
- |--------|-------------|---------|
97
- | `src` | Source directory to scan | `"./src"` |
98
- | `ignore` | Comma-separated patterns to ignore | `"*.log, temp/, node_modules/, .git/"` |
99
- | `output` | Output directory for context file | `"./mkctx"` |
100
- | `first_comment` | Comment added at the beginning of the context | `"/* Project Context */"` |
101
- | `last_comment` | Comment added at the end of the context | `"/* End of Context */"` |
102
- | `dynamic` | Prompt for path on each run | `false` |
106
+ | Option | Description | Default |
107
+ | --------------- | --------------------------------------------- | -------------------------------------- |
108
+ | `src` | Source directory to scan | `"./src"` |
109
+ | `ignore` | Comma-separated patterns to ignore | `"*.log, temp/, node_modules/, .git/"` |
110
+ | `output` | Output directory for context file | `"./mkctx"` |
111
+ | `first_comment` | Comment added at the beginning of the context | `"/* Project Context */"` |
112
+ | `last_comment` | Comment added at the end of the context | `"/* End of Context */"` |
113
+ | `dynamic` | Prompt for path on each run | `false` |
103
114
 
104
115
  ## Ignore Patterns
105
116
 
@@ -112,6 +123,7 @@ mkctx supports several pattern types:
112
123
  ### Default System Ignores
113
124
 
114
125
  These are always ignored automatically:
126
+
115
127
  - `.git`, `.svn`, `.hg`
116
128
  - `node_modules`
117
129
  - `.DS_Store`, `Thumbs.db`
@@ -123,7 +135,7 @@ These are always ignored automatically:
123
135
  The generated `context.md` file contains your project code in this format:
124
136
 
125
137
  ````markdown
126
- /* Project Context */
138
+ /_ Project Context _/
127
139
 
128
140
  ```javascript
129
141
  // src/index.js
@@ -137,12 +149,13 @@ export function helper() {
137
149
  }
138
150
  ```
139
151
 
140
- /* End of Context */
152
+ /_ End of Context _/
141
153
  ````
142
154
 
143
155
  ## Examples
144
156
 
145
157
  ### Include only specific directories
158
+
146
159
  ```json
147
160
  {
148
161
  "src": "./src",
@@ -153,6 +166,7 @@ export function helper() {
153
166
  ```
154
167
 
155
168
  ### Generate context for documentation
169
+
156
170
  ```json
157
171
  {
158
172
  "src": ".",
@@ -163,6 +177,7 @@ export function helper() {
163
177
  ```
164
178
 
165
179
  ### Always prompt for path
180
+
166
181
  ```json
167
182
  {
168
183
  "src": "./src",
@@ -203,18 +218,21 @@ mkctx automatically detects and applies proper syntax highlighting for:
203
218
 
204
219
  ## Requirements
205
220
 
206
- - **Node.js** 14.0+
221
+ - **Node.js** 14.0+
207
222
  - **npm** (for installation)
208
223
 
209
224
  ## Troubleshooting
210
225
 
211
226
  ### Command not found
227
+
212
228
  If `mkctx` is not found after installation:
229
+
213
230
  1. Make sure npm global bin is in your PATH
214
231
  2. Try: `npm bin -g` to see where global packages are installed
215
232
  3. Restart your terminal
216
233
 
217
234
  ### Permission errors (Unix)
235
+
218
236
  ```bash
219
237
  sudo npm install -g mkctx
220
238
  ```
@@ -224,6 +242,7 @@ Or fix npm permissions: https://docs.npmjs.com/resolving-eacces-permissions-erro
224
242
  ## Changelog
225
243
 
226
244
  ### v2.0.0
245
+
227
246
  - Complete rewrite in Node.js (no more Go binaries)
228
247
  - Added dynamic mode for interactive path selection
229
248
  - Improved language detection
@@ -231,6 +250,7 @@ Or fix npm permissions: https://docs.npmjs.com/resolving-eacces-permissions-erro
231
250
  - Zero external dependencies
232
251
 
233
252
  ### v1.x
253
+
234
254
  - Initial Go-based implementation
235
255
 
236
256
  ## Contributing
package/bin/mkctx.js CHANGED
@@ -7,13 +7,13 @@ const readline = require('readline');
7
7
  const CONFIG_FILE = 'mkctx.config.json';
8
8
 
9
9
  const defaultConfig = {
10
- src: './src',
11
- ignore: '*.log, temp/, node_modules/, .git/, dist/, build/',
12
- output: './mkctx',
13
- first_comment: '/* Project Context */',
14
- last_comment: '/* End of Context */',
15
- dynamic: false
16
- };
10
+ "src": ".",
11
+ "ignore": "mkctx.config.json, pnpm-lock.yaml, **/.titan/, mkctx/, node_modules/, .git/, dist/, build/, target/, .next/, out/, .cache, package-lock.json, README.md, *.log, temp/, tmp/, coverage/, .nyc_output, .env, .env.local, .env.development.local, .env.test.local, .env.production.local, npm-debug.log*, yarn-debug.log*, yarn-error.log*, .npm, .yarn-integrity, .parcel-cache, .vuepress/dist, .svelte-kit, **/*.rs.bk, .idea/, .vscode/, .DS_Store, Thumbs.db, *.swp, *.swo, .~lock.*, Cargo.lock, .cargo/registry/, .cargo/git/, .rustup/, *.pdb, *.dSYM/, *.so, *.dll, *.dylib, *.exe, *.lib, *.a, *.o, *.rlib, *.d, *.tmp, *.bak, *.orig, *.rej, *.pyc, *.pyo, *.class, *.jar, *.war, *.ear, *.zip, *.tar.gz, *.rar, *.7z, *.iso, *.img, *.dmg, *.pdf, *.doc, *.docx, *.xls, *.xlsx, *.ppt, *.pptx",
12
+ "output": "./mkctx",
13
+ "first_comment": "/* Project Context */",
14
+ "last_comment": "/* End of Context */",
15
+ "dynamic": false
16
+ }
17
17
 
18
18
  // Mapeo de extensiones a lenguajes para mejor resaltado de sintaxis
19
19
  const langMap = {
@@ -315,9 +315,9 @@ function shouldIgnore(fullPath, name, relativePath, patterns) {
315
315
  // Directorio (temp/, dist/)
316
316
  if (pattern.endsWith('/')) {
317
317
  const dir = pattern.slice(0, -1);
318
- if (fullPath.includes(path.sep + dir + path.sep) ||
319
- fullPath.includes(dir + path.sep) ||
320
- name === dir) {
318
+ if (fullPath.includes(path.sep + dir + path.sep) ||
319
+ fullPath.includes(dir + path.sep) ||
320
+ name === dir) {
321
321
  return true;
322
322
  }
323
323
  }
@@ -439,12 +439,12 @@ function buildContent(files, config) {
439
439
  content += '```' + lang + '\n';
440
440
  content += '// ' + relativePath + '\n';
441
441
  content += fileContent;
442
-
442
+
443
443
  // Asegurar que termina con newline
444
444
  if (!fileContent.endsWith('\n')) {
445
445
  content += '\n';
446
446
  }
447
-
447
+
448
448
  content += '```\n\n';
449
449
  }
450
450
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mkctx",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Generate markdown context files from your project code for AI assistants",
5
5
  "main": "bin/mkctx.js",
6
6
  "bin": {
@@ -30,7 +30,7 @@
30
30
  "code-documentation",
31
31
  "project-context"
32
32
  ],
33
- "author": "Your Name <your.email@example.com>",
33
+ "author": "David200197",
34
34
  "license": "MIT",
35
35
  "repository": {
36
36
  "type": "git",
@@ -54,4 +54,4 @@
54
54
  "linux",
55
55
  "win32"
56
56
  ]
57
- }
57
+ }
package/favicon.svg DELETED
@@ -1,5 +0,0 @@
1
- <svg width="164" height="194" viewBox="0 0 164.37044 194.44035" xmlns="http://www.w3.org/2000/svg">
2
- <g transform="translate(-21.493657,-47.985515)">
3
- <path fill="#000000" d="m 113.34675,241.91651 c -5.33297,-1.39692 -9.51517,-5.87489 -10.77484,-11.53687 -0.59493,-2.67409 -0.41231,-7.40107 0.38267,-9.90489 1.4657,-4.61629 5.54113,-8.49263 10.32287,-9.81857 2.00394,-0.55568 6.10108,-0.64641 8.28183,-0.18341 4.9645,1.05404 9.38772,5.49662 9.91154,9.95492 l 0.16321,1.38906 h -3.97692 c -3.90279,0 -3.97976,-0.0111 -4.12895,-0.59531 -0.24867,-0.97381 -1.67651,-2.49331 -2.89897,-3.08509 -1.30625,-0.63235 -3.36794,-0.72681 -5.04546,-0.23116 -0.68858,0.20344 -1.59302,0.8227 -2.45963,1.68407 -1.88095,1.86956 -2.58261,4.08851 -2.40386,7.60197 0.18511,3.63824 1.5037,6.07002 4.01399,7.40268 1.4516,0.77062 4.86002,0.81833 6.24276,0.0874 1.34783,-0.7125 2.32814,-1.71547 2.66023,-2.72172 l 0.29122,-0.8824 h 3.90413 c 2.14728,0 3.96671,0.0626 4.04318,0.13904 0.30828,0.30828 -0.41056,2.99948 -1.19584,4.47698 -1.64714,3.09909 -5.08465,5.57698 -8.8411,6.37301 -2.50807,0.53148 -6.13568,0.46754 -8.49206,-0.14969 z m -91.670083,-0.42578 c -0.10066,-0.10065 -0.18301,-7.06652 -0.18301,-15.4797 v -15.29669 l 0.59531,-0.14752 c 0.32742,-0.0811 2.14313,-0.11317 4.0349,-0.0712 l 3.43958,0.0763 0.13229,2.38125 0.1323,2.38125 0.61216,-0.98453 c 0.91799,-1.4764 2.83034,-3.02962 4.50829,-3.66166 1.23843,-0.46648 1.92633,-0.546 4.01961,-0.46467 2.14575,0.0834 2.75365,0.21358 4.04299,0.86592 1.42061,0.71876 3.40238,2.52224 4.08635,3.71872 0.29324,0.51296 0.31226,0.50955 0.75435,-0.13523 0.85821,-1.2517 2.81561,-2.90555 4.30076,-3.63379 1.29782,-0.63638 1.86583,-0.74179 4.44451,-0.8248 2.30796,-0.0743 3.26563,0.007 4.36562,0.37074 2.81769,0.93163 4.76023,2.7248 5.83876,5.38977 0.5898,1.45735 0.59743,1.62992 0.59743,13.51474 v 12.03854 l -3.81618,0.0737 c -2.87439,0.0555 -3.8699,-0.01 -4.03385,-0.26458 -0.11971,-0.18605 -0.20754,-4.68406 -0.19518,-9.99557 0.0237,-10.16592 -0.003,-10.42553 -1.22919,-12.03335 -1.67889,-2.20113 -5.73367,-2.25509 -7.71245,-0.10263 -1.47472,1.60416 -1.52356,1.97145 -1.66628,12.53286 l -0.13229,9.78958 h -3.96875 -3.96875 l -0.13229,-10.18646 c -0.0728,-5.60255 -0.24096,-10.42458 -0.37378,-10.71562 -0.89084,-1.95204 -2.54739,-3.03109 -4.6533,-3.03109 -2.10383,0 -4.24443,1.39018 -5.07469,3.29567 -0.25574,0.58694 -0.38077,3.37896 -0.47985,10.71563 l -0.134,9.92187 -3.98419,0.0728 c -2.19129,0.04 -4.06653,-0.01 -4.16718,-0.11025 z m 52.380881,-0.007 c -0.097,-0.097 -0.17639,-9.7388 -0.17639,-21.4262 v -21.24982 l 0.59531,-0.14752 c 0.32742,-0.0811 2.14313,-0.11317 4.0349,-0.0712 l 3.43958,0.0763 0.0688,11.9724 c 0.0578,10.05253 0.12824,11.97239 0.43924,11.97239 0.40546,0 1.92778,-1.67521 7.27882,-8.00989 l 3.525389,-4.17343 4.39802,0.0724 c 4.299053,0.0708 4.398023,0.0852 4.398023,0.64026 0,0.36501 -1.84299,2.6192 -5.159373,6.31054 -7.125599,7.93119 -6.746249,7.44686 -6.313139,8.06025 0.19801,0.28041 2.800789,3.68153 5.783969,7.55803 6.589093,8.56222 6.169563,7.97708 5.961153,8.31428 -0.10972,0.17753 -1.85853,0.2733 -4.852293,0.26572 l -4.68073,-0.0118 -4.365629,-5.82584 c -5.04564,-6.7333 -5.1452,-6.85046 -5.8213,-6.85046 -0.48761,0 -0.50898,0.25639 -0.50795,6.09303 6e-4,3.35116 -0.0704,6.20866 -0.15774,6.35 -0.17733,0.28692 -7.60648,0.36281 -7.8887,0.0806 z m 70.335062,-0.0786 c -2.45805,-0.64201 -4.31494,-2.23319 -5.21185,-4.46607 -0.57666,-1.4356 -0.60469,-1.86099 -0.68723,-10.42635 l -0.086,-8.92969 h -2.62983 -2.62984 v -3.43958 -3.43958 h 2.63876 2.63876 l 0.0732,-3.90261 0.0732,-3.9026 4.0349,-0.073 4.03489,-0.073 v 3.84335 3.84335 l 2.57969,0.0375 c 2.40776,0.035 3.14052,0.0685 3.96875,0.18187 0.2453,0.0336 0.33073,0.9337 0.33073,3.48484 v 3.43958 h -3.45087 -3.45087 l 0.0774,7.82725 0.0774,7.82726 0.86407,0.7717 c 0.82625,0.73793 0.97424,0.77171 3.38134,0.77171 h 2.51727 l -0.074,3.37343 -0.074,3.37344 -4.10104,0.0423 c -2.25557,0.0233 -4.45823,-0.051 -4.89479,-0.165 z m 11.38505,0.003 c -0.22217,-0.35947 -0.12403,-0.51856 5.15141,-8.35152 2.54661,-3.7812 4.66888,-6.96117 4.71615,-7.06659 0.0473,-0.10543 -2.01975,-3.37451 -4.59337,-7.26462 -2.57362,-3.89011 -4.743,-7.23892 -4.82085,-7.44179 -0.0779,-0.20287 0.0246,-0.47408 0.22774,-0.60269 0.44383,-0.28102 8.18686,-0.31658 8.58848,-0.0394 0.15493,0.10691 1.51769,2.19084 3.02836,4.63094 1.51067,2.4401 2.85797,4.39945 2.994,4.35411 0.13604,-0.0454 1.51534,-2.10133 3.06512,-4.56885 l 2.81778,-4.4864 h 4.06414 c 3.41787,0 4.10612,0.0665 4.32807,0.41841 0.20754,0.32901 -0.74135,1.88351 -4.44138,7.27604 -2.58792,3.7717 -4.75998,7.06049 -4.82681,7.30843 -0.0752,0.27908 1.72122,3.19804 4.71609,7.66295 2.66067,3.96669 4.89022,7.48748 4.95454,7.82398 l 0.11696,0.61182 -4.45842,-0.0727 -4.45843,-0.0727 -2.97184,-4.732 c -1.63451,-2.6026 -3.03232,-4.86479 -3.10625,-5.02708 -0.16406,-0.36019 -0.075,-0.48479 -3.7251,5.21226 l -2.91314,4.54682 -4.14476,0.0728 c -2.56197,0.045 -4.20728,-0.0284 -4.30849,-0.19217 z M 44.350267,189.27332 c -5.8481,-0.85707 -10.63511,-5.4096 -11.88359,-11.3015 -0.57953,-2.73497 -0.57165,-116.084502 0.008,-118.54402 1.26338,-5.35839 5.52827,-9.736089 10.73147,-11.015312 1.55089,-0.381293 5.25197,-0.426973 34.594271,-0.426973 18.071659,0 32.857572,0.07092 32.857572,0.157594 0,0.08668 -0.2529,0.512756 -0.562,0.946843 -0.6433,0.903443 -1.80536,4.038598 -1.81367,4.893194 -0.0148,1.523596 2.49313,1.410702 -31.338992,1.410702 -34.823361,0 -32.783091,-0.112185 -34.992141,1.924048 -0.65329,0.602182 -1.44565,1.576477 -1.76081,2.165101 l -0.57301,1.070226 -0.0685,57.669907 c -0.0755,63.51098 -0.19049,58.96472 1.54527,61.0705 0.44614,0.54124 1.36794,1.31137 2.04845,1.71141 l 1.23729,0.72734 h 58.635103 58.6351 l 1.29333,-0.88257 c 1.40132,-0.95625 2.46812,-2.28564 3.00738,-3.74764 0.27034,-0.73291 0.35636,-7.4371 0.41249,-32.14687 l 0.0709,-31.22083 h 3.66346 3.66346 v 31.61771 31.6177 l -0.58422,1.85209 c -1.70136,5.39363 -6.04873,9.26747 -11.59017,10.32772 -1.74558,0.33399 -9.93989,0.38331 -58.95565,0.35489 -31.310565,-0.0181 -57.537035,-0.12222 -58.281055,-0.23126 z m 17.17524,-27.95225 c -1.29015,-0.457 -2.98235,-2.04859 -3.68853,-3.4692 -0.46361,-0.93265 -0.49654,-2.06727 -0.5654,-19.48559 -0.0815,-20.60599 -0.1087,-20.24409 1.68052,-22.33439 0.53102,-0.62037 1.54349,-1.42085 2.24994,-1.77883 l 1.28444,-0.65088 h 28.529361 28.529352 l 1.43302,0.85989 c 1.5213,0.91287 2.6799,2.35852 3.15138,3.93217 0.19422,0.64826 0.28698,6.85511 0.28698,19.20244 0,20.29337 0.054,19.63441 -1.78559,21.78357 -0.52971,0.61885 -1.56504,1.40547 -2.30074,1.74805 l -1.33763,0.62287 -28.178122,-0.0183 c -24.232671,-0.0157 -28.333661,-0.0734 -29.288981,-0.4118 z m 47.075983,-12.5415 c 0.54228,-0.15061 1.52558,-0.68573 2.18511,-1.18915 0.65952,-0.50343 1.25763,-0.91533 1.32913,-0.91533 0.0715,0 0.13001,0.40815 0.13001,0.90701 0,0.89588 0.017,0.90911 1.38906,1.07939 0.76398,0.0948 1.86531,0.13315 2.44739,0.0852 l 1.05834,-0.0872 v -12.17083 -12.17083 l -2.57969,-0.0757 -2.57969,-0.0757 v 4.26353 4.26354 l -1.0694,-0.91538 c -2.68653,-2.29956 -6.9541,-1.89018 -9.33885,0.89586 -1.2627,1.47517 -1.782898,3.06941 -1.954898,5.99101 -0.158355,2.69001 0.21058,5.1672 1.000048,6.71468 0.61616,1.20778 2.59711,2.97575 3.74709,3.34424 1.15315,0.3695 3.01823,0.39404 4.23635,0.0557 z m -2.28058,-4.77532 c -1.15135,-0.90565 -1.74809,-2.37792 -1.74809,-4.31285 0,-1.99804 0.2967,-2.9238 1.261,-3.93459 1.5488,-1.62346 3.9602,-1.43556 5.46025,0.42545 0.74371,0.92268 0.82669,1.21586 0.89863,3.175 0.0927,2.52326 -0.33864,3.64302 -1.77203,4.60058 -1.19601,0.79899 -3.11538,0.82072 -4.09976,0.0464 z m -40.415623,4.41048 c 0.84231,-0.43558 1.36128,-1.41624 1.36128,-2.5723 0,-1.2091 -1.48961,-2.60692 -2.77812,-2.60692 -0.76055,0 -1.17966,0.2007 -1.87854,0.89958 -2.35294,2.35294 0.31672,5.81996 3.29538,4.27964 z m 9.034201,-5.37413 c 0,-6.06168 0.16311,-7.00628 1.35384,-7.8403 0.69333,-0.48563 2.38896,-0.571 3.15873,-0.15903 1.16194,0.62185 1.30826,1.47587 1.30826,7.63572 v 5.81776 l 1.12448,0.16715 c 0.61847,0.0919 1.71979,0.12899 2.4474,0.0824 l 1.32292,-0.0848 0.13229,-6.30726 0.13229,-6.30726 0.74236,-0.63805 c 0.80125,-0.68867 2.43659,-0.86696 3.37001,-0.36741 1.05716,0.56578 1.17478,1.24148 1.31159,7.53457 l 0.13229,6.08541 h 2.381249 2.38125 l -0.0275,-6.62572 c -0.0291,-7.02408 -0.16451,-8.00327 -1.3208,-9.55265 -0.34172,-0.4579 -1.24333,-1.14251 -2.00357,-1.52136 -2.473759,-1.23272 -5.287839,-0.74746 -6.971699,1.20221 l -0.78896,0.9135 -1.09447,-1.11695 c -2.36818,-2.41684 -5.71637,-2.24745 -8.11785,0.4107 l -0.97414,1.07826 v -1.32368 -1.32368 h -2.38125 -2.381251 v 8.84149 c 0,6.82121 0.0756,8.87388 0.33073,8.98323 0.1819,0.078 1.25346,0.12306 2.381251,0.10023 l 2.05052,-0.0415 z m 58.982052,-23.77069 c -0.63842,-0.67907 -0.6418,-0.71305 -0.72037,-7.25254 l -0.0789,-6.57027 -4.0221,-0.0975 c -3.86024,-0.0936 -4.09385,-0.13104 -5.80477,-0.93146 -3.44338,-1.61092 -5.94305,-4.808188 -6.49101,-8.302509 -0.12542,-0.799817 -0.19897,-9.872256 -0.16343,-20.160977 0.0569,-16.48141 0.11664,-18.887862 0.50205,-20.229106 0.78988,-2.748799 2.7626,-5.195638 5.18542,-6.43167 2.62508,-1.339215 1.53658,-1.287738 27.55971,-1.303344 13.42133,-0.008 24.81914,0.08832 25.32846,0.214156 2.54886,0.629722 5.73953,3.010515 7.06443,5.271282 0.36843,0.62868 0.89419,1.863775 1.16835,2.744655 0.46844,1.505102 0.49847,2.728663 0.49847,20.307854 0,20.358838 0.002,20.326239 -1.50752,23.099966 -0.97246,1.786723 -3.19153,3.791993 -5.30324,4.792293 l -1.7882,0.84705 -11.03071,0.13229 -11.03071,0.13229 -4.56404,4.10104 c -12.67712,11.39108 -11.33614,10.31875 -12.90392,10.31875 -1.00826,0 -1.38322,-0.13479 -1.89793,-0.68227 z m 3.48817,-30.075543 1.21122,-3.241146 5.66396,-0.06525 5.66397,-0.06525 1.19062,3.240254 1.19063,3.240253 3.50573,0.07382 c 2.87321,0.06051 3.50573,0.0066 3.50573,-0.298766 0,-0.204925 -0.78254,-2.440803 -1.73896,-4.968617 -0.95643,-2.527814 -3.44756,-9.1204 -5.53583,-14.650191 -2.08828,-5.529791 -3.87955,-10.265709 -3.9806,-10.524262 -0.16588,-0.424397 -0.54488,-0.462978 -3.89866,-0.396875 l -3.71492,0.07322 -1.57321,4.101041 c -0.86527,2.255573 -2.4379,6.363229 -3.49474,9.128125 -1.05684,2.764896 -2.90405,7.586927 -4.10491,10.715624 -1.20086,3.128698 -2.24269,5.956432 -2.31516,6.283854 -0.13174,0.5951 -0.13047,0.595313 3.54106,0.595313 h 3.67285 z m 3.78452,-11.641666 c 0.48389,-1.346068 1.3304,-3.732923 1.88112,-5.304122 0.55072,-1.5712 1.08864,-2.761825 1.19539,-2.645834 0.21614,0.234863 3.69374,9.809065 3.69374,10.169267 0,0.125446 -1.72126,0.228085 -3.82503,0.228085 h -3.82503 z m 29.25984,-0.727604 c 0,-14.682892 -0.0275,-15.61163 -0.46302,-15.630845 -2.65965,-0.117346 -5.11815,-0.130692 -5.82084,-0.0316 l -0.85989,0.121266 v 15.575797 15.575798 h 3.57187 3.57188 z"/>
4
- </g>
5
- </svg>