Merge branch 'develop' into ReallyLiri/feature/icon/sqlalchemy
109
.github/scripts/build_assets/drafts/peek_icons imgur.yml
vendored
Normal file
@ -0,0 +1,109 @@
|
||||
name: Peek Icons
|
||||
on:
|
||||
pull_request:
|
||||
types: [labeled]
|
||||
jobs:
|
||||
build:
|
||||
name: Get Fonts From Icomoon
|
||||
if: contains(github.event.pull_request.labels.*.name, 'bot:peek')
|
||||
runs-on: windows-2019
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup Python v3.8
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.8
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r ./.github/scripts/requirements.txt
|
||||
- name: Run icomoon_peek.py
|
||||
env:
|
||||
PR_TITLE: ${{ github.event.pull_request.title }}
|
||||
shell: cmd
|
||||
run: >
|
||||
python ./.github/scripts/icomoon_peek.py
|
||||
./.github/scripts/build_assets/geckodriver-v0.27.0-win64/geckodriver.exe ./icomoon.json
|
||||
./devicon.json ./icons ./ --headless --pr_title "%PR_TITLE%"
|
||||
- name: Upload geckodriver.log for debugging purposes
|
||||
uses: actions/upload-artifact@v2
|
||||
if: failure()
|
||||
with:
|
||||
name: geckodriver-log
|
||||
path: ./geckodriver.log
|
||||
- name: Upload screenshot of the newly made icons
|
||||
id: icons_overview_img_step
|
||||
uses: devicons/public-upload-to-imgur@v2.1
|
||||
if: success()
|
||||
with:
|
||||
path: ./screenshots/new_icons.png
|
||||
client_id: ${{secrets.IMGUR_CLIENT_ID}}
|
||||
- name: Upload zoomed in screenshot of the newly made icons
|
||||
id: icons_detailed_img_step
|
||||
uses: devicons/public-upload-to-imgur@v2.1
|
||||
if: success()
|
||||
with:
|
||||
path: ./screenshots/screenshot_*.png
|
||||
client_id: ${{secrets.IMGUR_CLIENT_ID}}
|
||||
- name: Generate the markdowns for the screenshot and put it in the DETAILED_IMGS_MARKDOWN env var
|
||||
if: success()
|
||||
env:
|
||||
IMG_URLS: ${{ steps.icons_detailed_img_step.outputs.imgur_urls }}
|
||||
run: |
|
||||
echo 'DETAILED_IMGS_MARKDOWN<<EOF' >> $GITHUB_ENV
|
||||
python ./.github/scripts/generate_screenshot_markdown.py >> $GITHUB_ENV
|
||||
echo 'EOF' >> $GITHUB_ENV
|
||||
shell: bash
|
||||
- name: Comment on the PR about the result
|
||||
if: success()
|
||||
uses: github-actions-up-and-running/pr-comment@v1.0.1
|
||||
env:
|
||||
OVERVIEW_IMG_URL: ${{ fromJSON(steps.icons_overview_img_step.outputs.imgur_urls)[0] }}
|
||||
MESSAGE: |
|
||||
Hi!
|
||||
|
||||
I'm Devicons' Peek Bot and I just peeked at the icons that you wanted to add using [icomoon.io](https://icomoon.io/app/#/select).
|
||||
Here is the result below:
|
||||
|
||||

|
||||
|
||||
Here are the zoomed-in screenshots of the added icons:
|
||||
{1}
|
||||
|
||||
Note: If the images don't show up, it's probably because it has been autodeleted by Imgur after 6 months due to our API choice.
|
||||
|
||||
The maintainers will now take a look at it and decide whether to merge your PR.
|
||||
|
||||
Thank you for contributing to Devicon! I hope everything works out and your icons are accepted into the repo.
|
||||
|
||||
Cheers :),
|
||||
|
||||
Peek Bot
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
message: ${{format(env.MESSAGE, env.OVERVIEW_IMG_URL, env.DETAILED_IMGS_MARKDOWN)}}
|
||||
- name: Comment on the PR about the result
|
||||
if: failure()
|
||||
uses: github-actions-up-and-running/pr-comment@v1.0.1
|
||||
env:
|
||||
MESSAGE: |
|
||||
Hi!
|
||||
|
||||
I'm Devicons' Peek Bot and it seems we've ran into a problem. I'm supposed to check your svgs but I couldn't do my task due to an issue.
|
||||
|
||||
Can you please double check and fix the possible issues below:
|
||||
|
||||
- Your svgs are named and added correctly to the /icons folder as seen [here](https://github.com/devicons/devicon/blob/master/CONTRIBUTING.md#orgGuidelines).
|
||||
- Your icon information has been added to the `devicon.json` as seen [here](https://github.com/devicons/devicon/blob/master/CONTRIBUTING.md#updateDevicon)
|
||||
- Your PR title follows the format seen [here](https://github.com/devicons/devicon/blob/master/CONTRIBUTING.md#overview)
|
||||
|
||||
Once everything is fixed, the maintainers will try again. If I still fail, the maintainers will investigate what cause this problem.
|
||||
|
||||
Thank you for your help :smile:
|
||||
|
||||
Cheers :),
|
||||
|
||||
Peek Bot
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
message: ${{env.MESSAGE}}
|
4
.github/workflows/build_icons.yml
vendored
@ -34,7 +34,7 @@ jobs:
|
||||
run: npm run build-css
|
||||
- name: Upload screenshot of the newly made icons
|
||||
id: imgur_step
|
||||
uses: devicons/public-upload-to-imgur@v2.1
|
||||
uses: devicons/public-upload-to-imgur@v2.1.1
|
||||
if: success()
|
||||
with:
|
||||
path: ./new_icons.png
|
||||
@ -56,5 +56,5 @@ jobs:
|
||||
base: 'master'
|
||||
commit-message: 'Built new icons, icomoon.json and devicon.css'
|
||||
title: 'bot:build new icons, icomoon.json and devicon.css'
|
||||
body: ${{ format(env.MESSAGE, fromJSON(steps.imgur_step.outputs.imgur_url)[0] ) }}
|
||||
body: ${{ format(env.MESSAGE, fromJSON(steps.imgur_step.outputs.imgur_urls)[0] ) }}
|
||||
delete-branch: true
|
||||
|
57
.github/workflows/peek_icons.yml
vendored
@ -25,63 +25,18 @@ jobs:
|
||||
python ./.github/scripts/icomoon_peek.py
|
||||
./.github/scripts/build_assets/geckodriver-v0.27.0-win64/geckodriver.exe ./icomoon.json
|
||||
./devicon.json ./icons ./ --headless --pr_title "%PR_TITLE%"
|
||||
- name: Upload screenshots for comments
|
||||
uses: actions/upload-artifact@v2
|
||||
if: success()
|
||||
with:
|
||||
name: screenshots
|
||||
path: ./screenshots/*.png
|
||||
- name: Upload geckodriver.log for debugging purposes
|
||||
uses: actions/upload-artifact@v2
|
||||
if: failure()
|
||||
with:
|
||||
name: geckodriver-log
|
||||
path: ./geckodriver.log
|
||||
- name: Upload screenshot of the newly made icons
|
||||
id: icons_overview_img_step
|
||||
uses: devicons/public-upload-to-imgur@v2.1
|
||||
if: success()
|
||||
with:
|
||||
path: ./screenshots/new_icons.png
|
||||
client_id: ${{secrets.IMGUR_CLIENT_ID}}
|
||||
- name: Upload zoomed in screenshot of the newly made icons
|
||||
id: icons_detailed_img_step
|
||||
uses: devicons/public-upload-to-imgur@v2.1
|
||||
if: success()
|
||||
with:
|
||||
path: ./screenshots/screenshot_*.png
|
||||
client_id: ${{secrets.IMGUR_CLIENT_ID}}
|
||||
- name: Generate the markdowns for the screenshot and put it in the DETAILED_IMGS_MARKDOWN env var
|
||||
if: success()
|
||||
env:
|
||||
IMG_URLS: ${{ steps.icons_detailed_img_step.outputs.imgur_urls }}
|
||||
run: |
|
||||
echo 'DETAILED_IMGS_MARKDOWN<<EOF' >> $GITHUB_ENV
|
||||
python ./.github/scripts/generate_screenshot_markdown.py >> $GITHUB_ENV
|
||||
echo 'EOF' >> $GITHUB_ENV
|
||||
shell: bash
|
||||
- name: Comment on the PR about the result
|
||||
if: success()
|
||||
uses: github-actions-up-and-running/pr-comment@v1.0.1
|
||||
env:
|
||||
OVERVIEW_IMG_URL: ${{ fromJSON(steps.icons_overview_img_step.outputs.imgur_urls)[0] }}
|
||||
MESSAGE: |
|
||||
Hi!
|
||||
|
||||
I'm Devicons' Peek Bot and I just peeked at the icons that you wanted to add using [icomoon.io](https://icomoon.io/app/#/select).
|
||||
Here is the result below:
|
||||
|
||||

|
||||
|
||||
Here are the zoomed-in screenshots of the added icons:
|
||||
{1}
|
||||
|
||||
Note: If the images don't show up, it's probably because it has been autodeleted by Imgur after 6 months due to our API choice.
|
||||
|
||||
The maintainers will now take a look at it and decide whether to merge your PR.
|
||||
|
||||
Thank you for contributing to Devicon! I hope everything works out and your icons are accepted into the repo.
|
||||
|
||||
Cheers :),
|
||||
|
||||
Peek Bot
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
message: ${{format(env.MESSAGE, env.OVERVIEW_IMG_URL, env.DETAILED_IMGS_MARKDOWN)}}
|
||||
- name: Comment on the PR about the result
|
||||
if: failure()
|
||||
uses: github-actions-up-and-running/pr-comment@v1.0.1
|
||||
|
13
devicon.css
@ -1,10 +1,10 @@
|
||||
@font-face {
|
||||
font-family: 'devicon';
|
||||
src: url('fonts/devicon.eot?flyg0o');
|
||||
src: url('fonts/devicon.eot?flyg0o#iefix') format('embedded-opentype'),
|
||||
url('fonts/devicon.ttf?flyg0o') format('truetype'),
|
||||
url('fonts/devicon.woff?flyg0o') format('woff'),
|
||||
url('fonts/devicon.svg?flyg0o#devicon') format('svg');
|
||||
src: url('fonts/devicon.eot?r4n05t');
|
||||
src: url('fonts/devicon.eot?r4n05t#iefix') format('embedded-opentype'),
|
||||
url('fonts/devicon.ttf?r4n05t') format('truetype'),
|
||||
url('fonts/devicon.woff?r4n05t') format('woff'),
|
||||
url('fonts/devicon.svg?r4n05t#devicon') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: block;
|
||||
@ -25,6 +25,9 @@
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.devicon-bash-plain:before {
|
||||
content: "\e979";
|
||||
}
|
||||
.devicon-woocommerce-plain-wordmark:before {
|
||||
content: "\e966";
|
||||
}
|
||||
|
28
devicon.json
@ -895,6 +895,16 @@
|
||||
"color": "#47848f",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "eleventy",
|
||||
"tags": ["ssg", "static site generator"],
|
||||
"versions": {
|
||||
"svg": ["original", "plain"],
|
||||
"font": ["plain"]
|
||||
},
|
||||
"color": "#1f1f1f",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "elm",
|
||||
"tags": [
|
||||
@ -2550,6 +2560,24 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "microsoftsqlserver",
|
||||
"tags": [
|
||||
"database"
|
||||
],
|
||||
"versions": {
|
||||
"svg": [
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
],
|
||||
"font": [
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
]
|
||||
},
|
||||
"color": "#909DAA",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "ssh",
|
||||
"tags": [
|
||||
|
2
devicon.min.css
vendored
@ -118,11 +118,30 @@ devicon.controller('IconListCtrl', function($scope, $http, $compile) {
|
||||
|
||||
$http.get(baseUrl + '/icons/' + $scope.selectedIcon.name + '/' + $scope.selectedIcon.name + '-' + svgVersion + '.svg').success(function(data){
|
||||
|
||||
var svg = angular.element(data);
|
||||
var innerSVG = (svg[0].innerHTML);
|
||||
var svgElement = angular.element(data);
|
||||
var innerSvgElement = null;
|
||||
|
||||
$scope.selectedSvgIcon = innerSVG;
|
||||
$scope.selectedSvgIndex = index;
|
||||
/**
|
||||
* Loop trough svg image to find
|
||||
* the actual svg content (not any comments or stuff
|
||||
* we don't care for).
|
||||
* See https://github.com/devicons/devicon/issues/444#issuecomment-753699913
|
||||
*/
|
||||
for (const [key, value] of Object.entries(svgElement)) {
|
||||
/** [object SVGSVGElement] ensures we have the actual svg content */
|
||||
if(value.toString() == '[object SVGSVGElement]') {
|
||||
innerSvgElement = value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if(innerSvgElement === null) {
|
||||
console.error('Could not find content of given SVG.')
|
||||
} else {
|
||||
var innerSVG = (innerSvgElement.innerHTML);
|
||||
$scope.selectedSvgIcon = innerSVG;
|
||||
$scope.selectedSvgIndex = index;
|
||||
}
|
||||
});
|
||||
}
|
||||
/*---- End of "Change selected svg icon" ----*/
|
||||
|
Before Width: | Height: | Size: 1016 KiB After Width: | Height: | Size: 1018 KiB |
@ -3,28 +3,6 @@
|
||||
viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
|
||||
<g>
|
||||
<rect fill="none" x="-143.76" y="4.24" width="119.53" height="119.53"/>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#293138" d="M-38.99,28.64l-37.74-22.4c-2.25-1.34-4.77-2.01-7.28-2.01s-5.03,0.67-7.28,2.01l-37.74,22.4
|
||||
c-4.5,2.67-7.28,7.61-7.28,12.96v44.8c0,5.35,2.77,10.29,7.28,12.96l37.73,22.4c2.25,1.34,4.76,2,7.28,2c2.51,0,5.03-0.67,7.28-2
|
||||
l37.74-22.4c4.5-2.67,7.28-7.62,7.28-12.96V41.6C-31.71,36.26-34.48,31.31-38.99,28.64z M-68.21,98.59l0.06,3.22
|
||||
c0,0.39-0.25,0.83-0.55,0.99l-1.91,1.1c-0.3,0.15-0.56-0.03-0.56-0.42l-0.03-3.17c-1.63,0.68-3.29,0.84-4.34,0.42
|
||||
c-0.2-0.08-0.29-0.37-0.21-0.71l0.69-2.91c0.06-0.23,0.18-0.46,0.34-0.6c0.06-0.06,0.12-0.1,0.18-0.13
|
||||
c0.11-0.06,0.22-0.07,0.31-0.03c1.14,0.38,2.59,0.2,3.99-0.5c1.78-0.9,2.97-2.72,2.95-4.52c-0.02-1.64-0.9-2.31-3.05-2.33
|
||||
c-2.74,0.01-5.3-0.53-5.34-4.57c-0.03-3.32,1.69-6.78,4.43-8.96l-0.03-3.25c0-0.4,0.24-0.84,0.55-1l1.85-1.18
|
||||
c0.3-0.15,0.56,0.04,0.56,0.43l0.03,3.25c1.36-0.54,2.54-0.69,3.61-0.44c0.23,0.06,0.34,0.38,0.24,0.75l-0.72,2.88
|
||||
c-0.06,0.22-0.18,0.44-0.33,0.58c-0.06,0.06-0.13,0.11-0.19,0.14c-0.1,0.05-0.19,0.06-0.28,0.05c-0.49-0.11-1.65-0.36-3.48,0.56
|
||||
c-1.92,0.97-2.59,2.64-2.58,3.88c0.02,1.48,0.77,1.93,3.39,1.97c3.49,0.06,4.99,1.58,5.03,5.09
|
||||
C-63.55,92.62-65.39,96.33-68.21,98.59z M-41.87,38.09l-35.7,22.05c-4.45,2.6-7.73,5.52-7.74,10.89v43.99
|
||||
c0,3.21,1.3,5.29,3.29,5.9c-0.65,0.11-1.32,0.19-1.98,0.19c-2.09,0-4.15-0.57-5.96-1.64l-37.73-22.4
|
||||
c-3.69-2.19-5.98-6.28-5.98-10.67V41.6c0-4.39,2.29-8.48,5.98-10.67l37.74-22.4c1.81-1.07,3.87-1.64,5.96-1.64
|
||||
s4.15,0.57,5.96,1.64l37.74,22.4c3.11,1.85,5.21,5.04,5.8,8.63C-35.76,36.89-38.58,36.17-41.87,38.09z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#293138" d="M-48.88,90.73l-9.4,5.62c-0.25,0.15-0.43,0.31-0.43,0.61v2.46c0,0.3,0.2,0.43,0.45,0.28l9.54-5.8
|
||||
c0.25-0.15,0.29-0.42,0.29-0.72v-2.17C-48.43,90.71-48.63,90.59-48.88,90.73z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#293138" d="M109.01,28.64L71.28,6.24C69.03,4.91,66.51,4.24,64,4.24s-5.03,0.67-7.28,2.01l-37.74,22.4
|
||||
c-4.5,2.67-7.28,7.61-7.28,12.96v44.8c0,5.35,2.77,10.29,7.28,12.96l37.73,22.4c2.25,1.34,4.76,2,7.28,2c2.51,0,5.03-0.67,7.28-2
|
||||
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 2.0 KiB |
1
icons/eleventy/eleventy-original.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#1F1F1F" d="M18 0h92v128H18z"/><path d="M55.3 36.3h.4c1.1 0 1.5.9 1.5 2.3v41.8c0 1.8-.4 3-1.6 3l-4.8-.1c-1.2 0-1.6-1-1.6-3V45.5l-2.1.5c-1 0-1.5-.8-1.5-2.2v-3c0-1.2.4-2 1.4-2.2l8.3-2.2zm16 36.1l.1 3 .6 1.3.6.6.8.1h2.2c1 0 1.7.8 1.7 2v1.9c0 1.2-.6 2-1.8 2h-3.2l-2.3-.1c-.7-.2-1.4-.5-2.2-1a5.7 5.7 0 01-2-1.9c-.4-.8-.8-1.9-1-3.2-.4-1.4-.5-3-.5-4.8v-16h-1.5c-1.1 0-1.6-1-1.6-2.4v-1.7c0-1.4.5-2.3 1.6-2.3h1.5v-.1l.6-12.3c0-1.5.5-2.5 1.6-2.5h3.1c1.2 0 1.6 1 1.6 2.5v12.3h3.6c1.1 0 1.6 1 1.6 2.4V54c0 1.4-.5 2.3-1.6 2.3h-3.6v16.2zm9.4 15.7c0-2 .3-3.2 1.5-3.2.2 0 .4 0 1.4.4l1.1.3.2-.1.4-.7c.3-.6.4-1.6.4-3l-.6-3.3L79 52.7v-.9c0-1.2.3-2 1.2-2H84c.5 0 1 .3 1.3.6.3.4.5.9.6 1.6l3.4 18 2.6-17.8c.1-.8.3-1.3.6-1.7.3-.4.8-.6 1.3-.6h2.6c1 0 1.4.8 1.4 2l-.1.8L92 82.2c-.5 2.5-1 4.4-1.5 5.7a6.6 6.6 0 01-2 3c-.9.6-1.9.9-3.1.9h-.3c-2 0-3.3-.6-4.1-1.7-.3-.4-.4-1-.4-2zM31.3 38.8l8.2-2.1h.5c1 0 1.4.8 1.4 2.2v41.9c0 1.8-.4 2.9-1.6 2.9h-4.7c-1.2 0-1.6-1.1-1.6-3v-35l-2 .6c-1.2 0-1.6-.9-1.6-2.2v-3c0-1.2.4-2 1.4-2.3z" fill="#FFF"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
icons/eleventy/eleventy-plain.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M18 0h92v128H18V0zm37.3 36.3L47 38.5c-1 .2-1.4 1-1.4 2.2v3c0 1.4.4 2.3 1.5 2.2l2.1-.5v35c0 1.8.4 2.9 1.6 2.9h4.8c1.2 0 1.6-1 1.6-3V38.7c0-1.4-.4-2.3-1.5-2.3h-.4zm16 36.1V56.2h3.5c1.1 0 1.6-.9 1.6-2.3v-1.7c0-1.4-.5-2.3-1.6-2.3h-3.6V37.4c0-1.5-.4-2.5-1.6-2.5h-3.1c-1 0-1.5 1-1.6 2.5l-.6 12.3h-1.5c-1.1 0-1.6 1-1.6 2.4V54c0 1.4.5 2.3 1.6 2.3h1.5v16.1c0 1.8.1 3.4.4 4.8.3 1.3.7 2.4 1.2 3.2.5.8 1.1 1.5 1.9 2l2.2.9 2.3.2h3.2c1.2 0 1.8-.9 1.8-2.1v-2c0-1.1-.6-1.9-1.7-1.9h-2.2l-.8-.1-.6-.6c-.2-.2-.4-.7-.6-1.4l-.2-2.9zm9.4 15.7c0 .9 0 1.5.4 1.9.8 1.1 2.2 1.7 4 1.7h.4c1.2 0 2.2-.3 3-.9.8-.6 1.5-1.6 2-3 .6-1.3 1.1-3.2 1.6-5.7l5.6-29.3v-.9c0-1.2-.3-2-1.3-2h-2.6c-.5 0-1 .2-1.3.6-.3.4-.5 1-.6 1.7L89.3 70l-3.4-18c-.1-.7-.3-1.2-.6-1.6-.4-.3-.8-.5-1.3-.5H80c-.9 0-1.2.7-1.2 2v.7l6.2 25.9.6 3.3c0 1.4-.1 2.4-.4 3a2 2 0 01-.4.7h-.2a7 7 0 01-1.1-.2l-1.4-.4c-1.2 0-1.5 1.1-1.5 3.2zM31.3 38.8c-1 .3-1.4 1-1.4 2.2v3c0 1.4.4 2.3 1.5 2.3l2-.5v35c0 1.8.5 2.9 1.7 2.9h4.7c1.2 0 1.6-1.1 1.6-3V39c0-1.4-.4-2.3-1.4-2.3l-.5.1-8.2 2.1z" fill="#000"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
160
icons/microsoftsqlserver/microsoftsqlserver-plain-wordmark.svg
Normal file
@ -0,0 +1,160 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
viewBox="0 0 128 128" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M75.39,15.31c-0.2,0.06-1.25,0.41-2.36,0.77c-5.94,1.94-10.15,4.19-11.19,5.98c-0.4,0.68-0.47,1.24-0.24,1.79
|
||||
c0.26,0.62,0.74,1.1,2.06,2.03c0.62,0.44,1.67,1.34,2.36,2.02c3.27,3.26,4.85,7.26,4.67,11.78c-0.2,5.09-2.59,10.18-7.15,15.26
|
||||
c-1.59,1.78-3.23,3.26-6.36,5.77c-2.61,2.09-4.03,3.45-5,4.76c-2.97,4.04-2.17,7.64,2.35,10.65c3.99,2.66,11.02,4.87,19.32,6.07
|
||||
c2.78,0.4,5.92,0.66,6.68,0.55l0.53-0.08l0.83-1.5c4.21-7.57,6.33-14.72,6.59-22.11c0.11-3.3-0.3-7.2-1.01-9.48
|
||||
c-0.13-0.41-0.22-0.76-0.21-0.77c0.01-0.01,1.19-0.37,2.61-0.79c7.49-2.23,14.74-3.99,20.73-5.03c1.17-0.2,2.16-0.41,2.21-0.46
|
||||
c0.32-0.31-0.61-1.77-2.13-3.33c-5.6-5.78-15.5-10.18-27.12-12.06c-2.24-0.36-2.51-0.49-3.34-1.59c-1.32-1.75-2.56-4.73-4.25-10.2
|
||||
C75.92,15.16,75.87,15.16,75.39,15.31L75.39,15.31z M76.16,17.37c0.65,1.78,1.05,3.17,1.05,3.66v0.39l-0.55-0.06
|
||||
c-2.99-0.35-7.77-1.09-8.79-1.36c-0.26-0.07-0.41-0.17-0.36-0.25c0.08-0.12,1.09-0.61,4.11-1.98c2.81-1.28,3.88-1.75,3.97-1.76
|
||||
C75.63,16,75.88,16.62,76.16,17.37L76.16,17.37z M69.83,21.12c3.65,0.77,6.32,1.25,6.9,1.25c0.57,0,0.51,0.05-2.18,1.69
|
||||
c-2.07,1.26-2.31,1.38-2.83,1.38h-0.57l-1.54-1.55c-1.86-1.88-3.12-3.26-3.12-3.42c0-0.06,0.04-0.08,0.09-0.05
|
||||
C66.63,20.43,68.1,20.75,69.83,21.12L69.83,21.12z M67.13,22.85c0.9,1.05,1.59,1.93,1.55,1.96c-0.08,0.07-2.64-0.56-4.2-1.04
|
||||
c-1.37-0.42-1.53-0.56-1.17-1.03c0.24-0.31,2-1.78,2.13-1.79C65.48,20.95,66.23,21.8,67.13,22.85L67.13,22.85z M78.79,25.01
|
||||
c0.36,0.85,0.63,1.54,0.62,1.55c-0.02,0.01-4.82-0.73-5.24-0.81c-0.09-0.02,0.72-0.57,1.82-1.24c1.1-0.67,2.02-1.17,2.07-1.12
|
||||
C78.11,23.44,78.43,24.16,78.79,25.01L78.79,25.01z M68.32,26.63c0.09,0.09,1.24,3.78,1.19,3.83c-0.02,0.02-0.56-0.61-1.21-1.41
|
||||
c-0.65-0.8-1.63-1.93-2.2-2.51l-1.02-1.07l1.58,0.55C67.54,26.31,68.28,26.59,68.32,26.63L68.32,26.63z M72.91,27.12
|
||||
c1.99,0.28,3.64,0.54,3.67,0.57c0.03,0.03-1.18,0.97-2.67,2.08c-1.5,1.11-2.73,2.01-2.75,1.99c-0.02-0.02-0.17-0.48-0.34-1.04
|
||||
c-0.17-0.55-0.59-1.7-0.94-2.56c-0.35-0.86-0.63-1.56-0.61-1.56C69.28,26.6,70.92,26.84,72.91,27.12L72.91,27.12z M77.91,28.71
|
||||
c0.44,1.03,0.61,2.01,0.68,3.98c0.04,1.06,0.04,1.92,0.01,1.92c-0.04,0-0.67-0.22-1.4-0.48c-1.46-0.53-4.32-1.47-4.66-1.54
|
||||
c-0.15-0.03,0.54-0.69,2.36-2.25c1.41-1.22,2.61-2.21,2.67-2.21C77.62,28.13,77.77,28.39,77.91,28.71L77.91,28.71z M83.04,28.96
|
||||
c2.2,0.45,4.13,0.85,4.28,0.89c0.22,0.05-0.31,0.38-2.64,1.66c-1.6,0.88-3.42,1.88-4.04,2.23c-0.62,0.35-1.14,0.62-1.15,0.61
|
||||
c-0.01-0.01,0.05-0.34,0.14-0.73c0.33-1.43,0.12-3.21-0.54-4.63c-0.19-0.41-0.35-0.78-0.35-0.8
|
||||
C78.75,28.08,79.15,28.16,83.04,28.96L83.04,28.96z M89.05,31.65c-0.11,0.5-0.36,1.35-0.55,1.9c-0.42,1.21-1.96,4.36-2.17,4.44
|
||||
c-0.08,0.03-0.81-0.3-1.6-0.74c-0.79-0.44-1.94-1.02-2.54-1.29l-1.1-0.49l4.03-2.59c3.34-2.14,4.04-2.55,4.08-2.36
|
||||
C89.23,30.65,89.16,31.15,89.05,31.65L89.05,31.65z M92,30.73c4.18,1.2,8.6,2.82,8.34,3.06c-0.05,0.05-0.6,0.23-1.21,0.4
|
||||
c-3.16,0.89-7.55,2.41-9.6,3.32c-0.64,0.28-1.19,0.49-1.22,0.45c-0.03-0.03,0.22-0.95,0.56-2.05c0.66-2.16,1.43-5.07,1.43-5.44
|
||||
c0-0.16,0.06-0.22,0.21-0.18C90.61,30.33,91.28,30.53,92,30.73L92,30.73z M74.01,35.07c0.95,0.31,2.07,0.74,2.48,0.95
|
||||
c0.74,0.37,0.75,0.38,0.54,0.61c-0.38,0.42-4.53,4.29-4.65,4.33c-0.06,0.02-0.11-0.56-0.11-1.41c0-1.47-0.17-4.13-0.3-4.72
|
||||
C71.87,34.38,71.95,34.39,74.01,35.07L74.01,35.07z M100.57,35.84c-0.91,1.51-2.42,3.66-3.5,5.02c-1.11,1.39-3.46,4-3.6,4
|
||||
c-0.05,0-0.39-0.42-0.76-0.94c-1.34-1.91-2.89-3.56-4.25-4.52c-0.13-0.09-0.21-0.19-0.18-0.22c0.03-0.03,2.26-0.85,4.95-1.83
|
||||
c5.44-1.97,7.84-2.77,7.99-2.67C101.24,34.69,100.95,35.21,100.57,35.84L100.57,35.84z M103.97,35.58
|
||||
c3.76,2.62,6.31,4.74,7.23,6.01c0.23,0.32,0.4,0.59,0.38,0.61c-0.02,0.02-1.23,0.15-2.69,0.3c-5.83,0.57-9.98,1.16-12.18,1.72
|
||||
c-0.59,0.15-1.08,0.26-1.09,0.25c-0.01-0.01,0.38-0.49,0.87-1.08c2.54-3.05,4.84-6.22,5.69-7.87c0.23-0.44,0.45-0.79,0.49-0.79
|
||||
C102.72,34.73,103.3,35.11,103.97,35.58L103.97,35.58z M82.93,38.83c0.72,0.39,1.27,0.74,1.24,0.8c-0.06,0.11-6.39,3.58-6.45,3.53
|
||||
c-0.01-0.01,0.31-1.05,0.73-2.32c0.42-1.27,0.82-2.65,0.9-3.07l0.14-0.77l1.07,0.57C81.15,37.88,82.21,38.44,82.93,38.83
|
||||
L82.93,38.83z M77.62,39.03c-0.61,2.12-1.85,4.86-2.42,5.33c-0.13,0.11-0.39-0.04-1.22-0.72c-0.59-0.47-1.19-0.94-1.35-1.05
|
||||
c-0.15-0.11-0.27-0.22-0.24-0.25c0.44-0.43,5.48-4.5,5.51-4.44C77.91,37.94,77.79,38.45,77.62,39.03L77.62,39.03z M89.1,42.72
|
||||
c0.95,0.64,3.07,2.53,2.96,2.65c-0.03,0.03-2.18,0.73-4.77,1.55c-2.59,0.82-5.48,1.75-6.42,2.06c-0.94,0.32-1.72,0.56-1.73,0.55
|
||||
c-0.01-0.01,0.65-0.76,1.46-1.67c2.12-2.37,4.3-4.9,5.08-5.9l0.67-0.86l0.87,0.47C87.69,41.83,88.54,42.35,89.1,42.72L89.1,42.72z
|
||||
M84.19,41.36c-0.06,0.08-0.63,0.8-1.27,1.61c-0.64,0.81-2.18,2.78-3.42,4.38l-2.26,2.91l-0.07-0.49
|
||||
c-0.14-0.95-0.65-2.82-0.94-3.45l-0.29-0.64l1.44-0.72c1.48-0.74,4.58-2.42,6.03-3.27C84.3,41.17,84.36,41.14,84.19,41.36
|
||||
L84.19,41.36z M72.19,44.88c0.59,0.3,1.14,0.7,1.14,0.82c0,0.19-3.83,3.15-3.94,3.04c-0.02-0.03,0.32-0.71,0.77-1.52
|
||||
c0.45-0.81,0.9-1.72,1.01-2.03c0.11-0.31,0.27-0.56,0.36-0.56C71.62,44.62,71.91,44.74,72.19,44.88L72.19,44.88z M75.45,48.52
|
||||
c0.26,0.52,0.54,1.97,0.4,2.1c-0.06,0.05-1.64,0.8-3.52,1.67c-1.88,0.86-4.33,2.02-5.45,2.58c-1.12,0.56-1.97,0.95-1.88,0.88
|
||||
c0.08-0.07,1.31-1.11,2.74-2.29c2.76-2.29,5.9-5.03,6.47-5.64l0.35-0.37l0.34,0.32C75.08,47.95,75.33,48.29,75.45,48.52
|
||||
L75.45,48.52z M72.36,48.49c-0.27,0.25-1.75,1.53-3.27,2.85c-1.52,1.32-3.35,2.91-4.06,3.53c-1.44,1.25-1.44,1.25,0.4-1.14
|
||||
c1.42-1.85,2.16-2.54,4.2-3.91c0.99-0.66,2.96-1.78,3.16-1.78C72.82,48.04,72.63,48.24,72.36,48.49L72.36,48.49z M86.63,49.75
|
||||
c0.07,0.39,0.17,1.6,0.21,2.68l0.07,1.97l-0.46-0.21c-1.58-0.73-6.02-3.23-5.85-3.3c0.97-0.39,5.76-1.98,5.82-1.92
|
||||
C86.46,49.01,86.56,49.36,86.63,49.75L86.63,49.75z M82.87,53.28c1.85,1.09,3.38,1.99,3.4,2.01c0.02,0.02-0.22,0.22-0.52,0.44
|
||||
c-0.59,0.43-6.85,3.67-6.94,3.59c-0.03-0.03,0.06-0.57,0.19-1.19c0.26-1.26,0.48-5.02,0.38-6.21c-0.04-0.42-0.02-0.72,0.04-0.68
|
||||
C79.46,51.27,81.02,52.19,82.87,53.28L82.87,53.28z M77.76,52.48c0.14,1.17-0.03,3.52-0.35,4.75c-0.37,1.44-0.59,2.04-0.75,2.09
|
||||
c-0.22,0.07-1.59-1.17-2.42-2.21c-0.84-1.05-1.95-3.02-1.78-3.18c0.1-0.1,4.98-2.11,5.14-2.11C77.64,51.81,77.71,52.11,77.76,52.48
|
||||
L77.76,52.48z M71.77,55.42c0.52,1.07,1.7,2.61,2.99,3.92c0.83,0.84,1.04,1.11,0.91,1.2c-0.58,0.39-3.18,1.61-4.82,2.25
|
||||
c-1.99,0.78-4.58,1.68-4.64,1.6c-0.02-0.03,0.57-1.11,1.32-2.4c1.62-2.81,3.67-6.8,3.67-7.13C71.21,54.45,71.38,54.62,71.77,55.42
|
||||
L71.77,55.42z M68.7,55.49c-0.03,0.08-0.28,0.7-0.55,1.38c-1.15,2.92-3.39,6.89-3.89,6.89c-0.39,0-0.96-2.31-1.12-4.53l-0.08-1.12
|
||||
l2.74-1.38c1.51-0.76,2.79-1.38,2.85-1.38C68.71,55.34,68.73,55.41,68.7,55.49L68.7,55.49z M86.99,58.19
|
||||
c0.01,1.68-0.69,5.75-1.07,6.16c-0.16,0.17-1.89-0.47-3.46-1.28c-1.4-0.72-3.71-2.15-3.71-2.3c0-0.04,0.35-0.22,0.79-0.4
|
||||
c0.83-0.35,4.7-2.42,6.34-3.39l0.94-0.56l0.08,0.43C86.94,57.09,86.98,57.7,86.99,58.19L86.99,58.19z M61.18,60.13
|
||||
c0.16,1.33,0.57,2.96,1.08,4.25c0.21,0.53,0.36,0.99,0.33,1.01c-0.2,0.18-8.43,2.45-9.52,2.62l-0.52,0.08l0.08-0.4
|
||||
c0.11-0.57,0.91-2.19,1.5-3.07c0.74-1.09,2.56-2.92,3.76-3.77c0.9-0.63,3.06-1.9,3.12-1.82C61.05,59.04,61.11,59.53,61.18,60.13
|
||||
L61.18,60.13z M79.85,62.94c2.54,1.22,3.5,1.64,4.72,2.06l0.93,0.32l-0.59,0.3c-3.33,1.69-9.23,4.09-10.75,4.39
|
||||
c-0.34,0.07-0.39,0.05-0.32-0.12c0.26-0.68,3.78-7.95,3.85-7.95C77.73,61.94,78.71,62.39,79.85,62.94L79.85,62.94z M75.38,62.67
|
||||
c-0.18,0.86-1.15,3.63-1.71,4.89c-0.49,1.1-1.62,3.23-1.82,3.43c-0.09,0.09-2.1-1.04-3.05-1.72c-1.07-0.76-3.41-3.02-3.34-3.23
|
||||
c0.03-0.08,1.45-0.63,3.17-1.22c3.62-1.25,5.64-2,6.23-2.31C75.42,62.21,75.47,62.23,75.38,62.67L75.38,62.67z M85.5,66.49
|
||||
c-0.03,0.25-0.24,1.34-0.46,2.45c-0.69,3.46-1.53,5.83-2.06,5.83c-0.74,0-5.78-1.22-7.41-1.8c-1.11-0.39-2.06-0.84-2.38-1.11
|
||||
c-0.2-0.17-0.09-0.23,1.35-0.82c4.66-1.9,10.04-4.33,10.62-4.79C85.51,65.97,85.56,66.01,85.5,66.49L85.5,66.49z M61.9,67.55
|
||||
c-0.53,0.95-1.61,2.51-3.68,5.3l-1.76,2.38l-0.53-0.38c-0.74-0.53-1.92-1.81-2.41-2.62c-0.53-0.87-0.89-1.95-0.93-2.77l-0.03-0.64
|
||||
l0.87-0.09c1.18-0.12,4.49-0.8,6.84-1.42c1.07-0.28,1.96-0.49,1.98-0.48C62.26,66.86,62.11,67.18,61.9,67.55L61.9,67.55z M67.03,70
|
||||
c0.59,0.42,1.4,0.96,1.81,1.2l0.75,0.44l-0.34,0.14c-0.19,0.08-2.93,1.08-6.1,2.22c-5.41,1.95-5.76,2.07-5.91,1.87
|
||||
c-0.09-0.12-0.15-0.24-0.14-0.28c0.01-0.04,1.47-1.93,3.25-4.2l3.23-4.13l1.19,0.99C65.44,68.8,66.44,69.58,67.03,70L67.03,70z
|
||||
M68.36,76.21c-1.18,1.77-2.18,3.26-2.22,3.3c-0.09,0.12-1.98-0.32-3.39-0.8c-1.48-0.5-3.31-1.42-4.03-2.04l-0.52-0.45l1.17-0.32
|
||||
c4.77-1.3,11.08-2.97,11.11-2.95C70.5,72.97,69.54,74.44,68.36,76.21L68.36,76.21z M74.03,73.53c2.53,0.87,4.83,1.36,7.82,1.68
|
||||
l0.82,0.09l-2.23,0.8c-5.56,2.01-10.07,3.42-12.33,3.86c-0.64,0.12-1.22,0.23-1.28,0.23c-0.06,0,0.39-0.62,1.01-1.38
|
||||
c1.7-2.07,3.54-4.43,4.03-5.16c0.24-0.35,0.48-0.65,0.53-0.65C72.46,73.01,73.19,73.24,74.03,73.53L74.03,73.53z M82.32,78.21
|
||||
c-0.96,2.47-1.66,3.98-1.9,4.07c-0.47,0.18-7.04-0.78-9.05-1.33c-1.33-0.36-2.18-0.71-1.93-0.8c0.1-0.03,1.05-0.26,2.12-0.5
|
||||
c3.47-0.78,8.77-2.39,10.97-3.33c0.28-0.12,0.53-0.21,0.55-0.19C83.1,76.15,82.76,77.08,82.32,78.21L82.32,78.21z"/>
|
||||
<path d="M43.47,80.3c-0.47,0.2-0.69,0.59-0.74,1.32c-0.05,0.68-0.05,0.69-0.39,0.69c-0.34,0-0.35,0.02-0.31,0.5
|
||||
c0.03,0.45,0.07,0.5,0.36,0.54l0.32,0.04v1.83v1.83L43.26,87l0.56-0.04l0.04-1.8l0.04-1.8h0.82h0.82v1.32
|
||||
c0,1.64,0.17,2.07,0.88,2.31c0.32,0.11,0.62,0.13,0.94,0.06c0.45-0.09,0.47-0.12,0.51-0.6l0.04-0.51l-0.39,0.07
|
||||
c-0.68,0.12-0.72,0.04-0.7-1.62l0.01-1.02h0.34c0.59,0,0.72-0.11,0.72-0.6v-0.46h-0.53h-0.53v-0.44c0-0.65-0.11-0.76-0.72-0.72
|
||||
l-0.52,0.03l-0.04,0.56l-0.04,0.56H44.7h-0.82v-0.4c0-0.55,0.29-0.82,0.79-0.72c0.38,0.07,0.39,0.07,0.39-0.32
|
||||
c0-0.21-0.07-0.46-0.14-0.54C44.76,80.18,43.82,80.16,43.47,80.3L43.47,80.3z"/>
|
||||
<path d="M17.41,80.49c-0.51,0.36-0.26,1.11,0.38,1.11c0.66,0,0.78-0.09,0.78-0.6C18.56,80.35,17.98,80.09,17.41,80.49L17.41,80.49z
|
||||
"/>
|
||||
<path d="M8.75,80.81c-0.18,0.13-0.2,0.43-0.17,3.15l0.03,3L9.17,87l0.56,0.04v-2.61c0-1.44,0.03-2.59,0.06-2.56
|
||||
c0.04,0.03,0.38,0.98,0.77,2.11c0.39,1.13,0.79,2.28,0.89,2.56l0.19,0.51L12.23,87l0.59-0.04l0.9-2.5l0.9-2.5l0.06,2.5
|
||||
c0.04,1.38,0.08,2.52,0.09,2.54c0.01,0.02,0.28,0.02,0.58,0l0.56-0.04l0.03-2.99c0.02-2.11-0.01-3.04-0.11-3.16
|
||||
c-0.21-0.26-1.54-0.21-1.78,0.06c-0.1,0.12-0.52,1.09-0.92,2.15c-0.4,1.06-0.76,1.97-0.8,2.02c-0.04,0.05-0.39-0.8-0.78-1.88
|
||||
c-0.39-1.1-0.82-2.08-0.97-2.23c-0.21-0.21-0.39-0.27-0.95-0.27C9.26,80.66,8.86,80.73,8.75,80.81L8.75,80.81z"/>
|
||||
<path d="M20.87,82.31c-0.86,0.28-1.37,1.17-1.37,2.42c0,1.4,0.53,2.16,1.65,2.35c0.51,0.09,1.38-0.11,1.68-0.38
|
||||
c0.2-0.18,0.29-0.85,0.13-1c-0.04-0.04-0.26,0.03-0.49,0.16c-0.85,0.46-1.48,0.2-1.68-0.69c-0.13-0.59,0.01-1.35,0.32-1.68
|
||||
c0.25-0.27,0.87-0.29,1.35-0.04c0.45,0.23,0.58,0.15,0.58-0.37c0-0.29-0.07-0.45-0.28-0.58C22.4,82.25,21.34,82.16,20.87,82.31
|
||||
L20.87,82.31z"/>
|
||||
<path d="M25.46,82.55c-0.41,0.36-0.41,0.36-0.45,0.09c-0.03-0.23-0.11-0.28-0.54-0.31l-0.5-0.04v2.36v2.36h0.59h0.59v-1.46
|
||||
c0-1.46,0-1.46,0.35-1.84c0.29-0.31,0.42-0.37,0.77-0.33c0.44,0.05,0.53-0.05,0.53-0.6C26.8,82.1,26.12,81.98,25.46,82.55
|
||||
L25.46,82.55z"/>
|
||||
<path d="M28.72,82.33c-0.95,0.28-1.53,1.39-1.41,2.7c0.11,1.21,0.73,1.9,1.85,2.06c1.98,0.27,3.27-1.35,2.71-3.39
|
||||
C31.53,82.5,30.17,81.9,28.72,82.33L28.72,82.33z M30.1,83.25c0.62,0.33,0.78,1.77,0.27,2.45c-0.32,0.42-1.03,0.5-1.46,0.16
|
||||
c-0.26-0.21-0.28-0.31-0.28-1.19c0-0.91,0.02-0.98,0.33-1.25C29.3,83.12,29.74,83.06,30.1,83.25L30.1,83.25z"/>
|
||||
<path d="M33.58,82.36c-0.6,0.26-0.82,0.61-0.82,1.26c0,0.7,0.22,0.96,1.27,1.46c0.6,0.29,0.73,0.4,0.73,0.65
|
||||
c0,0.21-0.09,0.33-0.33,0.41c-0.3,0.1-0.58,0.05-1.53-0.25c-0.18-0.06-0.21-0.01-0.18,0.39c0.03,0.38,0.1,0.49,0.39,0.63
|
||||
c0.49,0.24,1.67,0.22,2.16-0.04c0.71-0.38,0.93-1.53,0.41-2.11c-0.12-0.13-0.55-0.4-0.98-0.6c-0.78-0.37-0.97-0.64-0.7-0.96
|
||||
c0.18-0.21,0.71-0.21,1.24,0.01c0.35,0.15,0.42,0.15,0.48,0.01c0.12-0.32-0.02-0.7-0.31-0.85C35.02,82.16,34.02,82.16,33.58,82.36
|
||||
L33.58,82.36z"/>
|
||||
<path d="M38.35,82.28c-1.04,0.37-1.51,1-1.61,2.12c-0.12,1.38,0.38,2.26,1.46,2.58c1.81,0.53,3.22-0.52,3.21-2.39
|
||||
c-0.01-1.13-0.52-1.96-1.4-2.26C39.6,82.19,38.67,82.16,38.35,82.28L38.35,82.28z M39.72,83.42c0.31,0.26,0.33,0.34,0.33,1.17
|
||||
c0,0.78-0.03,0.92-0.29,1.19c-0.37,0.39-1.07,0.42-1.42,0.07c-0.3-0.3-0.39-0.69-0.32-1.5c0.04-0.53,0.12-0.71,0.37-0.94
|
||||
C38.81,83.05,39.3,83.06,39.72,83.42L39.72,83.42z"/>
|
||||
<polygon points="17.29,84.63 17.32,86.97 17.91,86.97 18.5,86.97 18.5,84.67 18.5,82.37 17.88,82.34 17.26,82.3 17.29,84.63 "/>
|
||||
<path d="M11.66,89.91c-1.51,0.33-2.65,1.16-3.25,2.39c-0.37,0.75-0.39,0.86-0.39,2.08c0,1.18,0.03,1.36,0.32,1.96
|
||||
c0.63,1.29,1.79,2.2,4.21,3.3c2.64,1.2,3.36,1.94,3.36,3.47c0,1.39-0.65,2.22-2.08,2.66c-1.42,0.44-2.84,0.23-4.68-0.69
|
||||
c-0.61-0.31-1.16-0.58-1.2-0.6c-0.05-0.02-0.16,0.05-0.27,0.15c-0.22,0.23-0.26,1.37-0.05,1.75c0.44,0.83,2.75,1.6,4.76,1.6
|
||||
c3.78,0,6.22-2.25,6.02-5.56c-0.04-0.72-0.13-1.07-0.43-1.67c-0.59-1.19-1.35-1.81-3.66-2.94c-1.07-0.52-2.24-1.15-2.61-1.4
|
||||
c-1.46-0.98-1.8-2.65-0.77-3.81c0.57-0.65,1.15-0.86,2.34-0.87c1.13,0,1.59,0.12,2.89,0.78c1.12,0.57,1.22,0.52,1.22-0.59
|
||||
c0-1-0.06-1.09-1.08-1.56C14.96,89.77,13.15,89.59,11.66,89.91L11.66,89.91z"/>
|
||||
<path d="M27.42,89.84c-2.23,0.36-3.95,1.44-5.1,3.21c-0.58,0.9-0.9,1.74-1.2,3.16c-0.33,1.55-0.25,5,0.14,6.42
|
||||
c0.96,3.49,3.11,5.17,6.79,5.33c1.94,0.08,2.69-0.06,4.59-0.87c0.07-0.03,0.39,0.17,0.71,0.44c1.22,1.06,3.9,2.58,4.84,2.76
|
||||
c0.58,0.11,0.74-0.08,0.74-0.9c0-0.38-0.03-0.77-0.07-0.88c-0.04-0.11-0.6-0.46-1.26-0.79c-1.01-0.5-3.03-1.8-3.03-1.95
|
||||
c0-0.03,0.19-0.29,0.41-0.59c0.95-1.24,1.52-2.97,1.72-5.21c0.15-1.71,0.01-3.54-0.38-4.96c-0.71-2.57-2.44-4.34-4.88-5
|
||||
C30.63,89.81,28.31,89.7,27.42,89.84L27.42,89.84z M30.96,92.09c1.4,0.52,2.33,1.58,2.87,3.23c0.27,0.83,0.32,1.21,0.37,2.97
|
||||
c0.07,2.36-0.11,3.5-0.73,4.82c-0.99,2.12-3.16,3.18-5.69,2.79c-3.14-0.48-4.52-2.85-4.36-7.5c0.09-2.67,0.57-4.07,1.81-5.25
|
||||
c0.73-0.7,1.26-1.01,2.11-1.22C28.32,91.67,30.06,91.75,30.96,92.09L30.96,92.09z"/>
|
||||
<path d="M59.29,89.92c-1.45,0.35-2.68,1.25-3.21,2.33c-0.6,1.24-0.62,2.99-0.05,4.12c0.67,1.33,1.57,2.02,4.37,3.35
|
||||
c2.12,1.01,2.83,1.6,3.12,2.59c0.34,1.17-0.1,2.39-1.08,3.03c-1.53,0.99-3.71,0.83-6.04-0.44c-1.05-0.57-1.2-0.51-1.2,0.5
|
||||
c0,0.94,0.13,1.22,0.77,1.59c1.97,1.16,5.25,1.31,7.29,0.35c2.46-1.16,3.57-4.21,2.41-6.63c-0.15-0.31-0.57-0.85-0.95-1.22
|
||||
c-0.58-0.57-1.04-0.85-2.98-1.8c-3.22-1.58-3.86-2.26-3.67-3.87c0.1-0.8,0.52-1.39,1.26-1.76c0.51-0.26,0.79-0.31,1.57-0.31
|
||||
c1.16,0,1.63,0.12,2.8,0.72c1,0.51,1.21,0.55,1.32,0.27c0.14-0.35,0.07-1.52-0.1-1.77c-0.23-0.32-1.4-0.84-2.39-1.05
|
||||
S60.18,89.7,59.29,89.92L59.29,89.92z"/>
|
||||
<path d="M40.96,90.11c-0.11,0.11-0.14,2.18-0.14,8.6v8.46l0.29,0.29l0.29,0.29h4.18c3.2,0,4.2-0.04,4.3-0.15
|
||||
c0.18-0.23,0.26-0.92,0.16-1.38l-0.09-0.41l-3.35-0.06l-3.35-0.06l-0.03-7.77c-0.02-6.03-0.06-7.79-0.17-7.86
|
||||
C42.8,89.92,41.12,89.95,40.96,90.11L40.96,90.11z"/>
|
||||
<path d="M72.39,94.53c-0.57,0.09-1.71,0.54-2.18,0.86c-1.13,0.77-1.93,2-2.38,3.65c-0.28,1.05-0.28,3.64,0,4.71
|
||||
c0.58,2.19,1.86,3.52,3.9,4.06c0.89,0.23,3.14,0.23,4.24,0c1.04-0.22,2.12-0.62,2.32-0.85c0.19-0.22,0.18-1.41-0.01-1.6
|
||||
c-0.1-0.1-0.41-0.03-1.24,0.25c-3.19,1.08-5.65,0.61-6.6-1.26c-0.28-0.55-0.54-1.65-0.54-2.27v-0.33h4.05
|
||||
c2.56,0,4.18-0.05,4.41-0.13c0.52-0.18,0.66-0.63,0.57-1.79c-0.18-2.3-0.95-3.74-2.46-4.65C75.51,94.6,73.73,94.31,72.39,94.53
|
||||
L72.39,94.53z M74.55,96.38c1.2,0.36,1.94,1.38,2.05,2.79l0.06,0.81h-3.39h-3.39l0.08-0.49c0.21-1.22,0.72-2.13,1.51-2.67
|
||||
C72.36,96.21,73.47,96.05,74.55,96.38L74.55,96.38z"/>
|
||||
<path d="M86.14,94.56c-0.56,0.18-1.37,0.83-1.95,1.56l-0.56,0.72l-0.06-1.05l-0.06-1.05l-0.7-0.04c-0.39-0.02-0.82-0.01-0.97,0.03
|
||||
l-0.27,0.06v6.41c0,5.74,0.02,6.41,0.19,6.48c0.24,0.09,1.63,0.09,1.86,0c0.17-0.06,0.19-0.55,0.19-4.25v-4.18l0.52-0.73
|
||||
c0.71-1,1.63-1.81,2.16-1.91c0.28-0.05,0.72-0.01,1.24,0.12c0.51,0.13,0.85,0.16,0.92,0.09c0.06-0.06,0.1-0.54,0.08-1.04
|
||||
c-0.03-0.9-0.05-0.94-0.38-1.09C87.94,94.49,86.59,94.41,86.14,94.56L86.14,94.56z"/>
|
||||
<path d="M106.42,94.57c-0.93,0.16-2.25,0.84-2.93,1.52c-1.29,1.29-1.83,3.07-1.74,5.71c0.08,2.38,0.52,3.56,1.77,4.73
|
||||
c1.19,1.13,2.45,1.5,4.73,1.43c1.67-0.06,3.17-0.39,3.86-0.85c0.34-0.23,0.38-0.32,0.41-0.9c0.02-0.35-0.02-0.72-0.08-0.82
|
||||
c-0.12-0.19-0.02-0.21-2.01,0.42c-0.81,0.25-1.24,0.31-2.24,0.32c-1.98,0.01-3-0.52-3.67-1.88c-0.28-0.57-0.38-0.97-0.43-1.63
|
||||
l-0.06-0.87l4.24-0.03c5.09-0.04,4.75,0.07,4.74-1.5c-0.01-2.76-1.2-4.68-3.35-5.43C108.88,94.53,107.31,94.42,106.42,94.57
|
||||
L106.42,94.57z M108.64,96.39c1.17,0.35,1.94,1.39,2.1,2.86l0.08,0.73h-3.39h-3.39l0.07-0.59c0.17-1.44,1.16-2.68,2.44-3.07
|
||||
C107.04,96.17,108,96.21,108.64,96.39L108.64,96.39z"/>
|
||||
<path d="M120.32,94.55c-0.76,0.25-1.81,1.13-2.39,2c-0.19,0.29-0.2,0.27-0.2-0.65c0-0.58-0.05-1-0.14-1.08
|
||||
c-0.19-0.19-1.65-0.19-1.84,0c-0.2,0.2-0.2,12.59,0,12.79c0.19,0.19,1.88,0.19,2.07,0c0.1-0.1,0.14-1.22,0.14-4.27v-4.13l0.44-0.65
|
||||
c0.65-0.97,1.47-1.73,2.04-1.9c0.49-0.15,0.68-0.13,1.99,0.21c0.37,0.1,0.48-0.11,0.48-0.9c0-0.88-0.08-1.12-0.45-1.29
|
||||
C122.08,94.51,120.71,94.42,120.32,94.55L120.32,94.55z"/>
|
||||
<path d="M89,94.86c-0.12,0.15,0.24,1.25,2.06,6.33c1.21,3.38,2.3,6.25,2.42,6.38c0.45,0.46,2.68,0.35,2.88-0.14
|
||||
c0.15-0.39,4.28-11.86,4.36-12.13c0.14-0.47-0.11-0.61-1.12-0.61c-0.59,0-0.96,0.05-1.03,0.15c-0.06,0.08-0.9,2.47-1.86,5.31
|
||||
c-0.96,2.84-1.78,5.12-1.83,5.06c-0.05-0.05-0.87-2.37-1.82-5.16s-1.79-5.13-1.86-5.22C91.02,94.6,89.18,94.63,89,94.86L89,94.86z"
|
||||
/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 17 KiB |
81
icons/microsoftsqlserver/microsoftsqlserver-plain.svg
Normal file
@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
viewBox="0 0 128 128" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M55.25,4.15c-0.33,0.11-2.1,0.68-3.96,1.29C41.29,8.71,34.21,12.5,32.45,15.5c-0.67,1.15-0.8,2.08-0.4,3.01
|
||||
c0.44,1.05,1.25,1.84,3.47,3.41c1.04,0.73,2.81,2.26,3.96,3.41c5.5,5.49,8.17,12.22,7.87,19.83C47.01,53.72,43,62.28,35.32,70.85
|
||||
c-2.68,2.99-5.43,5.48-10.71,9.71c-4.4,3.52-6.79,5.8-8.42,8.01c-4.99,6.8-3.66,12.86,3.96,17.92c6.72,4.47,18.56,8.19,32.51,10.21
|
||||
c4.68,0.68,9.97,1.11,11.24,0.92l0.89-0.13l1.4-2.52c7.08-12.75,10.66-24.77,11.09-37.21c0.19-5.55-0.51-12.12-1.7-15.96
|
||||
c-0.22-0.69-0.38-1.28-0.35-1.3c0.02-0.02,2-0.61,4.4-1.33c12.61-3.76,24.81-6.72,34.89-8.47c1.96-0.34,3.64-0.69,3.73-0.78
|
||||
c0.54-0.53-1.03-2.98-3.58-5.61c-9.43-9.73-26.09-17.14-45.64-20.29c-3.77-0.61-4.23-0.83-5.63-2.68
|
||||
c-2.22-2.94-4.31-7.97-7.16-17.17C56.15,3.89,56.06,3.89,55.25,4.15L55.25,4.15z M56.55,7.61c1.1,2.99,1.77,5.34,1.77,6.17v0.65
|
||||
l-0.93-0.11c-5.04-0.58-13.08-1.83-14.79-2.29c-0.44-0.12-0.69-0.29-0.61-0.42c0.13-0.21,1.84-1.03,6.92-3.34
|
||||
c4.74-2.15,6.54-2.95,6.68-2.96C55.65,5.31,56.08,6.34,56.55,7.61L56.55,7.61z M45.89,13.92c6.15,1.29,10.63,2.1,11.62,2.1
|
||||
c0.96,0,0.85,0.08-3.67,2.84c-3.49,2.12-3.89,2.32-4.77,2.32h-0.96l-2.58-2.62c-3.13-3.17-5.25-5.49-5.25-5.75
|
||||
c0-0.11,0.06-0.14,0.15-0.09C40.51,12.76,42.98,13.31,45.89,13.92L45.89,13.92z M41.35,16.83c1.51,1.76,2.68,3.24,2.62,3.31
|
||||
c-0.13,0.13-4.44-0.94-7.08-1.75c-2.3-0.71-2.58-0.95-1.97-1.73c0.4-0.52,3.37-3,3.59-3.01C38.57,13.64,39.84,15.06,41.35,16.83
|
||||
L41.35,16.83z M60.97,20.48c0.6,1.43,1.06,2.59,1.04,2.61c-0.03,0.02-8.11-1.23-8.82-1.37c-0.15-0.03,1.22-0.96,3.06-2.08
|
||||
s3.41-1.97,3.49-1.88C59.82,17.83,60.37,19.05,60.97,20.48L60.97,20.48z M43.35,23.19c0.16,0.16,2.09,6.36,2,6.44
|
||||
c-0.03,0.03-0.95-1.03-2.04-2.38c-1.1-1.35-2.75-3.24-3.7-4.23l-1.71-1.79l2.67,0.92C42.03,22.66,43.29,23.13,43.35,23.19
|
||||
L43.35,23.19z M51.07,24.02c3.35,0.48,6.13,0.91,6.18,0.96c0.04,0.05-1.98,1.62-4.5,3.5c-2.52,1.87-4.6,3.38-4.63,3.35
|
||||
c-0.03-0.03-0.28-0.81-0.56-1.74c-0.28-0.93-1-2.86-1.59-4.31c-0.59-1.45-1.05-2.63-1.03-2.63C44.96,23.15,47.72,23.55,51.07,24.02
|
||||
L51.07,24.02z M59.49,26.7c0.74,1.73,1.03,3.39,1.15,6.7c0.06,1.78,0.07,3.23,0.01,3.23c-0.06,0-1.12-0.37-2.35-0.81
|
||||
c-2.46-0.89-7.28-2.48-7.85-2.59c-0.25-0.05,0.91-1.16,3.96-3.79c2.38-2.05,4.4-3.72,4.49-3.72C59,25.73,59.26,26.17,59.49,26.7
|
||||
L59.49,26.7z M68.13,27.12c3.71,0.76,6.95,1.44,7.21,1.5c0.37,0.09-0.52,0.65-4.44,2.8c-2.7,1.48-5.76,3.16-6.8,3.75
|
||||
c-1.05,0.59-1.91,1.04-1.93,1.02c-0.02-0.02,0.09-0.57,0.24-1.23c0.56-2.4,0.21-5.4-0.91-7.79c-0.33-0.69-0.6-1.3-0.6-1.35
|
||||
C60.9,25.65,61.57,25.77,68.13,27.12L68.13,27.12z M78.24,31.65c-0.19,0.84-0.6,2.27-0.93,3.2c-0.71,2.04-3.3,7.33-3.65,7.47
|
||||
c-0.14,0.06-1.36-0.51-2.69-1.25c-1.33-0.74-3.26-1.72-4.27-2.17l-1.84-0.82l6.79-4.35c5.63-3.61,6.8-4.29,6.86-3.97
|
||||
C78.55,29.96,78.43,30.81,78.24,31.65L78.24,31.65z M83.2,30.1c7.04,2.02,14.47,4.75,14.04,5.16c-0.09,0.08-1.01,0.39-2.04,0.68
|
||||
c-5.31,1.51-12.7,4.06-16.16,5.58c-1.07,0.47-2,0.82-2.05,0.77c-0.05-0.05,0.37-1.61,0.94-3.45c1.11-3.63,2.4-8.53,2.4-9.16
|
||||
c0-0.28,0.1-0.37,0.35-0.3C80.86,29.43,81.99,29.75,83.2,30.1L83.2,30.1z M52.93,37.4c1.61,0.53,3.48,1.24,4.17,1.59
|
||||
c1.25,0.63,1.26,0.64,0.9,1.03c-0.64,0.71-7.63,7.22-7.83,7.29c-0.1,0.04-0.18-0.95-0.18-2.38c-0.01-2.48-0.29-6.95-0.5-7.95
|
||||
C49.33,36.25,49.46,36.26,52.93,37.4L52.93,37.4z M97.63,38.69c-1.54,2.54-4.07,6.16-5.9,8.44c-1.87,2.34-5.82,6.74-6.05,6.74
|
||||
c-0.09,0-0.66-0.71-1.27-1.59c-2.25-3.21-4.86-5.99-7.15-7.61c-0.22-0.15-0.35-0.32-0.3-0.37c0.05-0.05,3.81-1.43,8.33-3.07
|
||||
c9.16-3.32,13.19-4.67,13.44-4.49C98.75,36.77,98.26,37.64,97.63,38.69L97.63,38.69z M103.36,38.26
|
||||
c6.32,4.41,10.62,7.98,12.18,10.11c0.39,0.54,0.68,1,0.64,1.03c-0.04,0.03-2.07,0.26-4.53,0.5c-9.81,0.97-16.8,1.95-20.5,2.89
|
||||
c-0.99,0.25-1.82,0.44-1.83,0.43c-0.02-0.02,0.63-0.82,1.46-1.81c4.28-5.13,8.14-10.47,9.58-13.24c0.38-0.73,0.75-1.33,0.83-1.33
|
||||
C101.26,36.83,102.23,37.47,103.36,38.26L103.36,38.26z M67.93,43.73c1.21,0.65,2.14,1.25,2.09,1.35
|
||||
c-0.09,0.18-10.76,6.02-10.85,5.94c-0.02-0.02,0.53-1.77,1.23-3.91c0.7-2.14,1.38-4.46,1.51-5.17l0.24-1.3l1.8,0.96
|
||||
C64.95,42.13,66.72,43.08,67.93,43.73L67.93,43.73z M59,44.07c-1.03,3.57-3.12,8.17-4.07,8.97c-0.22,0.18-0.65-0.07-2.06-1.21
|
||||
c-0.99-0.8-2-1.59-2.27-1.77c-0.26-0.18-0.45-0.37-0.41-0.42c0.73-0.73,9.23-7.58,9.27-7.47C59.49,42.24,59.28,43.1,59,44.07
|
||||
L59,44.07z M78.32,50.28c1.61,1.07,5.17,4.26,4.98,4.46c-0.05,0.05-3.67,1.23-8.03,2.6c-4.36,1.38-9.22,2.94-10.8,3.47
|
||||
c-1.59,0.53-2.89,0.95-2.9,0.93c-0.02-0.02,1.09-1.28,2.46-2.81c3.57-3.98,7.24-8.25,8.54-9.93l1.12-1.45l1.47,0.79
|
||||
C75.95,48.78,77.39,49.66,78.32,50.28L78.32,50.28z M70.06,47.99c-0.1,0.13-1.06,1.35-2.14,2.72c-1.08,1.36-3.66,4.68-5.76,7.37
|
||||
l-3.81,4.9l-0.13-0.83c-0.24-1.61-1.1-4.74-1.59-5.81l-0.49-1.07l2.42-1.21c2.5-1.25,7.71-4.08,10.15-5.5
|
||||
C70.25,47.66,70.35,47.62,70.06,47.99L70.06,47.99z M49.85,53.91c0.99,0.51,1.92,1.17,1.92,1.38c0,0.32-6.45,5.3-6.62,5.11
|
||||
c-0.04-0.04,0.54-1.19,1.29-2.56c0.76-1.37,1.52-2.9,1.7-3.42c0.18-0.52,0.46-0.94,0.6-0.94C48.9,53.48,49.4,53.68,49.85,53.91
|
||||
L49.85,53.91z M55.35,60.04c0.45,0.87,0.91,3.32,0.67,3.54c-0.1,0.09-2.76,1.35-5.93,2.8c-3.17,1.45-7.28,3.4-9.17,4.34
|
||||
c-1.88,0.94-3.31,1.6-3.17,1.48c0.14-0.13,2.21-1.86,4.61-3.86c4.64-3.86,9.93-8.47,10.9-9.49l0.58-0.61l0.57,0.55
|
||||
C54.73,59.09,55.15,59.65,55.35,60.04L55.35,60.04z M50.14,59.99c-0.46,0.41-2.94,2.58-5.5,4.8C42.08,67,39,69.68,37.8,70.73
|
||||
c-2.42,2.11-2.42,2.11,0.67-1.92c2.39-3.12,3.64-4.28,7.07-6.58c1.67-1.12,4.99-2.99,5.31-2.99C50.92,59.23,50.6,59.58,50.14,59.99
|
||||
L50.14,59.99z M74.17,62.11c0.13,0.65,0.28,2.69,0.35,4.51l0.12,3.32l-0.77-0.36c-2.66-1.23-10.13-5.44-9.85-5.55
|
||||
c1.63-0.65,9.7-3.33,9.79-3.24C73.88,60.86,74.04,61.45,74.17,62.11L74.17,62.11z M67.83,68.05c3.11,1.83,5.68,3.35,5.72,3.38
|
||||
c0.04,0.03-0.37,0.37-0.88,0.75c-0.99,0.73-11.54,6.18-11.68,6.04c-0.04-0.04,0.1-0.95,0.31-2c0.43-2.12,0.82-8.44,0.63-10.45
|
||||
c-0.06-0.71-0.04-1.21,0.06-1.15C62.1,64.68,64.72,66.22,67.83,68.05L67.83,68.05z M59.23,66.71c0.24,1.97-0.05,5.93-0.58,7.99
|
||||
c-0.63,2.42-0.99,3.43-1.26,3.52c-0.37,0.13-2.67-1.97-4.08-3.72c-1.42-1.76-3.28-5.08-3-5.35c0.17-0.16,8.39-3.55,8.64-3.56
|
||||
C59.03,65.58,59.16,66.09,59.23,66.71L59.23,66.71z M49.15,71.66c0.87,1.8,2.86,4.4,5.04,6.6c1.4,1.41,1.75,1.87,1.53,2.01
|
||||
c-0.98,0.66-5.35,2.71-8.11,3.79c-3.35,1.32-7.7,2.82-7.8,2.7c-0.04-0.04,0.96-1.86,2.22-4.04c2.73-4.74,6.18-11.44,6.18-11.99
|
||||
C48.21,70.03,48.5,70.31,49.15,71.66L49.15,71.66z M43.99,71.77c-0.05,0.14-0.47,1.18-0.92,2.33c-1.94,4.92-5.71,11.6-6.55,11.6
|
||||
c-0.65,0-1.61-3.89-1.88-7.63l-0.14-1.88l4.61-2.33c2.54-1.28,4.69-2.33,4.8-2.33C44,71.52,44.04,71.63,43.99,71.77L43.99,71.77z
|
||||
M74.77,76.32c0.02,2.83-1.17,9.68-1.8,10.37c-0.26,0.29-3.19-0.79-5.82-2.15c-2.36-1.22-6.24-3.63-6.24-3.87
|
||||
c0-0.07,0.59-0.37,1.33-0.68c1.4-0.59,7.91-4.07,10.67-5.7l1.59-0.94l0.14,0.72C74.69,74.46,74.76,75.49,74.77,76.32L74.77,76.32z
|
||||
M31.34,79.59c0.27,2.24,0.96,4.98,1.82,7.16c0.35,0.89,0.6,1.66,0.56,1.7c-0.34,0.31-14.19,4.12-16.02,4.41l-0.87,0.14l0.13-0.67
|
||||
c0.19-0.95,1.53-3.69,2.53-5.17c1.24-1.84,4.31-4.92,6.34-6.35c1.51-1.07,5.15-3.19,5.26-3.07C31.1,77.75,31.22,78.58,31.34,79.59
|
||||
L31.34,79.59z M62.76,84.31c4.28,2.05,5.9,2.76,7.95,3.47l1.57,0.54l-0.99,0.5c-5.61,2.84-15.53,6.89-18.1,7.39
|
||||
c-0.57,0.11-0.65,0.08-0.54-0.2c0.44-1.15,6.36-13.38,6.47-13.38C59.19,82.62,60.84,83.39,62.76,84.31L62.76,84.31z M55.23,83.85
|
||||
c-0.3,1.44-1.93,6.11-2.88,8.23c-0.82,1.84-2.72,5.43-3.06,5.77c-0.15,0.15-3.53-1.76-5.13-2.9c-1.8-1.28-5.74-5.08-5.63-5.43
|
||||
c0.04-0.13,2.44-1.05,5.33-2.05c6.09-2.1,9.5-3.37,10.49-3.88C55.31,83.09,55.39,83.12,55.23,83.85L55.23,83.85z M72.26,90.3
|
||||
c-0.06,0.42-0.4,2.26-0.77,4.12c-1.16,5.83-2.57,9.81-3.47,9.81c-1.24,0-9.73-2.06-12.47-3.03c-1.86-0.66-3.47-1.41-4-1.88
|
||||
c-0.33-0.29-0.16-0.39,2.28-1.39c7.85-3.2,16.9-7.28,17.88-8.06C72.28,89.42,72.37,89.48,72.26,90.3L72.26,90.3z M32.54,92.08
|
||||
c-0.89,1.59-2.72,4.22-6.2,8.92l-2.97,4l-0.89-0.64c-1.25-0.89-3.23-3.05-4.06-4.42c-0.89-1.47-1.5-3.28-1.57-4.66l-0.06-1.07
|
||||
l1.47-0.15c1.99-0.2,7.55-1.35,11.52-2.39c1.8-0.47,3.3-0.83,3.34-0.8C33.15,90.91,32.89,91.45,32.54,92.08L32.54,92.08z
|
||||
M41.17,96.19c0.99,0.71,2.35,1.61,3.05,2.02l1.27,0.74l-0.57,0.24c-0.32,0.13-4.93,1.81-10.26,3.74c-9.1,3.29-9.7,3.48-9.95,3.14
|
||||
c-0.15-0.2-0.25-0.41-0.23-0.48c0.02-0.07,2.48-3.24,5.47-7.07l5.43-6.95l2,1.67C38.5,94.17,40.18,95.48,41.17,96.19L41.17,96.19z
|
||||
M43.41,106.64c-1.99,2.97-3.67,5.48-3.73,5.56c-0.15,0.2-3.33-0.55-5.71-1.34c-2.5-0.84-5.58-2.4-6.78-3.43l-0.87-0.75l1.96-0.53
|
||||
c8.03-2.19,18.65-5,18.7-4.96C47.02,101.2,45.4,103.67,43.41,106.64L43.41,106.64z M52.97,102.14c4.25,1.46,8.13,2.29,13.16,2.83
|
||||
l1.39,0.15l-3.75,1.35c-9.36,3.38-16.94,5.75-20.76,6.49c-1.07,0.21-2.05,0.38-2.16,0.38c-0.11,0,0.66-1.05,1.71-2.32
|
||||
c2.86-3.49,5.96-7.46,6.78-8.68c0.4-0.59,0.8-1.09,0.89-1.09C50.32,101.26,51.54,101.65,52.97,102.14L52.97,102.14z M66.92,110.02
|
||||
c-1.61,4.16-2.79,6.69-3.21,6.85c-0.8,0.31-11.85-1.32-15.22-2.23c-2.24-0.61-3.67-1.2-3.25-1.35c0.16-0.06,1.76-0.43,3.57-0.84
|
||||
c5.85-1.32,14.77-4.03,18.46-5.61c0.48-0.2,0.9-0.35,0.93-0.32C68.22,106.55,67.65,108.12,66.92,110.02L66.92,110.02z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.0 KiB |
BIN
icons/microsoftsqlserver/microsoftsqlserver.eps
Normal file
@ -7,7 +7,6 @@
|
||||
"build-css": "gulp updateCss && gulp clean",
|
||||
"peek-test": "python ./.github/scripts/icomoon_peek.py ./.github/scripts/build_assets/geckodriver-v0.27.0-win64/geckodriver.exe ./icomoon.json ./devicon.json ./icons ./ --pr_title \"%PR_TITLE%\"",
|
||||
"build-test": "python ./.github/scripts/icomoon_build.py ./.github/scripts/build_assets/geckodriver-v0.27.0-win64/geckodriver.exe ./icomoon.json ./devicon.json ./icons ./"
|
||||
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|