git-aicommit 7.2.0 → 7.3.0
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/count_tokens.js +13 -2
- package/package.json +1 -1
- package/.github/workflows/auto-release.yaml +0 -73
- package/demo.svg +0 -1
package/count_tokens.js
CHANGED
|
@@ -18,6 +18,10 @@ export const getModelNameForTiktoken = (modelName) => {
|
|
|
18
18
|
if (modelName.startsWith("gpt-4o-")) {
|
|
19
19
|
return "gpt-4o";
|
|
20
20
|
}
|
|
21
|
+
|
|
22
|
+
if (modelName.startsWith("gpt-4.1")) {
|
|
23
|
+
return "gpt-4o";
|
|
24
|
+
}
|
|
21
25
|
return modelName;
|
|
22
26
|
};
|
|
23
27
|
|
|
@@ -51,18 +55,25 @@ export const importTiktoken = async () => {
|
|
|
51
55
|
|
|
52
56
|
export const calculateMaxTokens = async ({ prompt, modelName }) => {
|
|
53
57
|
const { encoding_for_model } = await importTiktoken();
|
|
54
|
-
|
|
55
|
-
|
|
58
|
+
let numTokens;
|
|
59
|
+
|
|
56
60
|
try {
|
|
57
61
|
if (encoding_for_model) {
|
|
58
62
|
const encoding = encoding_for_model(getModelNameForTiktoken(modelName));
|
|
59
63
|
const tokenized = encoding.encode(prompt);
|
|
60
64
|
numTokens = tokenized.length;
|
|
61
65
|
encoding.free();
|
|
66
|
+
} else {
|
|
67
|
+
console.warn("tiktoken is not available, falling back to approximate token count");
|
|
68
|
+
|
|
69
|
+
numTokens = Math.ceil(prompt.length / 4);
|
|
62
70
|
}
|
|
63
71
|
} catch (error) {
|
|
64
72
|
console.warn("Failed to calculate number of tokens with tiktoken, falling back to approximate count", error);
|
|
73
|
+
|
|
74
|
+
numTokens = Math.ceil(prompt.length / 4);
|
|
65
75
|
}
|
|
76
|
+
|
|
66
77
|
const maxTokens = getModelContextSize(modelName);
|
|
67
78
|
return maxTokens - numTokens;
|
|
68
79
|
};
|
package/package.json
CHANGED
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
name: Auto Release on Version Change
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- master
|
|
7
|
-
|
|
8
|
-
jobs:
|
|
9
|
-
release:
|
|
10
|
-
runs-on: ubuntu-latest
|
|
11
|
-
permissions:
|
|
12
|
-
contents: write
|
|
13
|
-
steps:
|
|
14
|
-
- name: Checkout code
|
|
15
|
-
uses: actions/checkout@v4
|
|
16
|
-
with:
|
|
17
|
-
fetch-depth: 1
|
|
18
|
-
|
|
19
|
-
- name: Get Version from package.json
|
|
20
|
-
id: get_version
|
|
21
|
-
run: echo "version=$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT
|
|
22
|
-
shell: bash
|
|
23
|
-
|
|
24
|
-
- name: Check if tag exists remotely
|
|
25
|
-
id: check_tag
|
|
26
|
-
run: |
|
|
27
|
-
PACKAGE_VERSION="${{ steps.get_version.outputs.version }}"
|
|
28
|
-
TAG_NAME="v${PACKAGE_VERSION}" # Standard v-prefix for tags
|
|
29
|
-
echo "Checking for remote tag: ${TAG_NAME}"
|
|
30
|
-
|
|
31
|
-
TAG_EXISTS_COUNT=$(git ls-remote --tags origin "refs/tags/${TAG_NAME}" | wc -l)
|
|
32
|
-
|
|
33
|
-
if [ "$TAG_EXISTS_COUNT" -ne 0 ]; then
|
|
34
|
-
echo "Tag ${TAG_NAME} already exists remotely."
|
|
35
|
-
echo "exists=true" >> $GITHUB_OUTPUT
|
|
36
|
-
else
|
|
37
|
-
echo "Tag ${TAG_NAME} does not exist remotely. Proceeding."
|
|
38
|
-
echo "exists=false" >> $GITHUB_OUTPUT
|
|
39
|
-
fi
|
|
40
|
-
shell: bash
|
|
41
|
-
|
|
42
|
-
- name: Fail workflow if tag already exists
|
|
43
|
-
if: steps.check_tag.outputs.exists == 'true'
|
|
44
|
-
run: |
|
|
45
|
-
PACKAGE_VERSION="${{ steps.get_version.outputs.version }}"
|
|
46
|
-
TAG_NAME="v${PACKAGE_VERSION}"
|
|
47
|
-
echo "::error title=Tag Exists::Tag ${TAG_NAME} already exists. Halting release process."
|
|
48
|
-
exit 1 # This will fail the job and stop further execution
|
|
49
|
-
shell: bash
|
|
50
|
-
|
|
51
|
-
- name: Create Release (and Git Tag)
|
|
52
|
-
uses: actions/create-release@v1
|
|
53
|
-
with:
|
|
54
|
-
tag_name: v${{ steps.get_version.outputs.version }}
|
|
55
|
-
release_name: Release v${{ steps.get_version.outputs.version }}
|
|
56
|
-
draft: false
|
|
57
|
-
prerelease: false
|
|
58
|
-
env:
|
|
59
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
60
|
-
|
|
61
|
-
- name: Setup Node.js
|
|
62
|
-
uses: actions/setup-node@v3 # Can update to v4 if available and desired
|
|
63
|
-
with:
|
|
64
|
-
node-version: 18
|
|
65
|
-
registry-url: https://registry.npmjs.org/
|
|
66
|
-
|
|
67
|
-
- name: Install dependencies
|
|
68
|
-
run: npm ci
|
|
69
|
-
|
|
70
|
-
- name: Publish to npm
|
|
71
|
-
run: npm publish
|
|
72
|
-
env:
|
|
73
|
-
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
package/demo.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1650" height="450.78"><rect width="1650" height="450.78" rx="5" ry="5" class="a"/><svg y="0%" x="0%"><circle cx="20" cy="20" r="6" fill="#ff5f58"/><circle cx="40" cy="20" r="6" fill="#ffbd2e"/><circle cx="60" cy="20" r="6" fill="#18c132"/></svg><svg height="390.78" viewBox="0 0 161 39.078" width="1610" x="15" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="50"><style>@keyframes y{0%{transform:translateX(0)}1.04%{transform:translateX(-161px)}1.05%{transform:translateX(-483px)}1.06%{transform:translateX(-805px)}1.34%{transform:translateX(-966px)}4.51%{transform:translateX(-1127px)}5.06%{transform:translateX(-1288px)}5.59%{transform:translateX(-1449px)}5.9%{transform:translateX(-1610px)}6.75%{transform:translateX(-1771px)}7.15%{transform:translateX(-1932px)}7.59%{transform:translateX(-2093px)}7.97%{transform:translateX(-2254px)}8.58%{transform:translateX(-2415px)}10.43%{transform:translateX(-2737px)}10.44%{transform:translateX(-3220px)}10.61%{transform:translateX(-3703px)}10.62%{transform:translateX(-3864px)}10.63%{transform:translateX(-4347px)}14.43%{transform:translateX(-4508px)}18.75%{transform:translateX(-4830px)}25.03%{transform:translateX(-4991px)}25.04%{transform:translateX(-5152px)}26.3%{transform:translateX(-5313px)}28.22%{transform:translateX(-5796px)}28.33%{transform:translateX(-5957px)}28.35%{transform:translateX(-6118px)}28.36%{transform:translateX(-6923px)}28.37%{transform:translateX(-7084px)}28.54%{transform:translateX(-7245px)}32.42%{transform:translateX(-7406px)}32.94%{transform:translateX(-7567px)}33.34%{transform:translateX(-7728px)}34%{transform:translateX(-7889px)}34.67%{transform:translateX(-8050px)}36.35%{transform:translateX(-8211px)}38.71%{transform:translateX(-8372px)}39.26%{transform:translateX(-8533px)}39.88%{transform:translateX(-8694px)}40.34%{transform:translateX(-8855px)}40.99%{transform:translateX(-9016px)}41.52%{transform:translateX(-9177px)}43.9%{transform:translateX(-9338px)}43.91%{transform:translateX(-9821px)}62.7%{transform:translateX(-9982px)}63%{transform:translateX(-10787px)}63.01%{transform:translateX(-10948px)}63.19%{transform:translateX(-11109px)}63.2%{transform:translateX(-11270px)}69.22%{transform:translateX(-11431px)}69.75%{transform:translateX(-11592px)}73.24%{transform:translateX(-11753px)}73.25%{transform:translateX(-12236px)}87.67%{transform:translateX(-14168px)}88.78%{transform:translateX(-14329px)}88.94%{transform:translateX(-14490px)}89.86%{transform:translateX(-14651px)}89.87%{transform:translateX(-14812px)}89.88%{transform:translateX(-15617px)}90.11%{transform:translateX(-15778px)}98.03%{transform:translateX(-15939px)}98.58%{transform:translateX(-16100px)}99.08%{transform:translateX(-16261px)}99.49%{transform:translateX(-16422px)}99.99%{transform:translateX(-16583px)}to{transform:translateX(-17066px)}}.a{fill:#282d35}.f,.g,.h,.i,.j,.k{fill:#71bef2;white-space:pre}.g,.h,.i,.j,.k{fill:#d290e4}.h,.i,.j,.k{fill:#585858}.i,.j,.k{fill:#6c6c6c}.j,.k{fill:#a8cc8c}.k{fill:#b9c0cb;text-decoration:underline}.l{fill:#1c1c1c}.m{fill:#dadada;white-space:pre}.n{fill:#080808}.o,.p,.q,.r{fill:gray;white-space:pre}.p,.q,.r{fill:#ff8700}.q,.r{fill:#8787af}.r{fill:#afd700}.s{fill:#dadada}.t,.u{fill:#444;white-space:pre}.u{fill:#b9c0cb}.v{fill:#66c2cd}.A,.B,.v{white-space:pre}.A{fill:#e88388;font-weight:700}.B{fill:#dadada;text-decoration:underline}</style><g font-family="Monaco,Consolas,Menlo,'Bitstream Vera Sans Mono','Powerline Symbols',monospace" font-size="1.67"><defs><symbol id="1"><text y="1.67" class="f">~/Projects/autocommit</text></symbol><symbol id="2"><text y="1.67" class="g">❯</text><text x="152.304" y="1.67" class="h">15:32:05</text></symbol><symbol id="3"><text y="1.67" class="f">~/Projects/autocommit</text><text x="22.044" y="1.67" class="i">master</text></symbol><symbol id="4"><text y="1.67" class="g">❯</text><text x="2.004" y="1.67" class="j">vim</text><text x="152.304" y="1.67" class="h">15:32:05</text></symbol><symbol id="5"><text y="1.67" class="g">❯</text><text x="2.004" y="1.67" class="j">vim</text><text x="6.012" y="1.67" class="k">package.json</text><text x="152.304" y="1.67" class="h">15:32:05</text></symbol><symbol id="6"><text y="1.67" class="g">❯</text><text x="2.004" y="1.67" class="j">vim</text><text x="6.012" y="1.67" class="k">package.json</text><text x="152.304" y="1.67" class="h">15:32:07</text></symbol><symbol id="7"><path class="l" d="M0 0h161v2.171H0z"/><text y="1.67" class="m"></text></symbol><symbol id="8"><path class="l" d="M0 0h161v2.171H0z"/><text y="1.67" class="m">"package.json" 17L, 415B</text></symbol><symbol id="9"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">1</text><path class="l" d="M4.008 0h1v2.171h-1z"/><text x="4.008" y="1.67" class="p">{</text><path class="l" d="M5.01 0h156v2.171h-156z"/><text x="5.01" y="1.67" class="m"></text></symbol><symbol id="10"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">2</text><path class="l" d="M4.008 0h3v2.171h-3z"/><text x="4.008" y="1.67" class="m">"</text><path class="l" d="M7.014 0h4v2.171h-4z"/><text x="7.014" y="1.67" class="q">name</text><path class="l" d="M11.022 0h4v2.171h-4z"/><text x="11.022" y="1.67" class="m">": "</text><path class="l" d="M15.03 0h12v2.171h-12z"/><text x="15.03" y="1.67" class="r">git-aicommit</text><path class="l" d="M27.054 0h134v2.171h-134z"/><text x="27.054" y="1.67" class="m">",</text></symbol><symbol id="11"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">3</text><path class="l" d="M4.008 0h3v2.171h-3z"/><text x="4.008" y="1.67" class="m">"</text><path class="l" d="M7.014 0h7v2.171h-7z"/><text x="7.014" y="1.67" class="q">version</text><path class="l" d="M14.028 0h4v2.171h-4z"/><text x="14.028" y="1.67" class="m">": "</text><path class="l" d="M18.036 0h5v2.171h-5z"/><text x="18.036" y="1.67" class="r">1.1.0</text><path class="l" d="M23.046 0h138v2.171h-138z"/><text x="23.046" y="1.67" class="m">",</text></symbol><symbol id="12"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">4</text><path class="l" d="M4.008 0h3v2.171h-3z"/><text x="4.008" y="1.67" class="m">"</text><path class="l" d="M7.014 0h11v2.171h-11z"/><text x="7.014" y="1.67" class="q">description</text><path class="l" d="M18.036 0h4v2.171h-4z"/><text x="18.036" y="1.67" class="m">": "</text><path class="l" d="M22.044 0h53v2.171h-53z"/><text x="22.044" y="1.67" class="r">Generates auto commit messages with OpenAI GPT3 model</text><path class="l" d="M75.15 0h86v2.171h-86z"/><text x="75.15" y="1.67" class="m">",</text></symbol><symbol id="13"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">5</text><path class="l" d="M4.008 0h3v2.171h-3z"/><text x="4.008" y="1.67" class="m">"</text><path class="l" d="M7.014 0h4v2.171h-4z"/><text x="7.014" y="1.67" class="q">main</text><path class="l" d="M11.022 0h4v2.171h-4z"/><text x="11.022" y="1.67" class="m">": "</text><path class="l" d="M15.03 0h13v2.171h-13z"/><text x="15.03" y="1.67" class="r">autocommit.js</text><path class="l" d="M28.056 0h133v2.171h-133z"/><text x="28.056" y="1.67" class="m">",</text></symbol><symbol id="14"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">6</text><path class="l" d="M4.008 0h3v2.171h-3z"/><text x="4.008" y="1.67" class="m">"</text><path class="l" d="M7.014 0h10v2.171h-10z"/><text x="7.014" y="1.67" class="q">repository</text><path class="l" d="M17.034 0h4v2.171h-4z"/><text x="17.034" y="1.67" class="m">": "</text><path class="l" d="M21.042 0h38v2.171h-38z"/><text x="21.042" y="1.67" class="r">https://github.com/shanginn/autocommit</text><path class="l" d="M59.118 0h102v2.171h-102z"/><text x="59.118" y="1.67" class="m">",</text></symbol><symbol id="15"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">7</text><path class="l" d="M4.008 0h3v2.171h-3z"/><text x="4.008" y="1.67" class="m">"</text><path class="l" d="M7.014 0h6v2.171h-6z"/><text x="7.014" y="1.67" class="q">author</text><path class="l" d="M13.026 0h4v2.171h-4z"/><text x="13.026" y="1.67" class="m">": "</text><path class="l" d="M17.034 0h18v2.171h-18z"/><text x="17.034" y="1.67" class="r">shanginn@gmail.com</text><path class="l" d="M35.07 0h126v2.171h-126z"/><text x="35.07" y="1.67" class="m">",</text></symbol><symbol id="16"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">8</text><path class="l" d="M4.008 0h3v2.171h-3z"/><text x="4.008" y="1.67" class="m">"</text><path class="l" d="M7.014 0h7v2.171h-7z"/><text x="7.014" y="1.67" class="q">license</text><path class="l" d="M14.028 0h4v2.171h-4z"/><text x="14.028" y="1.67" class="m">": "</text><path class="l" d="M18.036 0h3v2.171h-3z"/><text x="18.036" y="1.67" class="r">MIT</text><path class="l" d="M21.042 0h140v2.171h-140z"/><text x="21.042" y="1.67" class="m">",</text></symbol><symbol id="17"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">9</text><path class="l" d="M4.008 0h3v2.171h-3z"/><text x="4.008" y="1.67" class="m">"</text><path class="l" d="M7.014 0h12v2.171h-12z"/><text x="7.014" y="1.67" class="q">dependencies</text><path class="l" d="M19.038 0h3v2.171h-3z"/><text x="19.038" y="1.67" class="m">":</text><path class="l" d="M22.044 0h1v2.171h-1z"/><text x="22.044" y="1.67" class="p">{</text><path class="l" d="M23.046 0h138v2.171h-138z"/><text x="23.046" y="1.67" class="m"></text></symbol><symbol id="18"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">10</text><path class="l" d="M4.008 0h5v2.171h-5z"/><text x="4.008" y="1.67" class="m">"</text><path class="l" d="M9.018 0h6v2.171h-6z"/><text x="9.018" y="1.67" class="q">dotenv</text><path class="l" d="M15.03 0h4v2.171h-4z"/><text x="15.03" y="1.67" class="m">": "</text><path class="l" d="M19.038 0h7v2.171h-7z"/><text x="19.038" y="1.67" class="r">^16.0.2</text><path class="l" d="M26.052 0h135v2.171h-135z"/><text x="26.052" y="1.67" class="m">",</text></symbol><symbol id="19"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">11</text><path class="l" d="M4.008 0h5v2.171h-5z"/><text x="4.008" y="1.67" class="m">"</text><path class="l" d="M9.018 0h6v2.171h-6z"/><text x="9.018" y="1.67" class="q">openai</text><path class="l" d="M15.03 0h4v2.171h-4z"/><text x="15.03" y="1.67" class="m">": "</text><path class="l" d="M19.038 0h6v2.171h-6z"/><text x="19.038" y="1.67" class="r">^3.0.0</text><path class="l" d="M25.05 0h136v2.171h-136z"/><text x="25.05" y="1.67" class="m">"</text></symbol><symbol id="20"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">12</text><path class="l" d="M4.008 0h2v2.171h-2z"/><text x="4.008" y="1.67" class="m"></text><path class="l" d="M6.012 0h1v2.171h-1z"/><text x="6.012" y="1.67" class="p">}</text><path class="l" d="M7.014 0h154v2.171h-154z"/><text x="7.014" y="1.67" class="m">,</text></symbol><symbol id="21"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">13</text><path class="l" d="M4.008 0h3v2.171h-3z"/><text x="4.008" y="1.67" class="m">"</text><path class="l" d="M7.014 0h12v2.171h-12z"/><text x="7.014" y="1.67" class="q">preferGlobal</text><path class="l" d="M19.038 0h3v2.171h-3z"/><text x="19.038" y="1.67" class="m">":</text><path class="l" d="M22.044 0h4v2.171h-4z"/><text x="22.044" y="1.67" class="r">true</text><path class="l" d="M26.052 0h135v2.171h-135z"/><text x="26.052" y="1.67" class="m">,</text></symbol><symbol id="22"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">14</text><path class="l" d="M4.008 0h3v2.171h-3z"/><text x="4.008" y="1.67" class="m">"</text><path class="l" d="M7.014 0h3v2.171h-3z"/><text x="7.014" y="1.67" class="q">bin</text><path class="l" d="M10.02 0h3v2.171h-3z"/><text x="10.02" y="1.67" class="m">":</text><path class="l" d="M13.026 0h1v2.171h-1z"/><text x="13.026" y="1.67" class="p">{</text><path class="l" d="M14.028 0h147v2.171h-147z"/><text x="14.028" y="1.67" class="m"></text></symbol><symbol id="23"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">15</text><path class="l" d="M4.008 0h5v2.171h-5z"/><text x="4.008" y="1.67" class="m">"</text><path class="l" d="M9.018 0h12v2.171h-12z"/><text x="9.018" y="1.67" class="q">git-aicommit</text><path class="l" d="M21.042 0h4v2.171h-4z"/><text x="21.042" y="1.67" class="m">": "</text><path class="l" d="M25.05 0h15v2.171h-15z"/><text x="25.05" y="1.67" class="r">./autocommit.js</text><path class="l" d="M40.08 0h121v2.171h-121z"/><text x="40.08" y="1.67" class="m">"</text></symbol><symbol id="24"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">16</text><path class="l" d="M4.008 0h2v2.171h-2z"/><text x="4.008" y="1.67" class="m"></text><path class="l" d="M6.012 0h1v2.171h-1z"/><text x="6.012" y="1.67" class="p">}</text><path class="l" d="M7.014 0h154v2.171h-154z"/><text x="7.014" y="1.67" class="m"></text></symbol><symbol id="25"><path class="s" d="M0 0h161v2.171H0z"/><text y="1.67" class="t">~/Projects/autocommit/package.json (unix){JSON} [3,17][17%]</text></symbol><symbol id="26"><path class="n" d="M0 0h4v2.171H0z"/><text y="1.67" class="o">3</text><path class="l" d="M4.008 0h3v2.171h-3z"/><text x="4.008" y="1.67" class="m">"</text><path class="l" d="M7.014 0h7v2.171h-7z"/><text x="7.014" y="1.67" class="q">version</text><path class="l" d="M14.028 0h4v2.171h-4z"/><text x="14.028" y="1.67" class="m">": "</text><path class="l" d="M18.036 0h5v2.171h-5z"/><text x="18.036" y="1.67" class="r">1.2.0</text><path class="l" d="M23.046 0h138v2.171h-138z"/><text x="23.046" y="1.67" class="m">",</text></symbol><symbol id="27"><path class="s" d="M0 0h161v2.171H0z"/><text y="1.67" class="t">~/Projects/autocommit/package.json[+] (unix){JSON} [3,17][17%]</text></symbol><symbol id="28"><path class="l" d="M0 0h161v2.171H0z"/><text y="1.67" class="m">:x</text></symbol><symbol id="29"><text y="1.67" class="g">❯</text><text x="152.304" y="1.67" class="h">15:32:11</text></symbol><symbol id="30"><text y="1.67" class="f">~/Projects/autocommit</text><text x="22.044" y="1.67" class="i">master*</text></symbol><symbol id="31"><text y="1.67" class="g">❯</text><text x="2.004" y="1.67" class="j">git-aicommit</text><text x="152.304" y="1.67" class="h">15:32:12</text></symbol><symbol id="32"><text y="1.67" class="g">❯</text><text x="2.004" y="1.67" class="j">git-aicommit</text><text x="152.304" y="1.67" class="h">15:32:15</text></symbol><symbol id="33"><text y="1.67" class="u">Committing</text><text x="11.022" y="1.67" class="u">with</text><text x="16.032" y="1.67" class="u">following</text><text x="26.052" y="1.67" class="u">command:</text></symbol><symbol id="34"><text x="1.002" y="1.67" class="u">git</text><text x="5.01" y="1.67" class="u">add</text><text x="9.018" y="1.67" class="u">--all</text><text x="15.03" y="1.67" class="u">&&</text><text x="18.036" y="1.67" class="u">git</text><text x="22.044" y="1.67" class="u">commit</text><text x="29.058" y="1.67" class="u">-m</text><text x="32.064" y="1.67" class="u">"</text></symbol><symbol id="35"><text y="1.67" class="u">1.</text><text x="3.006" y="1.67" class="u">package.json:</text></symbol><symbol id="36"><text y="1.67" class="u">-</text><text x="2.004" y="1.67" class="u">Updated</text><text x="10.02" y="1.67" class="u">the</text><text x="14.028" y="1.67" class="u">version</text><text x="22.044" y="1.67" class="u">number</text><text x="29.058" y="1.67" class="u">from</text><text x="34.068" y="1.67" class="u">1.1.0</text><text x="40.08" y="1.67" class="u">to</text><text x="43.086" y="1.67" class="u">1.2.0.</text></symbol><symbol id="37"><text y="1.67" class="u">2.</text><text x="3.006" y="1.67" class="u">autocommit.js:</text></symbol><symbol id="38"><text y="1.67" class="u">-</text><text x="2.004" y="1.67" class="u">Changed</text><text x="10.02" y="1.67" class="u">the</text><text x="14.028" y="1.67" class="u">code</text><text x="19.038" y="1.67" class="u">to</text><text x="22.044" y="1.67" class="u">use</text><text x="26.052" y="1.67" class="u">the</text><text x="30.06" y="1.67" class="u">new</text><text x="34.068" y="1.67" class="u">OpenAI</text><text x="41.082" y="1.67" class="u">GPT3</text><text x="46.092" y="1.67" class="u">model."</text></symbol><symbol id="39"><text y="1.67" class="g">❯</text><text x="152.304" y="1.67" class="h">15:32:20</text></symbol><symbol id="40"><text y="1.67" class="f">~/Projects/autocommit</text><text x="22.044" y="1.67" class="i">master</text><text x="29.058" y="1.67" class="v">⇡</text></symbol><symbol id="41"><text y="1.67" class="g">❯</text><text x="2.004" y="1.67" class="j">gp</text><text x="152.304" y="1.67" class="h">15:32:20</text></symbol><symbol id="42"><text y="1.67" class="g">❯</text><text x="2.004" y="1.67" class="j">gp</text><text x="152.304" y="1.67" class="h">15:32:23</text></symbol><symbol id="43"><text y="1.67" class="u">Перечисление</text><text x="13.026" y="1.67" class="u">объектов:</text><text x="23.046" y="1.67" class="u">5,</text><text x="26.052" y="1.67" class="u">готово.</text></symbol><symbol id="44"><text y="1.67" class="u">Подсчет</text><text x="8.016" y="1.67" class="u">объектов:</text><text x="18.036" y="1.67" class="u">100%</text><text x="23.046" y="1.67" class="u">(5/5),</text><text x="30.06" y="1.67" class="u">готово.</text></symbol><symbol id="45"><text y="1.67" class="u">При</text><text x="4.008" y="1.67" class="u">сжатии</text><text x="11.022" y="1.67" class="u">изменений</text><text x="21.042" y="1.67" class="u">используется</text><text x="34.068" y="1.67" class="u">до</text><text x="37.074" y="1.67" class="u">12</text><text x="40.08" y="1.67" class="u">потоков</text></symbol><symbol id="46"><text y="1.67" class="u">Сжатие</text><text x="7.014" y="1.67" class="u">объектов:</text><text x="17.034" y="1.67" class="u">100%</text><text x="22.044" y="1.67" class="u">(3/3),</text><text x="29.058" y="1.67" class="u">готово.</text></symbol><symbol id="47"><text y="1.67" class="u">Запись</text><text x="7.014" y="1.67" class="u">объектов:</text><text x="17.034" y="1.67" class="u">100%</text><text x="22.044" y="1.67" class="u">(3/3),</text><text x="29.058" y="1.67" class="u">377</text><text x="33.066" y="1.67" class="u">байтов</text><text x="40.08" y="1.67" class="u">|</text><text x="42.084" y="1.67" class="u">377.00</text><text x="49.098" y="1.67" class="u">КиБ/с,</text><text x="56.112" y="1.67" class="u">готово.</text></symbol><symbol id="48"><text y="1.67" class="u">Всего</text><text x="6.012" y="1.67" class="u">3</text><text x="8.016" y="1.67" class="u">(изменений</text><text x="19.038" y="1.67" class="u">2),</text><text x="23.046" y="1.67" class="u">повторно</text><text x="32.064" y="1.67" class="u">использовано</text><text x="45.09" y="1.67" class="u">0</text><text x="47.094" y="1.67" class="u">(изменений</text><text x="58.116" y="1.67" class="u">0),</text><text x="62.124" y="1.67" class="u">повторно</text><text x="71.142" y="1.67" class="u">использовано</text><text x="84.168" y="1.67" class="u">пакетов</text><text x="92.184" y="1.67" class="u">0</text></symbol><symbol id="49"><text y="1.67" class="u">remote:</text><text x="8.016" y="1.67" class="u">Resolving</text><text x="18.036" y="1.67" class="u">deltas:</text><text x="26.052" y="1.67" class="u">100%</text><text x="31.062" y="1.67" class="u">(2/2),</text><text x="38.076" y="1.67" class="u">completed</text><text x="48.096" y="1.67" class="u">with</text><text x="53.106" y="1.67" class="u">2</text><text x="55.11" y="1.67" class="u">local</text><text x="61.122" y="1.67" class="u">objects.</text></symbol><symbol id="50"><text y="1.67" class="u">To</text><text x="3.006" y="1.67" class="u">github.com:shanginn/autocommit.git</text></symbol><symbol id="51"><text x="3.006" y="1.67" class="u">49ec25d..40560e0</text><text x="21.042" y="1.67" class="u">master</text><text x="28.056" y="1.67" class="u">-></text><text x="31.062" y="1.67" class="u">master</text></symbol><symbol id="52"><text y="1.67" class="g">❯</text><text x="152.304" y="1.67" class="h">15:32:27</text></symbol><symbol id="53"><text y="1.67" class="g">❯</text><text x="2.004" y="1.67" class="j">exit</text><text x="152.304" y="1.67" class="h">15:32:27</text></symbol><symbol id="54"><text y="1.67" class="g">❯</text><text x="2.004" y="1.67" class="j">exit</text><text x="152.304" y="1.67" class="h">15:32:29</text></symbol><symbol id="a"><path fill="transparent" d="M0 0h161v18H0z"/></symbol><symbol id="b"><path fill="#6f7683" d="M0 0h1.102v2.171H0z"/></symbol></defs><path class="a" d="M0 0h161v39.078H0z"/><g style="animation-duration:24.626398s;animation-iteration-count:infinite;animation-name:y;animation-timing-function:steps(1,end)"><svg width="17227"><svg><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/></svg><svg x="161"><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/></svg><svg x="322"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="2.146"/></svg><svg x="483"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="4.317"/><use xlink:href="#1" y="2.171"/><use xlink:href="#2" y="4.342"/></svg><svg x="644"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="4.317"/><use xlink:href="#1" y="2.171"/><use xlink:href="#2" y="4.342"/></svg><svg x="805"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="4.317"/><use xlink:href="#1" y="2.171"/><use xlink:href="#2" y="4.342"/></svg><svg x="966"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="4.317"/><use xlink:href="#3" y="2.171"/><use xlink:href="#2" y="4.342"/></svg><svg x="1127"><use xlink:href="#a"/><use xlink:href="#b" x="2.996" y="4.317"/><use xlink:href="#3" y="2.171"/><text y="6.012" class="g">❯</text><text x="2.004" y="6.012" class="A">v</text><text x="152.304" y="6.012" class="h">15:32:05</text></svg><svg x="1288"><use xlink:href="#a"/><use xlink:href="#b" x="3.996" y="4.317"/><use xlink:href="#3" y="2.171"/><text y="6.012" class="g">❯</text><text x="2.004" y="6.012" class="j">vi</text><text x="152.304" y="6.012" class="h">15:32:05</text></svg><svg x="1449"><use xlink:href="#a"/><use xlink:href="#b" x="4.996" y="4.317"/><use xlink:href="#3" y="2.171"/><use xlink:href="#4" y="4.342"/></svg><svg x="1610"><use xlink:href="#a"/><use xlink:href="#b" x="5.996" y="4.317"/><use xlink:href="#3" y="2.171"/><use xlink:href="#4" y="4.342"/></svg><svg x="1771"><use xlink:href="#a"/><use xlink:href="#b" x="6.996" y="4.317"/><use xlink:href="#3" y="2.171"/><text y="6.012" class="g">❯</text><text x="2.004" y="6.012" class="j">vim</text><text x="6.012" y="6.012" class="k">p</text><text x="152.304" y="6.012" class="h">15:32:05</text></svg><svg x="1932"><use xlink:href="#a"/><use xlink:href="#b" x="7.996" y="4.317"/><use xlink:href="#3" y="2.171"/><text y="6.012" class="g">❯</text><text x="2.004" y="6.012" class="j">vim</text><text x="6.012" y="6.012" class="k">pa</text><text x="152.304" y="6.012" class="h">15:32:05</text></svg><svg x="2093"><use xlink:href="#a"/><use xlink:href="#b" x="8.996" y="4.317"/><use xlink:href="#3" y="2.171"/><text y="6.012" class="g">❯</text><text x="2.004" y="6.012" class="j">vim</text><text x="6.012" y="6.012" class="k">pac</text><text x="152.304" y="6.012" class="h">15:32:05</text></svg><svg x="2254"><use xlink:href="#a"/><use xlink:href="#b" x="9.996" y="4.317"/><use xlink:href="#3" y="2.171"/><text y="6.012" class="g">❯</text><text x="2.004" y="6.012" class="j">vim</text><text x="6.012" y="6.012" class="k">pack</text><text x="152.304" y="6.012" class="h">15:32:05</text></svg><svg x="2415"><use xlink:href="#a"/><use xlink:href="#b" x="18.996" y="4.317"/><use xlink:href="#3" y="2.171"/><text y="6.012" class="g">❯</text><text x="2.004" y="6.012" class="j">vim</text><text x="6.012" y="6.012" class="u">package.json</text><text x="152.304" y="6.012" class="h">15:32:05</text></svg><svg x="2576"><use xlink:href="#a"/><use xlink:href="#b" x="17.996" y="4.317"/><use xlink:href="#3" y="2.171"/><use xlink:href="#5" y="4.342"/></svg><svg x="2737"><use xlink:href="#a"/><use xlink:href="#b" x="17.996" y="4.317"/><use xlink:href="#3" y="2.171"/><use xlink:href="#5" y="4.342"/></svg><svg x="2898"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="6.488"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/></svg><svg x="3059"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="6.488"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/></svg><svg x="3220"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="6.488"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/></svg><svg x="3381"><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/></svg><svg x="3542"><use xlink:href="#a"/><use xlink:href="#7"/><use xlink:href="#7" y="2.171"/><use xlink:href="#7" y="4.342"/><use xlink:href="#7" y="6.513"/><use xlink:href="#7" y="8.684"/><use xlink:href="#7" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#7" y="15.197"/><use xlink:href="#7" y="17.368"/><use xlink:href="#7" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#7" y="23.881"/><use xlink:href="#7" y="26.052"/><use xlink:href="#7" y="28.223"/><use xlink:href="#7" y="30.394"/><use xlink:href="#7" y="32.565"/><use xlink:href="#7" y="34.736"/><path class="l" d="M0 36.907h161v2.171H0z"/><text y="38.577" class="m">"package.json"</text></svg><svg x="3703"><use xlink:href="#a"/><use xlink:href="#7"/><use xlink:href="#7" y="2.171"/><use xlink:href="#7" y="4.342"/><use xlink:href="#7" y="6.513"/><use xlink:href="#7" y="8.684"/><use xlink:href="#7" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#7" y="15.197"/><use xlink:href="#7" y="17.368"/><use xlink:href="#7" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#7" y="23.881"/><use xlink:href="#7" y="26.052"/><use xlink:href="#7" y="28.223"/><use xlink:href="#7" y="30.394"/><use xlink:href="#7" y="32.565"/><use xlink:href="#7" y="34.736"/><use xlink:href="#8" y="36.907"/></svg><svg x="3864"><use xlink:href="#a"/><use xlink:href="#7"/><use xlink:href="#7" y="2.171"/><path class="l" d="M11.022 4.342h150v2.171h-150z"/><text x="11.022" y="6.012" class="m"></text><use xlink:href="#7" y="6.513"/><use xlink:href="#7" y="8.684"/><use xlink:href="#7" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#7" y="15.197"/><use xlink:href="#7" y="17.368"/><use xlink:href="#7" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#7" y="23.881"/><use xlink:href="#7" y="26.052"/><use xlink:href="#7" y="28.223"/><use xlink:href="#7" y="30.394"/><use xlink:href="#7" y="32.565"/><use xlink:href="#7" y="34.736"/><use xlink:href="#8" y="36.907"/></svg><svg x="4025"><use xlink:href="#a"/><use xlink:href="#9"/><use xlink:href="#10" y="2.171"/><use xlink:href="#11" y="4.342"/><use xlink:href="#12" y="6.513"/><use xlink:href="#13" y="8.684"/><use xlink:href="#14" y="10.855"/><path class="n" d="M0 13.026h4v2.171H0z"/><text y="14.696" class="o">7</text><path class="l" d="M4.008 13.026h3v2.171h-3z"/><text x="4.008" y="14.696" class="m">"</text><path class="l" d="M7.014 13.026h6v2.171h-6z"/><text x="7.014" y="14.696" class="q">author</text><path class="l" d="M13.026 13.026h148v2.171h-148z"/><text x="13.026" y="14.696" class="m"></text><use xlink:href="#7" y="15.197"/><use xlink:href="#7" y="17.368"/><use xlink:href="#7" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#7" y="23.881"/><use xlink:href="#7" y="26.052"/><use xlink:href="#7" y="28.223"/><use xlink:href="#7" y="30.394"/><use xlink:href="#7" y="32.565"/><use xlink:href="#7" y="34.736"/><use xlink:href="#8" y="36.907"/></svg><svg x="4186"><use xlink:href="#a"/><use xlink:href="#9"/><use xlink:href="#10" y="2.171"/><use xlink:href="#11" y="4.342"/><use xlink:href="#12" y="6.513"/><use xlink:href="#13" y="8.684"/><use xlink:href="#14" y="10.855"/><use xlink:href="#15" y="13.026"/><use xlink:href="#16" y="15.197"/><use xlink:href="#17" y="17.368"/><use xlink:href="#18" y="19.539"/><use xlink:href="#19" y="21.71"/><use xlink:href="#20" y="23.881"/><use xlink:href="#21" y="26.052"/><path class="n" d="M0 28.223h4v2.171H0z"/><text y="29.893" class="o">14</text><path class="l" d="M4.008 28.223h157v2.171h-157z"/><text x="4.008" y="29.893" class="m"></text><use xlink:href="#7" y="30.394"/><use xlink:href="#7" y="32.565"/><use xlink:href="#7" y="34.736"/><use xlink:href="#8" y="36.907"/></svg><svg x="4347"><use xlink:href="#a"/><use xlink:href="#b" x="19.996" y="4.317"/><use xlink:href="#9"/><use xlink:href="#10" y="2.171"/><use xlink:href="#11" y="4.342"/><use xlink:href="#12" y="6.513"/><use xlink:href="#13" y="8.684"/><use xlink:href="#14" y="10.855"/><use xlink:href="#15" y="13.026"/><use xlink:href="#16" y="15.197"/><use xlink:href="#17" y="17.368"/><use xlink:href="#18" y="19.539"/><use xlink:href="#19" y="21.71"/><use xlink:href="#20" y="23.881"/><use xlink:href="#21" y="26.052"/><use xlink:href="#22" y="28.223"/><use xlink:href="#23" y="30.394"/><use xlink:href="#24" y="32.565"/><use xlink:href="#25" y="34.736"/><use xlink:href="#8" y="36.907"/></svg><svg x="4508"><use xlink:href="#a"/><use xlink:href="#b" x="19.996" y="4.317"/><use xlink:href="#9"/><use xlink:href="#10" y="2.171"/><use xlink:href="#11" y="4.342"/><use xlink:href="#12" y="6.513"/><use xlink:href="#13" y="8.684"/><use xlink:href="#14" y="10.855"/><use xlink:href="#15" y="13.026"/><use xlink:href="#16" y="15.197"/><use xlink:href="#17" y="17.368"/><use xlink:href="#18" y="19.539"/><use xlink:href="#19" y="21.71"/><use xlink:href="#20" y="23.881"/><use xlink:href="#21" y="26.052"/><use xlink:href="#22" y="28.223"/><use xlink:href="#23" y="30.394"/><use xlink:href="#24" y="32.565"/><use xlink:href="#25" y="34.736"/><path class="l" d="M0 36.907h161v2.171H0z"/><text y="38.577" class="m">"package.json" 17L, 415B r</text></svg><svg x="4669"><use xlink:href="#a"/><use xlink:href="#9"/><use xlink:href="#10" y="2.171"/><use xlink:href="#11" y="4.342"/><use xlink:href="#12" y="6.513"/><use xlink:href="#13" y="8.684"/><use xlink:href="#14" y="10.855"/><use xlink:href="#15" y="13.026"/><use xlink:href="#16" y="15.197"/><use xlink:href="#17" y="17.368"/><use xlink:href="#18" y="19.539"/><use xlink:href="#19" y="21.71"/><use xlink:href="#20" y="23.881"/><use xlink:href="#21" y="26.052"/><use xlink:href="#22" y="28.223"/><use xlink:href="#23" y="30.394"/><use xlink:href="#24" y="32.565"/><use xlink:href="#25" y="34.736"/><path class="l" d="M0 36.907h161v2.171H0z"/><text y="38.577" class="m">"package.json" 17L, 415B r2</text></svg><svg x="4830"><use xlink:href="#a"/><use xlink:href="#b" x="19.996" y="4.317"/><use xlink:href="#9"/><use xlink:href="#10" y="2.171"/><use xlink:href="#26" y="4.342"/><use xlink:href="#12" y="6.513"/><use xlink:href="#13" y="8.684"/><use xlink:href="#14" y="10.855"/><use xlink:href="#15" y="13.026"/><use xlink:href="#16" y="15.197"/><use xlink:href="#17" y="17.368"/><use xlink:href="#18" y="19.539"/><use xlink:href="#19" y="21.71"/><use xlink:href="#20" y="23.881"/><use xlink:href="#21" y="26.052"/><use xlink:href="#22" y="28.223"/><use xlink:href="#23" y="30.394"/><use xlink:href="#24" y="32.565"/><use xlink:href="#27" y="34.736"/><use xlink:href="#8" y="36.907"/></svg><svg x="4991"><use xlink:href="#a"/><use xlink:href="#9"/><use xlink:href="#10" y="2.171"/><use xlink:href="#26" y="4.342"/><use xlink:href="#12" y="6.513"/><use xlink:href="#13" y="8.684"/><use xlink:href="#14" y="10.855"/><use xlink:href="#15" y="13.026"/><use xlink:href="#16" y="15.197"/><use xlink:href="#17" y="17.368"/><use xlink:href="#18" y="19.539"/><use xlink:href="#19" y="21.71"/><use xlink:href="#20" y="23.881"/><use xlink:href="#21" y="26.052"/><use xlink:href="#22" y="28.223"/><use xlink:href="#23" y="30.394"/><use xlink:href="#24" y="32.565"/><use xlink:href="#27" y="34.736"/><path class="l" d="M0 36.907h161v2.171H0z"/><text y="38.577" class="m">"package.json" 17L, 415B :</text></svg><svg x="5152"><use xlink:href="#a"/><use xlink:href="#b" x=".996" y="36.882"/><use xlink:href="#9"/><use xlink:href="#10" y="2.171"/><use xlink:href="#26" y="4.342"/><use xlink:href="#12" y="6.513"/><use xlink:href="#13" y="8.684"/><use xlink:href="#14" y="10.855"/><use xlink:href="#15" y="13.026"/><use xlink:href="#16" y="15.197"/><use xlink:href="#17" y="17.368"/><use xlink:href="#18" y="19.539"/><use xlink:href="#19" y="21.71"/><use xlink:href="#20" y="23.881"/><use xlink:href="#21" y="26.052"/><use xlink:href="#22" y="28.223"/><use xlink:href="#23" y="30.394"/><use xlink:href="#24" y="32.565"/><use xlink:href="#27" y="34.736"/><path class="l" d="M0 36.907h161v2.171H0z"/><text y="38.577" class="m">:</text></svg><svg x="5313"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="36.882"/><use xlink:href="#9"/><use xlink:href="#10" y="2.171"/><use xlink:href="#26" y="4.342"/><use xlink:href="#12" y="6.513"/><use xlink:href="#13" y="8.684"/><use xlink:href="#14" y="10.855"/><use xlink:href="#15" y="13.026"/><use xlink:href="#16" y="15.197"/><use xlink:href="#17" y="17.368"/><use xlink:href="#18" y="19.539"/><use xlink:href="#19" y="21.71"/><use xlink:href="#20" y="23.881"/><use xlink:href="#21" y="26.052"/><use xlink:href="#22" y="28.223"/><use xlink:href="#23" y="30.394"/><use xlink:href="#24" y="32.565"/><use xlink:href="#27" y="34.736"/><use xlink:href="#28" y="36.907"/></svg><svg x="5474"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#9"/><use xlink:href="#10" y="2.171"/><use xlink:href="#26" y="4.342"/><use xlink:href="#12" y="6.513"/><use xlink:href="#13" y="8.684"/><use xlink:href="#14" y="10.855"/><use xlink:href="#15" y="13.026"/><use xlink:href="#16" y="15.197"/><use xlink:href="#17" y="17.368"/><use xlink:href="#18" y="19.539"/><use xlink:href="#19" y="21.71"/><use xlink:href="#20" y="23.881"/><use xlink:href="#21" y="26.052"/><use xlink:href="#22" y="28.223"/><use xlink:href="#23" y="30.394"/><use xlink:href="#24" y="32.565"/><use xlink:href="#27" y="34.736"/><use xlink:href="#28" y="36.907"/></svg><svg x="5635"><use xlink:href="#a"/><use xlink:href="#9"/><use xlink:href="#10" y="2.171"/><use xlink:href="#26" y="4.342"/><use xlink:href="#12" y="6.513"/><use xlink:href="#13" y="8.684"/><use xlink:href="#14" y="10.855"/><use xlink:href="#15" y="13.026"/><use xlink:href="#16" y="15.197"/><use xlink:href="#17" y="17.368"/><use xlink:href="#18" y="19.539"/><use xlink:href="#19" y="21.71"/><use xlink:href="#20" y="23.881"/><use xlink:href="#21" y="26.052"/><use xlink:href="#22" y="28.223"/><use xlink:href="#23" y="30.394"/><use xlink:href="#24" y="32.565"/><use xlink:href="#27" y="34.736"/><use xlink:href="#28" y="36.907"/></svg><svg x="5796"><use xlink:href="#a"/><use xlink:href="#9"/><use xlink:href="#10" y="2.171"/><use xlink:href="#26" y="4.342"/><use xlink:href="#12" y="6.513"/><use xlink:href="#13" y="8.684"/><use xlink:href="#14" y="10.855"/><use xlink:href="#15" y="13.026"/><use xlink:href="#16" y="15.197"/><use xlink:href="#17" y="17.368"/><use xlink:href="#18" y="19.539"/><use xlink:href="#19" y="21.71"/><use xlink:href="#20" y="23.881"/><use xlink:href="#21" y="26.052"/><use xlink:href="#22" y="28.223"/><use xlink:href="#23" y="30.394"/><use xlink:href="#24" y="32.565"/><use xlink:href="#27" y="34.736"/><path class="l" d="M0 36.907h14v2.171H0z"/><text y="38.577" class="B">"package.json"</text><path class="l" d="M14.028 36.907h147v2.171h-147z"/><text x="14.028" y="38.577" class="m"></text></svg><svg x="5957"><use xlink:href="#a"/><use xlink:href="#9"/><use xlink:href="#10" y="2.171"/><use xlink:href="#26" y="4.342"/><use xlink:href="#12" y="6.513"/><use xlink:href="#13" y="8.684"/><use xlink:href="#14" y="10.855"/><use xlink:href="#15" y="13.026"/><use xlink:href="#16" y="15.197"/><use xlink:href="#17" y="17.368"/><use xlink:href="#18" y="19.539"/><use xlink:href="#19" y="21.71"/><use xlink:href="#20" y="23.881"/><use xlink:href="#21" y="26.052"/><use xlink:href="#22" y="28.223"/><use xlink:href="#23" y="30.394"/><use xlink:href="#24" y="32.565"/><use xlink:href="#27" y="34.736"/><path class="l" d="M0 36.907h32v2.171H0z"/><text y="38.577" class="B">"package.json" 17L, 415B written</text><path class="l" d="M32.064 36.907h129v2.171h-129z"/><text x="32.064" y="38.577" class="m"></text></svg><svg x="6118"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="6.488"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/></svg><svg x="6279"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="6.488"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/></svg><svg x="6440"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="6.488"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/></svg><svg x="6601"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="8.659"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/></svg><svg x="6762"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#29" y="10.855"/></svg><svg x="6923"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#29" y="10.855"/></svg><svg x="7084"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#29" y="10.855"/></svg><svg x="7245"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><text y="12.525" class="g">❯</text><text x="152.304" y="12.525" class="h">15:32:12</text></svg><svg x="7406"><use xlink:href="#a"/><use xlink:href="#b" x="2.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><text y="12.525" class="g">❯</text><text x="2.004" y="12.525" class="j">g</text><text x="152.304" y="12.525" class="h">15:32:12</text></svg><svg x="7567"><use xlink:href="#a"/><use xlink:href="#b" x="3.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><text y="12.525" class="g">❯</text><text x="2.004" y="12.525" class="A">gi</text><text x="152.304" y="12.525" class="h">15:32:12</text></svg><svg x="7728"><use xlink:href="#a"/><use xlink:href="#b" x="4.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><text y="12.525" class="g">❯</text><text x="2.004" y="12.525" class="j">git</text><text x="152.304" y="12.525" class="h">15:32:12</text></svg><svg x="7889"><use xlink:href="#a"/><use xlink:href="#b" x="5.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><text y="12.525" class="g">❯</text><text x="2.004" y="12.525" class="A">git-</text><text x="152.304" y="12.525" class="h">15:32:12</text></svg><svg x="8050"><use xlink:href="#a"/><use xlink:href="#b" x="6.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><text y="12.525" class="g">❯</text><text x="2.004" y="12.525" class="A">git-a</text><text x="152.304" y="12.525" class="h">15:32:12</text></svg><svg x="8211"><use xlink:href="#a"/><use xlink:href="#b" x="7.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><text y="12.525" class="g">❯</text><text x="2.004" y="12.525" class="A">git-ai</text><text x="152.304" y="12.525" class="h">15:32:12</text></svg><svg x="8372"><use xlink:href="#a"/><use xlink:href="#b" x="8.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><text y="12.525" class="g">❯</text><text x="2.004" y="12.525" class="A">git-aic</text><text x="152.304" y="12.525" class="h">15:32:12</text></svg><svg x="8533"><use xlink:href="#a"/><use xlink:href="#b" x="9.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><text y="12.525" class="g">❯</text><text x="2.004" y="12.525" class="A">git-aico</text><text x="152.304" y="12.525" class="h">15:32:12</text></svg><svg x="8694"><use xlink:href="#a"/><use xlink:href="#b" x="10.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><text y="12.525" class="g">❯</text><text x="2.004" y="12.525" class="A">git-aicom</text><text x="152.304" y="12.525" class="h">15:32:12</text></svg><svg x="8855"><use xlink:href="#a"/><use xlink:href="#b" x="11.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><text y="12.525" class="g">❯</text><text x="2.004" y="12.525" class="A">git-aicomm</text><text x="152.304" y="12.525" class="h">15:32:12</text></svg><svg x="9016"><use xlink:href="#a"/><use xlink:href="#b" x="12.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><text y="12.525" class="g">❯</text><text x="2.004" y="12.525" class="A">git-aicommi</text><text x="152.304" y="12.525" class="h">15:32:12</text></svg><svg x="9177"><use xlink:href="#a"/><use xlink:href="#b" x="13.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#31" y="10.855"/></svg><svg x="9338"><use xlink:href="#a"/><use xlink:href="#b" x="13.996" y="10.83"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#31" y="10.855"/></svg><svg x="9499"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="13.001"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#32" y="10.855"/></svg><svg x="9660"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="13.001"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#32" y="10.855"/></svg><svg x="9821"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="13.001"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#32" y="10.855"/></svg><svg x="9982"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="32.54"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#32" y="10.855"/><use xlink:href="#33" y="13.026"/><use xlink:href="#34" y="15.197"/><use xlink:href="#35" y="17.368"/><use xlink:href="#36" y="21.71"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="30.394"/></svg><svg x="10143"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="32.54"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#32" y="10.855"/><use xlink:href="#33" y="13.026"/><use xlink:href="#34" y="15.197"/><use xlink:href="#35" y="17.368"/><use xlink:href="#36" y="21.71"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="30.394"/></svg><svg x="10304"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="32.54"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#32" y="10.855"/><use xlink:href="#33" y="13.026"/><use xlink:href="#34" y="15.197"/><use xlink:href="#35" y="17.368"/><use xlink:href="#36" y="21.71"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="30.394"/></svg><svg x="10465"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="34.711"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#32" y="10.855"/><use xlink:href="#33" y="13.026"/><use xlink:href="#34" y="15.197"/><use xlink:href="#35" y="17.368"/><use xlink:href="#36" y="21.71"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="30.394"/></svg><svg x="10626"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="36.882"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#32" y="10.855"/><use xlink:href="#33" y="13.026"/><use xlink:href="#34" y="15.197"/><use xlink:href="#35" y="17.368"/><use xlink:href="#36" y="21.71"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="30.394"/><use xlink:href="#30" y="34.736"/><use xlink:href="#39" y="36.907"/></svg><svg x="10787"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="36.882"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#32" y="10.855"/><use xlink:href="#33" y="13.026"/><use xlink:href="#34" y="15.197"/><use xlink:href="#35" y="17.368"/><use xlink:href="#36" y="21.71"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="30.394"/><use xlink:href="#30" y="34.736"/><use xlink:href="#39" y="36.907"/></svg><svg x="10948"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="36.882"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#32" y="10.855"/><use xlink:href="#33" y="13.026"/><use xlink:href="#34" y="15.197"/><use xlink:href="#35" y="17.368"/><use xlink:href="#36" y="21.71"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="30.394"/><use xlink:href="#30" y="34.736"/><use xlink:href="#39" y="36.907"/></svg><svg x="11109"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="36.882"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#32" y="10.855"/><use xlink:href="#33" y="13.026"/><use xlink:href="#34" y="15.197"/><use xlink:href="#35" y="17.368"/><use xlink:href="#36" y="21.71"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="30.394"/><text y="36.406" class="f">~/Projects/autocommit</text><text x="22.044" y="36.406" class="i">master*</text><text x="30.06" y="36.406" class="v">⇡</text><use xlink:href="#39" y="36.907"/></svg><svg x="11270"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="36.882"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#32" y="10.855"/><use xlink:href="#33" y="13.026"/><use xlink:href="#34" y="15.197"/><use xlink:href="#35" y="17.368"/><use xlink:href="#36" y="21.71"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="30.394"/><use xlink:href="#40" y="34.736"/><use xlink:href="#39" y="36.907"/></svg><svg x="11431"><use xlink:href="#a"/><use xlink:href="#b" x="2.996" y="36.882"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#32" y="10.855"/><use xlink:href="#33" y="13.026"/><use xlink:href="#34" y="15.197"/><use xlink:href="#35" y="17.368"/><use xlink:href="#36" y="21.71"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="30.394"/><use xlink:href="#40" y="34.736"/><text y="38.577" class="g">❯</text><text x="2.004" y="38.577" class="j">g</text><text x="152.304" y="38.577" class="h">15:32:20</text></svg><svg x="11592"><use xlink:href="#a"/><use xlink:href="#b" x="3.996" y="36.882"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#32" y="10.855"/><use xlink:href="#33" y="13.026"/><use xlink:href="#34" y="15.197"/><use xlink:href="#35" y="17.368"/><use xlink:href="#36" y="21.71"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="30.394"/><use xlink:href="#40" y="34.736"/><use xlink:href="#41" y="36.907"/></svg><svg x="11753"><use xlink:href="#a"/><use xlink:href="#b" x="3.996" y="36.882"/><use xlink:href="#3" y="2.171"/><use xlink:href="#6" y="4.342"/><use xlink:href="#30" y="8.684"/><use xlink:href="#32" y="10.855"/><use xlink:href="#33" y="13.026"/><use xlink:href="#34" y="15.197"/><use xlink:href="#35" y="17.368"/><use xlink:href="#36" y="21.71"/><use xlink:href="#37" y="26.052"/><use xlink:href="#38" y="30.394"/><use xlink:href="#40" y="34.736"/><use xlink:href="#41" y="36.907"/></svg><svg x="11914"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#3"/><use xlink:href="#6" y="2.171"/><use xlink:href="#30" y="6.513"/><use xlink:href="#32" y="8.684"/><use xlink:href="#33" y="10.855"/><use xlink:href="#34" y="13.026"/><use xlink:href="#35" y="15.197"/><use xlink:href="#36" y="19.539"/><use xlink:href="#37" y="23.881"/><use xlink:href="#38" y="28.223"/><use xlink:href="#40" y="32.565"/><use xlink:href="#42" y="34.736"/></svg><svg x="12075"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#3"/><use xlink:href="#6" y="2.171"/><use xlink:href="#30" y="6.513"/><use xlink:href="#32" y="8.684"/><use xlink:href="#33" y="10.855"/><use xlink:href="#34" y="13.026"/><use xlink:href="#35" y="15.197"/><use xlink:href="#36" y="19.539"/><use xlink:href="#37" y="23.881"/><use xlink:href="#38" y="28.223"/><use xlink:href="#40" y="32.565"/><use xlink:href="#42" y="34.736"/></svg><svg x="12236"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#3"/><use xlink:href="#6" y="2.171"/><use xlink:href="#30" y="6.513"/><use xlink:href="#32" y="8.684"/><use xlink:href="#33" y="10.855"/><use xlink:href="#34" y="13.026"/><use xlink:href="#35" y="15.197"/><use xlink:href="#36" y="19.539"/><use xlink:href="#37" y="23.881"/><use xlink:href="#38" y="28.223"/><use xlink:href="#40" y="32.565"/><use xlink:href="#42" y="34.736"/></svg><svg x="12397"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#6"/><use xlink:href="#30" y="4.342"/><use xlink:href="#32" y="6.513"/><use xlink:href="#33" y="8.684"/><use xlink:href="#34" y="10.855"/><use xlink:href="#35" y="13.026"/><use xlink:href="#36" y="17.368"/><use xlink:href="#37" y="21.71"/><use xlink:href="#38" y="26.052"/><use xlink:href="#40" y="30.394"/><use xlink:href="#42" y="32.565"/><use xlink:href="#43" y="34.736"/></svg><svg x="12558"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#6"/><use xlink:href="#30" y="4.342"/><use xlink:href="#32" y="6.513"/><use xlink:href="#33" y="8.684"/><use xlink:href="#34" y="10.855"/><use xlink:href="#35" y="13.026"/><use xlink:href="#36" y="17.368"/><use xlink:href="#37" y="21.71"/><use xlink:href="#38" y="26.052"/><use xlink:href="#40" y="30.394"/><use xlink:href="#42" y="32.565"/><use xlink:href="#43" y="34.736"/><text y="38.577" class="u">Подсчет</text><text x="8.016" y="38.577" class="u">объектов:</text><text x="19.038" y="38.577" class="u">20%</text><text x="23.046" y="38.577" class="u">(1/5)</text></svg><svg x="12719"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#6"/><use xlink:href="#30" y="4.342"/><use xlink:href="#32" y="6.513"/><use xlink:href="#33" y="8.684"/><use xlink:href="#34" y="10.855"/><use xlink:href="#35" y="13.026"/><use xlink:href="#36" y="17.368"/><use xlink:href="#37" y="21.71"/><use xlink:href="#38" y="26.052"/><use xlink:href="#40" y="30.394"/><use xlink:href="#42" y="32.565"/><use xlink:href="#43" y="34.736"/><text y="38.577" class="u">Подсчет</text><text x="8.016" y="38.577" class="u">объектов:</text><text x="19.038" y="38.577" class="u">60%</text><text x="23.046" y="38.577" class="u">(3/5)</text></svg><svg x="12880"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#6"/><use xlink:href="#30" y="4.342"/><use xlink:href="#32" y="6.513"/><use xlink:href="#33" y="8.684"/><use xlink:href="#34" y="10.855"/><use xlink:href="#35" y="13.026"/><use xlink:href="#36" y="17.368"/><use xlink:href="#37" y="21.71"/><use xlink:href="#38" y="26.052"/><use xlink:href="#40" y="30.394"/><use xlink:href="#42" y="32.565"/><use xlink:href="#43" y="34.736"/><text y="38.577" class="u">Подсчет</text><text x="8.016" y="38.577" class="u">объектов:</text><text x="19.038" y="38.577" class="u">80%</text><text x="23.046" y="38.577" class="u">(4/5)</text></svg><svg x="13041"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#30"/><use xlink:href="#32" y="2.171"/><use xlink:href="#33" y="4.342"/><use xlink:href="#34" y="6.513"/><use xlink:href="#35" y="8.684"/><use xlink:href="#36" y="13.026"/><use xlink:href="#37" y="17.368"/><use xlink:href="#38" y="21.71"/><use xlink:href="#40" y="26.052"/><use xlink:href="#42" y="28.223"/><use xlink:href="#43" y="30.394"/><use xlink:href="#44" y="32.565"/><use xlink:href="#45" y="34.736"/></svg><svg x="13202"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#30"/><use xlink:href="#32" y="2.171"/><use xlink:href="#33" y="4.342"/><use xlink:href="#34" y="6.513"/><use xlink:href="#35" y="8.684"/><use xlink:href="#36" y="13.026"/><use xlink:href="#37" y="17.368"/><use xlink:href="#38" y="21.71"/><use xlink:href="#40" y="26.052"/><use xlink:href="#42" y="28.223"/><use xlink:href="#43" y="30.394"/><use xlink:href="#44" y="32.565"/><use xlink:href="#45" y="34.736"/><text y="38.577" class="u">Сжатие</text><text x="7.014" y="38.577" class="u">объектов:</text><text x="18.036" y="38.577" class="u">33%</text><text x="22.044" y="38.577" class="u">(1/3)</text></svg><svg x="13363"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#30"/><use xlink:href="#32" y="2.171"/><use xlink:href="#33" y="4.342"/><use xlink:href="#34" y="6.513"/><use xlink:href="#35" y="8.684"/><use xlink:href="#36" y="13.026"/><use xlink:href="#37" y="17.368"/><use xlink:href="#38" y="21.71"/><use xlink:href="#40" y="26.052"/><use xlink:href="#42" y="28.223"/><use xlink:href="#43" y="30.394"/><use xlink:href="#44" y="32.565"/><use xlink:href="#45" y="34.736"/><text y="38.577" class="u">Сжатие</text><text x="7.014" y="38.577" class="u">объектов:</text><text x="18.036" y="38.577" class="u">66%</text><text x="22.044" y="38.577" class="u">(2/3)</text></svg><svg x="13524"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#30"/><use xlink:href="#32" y="2.171"/><use xlink:href="#33" y="4.342"/><use xlink:href="#34" y="6.513"/><use xlink:href="#35" y="8.684"/><use xlink:href="#36" y="13.026"/><use xlink:href="#37" y="17.368"/><use xlink:href="#38" y="21.71"/><use xlink:href="#40" y="26.052"/><use xlink:href="#42" y="28.223"/><use xlink:href="#43" y="30.394"/><use xlink:href="#44" y="32.565"/><use xlink:href="#45" y="34.736"/><text y="38.577" class="u">Сжатие</text><text x="7.014" y="38.577" class="u">объектов:</text><text x="17.034" y="38.577" class="u">100%</text><text x="22.044" y="38.577" class="u">(3/3)</text></svg><svg x="13685"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#32"/><use xlink:href="#33" y="2.171"/><use xlink:href="#34" y="4.342"/><use xlink:href="#35" y="6.513"/><use xlink:href="#36" y="10.855"/><use xlink:href="#37" y="15.197"/><use xlink:href="#38" y="19.539"/><use xlink:href="#40" y="23.881"/><use xlink:href="#42" y="26.052"/><use xlink:href="#43" y="28.223"/><use xlink:href="#44" y="30.394"/><use xlink:href="#45" y="32.565"/><use xlink:href="#46" y="34.736"/></svg><svg x="13846"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#32"/><use xlink:href="#33" y="2.171"/><use xlink:href="#34" y="4.342"/><use xlink:href="#35" y="6.513"/><use xlink:href="#36" y="10.855"/><use xlink:href="#37" y="15.197"/><use xlink:href="#38" y="19.539"/><use xlink:href="#40" y="23.881"/><use xlink:href="#42" y="26.052"/><use xlink:href="#43" y="28.223"/><use xlink:href="#44" y="30.394"/><use xlink:href="#45" y="32.565"/><use xlink:href="#46" y="34.736"/><text y="38.577" class="u">Запись</text><text x="7.014" y="38.577" class="u">объектов:</text><text x="18.036" y="38.577" class="u">66%</text><text x="22.044" y="38.577" class="u">(2/3)</text></svg><svg x="14007"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#32"/><use xlink:href="#33" y="2.171"/><use xlink:href="#34" y="4.342"/><use xlink:href="#35" y="6.513"/><use xlink:href="#36" y="10.855"/><use xlink:href="#37" y="15.197"/><use xlink:href="#38" y="19.539"/><use xlink:href="#40" y="23.881"/><use xlink:href="#42" y="26.052"/><use xlink:href="#43" y="28.223"/><use xlink:href="#44" y="30.394"/><use xlink:href="#45" y="32.565"/><use xlink:href="#46" y="34.736"/><text y="38.577" class="u">Запись</text><text x="7.014" y="38.577" class="u">объектов:</text><text x="17.034" y="38.577" class="u">100%</text><text x="22.044" y="38.577" class="u">(3/3)</text></svg><svg x="14168"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#34"/><use xlink:href="#35" y="2.171"/><use xlink:href="#36" y="6.513"/><use xlink:href="#37" y="10.855"/><use xlink:href="#38" y="15.197"/><use xlink:href="#40" y="19.539"/><use xlink:href="#42" y="21.71"/><use xlink:href="#43" y="23.881"/><use xlink:href="#44" y="26.052"/><use xlink:href="#45" y="28.223"/><use xlink:href="#46" y="30.394"/><use xlink:href="#47" y="32.565"/><use xlink:href="#48" y="34.736"/></svg><svg x="14329"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#34"/><use xlink:href="#35" y="2.171"/><use xlink:href="#36" y="6.513"/><use xlink:href="#37" y="10.855"/><use xlink:href="#38" y="15.197"/><use xlink:href="#40" y="19.539"/><use xlink:href="#42" y="21.71"/><use xlink:href="#43" y="23.881"/><use xlink:href="#44" y="26.052"/><use xlink:href="#45" y="28.223"/><use xlink:href="#46" y="30.394"/><use xlink:href="#47" y="32.565"/><use xlink:href="#48" y="34.736"/><text y="38.577" class="u">remote:</text><text x="8.016" y="38.577" class="u">Resolving</text><text x="18.036" y="38.577" class="u">deltas:</text><text x="28.056" y="38.577" class="u">0%</text><text x="31.062" y="38.577" class="u">(0/2)</text></svg><svg x="14490"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#35"/><use xlink:href="#36" y="4.342"/><use xlink:href="#37" y="8.684"/><use xlink:href="#38" y="13.026"/><use xlink:href="#40" y="17.368"/><use xlink:href="#42" y="19.539"/><use xlink:href="#43" y="21.71"/><use xlink:href="#44" y="23.881"/><use xlink:href="#45" y="26.052"/><use xlink:href="#46" y="28.223"/><use xlink:href="#47" y="30.394"/><use xlink:href="#48" y="32.565"/><use xlink:href="#49" y="34.736"/></svg><svg x="14651"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#36"/><use xlink:href="#37" y="4.342"/><use xlink:href="#38" y="8.684"/><use xlink:href="#40" y="13.026"/><use xlink:href="#42" y="15.197"/><use xlink:href="#43" y="17.368"/><use xlink:href="#44" y="19.539"/><use xlink:href="#45" y="21.71"/><use xlink:href="#46" y="23.881"/><use xlink:href="#47" y="26.052"/><use xlink:href="#48" y="28.223"/><use xlink:href="#49" y="30.394"/><use xlink:href="#50" y="32.565"/><use xlink:href="#51" y="34.736"/></svg><svg x="14812"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#36"/><use xlink:href="#37" y="4.342"/><use xlink:href="#38" y="8.684"/><use xlink:href="#40" y="13.026"/><use xlink:href="#42" y="15.197"/><use xlink:href="#43" y="17.368"/><use xlink:href="#44" y="19.539"/><use xlink:href="#45" y="21.71"/><use xlink:href="#46" y="23.881"/><use xlink:href="#47" y="26.052"/><use xlink:href="#48" y="28.223"/><use xlink:href="#49" y="30.394"/><use xlink:href="#50" y="32.565"/><use xlink:href="#51" y="34.736"/></svg><svg x="14973"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#36"/><use xlink:href="#37" y="4.342"/><use xlink:href="#38" y="8.684"/><use xlink:href="#40" y="13.026"/><use xlink:href="#42" y="15.197"/><use xlink:href="#43" y="17.368"/><use xlink:href="#44" y="19.539"/><use xlink:href="#45" y="21.71"/><use xlink:href="#46" y="23.881"/><use xlink:href="#47" y="26.052"/><use xlink:href="#48" y="28.223"/><use xlink:href="#49" y="30.394"/><use xlink:href="#50" y="32.565"/><use xlink:href="#51" y="34.736"/></svg><svg x="15134"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#37" y="2.171"/><use xlink:href="#38" y="6.513"/><use xlink:href="#40" y="10.855"/><use xlink:href="#42" y="13.026"/><use xlink:href="#43" y="15.197"/><use xlink:href="#44" y="17.368"/><use xlink:href="#45" y="19.539"/><use xlink:href="#46" y="21.71"/><use xlink:href="#47" y="23.881"/><use xlink:href="#48" y="26.052"/><use xlink:href="#49" y="28.223"/><use xlink:href="#50" y="30.394"/><use xlink:href="#51" y="32.565"/></svg><svg x="15295"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="36.882"/><use xlink:href="#37"/><use xlink:href="#38" y="4.342"/><use xlink:href="#40" y="8.684"/><use xlink:href="#42" y="10.855"/><use xlink:href="#43" y="13.026"/><use xlink:href="#44" y="15.197"/><use xlink:href="#45" y="17.368"/><use xlink:href="#46" y="19.539"/><use xlink:href="#47" y="21.71"/><use xlink:href="#48" y="23.881"/><use xlink:href="#49" y="26.052"/><use xlink:href="#50" y="28.223"/><use xlink:href="#51" y="30.394"/><use xlink:href="#40" y="34.736"/><use xlink:href="#52" y="36.907"/></svg><svg x="15456"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="36.882"/><use xlink:href="#37"/><use xlink:href="#38" y="4.342"/><use xlink:href="#40" y="8.684"/><use xlink:href="#42" y="10.855"/><use xlink:href="#43" y="13.026"/><use xlink:href="#44" y="15.197"/><use xlink:href="#45" y="17.368"/><use xlink:href="#46" y="19.539"/><use xlink:href="#47" y="21.71"/><use xlink:href="#48" y="23.881"/><use xlink:href="#49" y="26.052"/><use xlink:href="#50" y="28.223"/><use xlink:href="#51" y="30.394"/><use xlink:href="#40" y="34.736"/><use xlink:href="#52" y="36.907"/></svg><svg x="15617"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="36.882"/><use xlink:href="#37"/><use xlink:href="#38" y="4.342"/><use xlink:href="#40" y="8.684"/><use xlink:href="#42" y="10.855"/><use xlink:href="#43" y="13.026"/><use xlink:href="#44" y="15.197"/><use xlink:href="#45" y="17.368"/><use xlink:href="#46" y="19.539"/><use xlink:href="#47" y="21.71"/><use xlink:href="#48" y="23.881"/><use xlink:href="#49" y="26.052"/><use xlink:href="#50" y="28.223"/><use xlink:href="#51" y="30.394"/><use xlink:href="#40" y="34.736"/><use xlink:href="#52" y="36.907"/></svg><svg x="15778"><use xlink:href="#a"/><use xlink:href="#b" x="1.996" y="36.882"/><use xlink:href="#37"/><use xlink:href="#38" y="4.342"/><use xlink:href="#40" y="8.684"/><use xlink:href="#42" y="10.855"/><use xlink:href="#43" y="13.026"/><use xlink:href="#44" y="15.197"/><use xlink:href="#45" y="17.368"/><use xlink:href="#46" y="19.539"/><use xlink:href="#47" y="21.71"/><use xlink:href="#48" y="23.881"/><use xlink:href="#49" y="26.052"/><use xlink:href="#50" y="28.223"/><use xlink:href="#51" y="30.394"/><use xlink:href="#3" y="34.736"/><use xlink:href="#52" y="36.907"/></svg><svg x="15939"><use xlink:href="#a"/><use xlink:href="#b" x="2.996" y="36.882"/><use xlink:href="#37"/><use xlink:href="#38" y="4.342"/><use xlink:href="#40" y="8.684"/><use xlink:href="#42" y="10.855"/><use xlink:href="#43" y="13.026"/><use xlink:href="#44" y="15.197"/><use xlink:href="#45" y="17.368"/><use xlink:href="#46" y="19.539"/><use xlink:href="#47" y="21.71"/><use xlink:href="#48" y="23.881"/><use xlink:href="#49" y="26.052"/><use xlink:href="#50" y="28.223"/><use xlink:href="#51" y="30.394"/><use xlink:href="#3" y="34.736"/><text y="38.577" class="g">❯</text><text x="2.004" y="38.577" class="A">e</text><text x="152.304" y="38.577" class="h">15:32:27</text></svg><svg x="16100"><use xlink:href="#a"/><use xlink:href="#b" x="3.996" y="36.882"/><use xlink:href="#37"/><use xlink:href="#38" y="4.342"/><use xlink:href="#40" y="8.684"/><use xlink:href="#42" y="10.855"/><use xlink:href="#43" y="13.026"/><use xlink:href="#44" y="15.197"/><use xlink:href="#45" y="17.368"/><use xlink:href="#46" y="19.539"/><use xlink:href="#47" y="21.71"/><use xlink:href="#48" y="23.881"/><use xlink:href="#49" y="26.052"/><use xlink:href="#50" y="28.223"/><use xlink:href="#51" y="30.394"/><use xlink:href="#3" y="34.736"/><text y="38.577" class="g">❯</text><text x="2.004" y="38.577" class="j">ex</text><text x="152.304" y="38.577" class="h">15:32:27</text></svg><svg x="16261"><use xlink:href="#a"/><use xlink:href="#b" x="4.996" y="36.882"/><use xlink:href="#37"/><use xlink:href="#38" y="4.342"/><use xlink:href="#40" y="8.684"/><use xlink:href="#42" y="10.855"/><use xlink:href="#43" y="13.026"/><use xlink:href="#44" y="15.197"/><use xlink:href="#45" y="17.368"/><use xlink:href="#46" y="19.539"/><use xlink:href="#47" y="21.71"/><use xlink:href="#48" y="23.881"/><use xlink:href="#49" y="26.052"/><use xlink:href="#50" y="28.223"/><use xlink:href="#51" y="30.394"/><use xlink:href="#3" y="34.736"/><text y="38.577" class="g">❯</text><text x="2.004" y="38.577" class="A">exi</text><text x="152.304" y="38.577" class="h">15:32:27</text></svg><svg x="16422"><use xlink:href="#a"/><use xlink:href="#b" x="5.996" y="36.882"/><use xlink:href="#37"/><use xlink:href="#38" y="4.342"/><use xlink:href="#40" y="8.684"/><use xlink:href="#42" y="10.855"/><use xlink:href="#43" y="13.026"/><use xlink:href="#44" y="15.197"/><use xlink:href="#45" y="17.368"/><use xlink:href="#46" y="19.539"/><use xlink:href="#47" y="21.71"/><use xlink:href="#48" y="23.881"/><use xlink:href="#49" y="26.052"/><use xlink:href="#50" y="28.223"/><use xlink:href="#51" y="30.394"/><use xlink:href="#3" y="34.736"/><use xlink:href="#53" y="36.907"/></svg><svg x="16583"><use xlink:href="#a"/><use xlink:href="#b" x="5.996" y="36.882"/><use xlink:href="#37"/><use xlink:href="#38" y="4.342"/><use xlink:href="#40" y="8.684"/><use xlink:href="#42" y="10.855"/><use xlink:href="#43" y="13.026"/><use xlink:href="#44" y="15.197"/><use xlink:href="#45" y="17.368"/><use xlink:href="#46" y="19.539"/><use xlink:href="#47" y="21.71"/><use xlink:href="#48" y="23.881"/><use xlink:href="#49" y="26.052"/><use xlink:href="#50" y="28.223"/><use xlink:href="#51" y="30.394"/><use xlink:href="#3" y="34.736"/><use xlink:href="#53" y="36.907"/></svg><svg x="16744"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#38" y="2.171"/><use xlink:href="#40" y="6.513"/><use xlink:href="#42" y="8.684"/><use xlink:href="#43" y="10.855"/><use xlink:href="#44" y="13.026"/><use xlink:href="#45" y="15.197"/><use xlink:href="#46" y="17.368"/><use xlink:href="#47" y="19.539"/><use xlink:href="#48" y="21.71"/><use xlink:href="#49" y="23.881"/><use xlink:href="#50" y="26.052"/><use xlink:href="#51" y="28.223"/><use xlink:href="#3" y="32.565"/><use xlink:href="#54" y="34.736"/></svg><svg x="16905"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#38" y="2.171"/><use xlink:href="#40" y="6.513"/><use xlink:href="#42" y="8.684"/><use xlink:href="#43" y="10.855"/><use xlink:href="#44" y="13.026"/><use xlink:href="#45" y="15.197"/><use xlink:href="#46" y="17.368"/><use xlink:href="#47" y="19.539"/><use xlink:href="#48" y="21.71"/><use xlink:href="#49" y="23.881"/><use xlink:href="#50" y="26.052"/><use xlink:href="#51" y="28.223"/><use xlink:href="#3" y="32.565"/><use xlink:href="#54" y="34.736"/></svg><svg x="17066"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="36.882"/><use xlink:href="#38" y="2.171"/><use xlink:href="#40" y="6.513"/><use xlink:href="#42" y="8.684"/><use xlink:href="#43" y="10.855"/><use xlink:href="#44" y="13.026"/><use xlink:href="#45" y="15.197"/><use xlink:href="#46" y="17.368"/><use xlink:href="#47" y="19.539"/><use xlink:href="#48" y="21.71"/><use xlink:href="#49" y="23.881"/><use xlink:href="#50" y="26.052"/><use xlink:href="#51" y="28.223"/><use xlink:href="#3" y="32.565"/><use xlink:href="#54" y="34.736"/></svg></svg></g></g></svg></svg>
|