diff --git a/.editorconfig b/.editorconfig index 5715afa7..1645df35 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,15 +2,13 @@ root=true [*] charset=utf-8 -insert_final_newline=true - -[LICENSE.md] -indent_size=unset -indent_style=space - -[*.{json,yml}] indent_size=2 indent_style=space +insert_final_newline=true +trim_trailing_whitespace=true + +[*.md] +indent_size=unset [*.svg] insert_final_newline=false @@ -20,4 +18,6 @@ trim_trailing_whitespace=false # Templates with trailing whitespace are more usa [_data/simple-icons.json] indent_size=4 -trim_trailing_whitespace=true + +[index.html] +indent_size=4 diff --git a/.gitattributes b/.gitattributes index 49f836af..99078aee 100644 --- a/.gitattributes +++ b/.gitattributes @@ -14,5 +14,4 @@ Gemfile.lock -diff # Don't export/archive these files .github export-ignore .gitpod.yml export-ignore -.travis.yml export-ignore CNAME export-ignore diff --git a/.github/labeler.yml b/.github/labeler.yml index 2359be4e..8b703194 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,6 +1,6 @@ new icon: -- any: [icons/*.svg] - status: 'added' + - any: [icons/*.svg] + status: added icon outdated: -- any: [icons/*.svg] - status: 'modified' + - any: [icons/*.svg] + status: modified diff --git a/.github/workflows/add-labels.yml b/.github/workflows/add-labels.yml index 5e2c9e8a..c372d277 100644 --- a/.github/workflows/add-labels.yml +++ b/.github/workflows/add-labels.yml @@ -7,6 +7,6 @@ jobs: triage: runs-on: ubuntu-latest steps: - - uses: ericcornelissen/labeler@label-based-on-status - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} + - uses: ericcornelissen/labeler@label-based-on-status + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index e5c0e76b..0eb115bf 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -8,6 +8,6 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: simple-icons/release-action@master - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} + - uses: simple-icons/release-action@master + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/merge-release.yml b/.github/workflows/merge-release.yml index e5efe29a..d6c71728 100644 --- a/.github/workflows/merge-release.yml +++ b/.github/workflows/merge-release.yml @@ -8,6 +8,6 @@ jobs: runs-on: ubuntu-latest if: contains(github.event.pull_request.labels.*.name, 'release') steps: - - uses: simple-icons/release-action@master - with: - repo-token: ${{ secrets.RELEASE_TOKEN }} + - uses: simple-icons/release-action@master + with: + repo-token: ${{ secrets.RELEASE_TOKEN }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7a18280f..363f7b86 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -2,81 +2,82 @@ name: Publish on: push: branches: - - master + - master jobs: npm: name: NPM Package runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Use Node.js 12.x - uses: actions/setup-node@v2 - with: - node-version: 12.x - - name: Install dependencies - run: npm ci - - name: Sanity check - run: | - npm run lint - npm run test - - name: Deploy to NPM - uses: JS-DevTools/npm-publish@v1 - with: - token: ${{ secrets.NPM_TOKEN }} + - name: Checkout + uses: actions/checkout@v2 + - name: Use Node.js 12.x + uses: actions/setup-node@v2 + with: + node-version: 12.x + - name: Install dependencies + run: npm ci + - name: Sanity check + run: | + npm run lint + npm run test + - name: Deploy to NPM + uses: JS-DevTools/npm-publish@v1 + with: + token: ${{ secrets.NPM_TOKEN }} github: name: GitHub release runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Use Node.js 12.x - uses: actions/setup-node@v2 - with: - node-version: 12.x - - name: Install dependencies - run: npm ci - - name: Sanity check - run: | - npm run lint - npm run test - - name: Get commit message (for release title and body) - id: commit - uses: kceb/git-message-action@v1 - - name: Get release title and body - id: release - run: | - RELEASE_TITLE=$(echo '${{ steps.commit.outputs.git-message }}' | head -n 1) - echo "::set-output name=title::$RELEASE_TITLE" - RELEASE_BODY=$(echo '${{ steps.commit.outputs.git-message }}' | tail -n $(expr $(echo '${{ steps.commit.outputs.git-message }}' | wc -l) - 1)) - echo "::set-output name=body::$RELEASE_BODY" - - name: Get release version - id: get-version - run: | - export PACKAGE_VERSION=$(cat package.json | grep 'version' | sed 's/[ \",:]//g' | sed 's/version//') - echo "::set-output name=version::$PACKAGE_VERSION" - - name: Create and push git tag - uses: actions-ecosystem/action-push-tag@v1 - with: - tag: ${{ steps.get-version.outputs.version }} - message: ${{ steps.commit.outputs.git-message }} - - name: Create release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ steps.get-version.outputs.version }} - release_name: ${{ steps.release.outputs.title }} - body: ${{ steps.release.outputs.body }} + - name: Checkout + uses: actions/checkout@v2 + - name: Use Node.js 12.x + uses: actions/setup-node@v2 + with: + node-version: 12.x + - name: Install dependencies + run: npm ci + - name: Sanity check + run: | + npm run lint + npm run test + - name: Get commit message (for release title and body) + id: commit + uses: kceb/git-message-action@v1 + - name: Get release title and body + id: release + run: | + COMMIT_MSG="$(echo "${{ steps.commit.outputs.git-message }}")" + RELEASE_TITLE="$(echo "$COMMIT_MSG" | head -n 1)" + echo "::set-output name=title::$RELEASE_TITLE" + RELEASE_BODY="$(echo "$COMMIT_MSG" | tail -n +3)" + echo "::set-output name=body::$RELEASE_BODY" + - name: Get release version + id: get-version + run: | + export PACKAGE_VERSION=$(cat package.json | grep 'version' | sed 's/[ \",:]//g' | sed 's/version//') + echo "::set-output name=version::$PACKAGE_VERSION" + - name: Create and push git tag + uses: actions-ecosystem/action-push-tag@v1 + with: + tag: ${{ steps.get-version.outputs.version }} + message: ${{ steps.commit.outputs.git-message }} + - name: Create release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ steps.get-version.outputs.version }} + release_name: ${{ steps.release.outputs.title }} + body: ${{ steps.release.outputs.body }} font: name: Trigger simple-icons-font release needs: npm runs-on: ubuntu-latest steps: - - name: Trigger simple-icons-font release - run: | - curl -X POST \ - -H "Authorization: Bearer ${{ secrets.SIMPLE_ICONS_FONT_TOKEN }}" \ - -d '{"ref":"develop"}' \ - https://api.github.com/repos/simple-icons/simple-icons-font/actions/workflows/auto-release.yml/dispatches + - name: Trigger simple-icons-font release + run: | + curl -X POST \ + -H "Authorization: Bearer ${{ secrets.SIMPLE_ICONS_FONT_TOKEN }}" \ + -d '{"ref":"develop"}' \ + https://api.github.com/repos/simple-icons/simple-icons-font/actions/workflows/auto-release.yml/dispatches diff --git a/.github/workflows/remove-labels.yml b/.github/workflows/remove-labels.yml index 031778e1..c90d71c7 100644 --- a/.github/workflows/remove-labels.yml +++ b/.github/workflows/remove-labels.yml @@ -25,7 +25,6 @@ jobs: out of scope pending won't add - remove-closed-pr-labels: name: Remove closed pull request labels if: github.event_name == 'pull_request_target' && (! github.event.pull_request.merged) @@ -37,7 +36,6 @@ jobs: labels: | in discussion pending - remove-closed-issue-labels: name: Remove closed issue labels if: github.event.issue.state == 'closed' diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 5b054dd2..092e9f83 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -6,45 +6,45 @@ jobs: name: Lint runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Use Node.js 12.x - uses: actions/setup-node@v2 - with: - node-version: 12.x - - name: Install dependencies - run: npm ci - - name: Run linter - run: | - npm run jsonlint - npm run svglint - npm run wslint - npm run our-lint + - name: Checkout + uses: actions/checkout@v2 + - name: Use Node.js 12.x + uses: actions/setup-node@v2 + with: + node-version: 12.x + - name: Install dependencies + run: npm ci + - name: Run linter + run: | + npm run jsonlint + npm run svglint + npm run wslint + npm run our-lint build: name: Build website runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Use Ruby 2.7 - uses: ruby/setup-ruby@v1 - with: - ruby-version: 2.7 - # https://github.com/ruby/setup-ruby/blob/master/README.md#caching-bundle-install-automatically - bundler-cache: true - - name: Build website - run: bundle exec jekyll build + - name: Checkout + uses: actions/checkout@v2 + - name: Use Ruby 2.7 + uses: ruby/setup-ruby@v1 + with: + ruby-version: 2.7 + # https://github.com/ruby/setup-ruby/blob/master/README.md#caching-bundle-install-automatically + bundler-cache: true + - name: Build website + run: bundle exec jekyll build test: name: Test package runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Use Node.js 12.x - uses: actions/setup-node@v2 - with: - node-version: 12.x - - name: Install dependencies - run: npm ci - - name: Run tests - run: npm run test + - name: Checkout + uses: actions/checkout@v2 + - name: Use Node.js 12.x + uses: actions/setup-node@v2 + with: + node-version: 12.x + - name: Install dependencies + run: npm ci + - name: Run tests + run: npm run test diff --git a/.jsonlintschema b/.jsonlintschema index 63cb3c34..6477aa04 100644 --- a/.jsonlintschema +++ b/.jsonlintschema @@ -1,34 +1,34 @@ { - "title": "Simple Icons", - "type": "object", - "properties": { - "icons": { - "description": "The list of icons", - "type": "array", - "items": { - "description": "A single icon", - "type": "object", - "properties": { - "title": { - "description": "The icons name", - "type": "string", - "required": true - }, - "hex": { - "description": "The icons color, as HEX (without #)", - "type": "string", - "pattern": "^[0-9A-F]{6}$", - "required": true - }, - "source": { - "description": "The website from which the icon originated", - "type": "string", - "pattern": "^https?://[^\\s]+$", - "required": true - } - }, - "required": true - } - } + "title": "Simple Icons", + "type": "object", + "properties": { + "icons": { + "description": "The list of icons", + "type": "array", + "items": { + "description": "A single icon", + "type": "object", + "properties": { + "title": { + "description": "The icons name", + "type": "string", + "required": true + }, + "hex": { + "description": "The icons color, as HEX (without #)", + "type": "string", + "pattern": "^[0-9A-F]{6}$", + "required": true + }, + "source": { + "description": "The website from which the icon originated", + "type": "string", + "pattern": "^https?://[^\\s]+$", + "required": true + } + }, + "required": true + } } + } } diff --git a/.svglint-ignored.json b/.svglint-ignored.json index 61173e52..365f9d57 100644 --- a/.svglint-ignored.json +++ b/.svglint-ignored.json @@ -12,7 +12,6 @@ "M 7.401726,2.3422378 C 5.1778223,3.3264335 3.7866995,4.9257515 3.0012356,6.0897522 2.1495278,7.3578505 1.8183081,8.4082905 1.8183081,8.4177535 v 0.01893 c -0.2460489,0.700293 -0.473171,1.7980495 -0.473171,1.8075135 -0.2649758,1.343805 -0.1419513,2.592977 -0.1419513,2.611904 0.00946,0.08517 0.018927,0.170341 0.02839,0.246049 0.02839,-0.33122 0.066244,-0.671903 0.1324879,-1.012586 0.018927,-0.132488 0.3690734,-2.015709 1.6939522,-3.5109295 0.1419513,-0.217658 1.6750254,-2.2333668 4.4951247,-2.2333668 0.6056589,0 1.239708,0.094634 1.8737572,0.2839026 h 0.018927 c 0.037854,0.00946 0.8706352,0.3122929 1.1734642,0.4637076 0.283903,0.1419513 0.785464,0.3596099 0.794927,0.3596099 h 0.01893 c 2.716002,1.3248787 5.06293,1.7507327 5.081857,1.7601967 0.671903,0.113561 1.277562,0.170341 1.816977,0.170341 1.078829,0 1.85483,-0.236585 2.261757,-0.69083 C 20.924954,8.3231195 20.8871,7.9161923 20.8871,7.9161923 V 7.8783387 C 20.906027,6.894143 20.101636,5.8342399 19.42027,5.1244834 18.663196,4.3295561 17.887196,3.7806777 17.877732,3.7806777 15.833634,2.2665305 13.647583,1.4999934 11.357436,1.4999934 9.0105075,1.5094568 7.4206529,2.3327744 7.401726,2.3422378 Z m 7.419322,2.6592211 c 0.283902,0 0.511024,0.2271221 0.511024,0.5110247 0,0.2839026 -0.227122,0.5110247 -0.511024,0.5110247 -0.283903,0 -0.511025,-0.2271221 -0.511025,-0.5110247 0,-0.2839026 0.227122,-0.5110247 0.511025,-0.5110247 z M 8.2155802,3.0614578 c 0.075707,0 0.1230244,0.018927 0.1419513,0.018927 L 11.584558,4.0835071 11.461533,4.3390195 9.9189959,3.8563851 8.2818241,3.3453604 c -0.00946,0 -0.00946,0 -0.018927,-0.00946 -0.00946,0 -0.02839,-0.00946 -0.047317,-0.00946 -0.018927,0 -0.047317,0 -0.066244,0.00946 -0.293366,0.075707 -1.0977567,0.35961 -1.3343422,0.7854639 -0.066244,0.1230245 -0.075707,0.2460489 -0.037854,0.3785368 0,0.00946 0.1703416,0.539415 0.5961955,1.0882934 L 9.5120688,5.4840933 10.941045,5.4178494 10.799094,5.7112154 7.2503113,5.881557 C 6.7203598,5.2380444 6.5121645,4.5945318 6.5121645,4.5945318 6.1809448,3.5535556 8.0830923,3.0709212 8.0830923,3.0709212 c 0.037854,0 0.094634,-0.00946 0.1324879,-0.00946 z M 19.439197,18.808589 c 2.176586,-0.946342 3.104002,-2.583514 3.104002,-2.583514 2.034635,-2.772782 1.343805,-5.696979 1.343805,-5.696979 -1.296488,2.8201 -2.479416,3.5961 -2.479416,3.5961 3.189173,-4.8547345 0.01893,-7.7883948 0.01893,-7.7883948 1.296489,2.7633183 -0.425854,6.1322968 -0.425854,6.1322968 -1.447903,3.047221 -3.501465,4.135514 -3.501465,4.135514 2.290147,0.425854 3.974636,-1.116683 3.974636,-1.116683 -3.283807,3.548782 -6.842053,3.378441 -6.842053,3.378441 1.495221,1.675025 3.738051,1.533074 3.738051,1.533074 -2.93366,0.690829 -5.687515,-0.283903 -7.949273,-2.167124 -0.4258537,-0.350146 -0.8327808,-0.728683 -1.2113177,-1.13561 0,0 -0.3406831,-0.35961 -0.4069271,-0.454244 l -0.00946,-0.0095 c -0.047317,1.750733 1.7791228,3.378441 1.7791228,3.378441 -2.2901475,-0.946342 -3.3405871,-2.999904 -3.3405871,-2.999904 0,0 -1.5425375,-2.630831 -0.4258539,-5.630735 1.1072201,-2.9620505 4.409953,-3.6244898 4.495124,-3.6434166 0.01893,0.00946 0.02839,0.018927 0.04732,0.018927 -0.01893,-0.00946 -0.02839,-0.018927 -0.04732,-0.02839 0,0 -0.511024,-0.2176586 -0.80439,-0.3596099 C 10.202899,7.2253627 9.3511906,6.9130698 9.3511906,6.9130698 8.707678,6.7238014 8.1020191,6.6386306 7.5531408,6.6386306 c -2.791709,0 -4.277466,2.1103429 -4.277466,2.1103429 -1.3154154,1.4762935 -1.6277083,3.3879045 -1.6277083,3.3879045 -0.3690734,1.82644 0.02839,3.747514 0.02839,3.747514 0,0 0.037854,0.151415 0.047317,0.217659 0.3028294,0.71922 0.6908297,1.428976 1.1450738,2.100879 2.4604893,3.671807 6.4540526,4.939906 6.4540526,4.939906 5.9146381,2.006245 9.9555191,-0.946342 9.9555191,-0.946342 3.719124,-2.555124 4.466734,-5.507711 4.466734,-5.507711 -3.009368,2.337465 -4.305856,2.119806 -4.305856,2.119806 z M 1.5060152,15.534246 Z M 1.3072834,14.947514 c 0,0 -0.2365855,-0.71922 -0.35960995,-1.816977 v 0.03785 c 0,-0.01893 0,-0.03785 -0.009463,-0.06624 -0.009463,-0.07571 -0.0189268,-0.160878 -0.0283903,-0.236586 0,0 -0.13248788,-1.287025 0.15141475,-2.697075 0,0 0.00946,-0.03785 0.018927,-0.09463 0.037854,-0.1798055 0.075707,-0.3690735 0.1230245,-0.5488785 0,-0.0095 0,-0.01893 0.00946,-0.02839 0.085171,-0.369073 0.2081952,-0.813854 0.3312197,-1.173464 0,0 1.305952,-4.2869294 5.7253693,-6.2458574 0,0 1.5236106,-0.8043907 3.8232216,-0.8611712 0,0 -0.312293,-0.30282945 -0.511025,-0.43531735 C 9.5026054,0.06155355 7.8938239,-0.17503195 6.9190916,0.83755405 6.6257256,1.1403834 6.3796767,1.4716032 6.1052375,1.7744326 5.7929446,2.1151157 5.4144078,2.3990183 4.9790905,2.5598965 4.6005536,2.7018478 4.2220168,2.6734575 3.8340166,2.7397015 3.436553,2.8059454 3.0296259,2.9478967 2.7078696,3.2034091 2.357723,3.4873117 2.2157717,3.8658485 2.1779181,4.3011658 2.1400644,4.6418489 2.1495278,4.9919955 2.130601,5.3326786 2.0832839,6.3358012 1.7615276,6.6197038 1.0423076,7.1780456 0.7394782,7.4051676 0.48396585,7.7079971 0.29469744,8.0297534 c -0.56780521,1.0031221 0.34068313,2.0440986 0.38800023,3.0566846 0.009463,0.208195 -0.009463,0.416391 -0.0851708,0.615122 -0.0757074,0.217659 -0.22712208,0.35961 -0.35014655,0.539415 -0.17034156,0.236586 -0.2839026,0.520489 -0.2365855,0.813855 0.0473171,0.293366 0.19873182,0.567805 0.34068313,0.823317 0.27443918,0.454244 0.61512232,0.861171 0.97473225,1.249172 0.018927,0.01893 0.037854,0.03785 0.056781,0.06624 0,-0.0095 -0.00946,-0.01893 -0.00946,-0.02839 l 0.02839,0.08517 c -0.02839,-0.104098 -0.05678,-0.198732 -0.094634,-0.302829 z M 0.90035634,11.550146 Z m 0.17034156,2.422635 c 0,0.01893 0.00946,0.03785 0.00946,0.04732 0,0.0095 0,0.01893 0.00946,0.03785 -0.00946,-0.02839 -0.00946,-0.05678 -0.018927,-0.08517 z": "ReactiveX" }, "icon-size": { - "M18.078,16.345c-0.209-0.261-8.709-11.13-9.005-11.496 c-0.279-0.366-0.209-0.47-0.157-0.523c0.105-0.122,0.261-0.105,0.871-0.105c0.366,0,3.989-0.017,4.372-0.017 c0.784,0,0.906,0.07,0.993,0.087c0.087,0.035,0.296,0.209,0.453,0.383c0.087,0.105,7.699,9.214,7.768,9.301 c0.087,0.105,0.209,0.279,0.314,0.435c0.087,0.157,0.105,0.366-0.035,0.453c-0.087,0.052-4.302,1.794-4.424,1.829 c-0.122,0.052-0.348,0.139-0.523,0.105C18.618,16.798,18.357,16.676,18.078,16.345 M22.38,16.136l0.314,0.052 c0,0,1.01,0.192,1.115,0.226C23.913,16.432,24,16.519,24,16.554c0,0.087-0.052,0.122-0.139,0.174 c-0.07,0.052-4.633,2.856-4.72,2.909c-0.087,0.052-0.192,0.105-0.435,0.139c-0.453,0.087-1.306-0.157-1.585-0.209 c-0.261-0.052-11.461-2.543-11.548-2.578c-0.105-0.035-0.174-0.035-0.174-0.139c-0.017-0.157,0.226-0.209,0.418-0.279 c0.192-0.07,5.452-1.968,5.643-2.055c0.192-0.087,0.418-0.105,0.54-0.105s0.853,0.105,1.184,0.157s1.271,0.192,1.271,0.192 l2.142,2.769c0.366,0.435,0.61,0.61,0.923,0.627c0.157,0.017,0.331-0.035,0.453-0.087C18.061,18.035,22.38,16.136,22.38,16.136 M10.153,9.343c0,0,1.846,2.369,1.864,2.386c0.017,0.035,0.035,0.07,0.07,0.087v0.035c-0.07,0.052-3.362,3.1-3.379,3.118 l-3.466,1.271c0,0-0.105,0.035-0.157,0.07c-0.052,0.035-0.122,0.105-0.105,0.261c0,0.052,0.017,0.853,0.035,1.045 c-0.017,0.017,0,0-0.017,0.017c0,0-4.267,1.359-4.302,1.359c-0.209,0.07-0.61,0.209-0.662,0.174 c-0.087-0.07,0.017-0.174,0.07-0.244c0.052-0.07,8.796-8.674,9.127-9.022C9.7,9.395,10.153,9.343,10.153,9.343": "Accusoft", "M20.7 15.404l-1.894-4.967h1.411l1.39 3.582 1.379-3.582h.96l-1.92 4.967zM16.298 9.6V8.48h1.34V9.6zm0 5.808v-4.971h1.34v4.967zm-6.965-.003l2.146-3.3L9.43 8.707h1.627l1.364 2.254L13.9 8.707h1.12l-2.046 3.156 2.126 3.537h-1.622l-1.45-2.4-1.557 2.4H9.333zm-3.346 0v-4.968h1.338v.937c.344-.7.875-1.051 1.585-1.051a1.401 1.401 0 01.248.026v1.194a1.6 1.6 0 00-.53-.102c-.537 0-.968.267-1.303.8v3.164zm-3.028-.536q-.664.65-1.437.65a1.473 1.473 0 01-1.06-.398 1.376 1.376 0 01-.406-1.03 1.45 1.45 0 01.659-1.271q.657-.447 1.884-.448h.355v-.453q0-.772-.88-.772a3.305 3.305 0 00-1.587.443v-.922a5.016 5.016 0 011.808-.345q1.953 0 1.951 1.55v2.206c0 .39.123.58.376.58a.8.8 0 00.174-.02l.032.751a2.745 2.745 0 01-.751.13c-.552 0-.902-.216-1.06-.65h-.054zm0-.72v-1.01h-.32c-.866 0-1.297.274-1.297.815a.64.64 0 00.64.648c.329.004.647-.15.977-.453z": "arXiv", "M12 6.768v.002-1.237c-.485.033-.754.293-.99.71L5.87 16.72h2.464l-.753-.96.654-1.363.005.007L12 6.774v-.006zM10.526 13.123h2.946L12 10.076M8.233 14.416h.017l-.01-.013M13.473 13.123v.002M21.496 5.066L13.26.308c-.693-.4-1.827-.4-2.52 0L2.504 5.066c-.693.398-1.26 1.38-1.26 2.182v9.507c0 .802.567 1.782 1.26 2.18l8.236 4.757c.693.4 1.826.4 2.52 0l8.235-4.768c.692-.39 1.26-1.38 1.26-2.174V7.246c0-.8-.567-1.78-1.26-2.18zm-6.066 12.05l-.687-1.384h-5.5l-.673 1.384H5.287l5.396-11.033c.305-.607.777-.9 1.317-.9s1.034.328 1.316.89l5.396 11.043H15.43zM12 6.77V9.244l2.518 5.173H8.25l.758.94h5.972l.674 1.35h2.474l-1.708-.99v.04L12 6.77": "Automatic", "M.443 12.919c.102.255.113.426.072.692-.031.202-.068.404-.108.605-.035.174-.117.55.003.694.117.139.35.131.622.098.302-.037 1.81-.342 3.397-.997.215-.093.435-.205.622-.345.431-.324.5-1.005.5-1.005.011-.13.009-.316-.164-.413-.126-.07-.301-.026-.562.043-.433.116-1.502.519-1.873.628-.15.044-.447.114-.561-.027-.19-.234.082-.969.245-1.378.163-.409.419-.738 1.205-.96.289-.082.762-.229.954-.293.211-.071.489-.207.607-.675.135-.534-.278-.616-.655-.718-.539-.147-.878-.165-.641-.679.097-.21.187-.303.397-.358.214-.056 2.029-.338 2.751-.467.405-.072.542-.286.711-.631.365-.746-.093-.794-.462-.761-.836.076-2.178.315-2.753.397-.306.044-.102-.47-.46-.494-.704-.049-1.302.243-1.541.425-.226.172-.334.703-.334.703l-.697 2.368c-.06.273-.146.543-.343.659-.479.283-1.457.302-1.37 1.34 0 0 .019.51.437 1.551zm6.318-4.424c.279-.047.654-.115.756.586.031.212.032 2.661.032 2.661s.269-.252 1.094-1.526c.626-.965 1.317-2.211 1.577-2.648.152-.256.433-.522.918-.165.541.398.553.685.315 1.093-.244.419-.9 1.486-1.827 2.772-.842 1.168-1.245 1.631-1.599 2.016-.354.385-.826.83-1.319.762-.654-.091-.604-1.198-.63-1.515-.026-.317-.154-2.832-.066-3.419.034-.228.025-.496.749-.618zm8.845.065c.302.161-.045.855-.626 1.277-.374.272-1.014.679-1.672.679a6.206 6.206 0 0 1 1.017-1.298c.47-.461 1.018-.799 1.281-.658zm8.17-.153c.291-.373.349-.596-.133-1.061-.433-.417-.723-.171-.934.045-.035.042-1.016 1.001-2.049 2.17-.804.91-1.499 1.756-1.499 1.756s-.025-.57.062-1.286c.049-.408.186-1.201.226-1.453.204-1.274-.593-1.325-.89-1.343-.312-.019-.461.145-.554.533-.085.356-.55 2.311-.365 4.325.033.363.105.737.112.761l-.188.257c-1.749-.485-2.946-1.664-2.946-1.664s.574-.165 1.204-.543c.501-.3 1.465-1.043 1.363-2.353-.087-1.112-1.271-1.62-1.707-1.529-.397.083-1.091.558-1.747 1.14-.044-.304-.052-.639-.368-.676-.232-.027-.501.082-.696.182a1.116 1.116 0 0 0-.501.473l-.736 1.665c-.024.059-.072.072-.11.08-.394.09-.521.371-.549.449 0 0-.165.347.126.661-.146.385-.533 1.282-.533 1.282-.48 1.101-.449 1.483-.277 1.717.087.119.393.291.762.351.278.046.491-.119.723-.482.343-.537 1.032-1.953 1.032-1.953s1.37 1.474 4.121 2.443c0 0-1.455 1.973-1.665 3.064 0 0-.108.715.872.713.246 0 .617-.058.886-.221a.475.475 0 0 0 .223-.281.216.216 0 0 0-.021-.153c-.027-.047-.069-.073-.101-.104-.05-.049-.043-.113-.016-.187.539-1.544 2.732-4.169 3.197-4.738 1.233-1.507 3.512-3.854 3.673-4.041z": "EVRY", @@ -37,13 +36,12 @@ "M7.66 11.398v.742c0 .105-.11.105-.11.105h-.847s-.11 0-.11.11v4.03c0 .11-.105.11-.105.11h-.855c-.106 0-.106-.11-.106-.11v-4.03s0-.11-.109-.11h-.844c-.105 0-.105-.105-.105-.105v-.742c0-.106.105-.106.105-.106H7.66v.106m15.458-7.52H12.301c-.68 0-.836.16-.836.816v2.414c0 .493 0 .493-.492.493H.813C.137 7.6 0 7.737 0 8.425v5.41c0 1.754 0 3.508.023 5.266 0 .922.102 1.02 1.04 1.02H9.89c.664 0 1.32.01 1.984-.01.48-.006.669-.202.669-.682v-2.56c0-.468 0-.468.469-.468h10.195c.633 0 .793-.152.793-.78V4.736c0-.7-.164-.86-.883-.86zm-11.64 14.625c0 .5-.013.5-.525.5-3.148 0-6.293 0-9.445.008-.32 0-.43-.078-.43-.418.016-3.16.008-6.324 0-9.48-.008-.34.086-.446.442-.446 3.187.012 6.363.008 9.55.008.117 0 .23.015.4.023 0 .18 0 .32.01.442-.003 3.113-.003 6.242-.003 9.363zm7.69-5.844c0 .102-.104.102-.104.102h-2.57c-.106 0-.106-.102-.106-.102v-.72c0-.1.105-.1.105-.1h.617s.102 0 .102-.102V8.659s0-.101-.102-.101h-.515c-.102 0-.102-.102-.102-.102v-.82c0-.106.102-.106.102-.106h2.367c.102 0 .102.106.102.106v.715c0 .105-.102.105-.102.105h-.516s-.101 0-.101.102v3.074s0 .105.1.105h.618c.106 0 .106.102.106.102zm0 0": "TuneIn" }, "collinear-segments": { - "M4.006 0v1.6h15.988V0zm15.988 1.6v1.6h1.6V1.6zm1.6 1.6v14.4h-1.6v1.6H4.006v-1.6h-1.6V3.2H.809v17.6h1.599v1.6h1.599V24h15.988v-1.6h1.6v-1.6h1.598V3.2zm-19.187 0h1.599V1.6h-1.6zm4.796 3.2v6.4h1.6V6.4zm7.995 0v6.4h1.599V6.4z": "Aseprite", "M10.365 0h.002zc-.007.004-.002.066.018.143.19.787.395 1.67.395 1.7 0 .023-.242.247-.538.5-.296.253-.628.552-.735.663l-.175.182h-.247c-1.53-.004-3.06.014-4.588-.01-.578-.01-.855.407-.855.85.007 6.384.007 12.766.007 19.15 0 .542.283.822.828.822h15.06c.542 0 .825-.28.825-.825V4.025c0-.56-.276-.838-.83-.838-1.632 0-3.264.002-4.896-.006h-.208l-.546-.532c-.94-.915-1.62-1.455-2.762-2.18A17.17 17.17 0 0 0 10.366 0zm.955 1.35c.03-.004.232.125.47.3a16.989 16.989 0 0 1 2.497 2.31h.002c.465.52.903 1.057 1.268 1.6.357.53.935 1.546.935 1.64 0 .03.017.052.037.052.02 0 .083-.168.14-.374.127-.45.126-.448.388.403.38 1.238.51 2.106.51 3.38 0 .992-.047 1.402-.23 2.12-.053.205-.066.318-.035.318.026 0 .184-.038.352-.086.167-.048.31-.08.318-.073.028.027-.394.753-.692 1.19-1.246 1.828-2.718 2.91-4.358 3.206-.917.165-1.763.1-2.61-.198-.45-.158-.813-.348-1.398-.733-1.25-.82-2.206-2.292-2.68-4.12-.214-.82-.378-2.076-.378-2.895V9l.277.415c.403.603.89 1.217.93 1.172.006-.01-.104-.224-.247-.478-.302-.536-.303-.53-.08-1.39.362-1.406 1.112-2.862 2.108-4.098.143-.178.395-.43.614-.663.603-.644 1.29-1.32 1.342-1.27.01.01-.01.126-.045.257-.134.492-.33 1.332-.313 1.348.004.004.126-.216.197-.336.072-.124.096-.15.203-.344.21-.38.39-.7.395-.706.006-.007.132.112.28.264.222.225.27.256.25.167-.014-.06-.123-.522-.245-1.028-.12-.506-.215-.938-.207-.96 0-.002.002-.003.004-.003zm4.08 2.59h3.71c.372 0 .49.114.49.482v13.9c0 .36-.12.457-.558.457H6.42c-.52 0-1.04.002-1.56 0-.33-.003-.453-.126-.453-.448V4.41c0-.343.12-.467.46-.467 1.17-.002 2.342 0 3.513 0 .048 0 .097.005.116.006h.1l-.007.006-.138.165c-.948 1.143-1.77 2.63-2.157 3.912-.053.176-.102.32-.11.32-.006 0-.207-.29-.443-.64-.237-.352-.448-.652-.47-.665-.074-.046-.01 3.277.075 3.897.305 2.222 1.053 3.926 2.292 5.214.62.646 1.705 1.31 2.633 1.612 1.36.444 2.87.33 4.27-.32 1.37-.638 2.723-1.993 3.706-3.713.366-.642.934-1.742.91-1.766-.01-.01-.255.05-.542.132a5.99 5.99 0 0 1-.533.14 1.427 1.427 0 0 1 .033-.292c.09-.534.103-1.682.027-2.396-.134-1.262-.344-2.09-.93-3.663-.467-1.258-.473-1.274-.5-1.274-.014 0-.092.238-.173.528-.082.29-.154.526-.16.526a.831.831 0 0 1-.114-.165 21.09 21.09 0 0 0-.972-1.34l-.174-.21h-.004.047c.083-.005.158-.013.234-.013zm-3.6.71l-.032.234c-.027.2-.205.86-.31 1.157-.048.132.26-.17.433-.426.08-.115.152-.21.165-.21.014 0 .17.147.35.327.18.18.333.32.34.313.03-.03-.21-.515-.377-.76a3.624 3.624 0 0 0-.37-.445zM9.32 6.584l-.132.125c-.178.17-.485.64-.63.96-.15.332-.33.85-.328.94 0 .04.072-.06.158-.222.155-.29.603-.872.67-.872.02 0 .06.053.09.12.06.132.36.552.378.53a1.875 1.875 0 0 0-.045-.32c-.03-.17-.07-.465-.085-.66a6.93 6.93 0 0 0-.053-.476zm5.453.008c-.02 0-.038.113-.04.252 0 .24-.097 1.002-.157 1.242-.026.107-.023.107.088-.02.063-.074.166-.22.23-.33.065-.11.123-.207.132-.217.054-.063.71.816.786 1.052.017.052.04.083.053.07.03-.03-.188-.687-.323-.975-.197-.42-.664-1.074-.768-1.074zm-2.63 1.1h.002zc-.04.006-.274.505-.348.746-.083.27-.182.978-.18 1.296v.307l.108-.41c.095-.368.25-.758.365-.926.035-.05.087-.023.274.145.127.114.267.227.31.25.085.045.11 0 .042-.072-.057-.06-.392-.855-.47-1.117-.035-.12-.08-.217-.1-.22zM9.56 10.917c-.725.02-1.372.593-1.573 1.445-.088.374-.082.66.022 1.062.2.792.655 1.322 1.36 1.59.098.038.3.058.55.05.34-.007.433-.027.65-.138.51-.258.868-.8.965-1.463.043-.298.04-.41-.022-.72-.187-.95-.812-1.636-1.64-1.8-.104-.02-.21-.03-.313-.026zm5.087 0c-.03 0-.06.002-.09.004-.847.058-1.65.858-1.808 1.882-.143.93.33 1.89 1.073 2.183.344.135.928.112 1.277-.05.814-.38 1.355-1.432 1.222-2.373-.12-.854-.656-1.474-1.402-1.62a1.393 1.393 0 0 0-.273-.024zm-.515 2.06c.38.012.612.473.366.792-.096.12-.338.2-.51.16-.51-.11-.456-.88.066-.948a.51.51 0 0 1 .078-.004zm-3.968.01c.2 0 .24.02.354.146.192.215.165.6-.05.714-.19.1-.332.12-.467.065-.33-.14-.424-.52-.192-.78.113-.126.155-.144.356-.144zM8.65 19.543c.25 0 .498.002.746.008.49.01.683.22.683.712v1.162h-.003v1.14c-.003.416-.192.633-.608.646a25.8 25.8 0 0 1-1.622 0c-.416-.015-.603-.228-.608-.648-.005-.775-.006-1.55 0-2.324.004-.466.206-.676.666-.687.25-.005.497-.008.745-.008zm6.23 0c.29.002.577.01.865.026.348.02.53.23.534.58.013.817.016 1.636.004 2.454-.005.39-.21.59-.608.604-.54.02-1.08.02-1.62 0-.428-.015-.606-.23-.61-.666v-1.16h-.003c0-.39-.004-.775 0-1.164.004-.418.166-.636.573-.656.288-.013.576-.02.865-.017zm-2.744.002c.29 0 .583.003.88.003v.632h-1.452c-.31 0-.333.023-.333.34 0 .6.006 1.2-.003 1.8-.003.2.075.275.27.272.424-.007.847 0 1.272 0h.267l.003.603c-.05.007-.098.02-.146.02-.527.002-1.054.005-1.58 0-.516-.005-.716-.21-.716-.722v-2.24c0-.476.197-.692.67-.703.29-.006.577-.007.868-.006zm6.29.006c.358 0 .72.005 1.086.005v.622h-1.794c-.26 0-.286.027-.286.292.006.727-.102.634.64.64.298.003.6-.003.898.003.433.01.632.206.64.633.004.278.005.557-.004.834-.013.383-.193.607-.572.62-.736.023-1.474.006-2.226.006v-.616h.244c.557 0 1.113-.003 1.668.002.186.002.272-.072.264-.26a5.38 5.38 0 0 1 0-.44c.007-.188-.078-.258-.266-.254-.4.01-.804.006-1.206.002-.533-.006-.722-.203-.722-.737 0-.242-.003-.483.004-.724.012-.387.19-.608.568-.62.353-.01.707-.01 1.065-.01zm-12.84.02c.41-.003.82.006 1.237.006v.586c-.08.005-.156.014-.232.014-.438.002-.877.005-1.315 0-.175-.002-.25.072-.25.25.006.638.008 1.274 0 1.91 0 .196.083.257.265.256.438-.005.877-.002 1.316-.002h.223v.608c-.65 0-1.284.02-1.917-.008-.342-.014-.51-.227-.514-.568-.01-.826-.01-1.653 0-2.48.003-.318.157-.544.448-.557.25-.014.51-.01.737-.016zm9.806.607c-.357.007-.715.005-1.072 0-.177 0-.248.08-.246.255.004.643.004 1.285 0 1.927 0 .16.07.23.22.23.38.003.76 0 1.138 0 .17 0 .228-.083.224-.248-.008-.32 0-.642-.005-.963 0-.316-.007-.63 0-.944h.004c.005-.19-.077-.26-.262-.258zm-7.282.003c-.168-.002-.237.076-.235.24.005.322 0 .644 0 .965 0 .32.006.64-.004.962h.002c-.004.17.067.245.23.245H9.22c.158 0 .235-.068.234-.24-.006-.642-.004-1.283 0-1.926 0-.16-.056-.248-.228-.246-.373.005-.745.003-1.117 0z": "Cocos", - "M20.511 9.773c-.096.13-.139.387-.278.602-.194.3-.473.665-.613.665-.075 0-.096-.17-.096-.17s-.097-.29.064-.656c.118-.258.183-.333.333-.527.14-.182.226-.279.322-.472.086-.172.108-.204.161-.473.011-.064-.01-.204-.075-.193-.086 0-.322.515-.569.805-.236.27-.677.613-.677.613s-.043.032-.043-.054c-.01-.075-.02-.3.022-.505.043-.204.107-.408.29-.72.204-.354.462-.6.59-.73.054-.053.215-.15.13-.204-.076-.043-.3.15-.473.28-.215.16-.29.204-.505.461a2.338 2.338 0 00-.268.365s-.204.333-.258.656c-.054.322-.054.504-.054.504a3.29 3.29 0 00.13.924s.107.312.15.506c.042.193.118.762.118.762s.053.408.021.795c-.032.386-.064.612-.107.73s-.16.43-.355.644a2.556 2.556 0 01-.225.237s-.194.16-.355.247a3.727 3.727 0 01-.504.225 2.301 2.301 0 01-.269.032h-.14l-.042-.032-.022-.086s-.107-.42-.236-.687a4.452 4.452 0 00-.333-.537s-.387-.526-.687-.816c-.344-.344-.73-.602-.967-.784a5.056 5.056 0 00-.28-.183s-.783-.784-1.062-1.408c-.194-.43-.322-.74-.269-1.213.011-.107.054-.312.075-.312l.14.043c.01.011.14.13.258.172a1.769 1.77 0 00.333.065c.053.021.15.053.214.086.065.032.162.096.162.096l.182.14.193.15s.108.075.14.086c.032.01.054.022.064.022h.043s.043-.01.054-.054c.01-.054-.054-.01-.15-.118a.697.697 0 01-.15-.183s-.022-.086-.108-.182a1.826 1.826 0 00-.193-.183s-.075-.054-.183-.086c-.107-.032-.14-.032-.15-.075-.01-.043.13-.02.13-.02s.16.02.29.084c.128.065.203.14.203.14l.086.075.053.054.054.032s.054.054.064-.02c.011-.066-.01-.119-.02-.13l-.055-.054-.215-.182a.998.998 0 00-.17-.15 1.305 1.305 0 00-.28-.15c-.108-.044-.172-.033-.28-.087-.075-.032-.14-.054-.182-.118-.01-.01-.065-.054.032-.032.097.021.161.053.268.075.172.043.28.043.44.096.065.022.151.065.151.065l.204.086s.28.15.473.16a.933.933 0 00.418-.064.812.812 0 00.215-.128.476.476 0 00.054-.065l.021-.054v-.043c-.053-.064-.16.108-.333.14-.182.032-.17.054-.29.032a.477.477 0 01-.3-.15c-.172-.16-.236-.312-.462-.408a2.134 2.134 0 00-.268-.086s-.237-.075-.366-.15c-.096-.054-.3-.086-.236-.172.032-.043.29.107.483.13.14.02.237.01.344.01.107 0 .258-.033.28-.033.02-.01.107 0 .182.022.075.021.118.053.193.086.075.032.161.085.183.085l.043.011.021-.02.01-.023-.01-.02-.032-.023-.065-.043s-.096-.053-.182-.14c-.086-.085-.16-.182-.29-.225-.129-.043-.28-.064-.28-.064l-.15-.01-.064-.01s-.107-.034-.022-.055a.939.939 0 01.15-.033.494.494 0 01.248.011c.086.032.225.107.236.107.01.011.14.108.28.14.14.032.321.043.321.043l.086-.02.043-.012.033-.022-.01-.053s0-.043-.066-.054a.71.71 0 01-.31-.118c-.119-.086-.205-.172-.205-.172s-.086-.075-.258-.118c-.16-.043-.215-.043-.215-.043l-.053-.022-.118-.053s-.054-.032-.097-.086c-.043-.054-.107-.15.075-.097a.86.86 0 01.226.086s.096.097.182.107c.054.011.097.022.13-.02.053-.055-.098-.119-.205-.194a.73.73 0 01-.172-.194s-.064-.053.032-.032c.097.022.27.13.27.13s.085.042.128.053c.032.01.118.064.16.086.033.01.13.032.194.064.086.054.13.14.172.172.043.032.075.086.13.097.053.01.063.032.095.01.033-.02.043-.032.043-.032s.011-.02-.043-.054a.57.57 0 01-.118-.118l-.02-.043-.01-.043-.056-.086-.096-.14s-.15-.203-.29-.278a2.459 2.459 0 00-.226-.119s-.064-.032-.096-.053c-.054-.043-.076-.075-.118-.13-.054-.064-.076-.106-.14-.17-.118-.119-.483-.183-.344-.27.075-.042.172-.02.215-.01.043.01.14.054.236.086.065.021.108.021.172.043.065.021.14.032.172.053.032.022.064.065.086.076.01.01.097.15.247.225.15.075.225.13.376.14.118.01.311-.032.311-.032s.054-.022.01-.076c-.053-.053-.053-.064-.096-.075-.172-.064-.31-.043-.44-.172-.054-.053-.075-.064-.118-.15s-.022-.107-.054-.16c-.02-.055-.075-.13-.075-.13s-.16-.193-.333-.29a1.93 1.93 0 01-.333-.215c-.032-.02-.097-.107-.097-.107l-.053-.086-.032-.064c-.022-.119.193.032.311.075.193.064.29.15.483.215.108.032.172.032.28.075.182.075.236.257.43.28.106.01.321.053.278-.044-.043-.107-.257-.107-.365-.236-.054-.054-.054-.108-.107-.16-.086-.109-.29-.205-.29-.205s-.065-.054-.14-.204c-.064-.15-.225-.258-.515-.398-.194-.096-.58-.118-.43-.215.086-.064.161-.053.28-.02.117.042.16.096.257.14.097.042.14.052.161.063.022.01.097.043.13.043.02.01.182.032.225.043l.214.054.172.064s.086.032.14.032c.053 0 .14-.02.14-.02l.064-.044.01-.022s.033-.053-.053-.064c-.075-.01-.118-.01-.129-.01L15.98 4.2l-.032-.01s-.15-.119-.28-.173c-.14-.054-.16-.064-.16-.064l-.054-.01-.065-.01s-.054 0-.14-.077c-.085-.075-.118-.118-.193-.193l-.096-.097s-.086-.064-.086-.118c.01-.086.193.097.193.097l.13.086s.106.075.3.085c.193.011.43-.053.43-.053s.031-.022.14.01a.696.696 0 01.192.097l.086.075.13.14.02-.01c.011-.012.065-.065-.032-.183-.097-.119-.258-.226-.258-.226s-.214-.129-.43-.172c-.214-.043-.31-.043-.31-.043s-.162 0-.258-.107c-.097-.107-.16-.215-.16-.215l-.034-.15s-.053-.065-.16-.108c-.097-.043-.205-.107-.205-.107s-.16-.054-.172-.129c-.032-.14.27 0 .43.032.15.033.215.086.365.118a.915.915 0 00.344.033c.075 0 .118-.01.193-.022.075 0 .13-.01.204 0 .107.022.15.075.258.118.064.033.096.065.172.076.064.01.193.053.171-.01l-.032-.044c-.053-.075-.118-.075-.182-.13-.14-.106-.204-.192-.365-.268a.923.923 0 00-.29-.096c-.086-.01-.15.01-.237-.01-.096-.033-.129-.076-.225-.13-.15-.086-.236-.16-.398-.225a2.596 2.596 0 00-.29-.086l-.075-.01-.032-.01c-.15-.055.27-.174.462-.227.097-.022.14-.043.236-.032.086.01.183.128.28.075.14-.075-.162-.28-.258-.312-.13-.053-.355-.01-.355-.01l-.494-.01-.14-.023s-.085 0-.15-.075c-.064-.075-.31-.376-.59-.419-.29-.043-.376 0-.398-.021-.247-.387-.504-.473-.698-.655-.053-.054-.14-.172-.16-.161-.022.01-.055.172-.108.311-.065.161-.022.236.01.3.043.065.097.108-.01.173-.108.064-.247.043-.247.043s-.118-.022-.215-.076c-.097-.043-.3-.128-.3-.128S11.157.57 11.028.58c-.129.01-.14.021-.236.032-.054 0-.075 0-.129.01-.043.011-.097-.02-.097.033 0 .053.108.053.183.086.075.032.247.032.215.075-.043.043-.204.054-.215.043-.01 0-.118-.022-.204-.022-.14.011-.15.011-.355.108-.032.01-.02.086.043.064a1.12 1.12 0 01.301-.043c.13 0 .204.043.333.075.107.033.118.054.28.076.031 0 .096-.022.096.021 0 .022-.043.054-.043.054s-.097.021-.086.053c.021.043.107 0 .15 0s.108.011.097.054l-.02.032a2.294 2.294 0 00-.29.097c-.27.107-.377.236-.635.365-.247.118-.644.27-.644.27s-.119.063-.29.106c-.172.043-.183.032-.3.054a.567.567 0 00-.269.086.522.522 0 00-.15.118l-.15.225-.087.13c-.022.042-.043.064-.054.107-.02.053-.032.075-.043.128-.032.13 0 .204.022.333.01.033.01.054.021.086.01.032.054.065.054.065l.043.01s.15-.01.247-.032c.097-.02.236-.054.236-.054l.183-.053.118-.043s.075 0 .086.043c.01.032-.022.086-.022.086s-.064.032-.118.053c-.054.022-.182.054-.193.065l-.14.043-.118.01s-.02.011-.043.043c-.02.033-.02.033-.02.054.02.022.031.043.052.065.043.032.065.053.118.064.076.032.12.022.194.022a.582.582 0 00.268-.065c.086-.054.118-.054.236-.097a.554.554 0 01.12-.02c.203-.023.321.01.525.042.204.032.3.097.505.13.214.031.343.095.57.042.106-.022.171-.075.224.032.054.097.043.15.043.15s0 .065-.075.27c-.075.203-.31.708-.31.708l-.162.322s-.13.257-.43.59c-.3.333-.322.355-.322.355s-.16.118-.322.322c-.16.204-.16.28-.312.43a1.36 1.36 0 01-.268.225c-.118.075-.258.054-.634.311-.322.226-.494.41-.515.398-.022-.01-.13-.097-.172-.118l-.655-.44-.258-.172-.118-.076-.022-.043-.064-.086s-.097-.118-.215-.214a.916.916 0 00-.44-.237c-.183-.053-.3-.085-.483-.02a.642.642 0 00-.269.171c-.107.107-.129.193-.215.322-.086.13-.17.247-.214.311a3.36 3.36 0 00-.13.237s-.214.343-.332.57c-.14.246-.194.396-.322.632-.204.376-.494.763-.57.935a7.631 7.631 0 01-.085.193s-.022.097-.033.161c-.01.065-.01.172-.02.215a.303.303 0 01-.055.118c-.01.01-.129.258-.172.42-.043.16-.14.666-.02.73.117.065.987-.311 1.105-.677.075-.237-.236-.355-.15-.57.032-.075.053-.086.107-.16.086-.14.054-.43.215-.699.118-.193.354-.44.676-.805a3.51 3.51 0 00.398-.59s.043-.13.13-.108c.095.021.181.01.181.01l.043.033.086.086.13.193s.214.311.29.397c.074.086.15.15.257.237.118.107.16.16.311.28.215.171.14.235-.14.085a1.84 1.84 0 00-.365-.14c-.129-.032-.612-.16-.859-.193-.236-.032-.28-.022-.28-.022s-.117-.01-.257.075c-.14.086-.215.15-.215.15s-.16.183-.17.216c-.012.032-.087.16-.087.16s-.043.065-.054.14c-.022.075-.01.15-.01.15l.01.162.01.15s.033.376.108.752c.022.107.043.28.043.28l.054.387s.032.408.064.547c.032.13.054.14.075.226.043.16-.032.236.043.43.075.193.14.17.215.29.054.085.075.107.118.214.043.108.183.462.344.72.172.268.397.6.548.569.15-.032.257-.27.257-.27s.172-.46.065-.911c-.108-.462-.602-.247-.666-.58-.01-.076 0-.194 0-.194s-.01-.14-.032-.182c-.022-.043-.194-.365-.258-.634-.054-.204-.043-.86-.086-1.043-.118-.472-.129-.43-.064-.515.075-.086.14-.064.14-.064l.096.01.075.033.14.085.193.15.365.237s.204.118.29.161c.086.043.161.097.161.097l.097.064.16.118.033.033.022.043s.075.171.397.355c.258.15.483.107.58.225.021.022.204.269.29.42.107.17.236.375.28.44.042.064.31.397.31.397l.355.387.462.43.418.353.27.215s.235.226.504.408c.257.172.268.194.44.312.13.086.3.204.472.333.172.14.366.397.29.483-.053.032-.15-.107-.333-.27-.15-.127-.225-.192-.375-.3-.194-.15-.29-.225-.505-.354-.108-.064-.3-.182-.312-.16-.075.225-.064.44-.053.719.01.193.043.386.107.633.054.237.108.366.193.59.086.227.247.58.247.58l.247.495.226.376.118.193.043.065s.054.128 0 .214-.118.269-.215.28c-.096.02-.322.032-.322.032l-1.278-.022-.666-.053s-.075-.043-.46-.043c-.227 0-.41.096-.538.107-.108.01-.634-.032-.988.107-.333.14-.484.172-.602.387-.086.16.42.419.838.516.676.15.483-.14.74-.323.033-.021.044-.043.076-.053.172-.054.27.086.44.086.194 0 .301-.065.494-.097.978-.13 2.503.333 2.503.333s.375.118.547.086c.204-.043.161-.118.226-.236.053-.097.032-.12.043-.226 0-.064-.01-.097-.022-.161-.043-.183-.16-.44-.16-.44s-.087-.194-.119-.29c-.043-.14-.086-.226-.107-.376-.065-.398-.054-.365-.054-.59 0-.41.043-.634.15-1.032.161-.58.462-.827.688-1.385.064-.15.064-.365.14-.387.085-.01.074.269.031.43-.14.558-.483.794-.644 1.364-.118.44-.183.698-.15 1.149.01.247.107.633.107.633s.13.43.193.59c.065.162.194.43.194.43l.29.516.15.247s.107.097.054.258c-.054.16-.16.258-.29.397-.365.43-1.214 1.063-1.429 1.214-.3.225-.29.29-.31.354-.119.344-.463.354-.839.763-.086.085-.31.322-.268.526.021.075.945.236 1.482.01.42-.182.054-.386.172-.59.086-.15.3-.15.397-.28.161-.214.054-.203.193-.375.462-.559.763-.88 1.59-1.386.075-.043.215-.107.215-.107s.118-.054.16-.118c.054-.086.044-.161.044-.258 0-.064-.01-.097-.01-.161 0-.075.01-.118-.01-.193-.023-.118-.099-.215-.14-.28a.769.769 0 01-.163-.354.9.9 0 01.033-.601c.086-.226.28-.408.28-.408l.482-.323s.42-.3.548-.418c.14-.118.408-.365.601-.645.226-.311.344-.504.44-.88.033-.14.065-.355.065-.355s0-.15.086-.16c.086-.012.107.02.107.02s.075.044.097.258c.01.215-.054.462-.054.462s-.064.247-.086.398c-.01.096-.01.15-.01.257 0 .183.075.333.075.333s.043.032.043-.043c0-.086.021-.215.053-.343.033-.108.054-.086.118-.27.086-.235.011-.214.054-.353.022-.065.075-.13.14-.13.064 0 .075.087.075.087s.064.279.01.537c-.053.257-.246.612-.246.612l-.15.258s-.108.182-.15.3a.495.495 0 00-.033.3c.032.13.13.3.182.269.043-.032-.064-.14.065-.397.13-.258.3-.42.3-.42s.237-.278.344-.493c.097-.193.193-.504.193-.504s.076-.28.054-.516c-.01-.225-.054-.344-.054-.344l-.096-.171-.054-.13.022-.074c.021-.011.096.043.16.128a.854.854 0 01.162.344c.032.107.043.204.043.3 0 .087-.033.44.096.667.054.107.183.354.194.247.021-.247-.086-.366-.076-.591.011-.258.076-.193.097-.322.022-.14.054-.172.032-.355-.02-.171-.096-.397-.096-.397l-.075-.172-.033-.064s.022-.032.054-.032l.258-.086s.333-.15.462-.258c.14-.097.3-.27.3-.27s.215-.267.322-.46c.258-.484.258-1.096.247-1.375a4.55 4.55 0 00-.086-.623s-.085-.43-.064-.71c.022-.278.043-.408.043-.408s-.01-.279.226-.58c.236-.3.343-.494.386-.72.043-.192-.02-.504-.107-.386zM13.403 7.84c-.032 0-.075-.043-.075-.043s-.01-.01.022-.032c.032-.02.075-.01.075-.01l.032.01.054.075c-.01.032-.075.011-.108 0zm.13-.354c-.033-.01-.087-.043-.087-.043s-.01-.022.022-.043c.032-.022.086-.01.086-.01l.032.02c.01.011.064.065.064.087 0 .032-.075 0-.118-.01zm.117-.365a.466.466 0 01-.107-.054s-.01-.02.032-.043c.043-.02.108-.01.108-.01l.043.02c.021.022.075.076.075.108-.01.032-.108-.01-.15-.02zm.097-.333c-.043-.01-.107-.054-.107-.054s-.01-.02.032-.043c.043-.02.107-.01.107-.01l.043.02c.022.022.075.076.075.108-.01.022-.107-.02-.15-.02zm.097-.398a.328.328 0 01-.118-.064s-.01-.02.032-.054c.043-.032.118-.01.118-.01l.043.021c.021.022.086.086.086.118 0 .043-.118-.01-.16-.01zm.064-.43a.45.45 0 01-.15-.074s-.022-.033.043-.065c.053-.032.14-.02.14-.02l.053.031a.54.54 0 01.107.15c0 .043-.128-.01-.193-.02zm.043-.429a.522.522 0 01-.182-.096s-.022-.033.043-.076c.064-.042.171-.02.171-.02s.033.01.065.031c.032.032.118.13.13.183.01.053-.15-.01-.227-.022zm.065-.494a.536.536 0 01-.204-.107s-.022-.043.053-.086c.075-.054.194-.02.194-.02s.042.01.075.042c.032.032.14.15.15.204 0 .064-.183-.022-.268-.033zm-.045-1.997c-.065-.01-.15-.075-.15-.075s-.022-.022.042-.054c.065-.032.15-.01.15-.01s.033.01.054.031c.022.022.108.097.108.14 0 .032-.14-.02-.204-.032zm.236.483c.01.043-.14-.01-.215-.02a.503.503 0 01-.16-.087s-.022-.032.042-.065c.064-.043.15-.02.15-.02s.033.01.065.031a.566.566 0 01.118.161zm-.312.795c.065-.043.172-.022.172-.022s.032.011.065.033c.032.032.118.128.13.182.01.054-.15-.01-.227-.032-.075-.01-.183-.097-.183-.097s-.02-.02.043-.064zm.14-.365a.53.53 0 01-.183-.097s-.02-.032.043-.075c.065-.043.172-.022.172-.022s.032.011.065.033c.032.032.118.128.13.182.01.065-.15 0-.227-.02zm.14-1.61c.086.02.107.074.064.074-.043.01-.064.01-.097.01-.096 0-.085-.042-.214.022-.13.065-.033.032-.215.097-.172.064-.129-.108-.129-.108s.01-.032.032-.118.13 0 .204 0c.14 0 .258 0 .355.022zm-.484-.667l.054.032a.54.54 0 01.107.15c.011.044-.128-.01-.182-.02a.456.456 0 01-.15-.076s-.022-.032.043-.065c.053-.042.128-.02.128-.02zm-.386-.515c.053-.033.14-.022.14-.022l.053.032a.54.54 0 01.107.15c.011.044-.128-.01-.182-.02a.468.468 0 01-.15-.076s-.022-.032.032-.064zm-.108 6.958c.033-.02.076-.01.076-.01l.032.01.053.076c0 .021-.064-.01-.096-.01s-.075-.044-.075-.044-.022-.01.01-.022zM8.892 3.01c-.032.02-.054.031-.097.063-.053.043-.107.15-.14.118-.042-.032-.02-.15-.02-.15s.032-.086.074-.172c.054-.086.12-.086.12-.086.063 0 .181.043.181.14.01.096-.064.053-.118.086zm.88.332s-.042.01-.053-.065c-.01-.075.054-.086.054-.086s.128-.064.128.022c.011.075-.128.13-.128.13zm1.15-1.46s-.14.225-.333.31c-.194.086-.322.13-.688.162-.053 0-.032-.033-.032-.033s.42-.118.655-.247a2.33 2.33 0 00.323-.214c.15-.13.075.021.075.021zm-7.217 9.3c0 .054-.064.15-.086.15-.02 0-.064-.096-.054-.15.011-.054.022-.205.108-.183.064.01.032.129.032.183zm.28-1.214s-.097.204-.13.118c-.032-.075.033-.215.033-.215.086-.075.118-.183.16-.14.033.043-.064.237-.064.237zm1.33-2.095c-.096.108-.396.677-.46.58-.065-.075.29-.612.364-.72.075-.117.14-.096.14-.096l.021.022c-.01 0 .033.107-.064.214zm.806-.848s-.214.043-.182-.032c.043-.075.193-.108.193-.108.118.022.14.033.13.086.01.054-.14.054-.14.054zm.87 1.504c-.096.096-.129-.033-.268-.194-.14-.15-.108-.279-.108-.279h.022l.021.01.054.022.032.032.108.108c.043.064.16.28.14.3zm-1.664 3.21c-.033 0-.065-.063-.065-.063s-.086-.13-.118-.225a1.052 1.052 0 01-.043-.226s-.02-.183-.02-.248c.01-.086.01-.16.02-.204.01-.043.054-.032.054-.032.064 0 .064.053.064.053v.033s0 .193.011.344c0 .043.118.527.118.527s.022.043-.02.043zm-.022-2.255c-.075.118-.129.118-.129.118 0-.01-.02-.053.043-.182.065-.129.13-.118.13-.118l.02.021s.011.043-.064.161zm.763 4.5c.021-.042.16.065.16.065.054.01.108.108.108.108s.022.075-.043.096c-.064.033-.107-.032-.107-.032s-.14-.193-.118-.236zm1.01-3.286c-.15-.032-.473-.28-.602-.344-.13-.064-.344-.086-.247-.172.01-.01.021-.032.043-.032.021 0 .118.032.118.032l.236.097c.01 0 .13.054.226.107l.236.15.064.054c0 .022.075.14-.075.108zm1.31-2.137s-.183.247-.29.397c-.14.204-.312.516-.344.483-.033-.032.15-.376.247-.558.107-.226.268-.344.333-.365.14-.065.053.043.053.043zm-.58 10.75s0 .044-.076.097c-.075.054-.107.022-.118.022-.01 0-.086-.043-.086-.086.01-.043.13-.075.13-.075.203-.011.15.043.15.043zm1.664-.064c-.075-.01-.086-.032-.075-.043 0-.01.021-.032.107-.032s.086.043.086.043c0 .032-.032.043-.118.032zm1.911.108c-.16.043-.225.02-.365.032-.118.01-.17.02-.29.02-.204 0-.225.012-.515-.074-.054-.021-.118-.086-.097-.107.022-.033.065-.022.065-.022s.365.065.601.075c.172.01.258.022.43.01.096 0 .043-.01.193-.01.054-.01.021.065-.022.076zm1.02-.301a.433.433 0 01-.128.043c-.065.01-.032-.043-.032-.043s.043-.065.096-.097c.065-.032.097 0 .097 0 .021.043-.022.086-.032.097zm.795-2.062c-.075.16-.096.215-.107.365-.02.16.075.612-.075.44-.054-.075-.108-.43-.065-.601.076-.387.387-.494.247-.204zm-2.169 6.562c-.064.043.065.171-.14.16-.118-.01-.053-.117-.042-.128l.075-.108c.053-.075.086-.086.14-.118.053-.032.096.054.096.054s.021.032.021.075c0 .032-.096.022-.15.065zm1.128-1.085l-.097.075c-.01 0-.075.054-.097.022-.02-.033.011-.076.011-.086a.3.3 0 01.118-.108c.054-.032.086 0 .086 0 .032.075-.02.097-.02.097zm.504-18.816s-.043.14-.128.172c-.108.032-.516.043-.527.01-.01-.032.473-.075.655-.257.043-.043 0 .075 0 .075zm-.15-.354c.032-.054.01.086.01.086s-.03.14-.107.182c-.096.054-.332.118-.354.086 0-.02.311-.118.451-.354zm-.666-1.61s.043 0 .108.031c.064.043.107.172.107.172s.01.021-.043.021c-.032 0-.032-.053-.064-.075-.043-.032-.076-.043-.13-.064-.053-.022-.128.01-.139-.043 0-.065.161-.043.161-.043zm-.494.353s.022-.064.118-.118c.086-.054.204-.054.204-.054s.065 0 .14.054c.075.054.14.236.14.236s.021.118-.033.161c-.053.043-.14-.032-.182-.096a.271.271 0 00-.16-.108c-.087-.032-.216.065-.237 0 0-.02.01-.075.01-.075zm-.032 1.482c-.064.01-.02-.054-.02-.054s.181-.075.3-.14c.193-.096.558-.482.461-.3a.828.828 0 01-.172.193s-.15.215-.182.247c-.14.108-.312.043-.387.054zM9.805 7.69l.01-.022s.323-.214.827-.15c.301.043.591.311.548.344-.043.032-.107 0-.129 0l-.107-.054-.16-.043s-.29-.064-.506-.054a1.482 1.482 0 00-.408.086s-.086.043-.107-.01c-.01-.065.032-.097.032-.097zm.795 6.047c-.74-.57-1.644-1.73-1.536-1.836.097-.086.462.45 1.01 1.04.58.624 1.256 1.215 1.277 1.29.043.129-.472-.28-.75-.494zm1.686-8.023c-.312.537-.74.945-.74.945-.15.107-.055-.086-.055-.086s.42-.58.612-.988c.14-.29.226-.677.29-.752.15-.182.075.56-.107.88zm.86 5.886c-.323-.387-.56-.807-.635-1.333-.02-.118-.02-.29.086-.268.097.01.086.193.086.236.032.311.161.623.397 1 .333.526.87.934.85.966-.055.054-.592-.365-.785-.601zm.095 10.041a7.728 7.728 0 01-.494.408h-.043v-.054l.011-.021.022-.032.021-.033.022-.032.064-.075.15-.14.15-.14.237-.235s.086-.097.118-.119c.032-.021.054-.042.086-.064.043-.021.097-.054.118-.032v.043c.01.032-.268.343-.462.526zm.666-7.947c-.14.097-.193.086-.279.183-.097.118-.129.515-.226.354-.096-.161-.032-.387.13-.558.193-.226.611-.15.375.02zm.505 7.066c.064-.021.097-.01.097-.01l.021.043c0 .01-.086.128-.129.128-.054-.01-.032-.075-.032-.075s-.022-.064.043-.086zm1.836-4.37c-.096-.065.054-.258.054-.42 0-.128-.02-.225-.02-.332 0-.108.106-.14.106-.14.021 0 .064.022.118.13.054.106-.086.869-.258.762zm3.286-3.072c-.02.45-.042.773-.31 1.117-.323.419-.88.848-.763.505.075-.204.57-.462.762-1.031.107-.344.13-.666.13-.666l-.023-.655s-.01-.054-.01-.13c.032-.085.075-.02.075-.02l.021.032c0 .02.13.526.118.848zm-8-12.748c.086.043.118.075.204.097.075.021.182.075.204.01.032-.064-.01-.15-.065-.225-.085-.14-.128-.172-.247-.365C11.61.044 11.588 0 11.545 0c0 0-.01.14-.054.225-.032.075-.118.13-.108.183.011.053.065.118.15.16z": "Ferrari", "M11.994 1.046h.022c.899.002 1.73.301 2.398.805l.003.001.001.001a4 4 0 011.116 1.299l4.467 7.769.025.065 3.419 5.927A3.98 3.98 0 0124 18.948c0 .565-.117 1.104-.329 1.592l.006.016a3.93 3.93 0 01-.634.993 3.97 3.97 0 01-1.045.868 3.984 3.984 0 01-1.946.537h-.068a3.984 3.984 0 01-2.398-.805l-.003-.001v-.001h-.001a4 4 0 01-1.116-1.299l-4.467-7.769-.025-.065-3.419-5.927-.005-.009-.011-.019A3.981 3.981 0 018 5.052c0-.424.066-.832.188-1.215v-.001l.008-.025.01-.03c.052-.157.117-.337.117-.337.158-.358.371-.689.626-.984l.063-.072.014-.015.002-.003.001-.001.002-.002.009-.01.006-.007c.27-.296.59-.557.956-.767a3.984 3.984 0 011.946-.537h.046zM4.006 22.954h-.058a3.984 3.984 0 01-1.946-.537 3.97 3.97 0 01-1.045-.868 3.93 3.93 0 01-.634-.993l.006-.016A3.988 3.988 0 010 18.948c0-.743.202-1.439.555-2.035l3.419-5.927.025-.065 3.039-5.286c.076.648.276 1.281.596 1.856l.057.1 3.377 5.854-.003-.01.067.142.291.507-3.889 6.764a4 4 0 01-1.116 1.299h-.001v.001l-.003.001a3.984 3.984 0 01-2.398.805h-.01z": "Google Ads", "M11.865 0a31.57 31.57 0 0 0-3.712.245l-.272.037-.338.046c-.073.009-.18.026-.236.038a3.7 3.7 0 0 1-.206.036 7.728 7.728 0 0 0-.265.043l-.265.048c-.193.034-.763.15-1.051.215-1.064.238-2.245.594-2.73.824-.343.163-.772.506-.93.743a2.157 2.157 0 0 0-.287.777c-.029.158-.032.23-.034.832-.003.728.009 1.223.044 1.865.166 3.019.696 5.54 1.686 8a20.797 20.797 0 0 0 2.635 4.81c1 1.363 2.12 2.572 3.395 3.67.769.66 1.737 1.405 2.076 1.595.386.217.82.234 1.19.047.3-.153 1.382-.974 2.113-1.604a24.361 24.361 0 0 0 3.119-3.27c.51-.645 1.541-2.254 1.977-3.085 1.622-3.09 2.549-6.883 2.651-10.812.03-.642.045-1.224.03-1.529a4.107 4.107 0 0 0-.017-.228l.001-.397-.165-.343a1.683 1.683 0 0 0-.383-.533c-.196-.205-.372-.321-.783-.519-.997-.48-2.338-.858-3.958-1.118a25.346 25.346 0 0 0-1.552-.216l-.404-.048a7.685 7.685 0 0 0-.41-.037 41.827 41.827 0 0 0-1.988-.12 21.41 21.41 0 0 0-.931-.011zm.167.83c3.34-.007 6.128.436 8.399 1.332.84.33.99.433 1.16.792.128.27.13.31.094 1.691-.197 7.59-2.8 13.219-8.113 17.541-.644.525-1.316 1.003-1.484 1.056-.083.026-.235-.033-.483-.187-.492-.305-1.718-1.303-2.54-2.068-1.352-1.255-2.707-2.937-3.63-4.506-1.97-3.344-2.993-7.244-3.114-11.866-.035-1.35-.032-1.392.096-1.662.17-.357.322-.462 1.13-.777C5.777 1.303 8.132.9 11.357.837c.228-.004.453-.007.675-.007zm-.941.708l-.045.003c-.2.024-.448.206-.567.422-.273.495-.22 1.592.096 1.974.123.15.188.176.421.176.155 0 .334-.04.407-.093.073-.052.19-.207.26-.345.184-.36.188-1.265.007-1.668-.116-.257-.333-.443-.538-.466l-.022-.002h-.02zm1.094.06l-.017 1.233a59.48 59.48 0 0 0-.01 1.184.346.346 0 0 0 .02.06c.025.005.089.009.173.009h.182v-.529c0-.506.005-.527.126-.509.1.015.162.126.307.543l.182.524h.44l-.194-.564-.193-.565.158-.151c.193-.186.253-.456.17-.767-.091-.347-.322-.467-.891-.468zm2.376.06c-.505 0-.733.383-.73 1.228 0 .558.084.91.264 1.113.208.233.66.274.945.084.154-.102.252-.416.255-.808 0-.104-.004-.186-.018-.244-.033-.094-.13-.106-.407-.133l-.235-.023c-.041.024-.044.08-.044.204v.04l.001.018c.006.118.035.138.146.138.118 0 .146.03.146.154 0 .355-.28.512-.49.276-.288-.324-.223-1.56.087-1.66.13-.042.345.115.345.251 0 .052.072.08.205.08.234 0 .26-.079.118-.358a.605.605 0 0 0-.588-.36zm-5.199.038a2.322 2.322 0 0 0-.327.014l-.353.038-.016 1.249-.016 1.249.428-.042c.235-.024.49-.074.569-.111.241-.118.378-.366.383-.695.003-.23-.025-.329-.123-.429-.126-.128-.126-.13-.015-.316a.685.685 0 0 0 .024-.697c-.083-.163-.263-.249-.554-.26zm6.287.074v2.51l.205.024.206.025v-.557c0-.617-.019-.594.427-.519l.22.038v.556c0 .48.014.561.103.585.26.069.253.1.236-1.202l-.016-1.243-.161-.019-.162-.019v.968l-.25-.036c-.41-.058-.397-.04-.397-.562 0-.345-.02-.482-.073-.482a1.04 1.04 0 0 1-.206-.037l-.096-.027zm-7.408.032l-.2.024c-.197.023-.204.034-.357.541-.085.285-.19.626-.232.758l-.077.24-.191-.629c-.105-.346-.212-.652-.238-.68-.025-.028-.128-.033-.228-.01l-.182.04V3.31c0 1.165.005 1.223.113 1.223a.64.64 0 0 0 .19-.03c.058-.023.074-.14.06-.437a6.524 6.524 0 0 1 0-.643c.018-.22.036-.188.248.446l.229.685.212-.768.212-.767.009.36a.236.236 0 0 1 .003.14l.005.173c.014.578.03.667.107.637a.672.672 0 0 1 .204-.036c.108 0 .113-.058.113-1.246zm4.292.14l.248.033c.352.049.5.296.325.541-.08.11-.456.2-.53.125-.023-.024-.043-.192-.043-.372zm-1.462.025c.083.004.163.07.227.2.132.268.122 1.21-.016 1.425-.133.207-.305.207-.438 0-.076-.118-.11-.309-.122-.703-.015-.464 0-.571.105-.74.076-.125.161-.185.244-.182zm-2.007.11h.194c.235 0 .335.09.335.304 0 .19-.08.265-.338.315l-.19.037v-.328zm8.497.005a.083.083 0 0 0-.031.023v2.48l.162.025c.089.013.181.029.206.033.024.005.044-.541.044-1.215 0-.673-.02-1.235-.044-1.25a1.238 1.238 0 0 0-.206-.064zM5.582 2.3a.699.699 0 0 0-.137.025c-.18.05-.182.058-.4 1.025-.12.536-.256 1.13-.3 1.322l-.081.348.186-.04a1.36 1.36 0 0 0 .224-.063c.02-.012.055-.17.078-.352.045-.37.041-.364.334-.42l.213-.041.07.302c.07.296.076.301.258.266a.944.944 0 0 0 .21-.057c.03-.025-.528-2.253-.577-2.304-.01-.01-.039-.014-.078-.011zm12.771.018v1.226c0 .942.017 1.228.074 1.229.04 0 .132.017.204.037.128.035.13.026.147-.694l.016-.73.322.817c.176.45.362.842.411.871.234.14.24.106.224-1.18l-.016-1.24-.162-.043-.162-.044v.668c-.002.767-.008.764-.36-.14-.258-.662-.341-.778-.562-.778zm-14.6.539c-.012 0-.105.03-.207.065l-.185.066v.31l.017.988c.008.47.02.845.046 1.182.011.004.024.002.04-.005.057-.023.321-.122.588-.222.456-.169.485-.19.485-.354 0-.095-.009-.174-.02-.174-.011 0-.174.054-.362.12a5.96 5.96 0 0 1-.362.12c-.011 0-.02-.472-.02-1.048 0-.577-.01-1.048-.02-1.048zm16.502 0c-.011 0-.02.562-.02 1.249v1.249l.19.062c.106.035.198.065.206.069.008.003.015-.557.015-1.246V2.987l-.185-.066a1.991 1.991 0 0 0-.206-.065zm-10.948.206c.263.01.427.297.279.568-.063.115-.14.159-.303.173l-.219.018v-.356c0-.311.015-.36.124-.389a.406.406 0 0 1 .119-.014zm-3.852.003l.078.322c.043.18.057.265.041.316a.05.05 0 0 1-.02.037.13.13 0 0 1-.025.02c-.141.091-.238.063-.2-.06.02-.062.056-.23.08-.374zm6.879 1.66c-.555.013-1.034.17-1.306.446-.243.247-.27.51-.068.645.255.169.673.22 2.168.268 1.368.044 1.532.06 1.77.177.292.145.419.333.41.61-.006.23-.157.477-.293.477-.229 0-.989-.194-1.526-.39a5.355 5.355 0 0 0-.661-.205l-.038-.003c-.144.004-.318.121-.818.551-.22.189-.61.454-.867.59-.834.443-1.091.794-1.207 1.649-.063.463-.14.648-.499 1.187-.298.448-.508 1.05-.51 1.457 0 .197-.07.511-.184.839-.15.433-.184.627-.195 1.122-.012.514-.035.64-.163.879-.093.172-.166.43-.192.674-.037.36-.067.426-.33.74-.159.188-.289.375-.289.415 0 .022-.025.07-.063.128-.008.038-.026.065-.049.068a1 1 0 0 1-.066.083c-.224.26-.334.559-.24.654.049.05.089.034.157-.064.129-.188.203-.165.144.044-.034.12-.028.186.019.207.088.039.422-.014.597-.095.092-.043.16-.153.21-.34.04-.153.114-.327.164-.386.055-.066.101-.265.116-.506.022-.352.051-.431.25-.688.13-.166.267-.437.321-.632.053-.188.137-.423.188-.522.377-.74.62-1.168.663-1.168.13 0 .234.284.234.64 0 .28.024.386.094.426.085.048.086.073.009.228a1.978 1.978 0 0 0-.128.35c-.057.24-.245.497-.442.6-.09.048-.286.208-.436.357-.216.214-.273.31-.272.467.001.264.086.402.185.3.118-.12.172-.085.13.085-.038.154-.032.158.158.12.243-.05.463-.193.504-.327.017-.056.054-.142.082-.191.029-.05.137-.274.242-.5.13-.28.273-.478.453-.628.144-.12.3-.313.348-.428.139-.338.543-.628.543-.388 0 .14-.228.564-.394.733-.209.213-.37.499-.37.657 0 .139.082.18.147.075.064-.106.137-.064.105.06a.334.334 0 0 0-.007.035c.01.03.025.055.045.075.025.007.06.01.112.01.302 0 .587-.174.63-.385a1.5 1.5 0 0 1 .152-.375c.074-.124.1-.242.076-.341-.04-.161.068-.577.15-.577.06 0 .274.447.328.69a.823.823 0 0 0 .156.308c.108.121.155.128.683.098.547-.031.573-.04.715-.217.106-.134.156-.285.18-.547.042-.462.242-.776.7-1.104l.342-.244.084.134c.047.073.147.289.223.479.128.316.133.368.065.64-.041.164-.057.354-.036.423.022.07-.007.256-.065.42l-.045.128-.009.056a.61.61 0 0 0-.014.152l.103.11c.157.172.266.193.316.062.044-.12.155-.116.155.005 0 .127.115.08.248-.1.102-.14.103-.165.016-.416-.052-.148-.081-.315-.067-.371.014-.057 0-.219-.032-.36a2.63 2.63 0 0 1 .011-1.095c.057-.278.05-.339-.083-.63-.081-.177-.136-.334-.123-.347.014-.014.125.015.248.064.57.228 1.015.176 1.286-.15l.138-.167a.154.154 0 0 0 .004-.028l-.329-.03a6.802 6.802 0 0 1-.225-.025c-.199-.033-.286-.105-.604-.389-.294-.262-.304-.282-.273-.516.019-.139-.01-.442-.067-.701-.092-.422-.092-.483-.006-.784.051-.18.093-.407.093-.503 0-.29-.158-.736-.345-.973a1.535 1.535 0 0 1-.238-.462 1.843 1.843 0 0 0-.208-.458c-.136-.204-.14-.229-.059-.425a1.74 1.74 0 0 0 .086-.538c0-.287-.025-.359-.191-.551-.36-.418-.53-.457-2.25-.508-1.985-.06-2.297-.136-1.989-.483.126-.142.332-.138.76.014.469.166 1.042.207 1.377.099.288-.093.293-.088-.206-.194-.08-.017-.147-.06-.147-.097 0-.013.008-.022.021-.029.009-.018.051-.022.13-.013.036.002.078.006.128.013.769.104.897.112.897.053 0-.097-.516-.297-1.055-.408a3.533 3.533 0 0 0-.79-.074zm.213.491a.86.86 0 0 1 .232.054l.254.092-.182.003-.024.001-.031-.002a.627.627 0 0 1-.262-.05c-.103-.067-.08-.103.013-.098Z": "Lamborghini", "M20.987 6.25l.041.002.039.006.04.011.039.015.038.02.039.022.035.03.035.029.037.045.046.045.03.045.044.045.075.119.029.06.029.075.03.074.031.074.028.074.029.09.029.09.03.09.031.089.029.104.028.104.031.105.03.104.029.104.029.104.03.12.03.118.029.135.015.12.029.134.03.134.017.135.028.149.015.148.015.149.031.149.015.149.016.148.015.165.015.164.015.163.015.165.015.164.016.179.015.343.016.179.015.179.015.18.015.18.015.193.015.193.015.193.016.195.015.193v.388l.016.209.015.209v.403l.015.208v.611l.015.419.015.625v1.269l.015.373.03.269.046.179.043.119.047.104.059.09.045.044.045.045.044.045.062.029.089.046.089.029.096.03.142.029.193.011.269-.016h.1v2.253l-.239.029-.566.026-.61-.029-.448-.067-.344-.089-.254-.089-.237-.119-.236-.15-.208-.184-.134-.134-.136-.149-.17-.269-.15-.313-.119-.342-.082-.403-.054-.456-.015-.508v-1.938l-.015-.418v-.865l-.015-.402v-.287l-.016-.199v-.397l-.015-.194v-.193l-.008-.193-.015-.194-.014-.179-.003-.18-.015-.179-.015-.183v-.178l-.015-.18-.017-.179-.012-.179-.014-.17-.017-.17-.015-.164-.015-.169-.015-.16-.014-.163-.015-.164-.017-.15-.015-.148-.016-.158-.015-.141-.015-.135-.044-.278-.016-.134-.015-.135-.03-.125-.026-.135-.029-.118-.03-.12-.031-.119-.034-.103-.029-.104-.025-.103-.045-.09-.029-.104-.029-.089-.022-.09-.029-.089-.031-.09-.03-.074-.029-.076-.029-.074-.03-.059-.03-.061-.029-.06-.044-.06-.03-.045-.036-.045-.031-.044-.041-.03-.028-.029-.046-.03-.028-.015-.046-.016-.049-.012-.044-.016-.03-.015h-.03 2.552zM.008 3.084l1.169.021 1.089.026.97.015.851.03.73.029.642.029.567.03.506.029.463.046.418.044.387.046.357.044.329.046.313.044.283.061.27.059.252.059.24.06.223.06.209.06.194.075.194.059.179.074.163.076.166.074.148.074.164.074.148.09.135.09.135.09.119.088.119.09.119.09.119.09.104.09.104.104.104.09.105.104.09.104.09.104.104.105.09.104.09.104.074.104.09.105.074.119.074.104.074.119.075.12.074.119.074.12.06.119.061.119.074.119.06.119.06.119.06.119.06.12.045.118.048.12.06.135.05.118.06.135.06.119.044.119.061.135.054.135.044.119.051.134.045.12.045.133.045.135.045.135.045.134.044.135.03.134.045.135.039.135.029.133.039.135.029.135.041.134.029.134.045.135.029.119.045.135v.014l.029.12.031.127.029.134.029.135.03.119.03.135.029.133.045.12.029.134.03.119.03.135.029.119.029.119.03.12.03.119.029.12.03.119.03.119.029.119.029.119.03.119.03.119.014.12.03.104.046.223.029.105.029.104.03.104.022.104.029.104.016.104.029.104.03.104.015.104.029.105.03.09.03.097.015.089.03.09.015.09.015.089.015.09.015.075.016.09.015.085.016.075.014.074.016.078.024.074.015.074.015.075.015.068.016.06.023.074.023.061.016.065.015.06.016.06.015.06.015.06.015.06.015.045.03.051.015.045.015.045.016.044.029.046.015.044.038.075.015.038.03.061.015.029.015.03.015.029.016.03.015.015.015.015.015.015.016.015.015.016.029.016.016.004.015.015h.03-7.027l-.051-.015-.057-.016-.057-.014-.06-.016-.06-.015h-.016l-.052-.024-.056-.015-.057-.031-.061-.03-.044-.029-.06-.03-.045-.029-.061-.03-.044-.045-.044-.045-.061-.045-.045-.045-.06-.044-.06-.06-.06-.056-.044-.06-.061-.054-.06-.045-.06-.06-.061-.06-.044-.06-.062-.005-.059-.06-.045-.068-.054-.065-.119-.148-.059-.075-.045-.074-.061-.09-.059-.074-.061-.09-.06-.075-.06-.088-.06-.09-.06-.09-.061-.09-.059-.09-.061-.09-.06-.089-.06-.104-.059-.09-.046-.104-.06-.105-.06-.104-.06-.105-.061-.104-.059-.104-.06-.104-.06-.104-.061-.104-.059-.104-.061-.104-.059-.104-.061-.119-.06-.12-.06-.119-.061-.12-.059-.119-.061-.119-.059-.119-.06-.119-.135-.028-.049-.126-.059-.123-.061-.123-.059-.125-.064-.125-.06-.127-.06-.119-.064-.119-.06-.119-.063-.119-.06-.119-.06-.15-.06-.134-.063-.119-.063-.12-.06-.134-.063-.119-.061-.135-.06-.119-.06-.135-.06-.134-.06-.134-.058-.134-.059-.135-.061-.119-.059-.134-.059-.133-.059-.135-.06-.135-.06-.134-.119-.268-.06-.149-.06-.12-.059-.134-.061-.12-.06-.119-.073-.118-.06-.135-.074-.12-.06-.118-.074-.12-.061-.119-.059-.12-.06-.119-.06-.119-.059-.137-.12-.239-.06-.119-.061-.119-.074-.119-.074-.119-.135-.229-.058-.119-.074-.11-.076-.12-.059-.112-.061-.104-.125-.208-.074-.106-.061-.103-.058-.105-.061-.089-.06-.105-.063-.104-.066-.09-.059-.09-.074-.09-.076-.088-.059-.089-.075-.09-.088-.117-.067-.076-.069-.078-.059-.074-.058-.1-.074-.074-.066-.06-.075-.069-.062-.065-.075-.081-.065-.06-.065-.06-.068-.058-.067-.053-.069-.045-.07-.045-.064-.059-.075-.046-.06-.044-.074-.044-.067-.03-.068-.03-.07-.03-.071-.03-.068-.031-.059-.023L0 3.088h.008z": "Livestream", - "M11.4 24H0V12.6h11.4V24zM24 24H12.6V12.6H24V24zM11.4 11.4H0V0h11.4v11.4zm12.6 0H12.6V0H24v11.4z": "Microsoft", + "M12.096.1l-.001.001A11.547 11.547 0 00.538 11.658c0 2.069.548 4.005 1.496 5.683l2.869-2.867a7.676 7.676 0 01-.54-2.816c0-4.261 3.47-7.73 7.732-7.73 4.261 0 7.732 3.469 7.732 7.73 0 4.262-3.47 7.732-7.732 7.732a7.67 7.67 0 01-2.6-.459L6.597 21.83a11.514 11.514 0 005.499 1.388c2.316 0 4.468-.686 6.275-1.856l2.393 2.392L24 20.512l-2.349-2.349a11.51 11.51 0 002-6.505C23.651 5.368 18.644.26 12.393.1c-.08-.003-.18 0-.297 0zm-.001 9.34c-1.226 0-2.215.991-2.215 2.217 0 1.225.99 2.216 2.215 2.216a2.215 2.215 0 100-4.432zm-4.241 3.368l-.214.214L0 20.662l3.239 3.24 7.855-7.856z": "ManageIQ", + "M11.963.085a11.158 11.158 0 0 0-1.618.112c-1.79.257-3.463.907-5.07 1.968-1.4.925-2.746 2.314-3.58 3.694-.53.88-1.105 2.268-1.368 3.313-.464 1.84-.432 3.947.092 5.933.827 3.133 3.114 5.942 6.065 7.448 1.532.782 2.842 1.148 4.79 1.339.374.036 1.032.029 1.59-.019a12.068 12.068 0 0 0 4.496-1.242c2.329-1.137 4.14-2.903 5.347-5.208.903-1.728 1.29-3.334 1.294-5.377.004-2.02-.335-3.498-1.2-5.242-.996-2.005-2.25-3.44-4.062-4.65A12.424 12.424 0 0 0 11.963.085zm.711.493c.082 0 .169.008.258.023.394.065.498.161.53.492l.024.248h-.248c-.219 0-.248-.012-.262-.11-.014-.094-.05-.112-.249-.125-.18-.011-.24.004-.263.066-.041.107.04.151.343.191.5.067.666.225.666.633 0 .32-.081.5-.267.588-.193.091-.705.098-.955.013-.185-.063-.342-.304-.341-.523.001-.21.063-.258.283-.221.154.026.203.058.214.139.027.19.577.218.577.03 0-.119-.111-.172-.439-.209-.314-.035-.496-.154-.556-.363-.059-.205.005-.585.117-.696.115-.116.321-.177.568-.176zm1.59.207c.04-.002.213.028.42.073.88.192.989.265.989.66 0 .326-.161.767-.318.87-.147.096-.313.097-.66.004a11.63 11.63 0 0 0-.279-.073 2.29 2.29 0 0 0-.07.293c-.065.314-.08.323-.372.239-.087-.026-.158-.063-.158-.084 0-.02.098-.47.22-.997.12-.528.22-.97.22-.983 0-.001.002-.002.008-.002zm-3.334.276l.032.17c.037.202-.004.237-.334.283-.163.022-.234.055-.234.106 0 .06.042.069.232.042.128-.018.27-.044.318-.058.071-.02.085.007.085.171v.197l-.285.056-.286.056.037.203c.042.23.005.274-.228.275l-.151.001-.107-.642c-.059-.353-.099-.65-.089-.66.01-.01.242-.06.514-.11zm3.793.392c-.038 0-.067.006-.08.02a.414.414 0 0 0-.054.183c-.013.117.006.15.106.178.26.075.39.05.452-.083.049-.108.045-.137-.028-.19a.827.827 0 0 0-.396-.108zm-5.444.035c.203 0 .244.019.348.159.26.35.308.8.104.988-.212.196-.642.309-.907.238-.113-.03-.331-.456-.367-.713-.018-.132-.007-.26.029-.327.083-.156.517-.344.793-.345zm7.249.079c.193-.008.647.145.836.289.229.173.291.364.22.677-.067.304-.435.954-.62 1.1-.164.13-.403.13-.737.001a1.213 1.213 0 0 1-.434-.297c-.169-.187-.179-.215-.15-.426.07-.506.563-1.285.85-1.34a.24.24 0 0 1 .035-.004zm-9.68.275c.165.005.3.095.424.27l.128.182-.208.13c-.204.126-.21.126-.288.034-.078-.091-.086-.092-.23-.007-.225.133-.304.24-.271.369.04.157.414.672.489.672.116 0 .471-.266.471-.353 0-.114-.075-.11-.246.012l-.14.1-.124-.185a.999.999 0 0 1-.125-.219c0-.038.665-.48.722-.48.037.001.303.384.397.572a.84.84 0 0 1 .054.304c0 .254-.185.47-.58.681-.3.16-.397.178-.58.105-.283-.114-.942-1.068-.942-1.364 0-.196.142-.384.442-.584.246-.165.442-.245.607-.24zm2.393.096a.749.749 0 0 0-.159.043c-.167.058-.186.118-.098.311.056.123.154.153.306.095.11-.042.086-.284-.043-.447l-.006-.002zm7.416.201a.23.23 0 0 0-.15.055c-.147.132-.366.667-.311.757.05.082.343.247.438.247.032 0 .135-.124.23-.275.24-.383.27-.546.122-.66a.543.543 0 0 0-.329-.124zm1.805.424c.069 0 .928.694.98.793.04.075.04.151-.003.293-.068.229-.368.576-.497.576-.064 0-.092.035-.092.115 0 .064-.073.212-.163.33-.09.118-.19.264-.222.325-.076.144-.116.14-.322-.042l-.173-.152.18-.245c.197-.268.191-.318-.053-.5l-.134-.1-.133.148a3.54 3.54 0 0 0-.213.263l-.08.116-.196-.155-.196-.155.641-.805c.353-.443.657-.805.676-.805zm-13.39.342c.019 0 .335.343.704.762l.67.762-.211.216c-.117.119-.243.216-.282.216-.039 0-.304-.125-.589-.278-.556-.298-.556-.297-.068.257l.305.346-.16.155c-.088.085-.18.155-.206.154-.026 0-.35-.346-.719-.768l-.671-.767.15-.154c.298-.308.318-.308.895-.006.285.148.518.258.518.243 0-.014-.158-.214-.351-.443l-.352-.417.167-.139a.836.836 0 0 1 .2-.139zm6.793.2c.714-.005 1.498.045 1.969.14 3.032.608 5.641 2.868 6.646 5.755.92 2.641.458 5.933-1.13 8.06-.375.502-1.208 1.376-1.672 1.754a8.96 8.96 0 0 1-3.88 1.816c-.476.097-.783.125-1.547.14-.524.01-1.118 0-1.32-.025-.681-.085-1.413-.244-1.913-.418-2.143-.746-4.106-2.504-5.126-4.59-.41-.84-.668-1.8-.78-2.902C2.78 9.533 4.25 6.42 7.017 4.561c1.144-.769 2.225-1.173 3.72-1.39a8.68 8.68 0 0 1 1.129-.067zm.172.145c-.687.005-1.434.055-1.857.14-1.733.35-3.296 1.232-4.585 2.588a8.038 8.038 0 0 0-1.456 2.084 8.302 8.302 0 0 0-.885 3.03c-.075.693-.028 1.894.1 2.54.511 2.574 2.332 4.94 4.718 6.127.766.381 1.851.701 2.841.837.481.067 2.115.028 2.585-.06 1.983-.374 3.61-1.24 4.924-2.62.685-.72 1.05-1.234 1.457-2.055 1.02-2.055 1.207-4.656.483-6.729-.225-.644-.736-1.643-1.11-2.168-.369-.519-1.174-1.378-1.665-1.778a8.492 8.492 0 0 0-4.459-1.89 9.51 9.51 0 0 0-1.09-.046zm6.471.056c-.028.002-.054.03-.1.09-.088.118-.088.12.067.252.183.157.304.172.372.046.049-.092.01-.145-.258-.349-.035-.026-.059-.04-.08-.039zm1.56.52l.422.441c.23.244.465.5.52.57l.101.128-.187.193-.188.192-.175-.172c-.096-.094-.191-.17-.21-.17-.02 0-.286.23-.59.51l-.554.51-.16-.164c-.087-.09-.151-.186-.141-.213.01-.027.248-.265.53-.528.283-.264.52-.503.528-.531.007-.029-.053-.116-.135-.194-.081-.078-.146-.166-.144-.194.003-.029.09-.126.194-.215zm-9.309.213c.195.003.41.056.615.168a1.1 1.1 0 0 1 .559.65c.089.254.099.888.015.971-.085.086-.337.072-.482-.027a6.166 6.166 0 0 1-.343-.262 2.28 2.28 0 0 0-.436-.273c-.26-.114-.563-.432-.609-.64-.08-.366.253-.595.681-.587zm2.592.105h.052c.12.002.23.025.315.072.326.179.368.608.092.958-.056.072-.315.238-.574.368-.26.13-.525.294-.59.364-.15.16-.18.16-.266-.007-.192-.375-.128-1.12.121-1.404.184-.209.542-.343.85-.351zm-4.175.217c.05 0 .104 0 .161.004.355.018.877.95.656 1.17-.077.077-.31.07-.552-.02a3.614 3.614 0 0 0-.644-.118c-.528-.054-.692-.118-.734-.286-.026-.103.007-.157.205-.337.33-.299.553-.406.908-.413zm5.604.06c.171 0 .328.043.538.148.338.168.712.539.666.658-.044.114-.373.266-.744.345-.37.078-.456.08-.681.016-.216-.063-.352-.293-.352-.598 0-.204.022-.26.166-.403.144-.144.198-.166.407-.166zm-11.465.162c.117.006.311.174.815.597.434.365.79.68.79.7 0 .02-.072.106-.16.19l-.158.154-.797-.66-.796-.658.097-.137c.084-.118.129-.19.21-.186zm-.645.766c.015 0 .142.231.283.514l.255.513h.611c.336 0 .611.01.611.022 0 .013-.06.123-.134.245l-.134.222H3.65l-.514.002.338.219c.186.12.348.228.359.24.024.023-.197.419-.233.416a24.2 24.2 0 0 1-.874-.512c-.468-.28-.86-.52-.872-.531-.034-.034.202-.42.256-.42.026.001.169.078.315.171.147.094.286.17.31.17.024 0-.05-.17-.164-.377l-.207-.377.14-.258c.077-.142.152-.259.167-.259zm13.917.052c.045 0 .095.004.156.008.86.062 1.017.614.476 1.688-.246.488-.444.613-.597.379-.12-.183-.054-.342.294-.705.351-.367.419-.477.419-.68 0-.231-.14-.36-.419-.385-.37-.032-.639.126-.832.49-.187.352-.282.441-.548.517-.256.072-.301.166-.162.339.224.278.23.33.057.526-.117.133-.148.206-.123.283.019.057.044.184.057.283.032.236-.082.31-.614.403a3.71 3.71 0 0 0-.926.315 5.73 5.73 0 0 1-.615.26c-.183.03-.295.26-.29.59.003.168.008.635.01 1.039l.006.733-.146.133c-.172.156-.63.301-.849.269a1.592 1.592 0 0 1-.31-.088c-.127-.053-.168-.053-.231 0-.132.11-.096.341.075.486.397.335.483.438.483.58 0 .15.143.257.346.257.088 0 .094-.022.065-.24-.032-.242-.031-.242.214-.468.135-.125.26-.286.279-.358.053-.213.165-.296.573-.425.668-.211 1.239-.132 1.625.224.258.238.342.5.309.962-.026.36-.161.683-.367.874-.176.163-.209.146-.209-.105 0-.185-.018-.228-.11-.263-.193-.071-.761-.096-.841-.036-.041.03-.097.176-.125.324a1.462 1.462 0 0 1-.224.523c-.184.267-.492.537-.548.48-.019-.019-.034-.254-.034-.523 0-.452-.008-.495-.113-.58-.16-.13-.407-.165-.758-.107-.233.038-.338.035-.462-.016-.192-.079-.296-.049-.332.097-.024.096.076.796.156 1.091.037.138-.048.144-.254.019-.082-.05-.297-.256-.478-.457l-.328-.365-.394-.056c-.71-.1-1.176-.437-1.502-1.086-.098-.196-.223-.385-.277-.42-.15-.096-.327.014-.405.253-.05.154-.115.224-.316.34-.14.081-.32.239-.401.351-.082.112-.178.217-.215.233-.098.042-.204-.064-.316-.315-.125-.28-.18-1.375-.081-1.614.04-.095.212-.258.474-.449.28-.203.443-.36.51-.491.054-.106.089-.202.077-.213-.01-.01-.106.05-.21.134a3.47 3.47 0 0 1-.546.324c-.406.194-.536.187-.747-.039l-.134-.143-.051.134c-.029.073-.067.21-.085.304-.055.282-.153.423-.455.655a7.23 7.23 0 0 0-.678.639c-.215.23-.423.417-.464.417-.085 0-.115-.202-.165-1.102-.048-.863.072-1.4.406-1.817.246-.305.664-.485.999-.428.25.042.335.135.335.365 0 .466.1.446.346-.069.202-.424.286-.51.59-.61.192-.062.373-.228.315-.286-.02-.02-.194-.037-.386-.037-.312 0-.35-.01-.364-.097-.054-.345-.046-.342-.277-.104a.96.96 0 0 1-.426.277c-.23.062-.625.25-.832.395a.494.494 0 0 1-.214.092c-.14 0-.06-.351.142-.633.096-.133.25-.394.344-.58.29-.575.532-.792.886-.792.162 0 .184.018.254.196.043.108.106.196.141.196.128 0 .166-.175.118-.546-.12-.928-.024-1.416.314-1.576.304-.145.48-.091 1.1.332.373.256.418.274.686.274.157 0 .48-.047.718-.106.331-.081.59-.106 1.116-.11.652-.003.698.003.977.133.548.257.686.475.608.96-.027.165-.035.323-.019.349.084.135-.058.382-.45.783-.274.28-.4.445-.381.495.023.06.148.08.624.097.64.025.77-.004.87-.19.055-.103.05-.146-.042-.324-.127-.249-.194-1.138-.11-1.453.106-.39.517-.69 1.182-.86.231-.06.398-.07.675-.042.87.087.944.076 1.604-.24.477-.228.58-.274.777-.271zm4.648.144c.32 0 .691.489.694.911 0 .172-.026.226-.175.357-.097.085-.201.146-.232.136-.031-.01-.1-.1-.154-.199-.083-.152-.087-.188-.03-.224.058-.036.06-.069.009-.191-.083-.2-.208-.307-.295-.254-.057.036-.042.102.087.38.252.548.198.728-.295.991-.296.158-.416.13-.697-.16-.24-.249-.368-.516-.368-.77 0-.121.364-.505.45-.477.029.01.098.097.154.194.097.167.098.183.02.268-.077.086-.075.103.027.285.06.107.147.201.194.21.155.03.152-.14-.006-.462-.085-.172-.155-.35-.155-.397.001-.264.433-.598.772-.598zm-14.403.39c-.119-.003-.218.031-.272.11-.112.159-.1.657.024.988.086.23.28.468.383.467.016 0 .167-.123.335-.272.44-.393.488-.666.175-.98-.194-.193-.447-.306-.645-.312zm11.107.605c.067.005.15.08.28.227.306.347.294.37-.236.463a.382.382 0 0 1-.22-.026c-.108-.064-.11-.25-.005-.47.063-.134.114-.199.18-.194zm.393 1.064a.83.83 0 0 1 .192.061c.283.108.69.47.826.734.112.216.148.672.06.76-.114.114-.34.102-.643-.036-.53-.24-.65-.422-.65-.98 0-.258.022-.366.09-.451.052-.063.075-.09.125-.088zm-1.026.041c.077.003.167.049.264.14.152.141.308.562.32.86.007.16-.083.203-.286.134a2.838 2.838 0 0 1-.304-.143c-.229-.122-.293-.292-.244-.652.03-.227.122-.343.25-.339zm-15.43.747c.19-.004.38.062.537.2.31.273.385.623.21.982-.183.374-.662.557-1.028.393-.557-.25-.703-.861-.309-1.297a.817.817 0 0 1 .59-.278zm20.19.002a.826.826 0 0 1 .62.29.939.939 0 0 1 .197.38c.1.595-.478 1.106-1.055.931a.827.827 0 0 1-.486-1.172.792.792 0 0 1 .724-.429zm-13.63.181c-.16 0-.29.01-.29.021 0 .011.043.284.098.607.201 1.202.405 1.456 1.354 1.69.823.202.92.28.88.71-.018.209-.006.317.046.39.06.087.163.14.163.085 0-.01-.024-.087-.054-.172-.04-.118-.04-.173.006-.227.042-.052.05-.177.026-.436-.031-.327-.024-.378.072-.508.099-.133.102-.163.048-.424a2.438 2.438 0 0 1-.024-.663c.032-.367.028-.388-.091-.508-.104-.104-.17-.125-.398-.125-.205 0-.343-.036-.564-.147a3.137 3.137 0 0 0-1.273-.293zm7.168.27c.007 0 .012 0 .013.002.048.044-.312 1.102-.446 1.311-.258.405-.692.542-1.307.414a1.567 1.567 0 0 0-.425-.02l-.206.025.029-.329c.03-.34.1-.534.233-.644.067-.055.076-.039.076.135 0 .291.07.43.291.576.33.218.742.128 1.007-.222.124-.163.129-.596.009-.83-.048-.092-.069-.186-.047-.208.042-.041.672-.21.773-.21zm-7.037.024c.017 0 .114.024.215.055l.184.055-.1.168c-.079.134-.092.217-.068.42.069.584.594.873 1.137.626.194-.088.459-.369.459-.486 0-.03.02-.056.045-.056.1 0 .19.153.221.376.019.13.045.28.059.337.022.096-.002.105-.383.135-.224.017-.517.042-.651.054a1.508 1.508 0 0 1-.41-.02c-.344-.087-.553-.326-.664-.758-.074-.288-.104-.906-.044-.906zm8.711.052c.13 0 .297.107.434.305.135.195.136.202.136.978 0 .536-.017.788-.055.801-.03.01-.176-.092-.323-.227-.392-.358-.5-.634-.46-1.184.016-.233.056-.48.088-.55.037-.083.102-.123.18-.123zm-7.745.443c.019 0 .038 0 .059.002.18.022.25.144.177.306-.102.223-.45.148-.45-.098 0-.125.085-.205.214-.21zm8.9.005c.055 0 .132.02.235.057.479.17.99.626 1.198 1.07.261.554.264 1.541.006 1.8-.16.16-.295.112-.737-.262-.23-.195-.5-.418-.601-.495-.205-.158-.365-.464-.367-.7 0-.085.033-.303.075-.483.042-.18.07-.456.062-.613-.014-.267.007-.372.13-.374zm-4.178.135c.07 0 .154.027.186.059.065.065.077.23.021.313-.054.083-.218.115-.341.066-.078-.03-.11-.084-.11-.182 0-.172.08-.256.244-.256zm2.833 1.369c.134 0 .431.358.475.571.056.277.042.786-.03 1.09-.076.322-.243.734-.298.734-.022 0-.126-.102-.233-.227-.295-.345-.338-.525-.211-.89.056-.164.115-.425.13-.58.063-.654.074-.698.167-.698zm-16.715.095l.306.027a73.16 73.16 0 0 0 1.9.122c.087 0 .095.03.082.302l-.015.302-.61.239c-.335.13-.62.25-.633.262-.013.013.268.009.625-.01l.65-.034-.016.214-.016.214-.929.083c-.51.046-1.022.093-1.136.105l-.208.022.001-.373.002-.372.737-.244c.854-.282.845-.306-.116-.314l-.624-.005v-.27zm22.378.328c.244-.001.486.026.583.079.235.128.28.249.28.769.002.573-.088.771-.391.863-.25.075-.692.073-1.122-.006-.557-.102-.694-.178-.76-.426-.063-.231-.034-.761.05-.92.066-.121.298-.244.463-.244.115 0 .125.017.125.214 0 .173-.02.219-.098.24-.141.036-.211.255-.145.455.044.132.087.17.234.2.26.056.782.034.866-.036.097-.08.097-.551 0-.632-.14-.115-.246-.04-.262.185l-.015.21-.229-.015-.23-.015v-.824l.147-.043c.124-.036.315-.054.504-.054zm-16.937.457c.04 0 .095.06.125.134.108.27.253.975.282 1.383.037.49 0 .588-.38 1.007-.135.15-.312.419-.392.597-.22.489-.337.587-.492.41-.202-.228-.527-1.305-.527-1.746 0-.26.193-.753.384-.985.173-.21.911-.8 1-.8zm12.445.1c.039 0 .082.016.135.046.189.107.782.908.905 1.222.153.392.151.963-.004 1.31-.116.257-.299.45-.428.45-.038 0-.279-.204-.536-.452-.644-.623-.744-.838-.574-1.24.044-.105.14-.43.212-.725.11-.447.175-.608.29-.61zm-15.632.942c.017 0 .027 0 .029.002.028.028.264 1.169.245 1.182a3.09 3.09 0 0 1-.218.059c-.235.057-.198.108-.321-.45-.066-.298-.107-.349-.222-.277-.055.035-.053.105.013.42.043.208.078.385.078.393 0 .026-.494.133-.516.111a3.197 3.197 0 0 1-.105-.42c-.08-.383-.09-.4-.218-.4-.073 0-.145.02-.16.043-.014.023.017.237.069.476.052.238.079.447.06.464-.047.041-.501.19-.581.19-.035 0-.064-.013-.064-.029s-.078-.37-.173-.789a10.625 10.625 0 0 1-.16-.77c.035-.028 1.98-.203 2.244-.205zm5.218.18c.103 0 .108.01.282.512.083.241.18.407.33.562.264.276.373.437.373.554 0 .124-.63 1.06-.714 1.06-.037 0-.14-.099-.227-.22-.087-.12-.27-.4-.404-.62-.232-.382-.244-.42-.244-.747 0-.555.3-1.101.604-1.101zm13.483.196c.441.006 2.136.1 2.162.126.02.02-.081.758-.107.782-.006.005-.371.05-.81.099-.44.049-.77.1-.734.112.036.013.374.091.75.175.662.146.685.155.673.271-.031.331-.068.438-.15.433-.045-.003-.543-.151-1.105-.33-.562-.178-1.022-.335-1.022-.349 0-.013.015-.138.033-.276l.034-.252.598-.11c.328-.061.574-.119.544-.129a7.86 7.86 0 0 0-.537-.08l-.485-.06.016-.194a.757.757 0 0 1 .036-.214.487.487 0 0 1 .104-.004zm-4.784.051c.087-.007.203.06.288.188.094.14.112.23.112.568 0 .484-.062.673-.423 1.306-.211.37-.295.477-.377.477-.058 0-.127-.03-.154-.065a23.11 23.11 0 0 1-.308-.451c-.23-.34-.256-.407-.228-.557.05-.27.154-.428.561-.861.21-.223.397-.452.416-.51.019-.06.06-.09.113-.095zm-13.65.828c.042 0 .123.358.087.392a3.57 3.57 0 0 1-.432.214c-.216.095-.377.174-.358.175.018 0 .216-.043.44-.096.223-.054.422-.098.442-.098.039 0 .154.21.203.371.028.09-.025.133-.43.342-.254.13-.455.245-.447.253.008.008.228-.054.49-.137.261-.084.483-.144.493-.134.01.01.052.098.093.196l.074.178-.793.25c-.437.138-.925.293-1.085.345a3.11 3.11 0 0 1-.323.095c-.018 0-.08-.113-.137-.25a1.602 1.602 0 0 1-.105-.31c0-.033.242-.175.538-.315a6.62 6.62 0 0 0 .538-.27c0-.01-.236.047-.525.125-.29.077-.562.14-.605.14-.05 0-.116-.098-.184-.275-.058-.152-.098-.283-.09-.292a95.652 95.652 0 0 1 2.115-.899zm3.643.245c.188 0 .372.2.564.614.093.203.278.535.411.739.153.234.242.423.242.516 0 .08-.108.49-.241.91-.133.42-.255.847-.271.948-.017.105-.058.183-.095.183-.036 0-.229-.192-.43-.428-.462-.542-.795-.995-.96-1.307-.112-.213-.129-.302-.128-.685.001-.374.021-.482.134-.725.218-.47.516-.765.774-.765zm11.09.092h.021c.105.005.223.087.374.243.457.474.69 1.574.361 1.7-.125.049-.303-.063-.436-.274-.089-.14-.158-.197-.241-.197-.173 0-.187.114-.056.462.185.493.203.716.078.976-.128.265-.402.517-.562.517-.1 0-.131-.045-.225-.33a4.96 4.96 0 0 0-.297-.676c-.265-.486-.255-.566.148-1.215.185-.297.404-.676.486-.84.12-.24.225-.36.35-.366zm3.317.3c.046 0 2.17.628 2.183.645.021.025-.233.673-.263.672a111.76 111.76 0 0 1-2.095-.854c-.025-.017.145-.464.175-.464zm-11.822.243c.045 0 .147.093.227.208.315.45.457.95.458 1.613 0 .46-.003.476-.11.476-.07 0-.221-.117-.434-.338-.419-.436-.603-.807-.563-1.138.034-.293.306-.82.422-.82zm1.997.049c.04 0 .4.734.4.815 0 .08-.24.26-.344.26a.222.222 0 0 1-.147-.075c-.105-.126-.119-.538-.026-.781.046-.12.099-.22.117-.22zm2.155.027l.07.17c.107.265.138.592.067.732-.075.146-.208.17-.39.07-.181-.1-.17-.22.061-.631zm1.9.221c.072 0 .13.036.174.106.095.153.194.838.157 1.085-.042.276-.245.508-.657.754-.383.227-.35.215-.441.157-.053-.034-.06-.111-.032-.353.02-.171.042-.454.05-.628.017-.392.16-.716.422-.952.125-.113.236-.17.328-.169zm-3.112.68c.077 0 .33.08.563.176.435.18.6.194 1.081.092.344-.074.362.222.03.513-.213.188-.344.188-.882.002-.589-.205-.844-.196-1.574.049-.32.107-.599.195-.618.195-.018 0-.107-.073-.197-.163-.258-.258-.29-.571-.06-.57.061.001.207.046.324.099.34.154.487.13.862-.148.215-.159.38-.244.47-.244zm10.165.011l.31.123.31.123-.296.63c-.162.346-.308.628-.324.627a25.348 25.348 0 0 1-.957-.512 44.44 44.44 0 0 0-.97-.525c-.05-.018.115-.379.173-.379.022 0 .345.153.718.34l.677.339.18-.383zm-2.069.578c.061 0 .403.151.403.182 0 .013-.048.108-.106.212-.059.104-.097.198-.086.207.012.01.35.213.754.45l.748.442c.02.012-.255.457-.284.456a17.98 17.98 0 0 1-.757-.487l-.733-.485-.14.172-.178-.132a31.399 31.399 0 0 0-.192-.142c-.012-.008.642-.979.703-1.044.002-.002.004-.002.008-.003zm-17.49.145l.123.182a.84.84 0 0 1 .124.232c0 .028-.077.102-.171.166-.094.064-.171.145-.171.18 0 .08.236.364.303.364.043 0 .716-.448 1.129-.752l.136-.1.118.145a.69.69 0 0 1 .12.183c.005.095-1.024.924-1.337 1.077-.278.137-.378.152-.543.085-.154-.062-.377-.314-.532-.6-.114-.211-.136-.297-.109-.439.04-.212.26-.443.579-.605zm13.368.049c.12 0 .31.282.366.538.073.343.066.62-.023.922-.12.405-.318.578-1.171 1.025-.418.22-.768.399-.776.399-.008 0-.03-.204-.047-.453a3.307 3.307 0 0 0-.113-.679c-.118-.33-.045-.476.342-.68.363-.192.587-.358 1.023-.765.182-.169.362-.307.4-.307zm-7.782.02a.5.5 0 0 1 .093.011c.257.05.41.144.765.474.18.168.42.377.533.464.33.254.364.486.213 1.426-.08.5-.114.608-.198.623-.04.007-.293-.111-.561-.263-.743-.418-1.009-.609-1.172-.84-.132-.19-.15-.259-.166-.635-.023-.56.054-.892.26-1.11.105-.112.154-.15.233-.15zm-3.417 1.051l.164.158c.09.087.163.177.163.2 0 .022-.129.232-.286.467-.442.66-.897 1.385-.88 1.403.01.008.347-.3.75-.687.403-.386.745-.703.76-.704.055-.004.593.479.708.636.213.288.146.505-.28.908-.146.138-.312.265-.37.283-.14.045-.393-.078-.6-.291-.09-.093-.187-.17-.215-.17-.029-.001-.163.122-.299.273l-.247.276-.35-.403-.35-.402.145-.21c.08-.116.144-.229.143-.251 0-.022-.075-.126-.166-.232l-.164-.191-.237.104-.238.105-.181-.206c-.1-.114-.183-.22-.184-.236 0-.016.497-.209 1.107-.43zm14.597.004c.12 0 .276.072.407.186.082.071.08.083-.045.213-.098.102-.16.13-.248.107-.087-.022-.155.006-.261.108-.16.154-.18.24-.066.285a.57.57 0 0 0 .092.03c.009 0 .122-.089.253-.197.306-.253.51-.312.745-.214.478.198.778.562.717.87-.038.19-.256.483-.5.667-.203.154-.452.186-.631.082a2.925 2.925 0 0 1-.293-.219l-.19-.158.181-.182.18-.18.117.109.117.11.178-.198c.21-.232.223-.325.057-.401-.11-.05-.144-.034-.362.17-.356.333-.578.358-.883.101-.186-.156-.296-.358-.296-.544 0-.273.463-.745.73-.745zm-8.819.5a.276.276 0 0 1 .116.035c.227.121 1.031 1.36 1.031 1.588 0 .173-.483.233-.842.105-.461-.165-.621-.42-.623-.995-.001-.47.123-.743.318-.733zm-6.117.097a1.509 1.509 0 0 0-.238.087c-.228.098-.232.103-.147.197.087.095.09.093.246-.087.088-.1.154-.189.147-.196-.001-.001-.004-.002-.008-.001zm9.092.138c.195-.003.3.168.296.505-.004.532-.283.902-.777 1.03-.366.096-.404.095-.613-.01-.117-.058-.176-.123-.186-.208-.026-.223.496-.898.903-1.168.149-.098.275-.148.377-.15zm4.847.167c.042.003.099.05.187.153l.163.188-.298.238c-.4.318-.387.3-.281.395.09.08.106.073.412-.186l.318-.27.176.215.176.214-.318.253c-.175.139-.317.28-.317.314 0 .034.038.096.085.139.08.07.113.054.446-.213.198-.159.378-.289.4-.289.044 0 .439.439.435.483-.003.026-.759.646-1.097.9l-.116.086-.216-.307c-.671-.95-1.061-1.523-1.061-1.556 0-.03.53-.484.868-.745a.054.054 0 0 1 .038-.012zm-12.973.564c-.02 0-.098.063-.172.14l-.134.14.209.174.208.174.137-.097c.075-.054.136-.127.136-.162 0-.067-.315-.369-.384-.369zm1.31.422c.095-.006.443.193.443.26 0 .019-.13.483-.289 1.033-.159.549-.283 1.005-.275 1.013.007.007.228-.36.49-.817.632-1.105.537-1.007.848-.878.247.103.259.116.234.259-.041.238-.095 1.055-.07 1.055.013 0 .119-.226.235-.501.117-.276.216-.508.222-.516a.833.833 0 0 1 .214.068c.154.062.197.101.173.16-.017.044-.197.53-.4 1.082-.202.551-.381 1.016-.398 1.033-.017.017-.173-.034-.347-.113a6.272 6.272 0 0 1-.325-.153c-.004-.005.041-.35.101-.767.06-.417.103-.766.095-.775-.007-.01-.16.276-.34.635-.18.36-.334.661-.342.67-.017.019-.83-.41-.935-.491-.043-.034-.035-.11.033-.308l.09-.263-.24-.154-.24-.154-.202.174c-.222.19-.242.188-.522-.052l-.16-.137.913-.66c.503-.363.943-.677.978-.698a.034.034 0 0 1 .016-.004zm10.445.019c.24 0 .605.403.605.669 0 .107.023.161.07.161.087 0 .306.218.59.587l.22.285-.241.148-.24.148-.248-.34c-.136-.186-.279-.339-.317-.339a.904.904 0 0 0-.267.113l-.198.112.217.382c.12.21.205.401.19.425-.027.045-.382.239-.436.239-.016 0-.249-.456-.517-1.013l-.49-1.012.112-.084c.196-.148.854-.482.95-.481zm-.015.54a.445.445 0 0 0-.202.069c-.27.146-.271.149-.18.289.046.07.093.128.104.128.011 0 .107-.055.214-.123.2-.126.216-.155.165-.289-.018-.048-.051-.072-.101-.073zm-1.097.004l.364 1.092.364 1.091-.268.103a1.863 1.863 0 0 1-.326.102c-.032 0-.177-.241-.323-.536-.145-.295-.27-.53-.278-.522-.007.007.063.262.156.566.094.305.17.567.17.584 0 .03-.53.25-.6.25-.018 0-.064-.06-.102-.135a86.212 86.212 0 0 1-.91-1.939c0-.024.292-.125.363-.125.03 0 .153.197.271.438.118.242.221.433.228.426a3.49 3.49 0 0 0-.107-.45 5.664 5.664 0 0 1-.12-.488c0-.046.482-.246.51-.21.007.008.118.209.245.445.128.237.241.423.251.413.01-.01-.057-.227-.148-.483l-.166-.464.213-.08zm-9.537.126c-.03-.001-.102.053-.228.161-.114.097-.115.102-.025.17.132.1.173.072.242-.16.033-.112.042-.17.011-.17zm2.986.507c.131-.004.966.2 1.065.264a.395.395 0 0 1 .145.2c.055.221-.01.784-.111.957-.132.226-.287.269-.681.19-.374-.074-.384-.067-.435.287-.07.487-.049.467-.406.382-.203-.05-.209-.056-.177-.202.043-.2.564-2.053.583-2.074.002-.002.008-.004.017-.004zm3.713.24c.221 0 .282.02.399.138.183.183.342.703.377 1.234.034.5-.043.718-.297.84-.23.109-.656.145-.857.072a.646.646 0 0 1-.257-.182c-.13-.176-.234-.735-.235-1.255-.001-.41.01-.461.124-.598.145-.171.376-.248.746-.249zm-1.783.049c.549 0 .612.009.695.101.132.145.162.73.048.905-.078.119-.078.132.001.22.048.052.091.193.1.325l.035.492.02.259-.25-.015-.25-.014-.037-.367a3.547 3.547 0 0 0-.06-.428c-.014-.037-.117-.06-.268-.06h-.246v.88h-.27c-.223 0-.268-.015-.267-.086 0-.047.033-.537.072-1.088.04-.551.073-1.03.073-1.063 0-.046.154-.061.604-.061zm-1.599.28c-.03 0-.048.002-.052.008-.01.017-.034.11-.052.21l-.034.178.212.048c.117.026.229.05.248.053.019.002.057-.038.085-.09a.537.537 0 0 0 .051-.213c0-.104-.031-.125-.246-.168a1.295 1.295 0 0 0-.212-.026zm3.305.16c-.104 0-.23.03-.281.067-.087.064-.09.1-.041.546.066.612.151.697.538.535l.177-.074-.027-.357a2.224 2.224 0 0 0-.102-.537c-.069-.164-.093-.18-.264-.18zm-1.702.049c-.163 0-.167.005-.167.195s.004.196.167.196a.897.897 0 0 0 .244-.03c.045-.017.077-.087.077-.166 0-.152-.07-.195-.321-.195zm3.079.06h.007c.028.03.168.396.157.407-.008.007-.14.045-.295.086l-.28.073-.028-.13a24.533 24.533 0 0 1-.044-.215c-.013-.065.042-.102.231-.159.12-.035.224-.06.252-.062Z": "New Japan Pro-Wrestling", "M13.214 23.975c-.098-.053-.329-.062-1.615-.062h-1.26l-.017-.088-.096-.431a3.622 3.622 0 0 1-.07-.354c.005-.007-.012-.056-.038-.107l-.048-.094-.547.085c-.301.046-.598.1-.659.116-.1.03-.11.03-.103.004.038-.14.044-.201.028-.266-.018-.07-.017-.072.238-.645.276-.622.266-.594.237-.634-.018-.025-.042-.02-.307.07-.159.05-.294.093-.301.09a16.82 16.82 0 0 1 .414-.732c.451-.773.566-.976.566-1.003 0-.01-.12-.146-.271-.304-.15-.157-.311-.329-.357-.384a.584.584 0 0 0-.112-.11c-.05-.017-.264-.231-.738-.734a16.196 16.196 0 0 0-.525-.542c-.062-.05-.077-.074-.107-.175a6.511 6.511 0 0 0-.291-.714l-.096-.201v-.178c0-.271-.056-.542-.277-1.331l-.054-.191-.087-.01c-.193-.017-.283-.123-.431-.504a6.231 6.231 0 0 0-.231-.472c-.1-.191-.221-.428-.271-.532l-.086-.185-.08-.01a.72.72 0 0 0-.361.05c-.12.05-.345.063-.618.037l-.399-.038-.199-.02-.107-.191c-.161-.284-.161-.285-.238-.324-.09-.046-.161-.046-.572 0l-.325.035-.245-.035c-.645-.094-.797-.166-.797-.375 0-.042-.045-.261-.102-.489-.13-.528-.218-1.126-.195-1.332.034-.294.273-.996.636-1.87l.142-.341.023-.547c.142-3.274.178-3.76.284-3.951.035-.062.468-.431.644-.552.335-.224 1.503-.8 2.802-1.379l.384-.171.195-.012.193-.01.522.329.521.329.423-.2.658-.308c.235-.108.236-.11.367-.253.184-.201.492-.566.592-.703.118-.161.395-.388.816-.672.147-.098.185-.116.569-.264l.231-.09h.49c.451 0 .502.003.655.037.358.078.652.193.686.267.022.05.07.08.187.12.14.048.311.168 1.224.863.489.373.472.366 1.539.719l.298.1.176.211c.201.241.358.404.404.419.07.022.485-.08 1.009-.249.266-.085.303-.093.351-.077.03.01.175.02.321.02.271.005.514.034 1.117.137.153.027.281.048.283.048.002 0 .244.419.537.933.293.512.61 1.048.705 1.192.167.249.174.264.189.375.026.191.08 1.008.09 1.309l.023.896c.02.843.036 1.04.09 1.154.093.199.276.747.572 1.719l.12.401.004.465.004.465-.14.728-.158.813-.016.083-.439.264-.441.265-.321-.016c-.179-.01-.335-.016-.349-.016-.03 0-.066.113-.135.411-.04.176-.042.178-.092.187l-.666.106c-.92.145-1.037.181-1.341.424-.264.211-.264.208-.556 1.681a16.97 16.97 0 0 1-.185.856c-.105.317-.941 1.708-1.246 2.074l-.165.199.064.228c.035.126.073.265.083.309.016.07.314 1.206.421 1.609l.038.14-.201-.084-.328-.136a.549.549 0 0 0-.13-.046c-.003.004.033.15.08.327.08.288.187.763.177.773-.003 0-.15-.008-.331-.022a6.185 6.185 0 0 0-.381-.02l-.055.005-.181.662c-.1.363-.184.664-.187.667-.01.007-.536-.02-1.005-.05-.54-.035-.7-.032-.836.017-.125.045-.241.05-.306.014l.002-.001zm1.957-.348c0-.026.023-.181.05-.345.027-.165.05-.337.05-.383 0-.056.013-.116.04-.175.02-.05.036-.09.033-.093-.002-.002-.368-.03-.813-.062-.637-.046-.86-.067-1.053-.103l-.244-.046-.58.072c-.414.05-.588.078-.607.095-.02.02-.201.042-.712.094-.376.038-.717.075-.756.083l-.072.013.004.083c.003.065.02.115.083.231.06.113.088.191.12.331.02.1.042.184.046.188.003.003.973.014 2.157.023 2.034.016 2.154.018 2.191.045.046.035.064.02.064-.05l-.001-.001zm-4.782-1.179c.873-.123 1.226-.168 1.572-.194.387-.028.897-.087 1.259-.143.057-.01.248-.02.424-.026l.321-.01.377.097.379.098.682.04c.377.023.687.04.69.036a2.93 2.93 0 0 0-.07-.229c-.042-.122-.11-.333-.155-.468l-.077-.244-.231-.072-.231-.073-.156.066-.156.065-1.776.057-1.774.058-.118-.06-.118-.057H9.8l-.269.597c-.148.328-.271.602-.276.609-.008.016-.124.03 1.134-.147zm6.127-1.036c0-.017-.431-1.435-.444-1.457-.007-.012-.05.024-.115.096l-.105.115.154.568.153.568.169.06c.181.064.191.067.191.05zm-6.788-.713l.191-.355-.057-.083c-.032-.046-.063-.08-.068-.073-.007.006-.142.238-.303.515s-.297.511-.302.517c-.004.01.072-.026.171-.075l.176-.09.192-.356zm2.957-.072c.106-.306.193-.562.193-.57a.856.856 0 0 0-.198-.075 3.495 3.495 0 0 1-.201-.066.578.578 0 0 1 .063-.11l.068-.104.405-.02c.706-.033 1.114-.155 1.51-.451.15-.11.214-.128.296-.085.07.04.12.128.106.191-.01.042-.028.056-.241.197-.201.13-.876.428-1.114.492-.136.035-.289.12-.323.181-.04.066-.159.92-.132.947.006.006 1.148-.04 1.33-.056.11-.008.117-.01.161-.067.024-.032.13-.153.238-.267.106-.113.301-.333.431-.488.13-.154.328-.381.437-.502.171-.189.263-.318.619-.857.878-1.324.937-1.441 1.003-1.969.045-.375.067-.447.214-.697.146-.249.294-.965.213-1.033-.072-.06-.153-.032-.427.15-.512.341-1.039.841-1.114 1.053-.034.095-.223.373-.285.418l-.519.369c-.582.414-.52.349-.849.879l-.11.174-.327.173-.328.171-.616.015c-1.23.028-1.288.022-1.943-.207l-.431-.153-.344-.303c-.191-.168-.53-.47-.754-.672l-.407-.368-.142-.321a28.99 28.99 0 0 1-.497-1.15c-.084-.226-.09-.231-.275-.428-.341-.361-.529-.757-.757-1.612-.045-.165-.078-.259-.1-.281-.018-.016-.028-.022-.023-.012.006.01 0 .046-.012.082-.157.441-.209.768-.249 1.559-.02.359-.02.351.096.983.225 1.226.296 1.5.409 1.565.04.024.165.146.291.286.341.376.448.485.604.61.285.231.735.71.901.961.04.06.102.14.135.177.15.163.462.6.899 1.259l.314.475.13-.007c.09-.006.329.012.74.054.336.035.635.064.665.065h.056l.191-.555zm-2.276.455a1.103 1.103 0 0 0-.122-.201c-.075-.107-.14-.195-.15-.191-.01.003-.138.268-.181.374-.01.031.341.044.453.018zm2.766-2.758c.046-.033.127-.055.376-.105.311-.06.375-.083.628-.211a.309.309 0 0 0 .092-.11.74.74 0 0 1 .11-.138c.04-.036.055-.062.055-.098 0-.078.227-.275 1.091-.946a.9.9 0 0 0 .245-.268c.074-.11.158-.211.263-.309.085-.08.291-.284.459-.451.168-.171.391-.376.497-.462a3.44 3.44 0 0 0 .241-.204c.03-.032.157-.106.335-.196.159-.08.295-.156.301-.168.018-.03.09-.06.508-.217.889-.331 1.479-.492 1.79-.492.08 0 .096-.052.067-.219-.068-.395-.296-.552-.808-.552h-.181l-.063-.067c-.06-.065-.067-.087-.124-.325-.115-.485-.185-.532-.742-.516-.435.013-.552.06-1.754.718-.602.331-1.035.702-1.543 1.33a.964.964 0 0 1-.11.123c-.311-.002-.303-.472.017-.949l.106-.157-.084-.035c-.236-.107-.532-.123-.74-.04-.291.116-1.023.525-1.117.622-.098.103-.187.106-.187.007 0-.122.114-.285.289-.411.04-.032.11-.088.153-.127a1.63 1.63 0 0 1 .435-.261c.147-.06.142-.052.09-.15-.14-.255-.525-.546-.915-.689-.05-.02-.169-.07-.263-.112-.221-.102-.331-.124-.672-.136-.244-.01-.283-.014-.267-.033.074-.09.311-.133.79-.144l.384-.01.248.11c.697.301.963.462 1.074.645.076.128.084.133.194.112.266-.05.518.032.765.249.135.12.184.13.274.063a.773.773 0 0 0 .273-.502c.035-.271-.06-1.136-.153-1.385-.07-.188-.057-.196.087-.046.171.178.171.178.326-.11.04-.076.103-.176.138-.221.291-.367.281-1.047-.017-1.347-.15-.15-.404-.291-.815-.446-.403-.155-.47-.211-.77-.628-.361-.506-.425-.567-.724-.708-.617-.293-2.101-.562-2.57-.467-.441.09-1.04.447-1.32.789-.175.213-.63.377-1.274.462-.84.108-1.254.828-1.041 1.806.04.191.038.189.165.034.405-.505 1.209-.976 1.93-1.13.575-.12 1.475-.126 2.01-.01l.096.022h-.144c-.75.01-1.904.257-2.722.584l-.176.07-.016.087c-.015.083-.022.093-.281.351-.536.539-.69.796-.775 1.286-.04.239.036.589.15.678.027.022.047.05.042.06a2.825 2.825 0 0 0-.026.225c-.076.845.323 1.866.96 2.453l.144.133.108-.09c.317-.259.859-.614.888-.582.043.05.034.09-.033.155-.085.082-.196.226-.496.642l-.259.361.007.104c.01.13.076.337.147.451.03.046.09.15.136.229.167.284.321.52.424.642.096.117.184.241.284.401.028.046.05.064.07.06.04-.01.09.026.279.204.186.171.083.122.845.408.823.309 1.131.369 1.465.286.09-.022.097-.022.168.015.09.047.09.047.163-.002v.005zm-6.348-3.82c.003-.003.02-.103.037-.225.017-.12.053-.286.08-.367l.193-.644c.177-.602.159-.55.178-.52.025.042.015-.01-.016-.074a1.69 1.69 0 0 1-.066-.171l-.034-.108.034-.588.034-.589-.055-.397a6.234 6.234 0 0 0-.064-.406c-.032-.032-.464.145-.599.245-.175.13-.401.679-.492 1.194-.12.694-.008 1.647.226 1.916.07.08.226.378.357.68l.034.077.075-.01a.347.347 0 0 0 .078-.013zm14.775-1.31c.126-.088.238-.177.246-.196.015-.037.213-1.099.281-1.507l.042-.257-.042-.447-.042-.446-.125-.48c-.124-.475-.128-.484-.264-.755-.216-.431-.194-.236-.379-3.358l-.035-.578-.053-.055c-.07-.075-.337-.458-.963-1.388a14.255 14.255 0 0 0-.546-.781 16.04 16.04 0 0 0-.821-.146c-.395-.055-.736-.025-1.055.094-.128.048-.14.05-.201.03-.138-.047-.293-.003-.569.164l-.145.087-.166-.221c-.191-.251-.194-.255-.57-.502-.64-.416-.716-.449-1.632-.692-.353-.094-.311-.062-.993-.742l-.535-.532-.585.008c-.989.015-1.482.06-1.6.142-.712.508-1.094.888-1.538 1.531l-.103.15-.386.184c-.422.203-1.034.392-1.201.369-.092-.012-.421-.18-.658-.341-.438-.291-.739-.326-1.088-.124-.284.163-.483.269-1.286.675-.861.437-.965.496-1.246.705l-.164.123-.143.288c-.311.626-.305.602-.321 1.415-.03 1.52-.035 2.008-.016 2.122.03.179.036.374.016.505-.028.171-.387 1.387-.585 1.977-.066.199-.135.52-.159.736-.01.07 0 .175.036.391.026.164.07.451.097.64.066.464.12.562.358.64.209.07.309.063.732-.045.793-.203.813-.197 1.134.378.078.137.112.184.143.193.105.03.725.01.866-.027l.194-.05.056-.015-.02-.096a2.414 2.414 0 0 1-.023-.624c.024-.268.064-.506.153-.889.004-.017-.006-.004-.022.03l-.03.06-.035-.157a1.876 1.876 0 0 0-.291-.672 6.435 6.435 0 0 1-.421-.87l-.093-.231.01-.161c.05-.718.224-1.186.597-1.595.227-.248.293-.351.325-.522.025-.13.106-.807.171-1.395l.057-.547.241-.715c.13-.394.231-.722.225-.728a9.003 9.003 0 0 0-.693-.321c-.124-.035-.412-.023-.632.027-.705.161-1.224.532-1.25.893-.007.08-.362.827-.395.828-.02 0-.074-.098-.093-.169-.02-.074-.012-.115.073-.351.032-.088.097-.307.145-.487.12-.443.14-.477.405-.599l.467-.221c.675-.325 1.657-.578 1.899-.49.143.05.359.226.552.446l.092.104-.09.246c-.458 1.266-.575 1.617-.606 1.823-.071.458-.066 1.465.008 1.695.058.188.054.195-.223.377-.477.316-.953.919-.973 1.233-.013.211.09.634.221.888.052.105.589.913.606.913.006 0 .03-.04.057-.09a1.9 1.9 0 0 1 .704-.773c.316-.204.317-.204.341-.313.161-.725.425-1.144.88-1.385l.197-.105-.095-.035c-.145-.053-.271-.143-.428-.308-.697-.733-.966-1.566-.688-2.127.02-.04.052-.122.072-.184.245-.755.931-1.164 1.842-1.101.896.063 1.294.296 1.618.94.311.624.294 1.191-.055 1.751l-.066.106.06-.058c.068-.063.766-.374.946-.421.268-.07.659-.03 1.894.193.499.09.584.125.823.341.05.048.09.076.09.064s-.01-.104-.025-.206c-.083-.617.034-1.401.269-1.786.284-.466 1.375-.883 1.974-.754.301.065.769.355 1.021.635.032.036.06.056.06.045 0-.01-.02-.325-.04-.699a11.12 11.12 0 0 1-.03-.689c.008-.006.144-.084.306-.174l.293-.161.052.04c.044.032.169.063.78.191l.763.164c.027.006.085.09.216.307.097.164.271.448.388.632.425.68.502.856.411.941-.093.087-.108.086-.169-.007-.03-.045-.201-.314-.379-.595a16.068 16.068 0 0 0-.351-.539c-.02-.02-.998-.346-1.487-.497-.239-.073-.492 1.151-.434 2.099.02.319.02.321.291.57.169.156.858 1.126.993 1.397l.067.136-.006.826-.005.825-.105.177c-.441.742-.694 1.021-.985 1.096-.161.04-.339.175-.324.241.005.022.013.154.02.291.006.167.016.253.027.253.01 0 .073-.01.14-.023.455-.087.958-.057 1.261.073.11.047.116.064.128.344.017.375.042.407.353.457.348.055.468.114.695.344l.128.13.462.002.462.002.245-.168zM9.954 3.808a13.19 13.19 0 0 0-.833-.494c-.338-.171-.351-.201-.117-.309.341-.157.474-.11.908.315.168.165.369.349.448.411.156.118.328.275.328.297 0 .027-.115.14-.14.14a8.7 8.7 0 0 1-.594-.36zm3.987.19a.518.518 0 0 1-.235-.191l-.042-.07.03-.068c.04-.095.076-.13.231-.231.074-.05.159-.11.188-.134.159-.14 1.179-.558 1.358-.558.1 0 .13.02.176.125a.63.63 0 0 0 .065.12c.05.056-.06.115-.341.179-.15.034-.502.176-.818.328l-.258.125-.148.201c-.08.11-.15.201-.15.201L13.94 4l.001-.002zm2.25 8.609c.117-.103.612-.334.898-.418.104-.03.171-.307.171-.72v-.234l-.092-.191c-.097-.201-.203-.378-.221-.371-.006.002-.203.251-.437.556l-.427.552.01.249.01.444c0 .225-.006.218.09.134l-.002-.001zm1.639-1.799l.344-.132.112-.169c.391-.592.512-.901.529-1.379l.01-.308-.228-.361c-.386-.607-.636-1.018-.722-1.187a.36.36 0 0 0-.062-.1c-.062-.04-.245.12-.458.401-.15.201-.226.254-.674.478-.592.295-.876.341-1.292.213a7.003 7.003 0 0 0-.552-.156c-.042 0 .133.206.294.347.126.11.221.161.346.181.191.03.547.231 1.094.612.303.214.261.133.291.55l.027.351.08.078c.1.098.214.251.381.51.07.112.13.205.132.205l.348-.134zm-1.719-3.119c.446-.164.704-.665.527-1.023-.194-.391-.634-.702-.998-.702-.425 0-.979.482-.979.853 0 .008.058-.038.127-.104.329-.311.692-.346 1.05-.105.385.258.469.77.173 1.064-.078.08-.067.08.1.02v-.003zm-7.704-.16a.963.963 0 0 1-.026-.396c.145-.778 1.09-1.005 1.51-.364l.064.1-.009-.129c-.069-.971-1.094-1.234-1.726-.443-.356.447-.299 1.13.105 1.274.103.036.107.034.08-.042h.002zm8.86-.527c.261-.439.226-1.053-.088-1.53-.421-.642-1.084-.841-1.806-.542-.559.231-.776.517-.825 1.081-.022.251-.012.281.058.176.238-.354.644-.547 1.094-.522.712.038 1.24.539 1.385 1.316l.034.183.008.04.04-.05a1.56 1.56 0 0 0 .1-.154v.002zm-1.431.09a.125.125 0 0 0 .04-.096.127.127 0 0 0-.04-.095.128.128 0 0 0-.096-.04c-.04 0-.07.013-.097.04a.13.13 0 0 0-.038.096c0 .123.146.185.233.098l-.002-.003zm-8.218-.209c.138-.773.732-1.289 1.48-1.289.485 0 .838.274 1.043.809.054.14.06.143.087.035.07-.274-.01-.848-.163-1.149-.26-.518-1.032-.779-1.751-.591-.415.106-.9.64-.997 1.097-.1.468-.038.849.191 1.167.077.108.077.108.11-.08v.001zm1.928 0a.128.128 0 0 0 .04-.096c0-.04-.013-.07-.04-.097-.027-.028-.056-.041-.096-.041s-.07.013-.096.04a.128.128 0 0 0-.04.097.136.136 0 0 0 .232.097z": "Packagist", "M10.076 7.644c-.408.165-.48.196-.488.213-.014.034-.01.77.006 1.116l.015.295-.223.22-.223.219-.192-.005a26.198 26.198 0 0 0-1.125.003c-.127.012-.122.01-.15.075-.12.286-.37.91-.37.922 0 .008.016.035.034.06.043.059.459.472.69.688l.24.224.057.052.002.313.003.313-.383.384c-.38.379-.519.525-.575.606l-.028.042.21.495c.2.47.213.496.235.502.07.02.287.024.84.02l.578-.005.224.226.226.226v.328c0 .503.018.96.041 1.069l.008.037.495.21c.272.114.499.208.504.208.041 0 .556-.508.926-.914l.07-.079.321.005.32.005.392.39c.43.425.63.61.664.61.004 0 .228-.089.496-.196.413-.165.489-.198.495-.214.022-.053.019-.582-.006-1.118l-.014-.292.223-.221.223-.222.268.007c.33.009 1.03.003 1.108-.009a.195.195 0 0 0 .065-.019c.014-.014.396-.955.396-.974a.273.273 0 0 0-.048-.074c-.06-.074-.452-.462-.693-.686l-.231-.215-.047-.045-.004-.314-.004-.314.364-.362c.368-.366.522-.53.588-.621l.036-.05-.211-.493a7.793 7.793 0 0 0-.223-.5.6.6 0 0 0-.104-.017 19.066 19.066 0 0 0-1.136-.003l-.18.006-.23-.225-.23-.226v-.329c0-.526-.019-.978-.043-1.075l-.01-.037-.487-.207a13.455 13.455 0 0 0-.505-.207c-.022 0-.12.082-.244.204-.184.182-.411.415-.586.602l-.175.186-.315-.005-.315-.005-.33-.329c-.487-.483-.692-.67-.738-.668-.01 0-.234.088-.497.194zm2.063 2.938c.69.09 1.237.639 1.318 1.319.015.126.005.364-.02.483a1.541 1.541 0 0 1-1.301 1.204c-.087.013-.32.013-.408 0a1.537 1.537 0 0 1-1.219-.941 1.516 1.516 0 0 1 .893-1.984 1.68 1.68 0 0 1 .32-.08c.102-.015.305-.015.417 0zm-.551-7.91a9.29 9.29 0 0 0-3.033.652 9.226 9.226 0 0 0-2.93 1.873c-.129.122-4.872 4.884-4.941 4.96a2.813 2.813 0 0 0-.674 1.549c-.013.11-.013.474 0 .585a2.79 2.79 0 0 0 .602 1.46c.09.113.14.163 3.153 3.188 1.538 1.544 1.764 1.768 2.044 2.021a9.261 9.261 0 0 0 6.871 2.349 9.225 9.225 0 0 0 5.67-2.489c.175-.162 4.881-4.886 4.973-4.991.361-.412.59-.93.663-1.502.019-.157.019-.5-.001-.657a2.79 2.79 0 0 0-.662-1.502 779.59 779.59 0 0 0-4.953-4.967 9.228 9.228 0 0 0-4.145-2.266 9.499 9.499 0 0 0-1.68-.256 15.207 15.207 0 0 0-.957-.008zm.82 1.928c.754.04 1.507.2 2.253.484.272.103.716.316.995.476a7.445 7.445 0 0 1 3.235 3.774 7.45 7.45 0 0 1 .26 4.513 7.395 7.395 0 0 1-6.443 5.53c-.34.032-.838.042-1.144.02-1.744-.116-3.3-.781-4.57-1.953a7.412 7.412 0 0 1-2.32-6.37 7.38 7.38 0 0 1 1.56-3.704 7.374 7.374 0 0 1 3.532-2.436A7.373 7.373 0 0 1 12.41 4.6z": "Phabricator", "M13.7 19.55l5.88-5.89 3.35 3.36a3.57 3.57 0 0 1 0 5.05l-.83.83a3.57 3.57 0 0 1-5.05 0zM22.92 1.9l-.83-.83a3.57 3.57 0 0 0-5.05 0L12 6.12 6.95 1.07a3.57 3.57 0 0 0-5.05 0l-.83.83a3.57 3.57 0 0 0 0 5.05L6.12 12l-5.05 5.05a3.57 3.57 0 0 0 0 5.05l.83.83a3.57 3.57 0 0 0 5.05 0L12 17.88l3.68-3.68 2.2-2.2 5.05-5.05a3.57 3.57 0 0 0 0-5.05z": "X-Pack" diff --git a/.svglintrc.js b/.svglintrc.js index dd2d0cb0..ce8d45e5 100644 --- a/.svglintrc.js +++ b/.svglintrc.js @@ -15,7 +15,7 @@ const iconMaxFloatPrecision = 5; const iconTolerance = 0.001; // set env SI_UPDATE_IGNORE to recreate the ignore file -const updateIgnoreFile = process.env.SI_UPDATE_IGNORE === 'true' +const updateIgnoreFile = process.env.SI_UPDATE_IGNORE === 'true'; const ignoreFile = "./.svglint-ignored.json"; const iconIgnored = !updateIgnoreFile ? require(ignoreFile) : {}; @@ -224,14 +224,14 @@ module.exports = { } } if (index > 0) { - let [yPrevCoord, xPrevCoord, ...prevRest] = [...absSegments[index - 1]].reverse(); + let [yPrevCoord, xPrevCoord] = [...absSegments[index - 1]].reverse(); // If the previous command was a direction one, we need to iterate back until we find the missing coordinates if (upperDirectionCommands.includes(xPrevCoord)) { xPrevCoord = undefined; yPrevCoord = undefined; let idx = index; while (--idx > 0 && (xPrevCoord === undefined || yPrevCoord === undefined)) { - let [yPrevCoordDeep, xPrevCoordDeep, ...rest] = [...absSegments[idx]].reverse(); + let [yPrevCoordDeep, xPrevCoordDeep] = [...absSegments[idx]].reverse(); // If the previous command was a horizontal movement, we need to consider the single coordinate as x if (upperHorDirectionCommand === xPrevCoordDeep) { xPrevCoordDeep = yPrevCoordDeep; @@ -315,7 +315,7 @@ module.exports = { if (!updateIgnoreFile && isIgnored(reporter.name, iconPath)) { return; } - + /** * Extracts collinear coordinates from SVG path straight lines * (does not extracts collinear coordinates from curves). @@ -327,14 +327,16 @@ module.exports = { zCommands = 'Zz'; let currLine = [], currAbsCoord = [undefined, undefined], + startPoint, _inStraightLine = false, - _nextInStraightLine = false; + _nextInStraightLine = false, + _resetStartPoint = false; for (let s = 0; s < segments.length; s++) { let seg = segments[s], cmd = seg[0], nextCmd = s + 1 < segments.length ? segments[s + 1][0] : null; - + if ('LM'.includes(cmd)) { currAbsCoord[0] = seg[1]; currAbsCoord[1] = seg[2]; @@ -363,9 +365,17 @@ module.exports = { currAbsCoord[1] = (!currAbsCoord[1] ? 0 : currAbsCoord[1]) + seg[4]; } else if (zCommands.includes(cmd)) { // Overlapping in Z should be handled in another rule - currAbsCoord = [undefined, undefined]; + currAbsCoord = [startPoint[0], startPoint[1]]; + _resetStartPoint = true; } else { - throw new Error(`"${cmd}" command not handled`) + throw new Error(`"${cmd}" command not handled`); + } + + if (startPoint === undefined) { + startPoint = [currAbsCoord[0], currAbsCoord[1]]; + } else if (_resetStartPoint) { + startPoint = undefined; + _resetStartPoint = false; } _nextInStraightLine = straightLineCommands.includes(nextCmd); @@ -386,7 +396,7 @@ module.exports = { currLine[p][0], currLine[p][1], currLine[p + 1][0], - currLine[p + 1][1]) + currLine[p + 1][1]); if (_collinearCoord) { collinearSegments.push(segments[s - currLine.length + p + 1]); } @@ -395,7 +405,7 @@ module.exports = { currLine = []; } } - + return collinearSegments; } diff --git a/Gemfile.lock b/Gemfile.lock index 30d36dc8..8a1b1f6c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -65,4 +65,4 @@ DEPENDENCIES jekyll (= 4.2) BUNDLED WITH - 2.2.0 + 2.2.0 diff --git a/LICENSE.md b/LICENSE.md index 7f23e0dc..da5b8879 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -9,13 +9,13 @@ Certain owners wish to permanently relinquish those rights to a Work for the pur For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the “Affirmer”), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights (“Copyright and Related Rights”). Copyright and Related Rights include, but are not limited to, the following: - 1. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; - 2. moral rights retained by the original author(s) and/or performer(s); - 3. publicity and privacy rights pertaining to a person’s image or likeness depicted in a Work; - 4. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(i), below; - 5. rights protecting the extraction, dissemination, use and reuse of data in a Work; - 6. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and - 7. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. + 1. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; + 2. moral rights retained by the original author(s) and/or performer(s); + 3. publicity and privacy rights pertaining to a person’s image or likeness depicted in a Work; + 4. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(i), below; + 5. rights protecting the extraction, dissemination, use and reuse of data in a Work; + 6. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and + 7. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the “Waiver”). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer’s heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer’s express Statement of Purpose. diff --git a/README.md b/README.md index cff58a44..2d4ff0a2 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,12 @@ Over 1500 Free SVG icons for popular brands. See them all on one page at SimpleIcons.org. Contributions, corrections & requests can be made on GitHub. Started by Dan Leech.
+ + ## Usage ### General Usage @@ -138,9 +144,3 @@ Icons are also available as a [Vue package](https://github.com/mainvest/vue-simp ### WordPress Icons are also available as a [WordPress plugin](https://wordpress.org/plugins/simple-icons/) created by [@tjtaylo](https://github.com/tjtaylo). - -## Status - -[![Build status](https://img.shields.io/github/workflow/status/simple-icons/simple-icons/Verify/develop?logo=github)](https://github.com/simple-icons/simple-icons/actions?query=workflow%3AVerify+branch%3Adevelop) -[![npm version](https://img.shields.io/npm/v/simple-icons.svg?logo=npm)](https://www.npmjs.com/package/simple-icons) -[![Packagist version](https://img.shields.io/packagist/v/simple-icons/simple-icons)](https://packagist.org/packages/simple-icons/simple-icons) diff --git a/_config.yml b/_config.yml index 911646d7..3007b266 100644 --- a/_config.yml +++ b/_config.yml @@ -1,10 +1,10 @@ exclude: -- tests -- scripts -- composer.json -- CONTRIBUTING.md -- Dockerfile -- index.js -- package-lock.json -- package.json -- README.md + - tests + - scripts + - composer.json + - CONTRIBUTING.md + - Dockerfile + - index.js + - package-lock.json + - package.json + - README.md diff --git a/_data/simple-icons.json b/_data/simple-icons.json index a1f677bc..1490f106 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -80,6 +80,11 @@ "hex": "A9225C", "source": "https://company-39138.frontify.com/d/7EKFm12NQSa8/accusoft-corporation-style-guide#/style-guide/logo" }, + { + "title": "Acer", + "hex": "83B81A", + "source": "https://www.acer.com/ac/en/GB/content/home" + }, { "title": "ACM", "hex": "0085CA", @@ -285,6 +290,11 @@ "hex": "5468FF", "source": "https://www.algolia.com/press/?section=brand-guidelines" }, + { + "title": "AliExpress", + "hex": "FF4747", + "source": "https://doc.irasia.com/listco/hk/alibabagroup/annual/2020/ar2020.pdf" + }, { "title": "Alipay", "hex": "00A1E9", @@ -845,6 +855,11 @@ "hex": "00CEC8", "source": "https://corp.bandsintown.com/media-library" }, + { + "title": "Bank of America", + "hex": "012169", + "source": "https://www.bankofamerica.com/" + }, { "title": "Basecamp", "hex": "1D2D35", @@ -970,6 +985,11 @@ "hex": "CA2133", "source": "https://www.blazemeter.com/" }, + { + "title": "Blazor", + "hex": "512BD4", + "source": "https://dotnet.microsoft.com/apps/aspnet/web-apps/blazor" + }, { "title": "Blender", "hex": "F5792A", @@ -985,6 +1005,11 @@ "hex": "000000", "source": "https://www.bloglovin.com/widgets" }, + { + "title": "Blueprint", + "hex": "137CBD", + "source": "https://blueprintjs.com" + }, { "title": "Bluetooth", "hex": "0082FC", @@ -1307,8 +1332,8 @@ }, { "title": "Citrix", - "hex": "000000", - "source": "https://www.citrix.com/news/media-resources.html" + "hex": "452170", + "source": "https://brand.citrix.com/" }, { "title": "Citroën", @@ -1435,6 +1460,11 @@ "hex": "1F4056", "source": "https://www.codecademy.com/" }, + { + "title": "CodeceptJS", + "hex": "F6E05E", + "source": "https://github.com/codeceptjs/codeceptjs.github.io/blob/c7917445b9a70a9daacf20986c403c3299f5c960/favicon/safari-pinned-tab.svg" + }, { "title": "CodeChef", "hex": "5B4638", @@ -1460,6 +1490,11 @@ "hex": "EF4223", "source": "https://www.codeigniter.com/help/legal" }, + { + "title": "Codemagic", + "hex": "F45E3F", + "source": "https://codemagic.io/" + }, { "title": "CodePen", "hex": "000000", @@ -1660,6 +1695,11 @@ "hex": "1572B6", "source": "http://www.w3.org/html/logo/" }, + { + "title": "Cucumber", + "hex": "23D96C", + "source": "https://cucumber.io" + }, { "title": "curl", "hex": "073551", @@ -1825,6 +1865,11 @@ "hex": "2D72D9", "source": "https://www.designernews.co" }, + { + "title": "Deutsche Bahn", + "hex": "F01414", + "source": "https://www.bahn.de/common/view/static/v8/img/db_em_rgb_100px.svg" + }, { "title": "dev.to", "hex": "0A0A0A", @@ -1835,6 +1880,11 @@ "hex": "05CC47", "source": "http://help.deviantart.com/21" }, + { + "title": "Devpost", + "hex": "003E54", + "source": "https://github.com/challengepost/supportcenter/blob/e40066cde2ed25dc14c0541edb746ff8c6933114/images/devpost-icon-rgb.svg" + }, { "title": "devRant", "hex": "F99A66", @@ -2200,6 +2250,11 @@ "hex": "000000", "source": "https://esphome.io" }, + { + "title": "Espressif", + "hex": "E7352C", + "source": "https://www.espressif.com/" + }, { "title": "Ethereum", "hex": "3C3C3D", @@ -2475,6 +2530,11 @@ "hex": "E12828", "source": "https://about.flipboard.com/brand-guidelines" }, + { + "title": "Flipkart", + "hex": "2874F0", + "source": "https://www.flipkart.com/" + }, { "title": "Floatplane", "hex": "00AEEF", @@ -2500,6 +2560,11 @@ "hex": "E1A925", "source": "http://www.fnac.com/" }, + { + "title": "Folium", + "hex": "77B829", + "source": "https://python-visualization.github.io/folium/" + }, { "title": "Font Awesome", "hex": "339AF0", @@ -2600,11 +2665,21 @@ "hex": "2E75B4", "source": "https://furrynetwork.com" }, + { + "title": "FutureLearn", + "hex": "DE00A5", + "source": "https://www.futurelearn.com/" + }, { "title": "G2A", "hex": "F05F00", "source": "https://www.g2a.co/contact/brand_guidelines/" }, + { + "title": "Game Jolt", + "hex": "CCFF00", + "source": "https://gamejolt.com/about" + }, { "title": "Garmin", "hex": "000000", @@ -2637,8 +2712,8 @@ }, { "title": "General Motors", - "hex": "22559E", - "source": "https://commons.wikimedia.org/wiki/File:General_Motors_logo.svg" + "hex": "0170CE", + "source": "https://www.gm.com" }, { "title": "Genius", @@ -2685,6 +2760,11 @@ "hex": "F05032", "source": "http://git-scm.com/downloads/logos" }, + { + "title": "Git LFS", + "hex": "F64935", + "source": "https://git-lfs.github.com/" + }, { "title": "GitBook", "hex": "3884FF", @@ -2857,8 +2937,8 @@ }, { "title": "Google Chat", - "hex": "00897B", - "source": "https://chat.google.com/error/noaccess" + "hex": "00AC47", + "source": "https://chat.google.com/" }, { "title": "Google Chrome", @@ -2945,6 +3025,11 @@ "hex": "174EA6", "source": "https://partnermarketinghub.withgoogle.com/#/brands/" }, + { + "title": "Google Optimize", + "hex": "B366F6", + "source": "https://marketingplatform.google.com/about/optimize/" + }, { "title": "Google Pay", "hex": "4285F4", @@ -3030,6 +3115,11 @@ "hex": "1E8CBE", "source": "https://automattic.com/press" }, + { + "title": "Graylog", + "hex": "FF3633", + "source": "https://www.graylog.org" + }, { "title": "GreenSock", "hex": "88CE02", @@ -3170,6 +3260,11 @@ "hex": "006BB6", "source": "https://www.hcl.com/brand-guidelines" }, + { + "title": "Headspace", + "hex": "F47D31", + "source": "https://www.headspace.com/press-and-media" + }, { "title": "HelloFresh", "hex": "99CC33", @@ -3240,6 +3335,11 @@ "hex": "41BDF5", "source": "https://github.com/home-assistant/home-assistant-assets" }, + { + "title": "Home Assistant Community Store", + "hex": "41BDF5", + "source": "https://hacs.xyz/" + }, { "title": "HomeAdvisor", "hex": "F68315", @@ -3280,6 +3380,11 @@ "hex": "D32F2F", "source": "https://en.wikipedia.org/wiki/File:Hotels.com_logo.svg" }, + { + "title": "Hotjar", + "hex": "FD3A5C", + "source": "https://www.hotjar.com/" + }, { "title": "Houdini", "hex": "FF4713", @@ -3513,7 +3618,7 @@ { "title": "Intel", "hex": "0071C5", - "source": "https://www.intel.com" + "source": "https://www.intel.com/" }, { "title": "IntelliJ IDEA", @@ -3640,6 +3745,11 @@ "hex": "CC0000", "source": "https://github.com/jekyll/brand" }, + { + "title": "Jellyfin", + "hex": "00A4DC", + "source": "https://jellyfin.org/docs/general/contributing/branding.html#theme" + }, { "title": "Jenkins", "hex": "D24939", @@ -3780,6 +3890,11 @@ "hex": "FFCD00", "source": "https://www.kakaocorp.com/kakao/introduce/ci" }, + { + "title": "Kali Linux", + "hex": "557C94", + "source": "https://www.kali.org/docs/policy/kali-linux-trademark-policy/" + }, { "title": "Karlsruher Verkehrsverbund", "hex": "9B2321", @@ -3842,8 +3957,8 @@ }, { "title": "Kia", - "hex": "BB162B", - "source": "https://www.kia.com/ie/brochure/" + "hex": "05141F", + "source": "https://www.kia.com" }, { "title": "Kibana", @@ -4025,6 +4140,11 @@ "hex": "E2231A", "source": "https://news.lenovo.com/press-kits/" }, + { + "title": "Less", + "hex": "1D365D", + "source": "https://github.com/less/logo/blob/c9c10c328cfc00071e92443934b35e389310abf8/less_logo.ai" + }, { "title": "Let’s Encrypt", "hex": "003A70", @@ -4430,6 +4550,11 @@ "hex": "DE4F4F", "source": "http://logo.meteorapp.com/" }, + { + "title": "Metro", + "hex": "EF4242", + "source": "https://facebook.github.io/metro/" + }, { "title": "Metro de la Ciudad de México", "hex": "F77E1C", @@ -4467,8 +4592,8 @@ }, { "title": "Microsoft", - "hex": "666666", - "source": "https://ratnacahayarina.files.wordpress.com/2014/03/microsoft.pdf" + "hex": "5E5E5E", + "source": "https://developer.microsoft.com" }, { "title": "Microsoft Academic", @@ -4615,6 +4740,11 @@ "hex": "3CAFCE", "source": "https://moleculer.services/" }, + { + "title": "Momenteo", + "hex": "5A6AB1", + "source": "https://www.momenteo.com/media" + }, { "title": "Monero", "hex": "FF6600", @@ -4720,6 +4850,11 @@ "hex": "3655FF", "source": "https://docs.nativescript.org/" }, + { + "title": "NBA", + "hex": "253B73", + "source": "https://nba.com/" + }, { "title": "NBB", "hex": "FF7100", @@ -4765,6 +4900,11 @@ "hex": "00C7B7", "source": "https://www.netlify.com/press/" }, + { + "title": "New Japan Pro-Wrestling", + "hex": "FF160B", + "source": "https://en.wikipedia.org/wiki/File:New_Japan_Pro_Wrestling_Logo_2.svg" + }, { "title": "New Relic", "hex": "008C99", @@ -5155,6 +5295,11 @@ "hex": "123F6D", "source": "https://www.ovh.com/fr/news/logo-ovh.xml" }, + { + "title": "OWASP", + "hex": "000000", + "source": "https://github.com/OWASP/www-event-2020-07-virtual/blob/eefbef6c1afdd1dee2af11e7f44ad005b25ad48c/assets/images/logo.svg" + }, { "title": "p5.js", "hex": "ED225D", @@ -5370,6 +5515,11 @@ "hex": "BD081C", "source": "https://business.pinterest.com/en/brand-guidelines" }, + { + "title": "Pioneer DJ", + "hex": "1A1928", + "source": "https://www.pioneerdj.com/" + }, { "title": "Pivotal Tracker", "hex": "517A9E", @@ -5440,6 +5590,11 @@ "hex": "003791", "source": "https://commons.wikimedia.org/wiki/File:PlayStation_4_logo_and_wordmark.svg" }, + { + "title": "PlayStation 5", + "hex": "003791", + "source": "https://www.playstation.com/en-us/ps5/" + }, { "title": "PlayStation Vita", "hex": "003791", @@ -5530,6 +5685,11 @@ "hex": "FF6C37", "source": "https://www.getpostman.com/resources/media-assets/" }, + { + "title": "Postmates", + "hex": "FFDF18", + "source": "https://postmates.com/press-and-media" + }, { "title": "Power BI", "hex": "F2C811", @@ -5560,6 +5720,11 @@ "hex": "DF0067", "source": "https://www.prestashop.com/en/media-kit" }, + { + "title": "Presto", + "hex": "5890FF", + "source": "https://github.com/prestodb/presto/blob/414ab2a6bbdcca6479c2615b048920adac34dd20/presto-docs/src/main/resources/logo/web/fb/dark-blue/Presto_FB_Lockups_DARKBLUE_BG-14.svg" + }, { "title": "Prettier", "hex": "F7B93E", @@ -5770,6 +5935,11 @@ "hex": "FB4F14", "source": "https://www.quest.com/legal/trademark-information.aspx" }, + { + "title": "QuickBooks", + "hex": "2CA01C", + "source": "https://designsystem.quickbooks.com/visual-assets/logos/" + }, { "title": "QuickTime", "hex": "1C69F0", @@ -6020,6 +6190,11 @@ "hex": "662D91", "source": "https://www.roku.com/" }, + { + "title": "Rolls-Royce", + "hex": "281432", + "source": "https://www.rolls-roycemotorcars.com/" + }, { "title": "rollup.js", "hex": "EC4A3F", @@ -6045,6 +6220,11 @@ "hex": "22314E", "source": "https://www.ros.org/press-kit/" }, + { + "title": "Rotten Tomatoes", + "hex": "FA320A", + "source": "https://commons.wikimedia.org/wiki/File:Rottentomatoesalternativelogo.svg" + }, { "title": "Roundcube", "hex": "37BEFF", @@ -6235,11 +6415,21 @@ "hex": "0089CF", "source": "https://en.wikipedia.org/wiki/Sega#/media/File:Sega_logo.svg" }, + { + "title": "Selenium", + "hex": "43B02A", + "source": "https://github.com/SeleniumHQ/heroku-selenium/blob/2f66891ba030d3aa1f36ab1748c52ba4fb4e057d/selenium-green.svg" + }, { "title": "Sellfy", "hex": "21B352", "source": "https://sellfy.com/about/" }, + { + "title": "Semantic UI React", + "hex": "35BDB2", + "source": "https://react.semantic-ui.com" + }, { "title": "Semantic Web", "hex": "005A9C", @@ -6570,6 +6760,11 @@ "hex": "00B4F2", "source": "https://sourcegraph.com/.assets/img" }, + { + "title": "Southwest Airlines", + "hex": "304CB2", + "source": "https://www.southwest.com/" + }, { "title": "Spacemacs", "hex": "9266CC", @@ -6980,6 +7175,11 @@ "hex": "1675BC", "source": "https://www.talend.com/" }, + { + "title": "Taobao", + "hex": "E94F20", + "source": "https://doc.irasia.com/listco/hk/alibabagroup/annual/2020/ar2020.pdf" + }, { "title": "Tapas", "hex": "FFCE00", @@ -7080,6 +7280,11 @@ "hex": "D8352A", "source": "https://theconversation.com/republishing-guidelines" }, + { + "title": "The Irish Times", + "hex": "000000", + "source": "https://www.irishtimes.com/" + }, { "title": "The Mighty", "hex": "D0072A", @@ -7240,6 +7445,11 @@ "hex": "EB0A1E", "source": "https://www.toyota.com/brandguidelines/logo/" }, + { + "title": "TP-Link", + "hex": "4ACBD6", + "source": "https://www.tp-link.com/" + }, { "title": "TrainerRoad", "hex": "E12726", @@ -7455,6 +7665,11 @@ "hex": "00BEC1", "source": "https://umbraco.com/" }, + { + "title": "Unacademy", + "hex": "08BD80", + "source": "https://unacademy.com/" + }, { "title": "Undertale", "hex": "E71D29", @@ -7647,8 +7862,8 @@ }, { "title": "Visa", - "hex": "142787", - "source": "https://commons.wikimedia.org/wiki/File:Visa_2014_logo_detail.svg" + "hex": "1A1F71", + "source": "https://merchantsignageeu.visa.com/product.asp?dptID=696" }, { "title": "Visual Studio", @@ -7705,6 +7920,11 @@ "hex": "FFFFFF", "source": "https://www.vonage.com" }, + { + "title": "VOX", + "hex": "DA074A", + "source": "https://commons.wikimedia.org/wiki/File:VOX_Logo_2013.svg" + }, { "title": "VSCO", "hex": "000000", @@ -7745,6 +7965,11 @@ "hex": "000000", "source": "https://wakatime.com/legal/logos-and-trademark-usage" }, + { + "title": "WALKMAN", + "hex": "000000", + "source": "https://en.wikipedia.org/wiki/File:Walkman_logo.svg" + }, { "title": "Warner Bros.", "hex": "004DB4", @@ -7865,6 +8090,11 @@ "hex": "8B8B8B", "source": "https://de.wikipedia.org/wiki/Datei:WiiU.svg" }, + { + "title": "Wikidata", + "hex": "006699", + "source": "https://commons.wikimedia.org/wiki/File:Wikidata-logo-en.svg" + }, { "title": "Wikimedia Commons", "hex": "006699", @@ -8095,6 +8325,11 @@ "hex": "6001D2", "source": "https://yahoo.com/" }, + { + "title": "Yale", + "hex": "FFD900", + "source": "https://yalehome.com" + }, { "title": "Yamaha Corporation", "hex": "4B1E78", diff --git a/icons/accusoft.svg b/icons/accusoft.svg index 5f0809a3..2dff8563 100644 --- a/icons/accusoft.svg +++ b/icons/accusoft.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/acer.svg b/icons/acer.svg new file mode 100644 index 00000000..79ae44f3 --- /dev/null +++ b/icons/acer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/aliexpress.svg b/icons/aliexpress.svg new file mode 100644 index 00000000..9089f88c --- /dev/null +++ b/icons/aliexpress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/bankofamerica.svg b/icons/bankofamerica.svg new file mode 100644 index 00000000..c6783a5b --- /dev/null +++ b/icons/bankofamerica.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/blazor.svg b/icons/blazor.svg new file mode 100644 index 00000000..cd42293a --- /dev/null +++ b/icons/blazor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/blueprint.svg b/icons/blueprint.svg new file mode 100644 index 00000000..4f6c054a --- /dev/null +++ b/icons/blueprint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/citrix.svg b/icons/citrix.svg index e69627de..8b725cbb 100644 --- a/icons/citrix.svg +++ b/icons/citrix.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/icons/codeceptjs.svg b/icons/codeceptjs.svg new file mode 100644 index 00000000..f4e1b677 --- /dev/null +++ b/icons/codeceptjs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/codemagic.svg b/icons/codemagic.svg new file mode 100644 index 00000000..48eb50e3 --- /dev/null +++ b/icons/codemagic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/cucumber.svg b/icons/cucumber.svg new file mode 100644 index 00000000..1ca2d918 --- /dev/null +++ b/icons/cucumber.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/deutschebahn.svg b/icons/deutschebahn.svg new file mode 100644 index 00000000..397f8d19 --- /dev/null +++ b/icons/deutschebahn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/devpost.svg b/icons/devpost.svg new file mode 100644 index 00000000..e6340d41 --- /dev/null +++ b/icons/devpost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/espressif.svg b/icons/espressif.svg new file mode 100644 index 00000000..cf20ab08 --- /dev/null +++ b/icons/espressif.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/ferrari.svg b/icons/ferrari.svg index 788ae7b3..1129aba5 100644 --- a/icons/ferrari.svg +++ b/icons/ferrari.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/flipkart.svg b/icons/flipkart.svg new file mode 100644 index 00000000..c38b7f76 --- /dev/null +++ b/icons/flipkart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/folium.svg b/icons/folium.svg new file mode 100644 index 00000000..a933c3f3 --- /dev/null +++ b/icons/folium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/futurelearn.svg b/icons/futurelearn.svg new file mode 100644 index 00000000..eafef7f1 --- /dev/null +++ b/icons/futurelearn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/gamejolt.svg b/icons/gamejolt.svg new file mode 100644 index 00000000..1eb183c8 --- /dev/null +++ b/icons/gamejolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/generalmotors.svg b/icons/generalmotors.svg index 38836b0d..c19ec0fc 100644 --- a/icons/generalmotors.svg +++ b/icons/generalmotors.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/gitlfs.svg b/icons/gitlfs.svg new file mode 100644 index 00000000..4cb02dde --- /dev/null +++ b/icons/gitlfs.svg @@ -0,0 +1 @@ + diff --git a/icons/googlechat.svg b/icons/googlechat.svg index 49db20c4..b27ed61c 100644 --- a/icons/googlechat.svg +++ b/icons/googlechat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/googleoptimize.svg b/icons/googleoptimize.svg new file mode 100644 index 00000000..44034240 --- /dev/null +++ b/icons/googleoptimize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/graylog.svg b/icons/graylog.svg new file mode 100644 index 00000000..a1143206 --- /dev/null +++ b/icons/graylog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/headspace.svg b/icons/headspace.svg new file mode 100644 index 00000000..b767aecc --- /dev/null +++ b/icons/headspace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/homeassistantcommunitystore.svg b/icons/homeassistantcommunitystore.svg new file mode 100644 index 00000000..e820d71d --- /dev/null +++ b/icons/homeassistantcommunitystore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/hotjar.svg b/icons/hotjar.svg new file mode 100644 index 00000000..3e17cb93 --- /dev/null +++ b/icons/hotjar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/intel.svg b/icons/intel.svg index ecc5d226..7ba85d97 100644 --- a/icons/intel.svg +++ b/icons/intel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/jellyfin.svg b/icons/jellyfin.svg new file mode 100644 index 00000000..b21d6b14 --- /dev/null +++ b/icons/jellyfin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/kahoot.svg b/icons/kahoot.svg index 6cb91399..72d5a754 100644 --- a/icons/kahoot.svg +++ b/icons/kahoot.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/icons/kalilinux.svg b/icons/kalilinux.svg new file mode 100644 index 00000000..42831e99 --- /dev/null +++ b/icons/kalilinux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/kia.svg b/icons/kia.svg index cefdc2e2..5dd48110 100644 --- a/icons/kia.svg +++ b/icons/kia.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/less.svg b/icons/less.svg new file mode 100644 index 00000000..fe3ff751 --- /dev/null +++ b/icons/less.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/metro.svg b/icons/metro.svg new file mode 100644 index 00000000..3055a56c --- /dev/null +++ b/icons/metro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/microsoft.svg b/icons/microsoft.svg index e0e09e9d..6f61f951 100644 --- a/icons/microsoft.svg +++ b/icons/microsoft.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/momenteo.svg b/icons/momenteo.svg new file mode 100644 index 00000000..2eaef306 --- /dev/null +++ b/icons/momenteo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/nba.svg b/icons/nba.svg new file mode 100644 index 00000000..5436c9c5 --- /dev/null +++ b/icons/nba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/newjapanpro-wrestling.svg b/icons/newjapanpro-wrestling.svg new file mode 100644 index 00000000..1bc7a7d4 --- /dev/null +++ b/icons/newjapanpro-wrestling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/owasp.svg b/icons/owasp.svg new file mode 100644 index 00000000..39d1fe05 --- /dev/null +++ b/icons/owasp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/pioneerdj.svg b/icons/pioneerdj.svg new file mode 100644 index 00000000..b4b60a32 --- /dev/null +++ b/icons/pioneerdj.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/playstation5.svg b/icons/playstation5.svg new file mode 100644 index 00000000..5d835e32 --- /dev/null +++ b/icons/playstation5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/postmates.svg b/icons/postmates.svg new file mode 100644 index 00000000..4f983941 --- /dev/null +++ b/icons/postmates.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/presto.svg b/icons/presto.svg new file mode 100644 index 00000000..07e681e9 --- /dev/null +++ b/icons/presto.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/quickbooks.svg b/icons/quickbooks.svg new file mode 100644 index 00000000..7dc3f277 --- /dev/null +++ b/icons/quickbooks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/rolls-royce.svg b/icons/rolls-royce.svg new file mode 100644 index 00000000..784e1020 --- /dev/null +++ b/icons/rolls-royce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/rottentomatoes.svg b/icons/rottentomatoes.svg new file mode 100644 index 00000000..a4566101 --- /dev/null +++ b/icons/rottentomatoes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/selenium.svg b/icons/selenium.svg new file mode 100644 index 00000000..3610266d --- /dev/null +++ b/icons/selenium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/semanticuireact.svg b/icons/semanticuireact.svg new file mode 100644 index 00000000..9d50c40a --- /dev/null +++ b/icons/semanticuireact.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/southwestairlines.svg b/icons/southwestairlines.svg new file mode 100644 index 00000000..6c9079f6 --- /dev/null +++ b/icons/southwestairlines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/taobao.svg b/icons/taobao.svg new file mode 100644 index 00000000..3ede26b3 --- /dev/null +++ b/icons/taobao.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/theirishtimes.svg b/icons/theirishtimes.svg new file mode 100644 index 00000000..65fa4408 --- /dev/null +++ b/icons/theirishtimes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/tp-link.svg b/icons/tp-link.svg new file mode 100644 index 00000000..d2633a79 --- /dev/null +++ b/icons/tp-link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/unacademy.svg b/icons/unacademy.svg new file mode 100644 index 00000000..4715f8e8 --- /dev/null +++ b/icons/unacademy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/visa.svg b/icons/visa.svg index 793113e7..a58536e5 100644 --- a/icons/visa.svg +++ b/icons/visa.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/vox.svg b/icons/vox.svg new file mode 100644 index 00000000..1ba057f6 --- /dev/null +++ b/icons/vox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/walkman.svg b/icons/walkman.svg new file mode 100644 index 00000000..7e67048a --- /dev/null +++ b/icons/walkman.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/webflow.svg b/icons/webflow.svg index 0b6c1a94..1ef6d9ff 100644 --- a/icons/webflow.svg +++ b/icons/webflow.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/wikidata.svg b/icons/wikidata.svg new file mode 100644 index 00000000..11da970e --- /dev/null +++ b/icons/wikidata.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/yale.svg b/icons/yale.svg new file mode 100644 index 00000000..0aca8e15 --- /dev/null +++ b/icons/yale.svg @@ -0,0 +1 @@ + diff --git a/index.html b/index.html index 50a7a47d..db2b9b07 100644 --- a/index.html +++ b/index.html @@ -185,15 +185,15 @@ diff --git a/package-lock.json b/package-lock.json index 8cd78d26..41e72206 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "simple-icons", - "version": "4.6.0", + "version": "4.7.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 3340fe62..e0bef670 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simple-icons", - "version": "4.6.0", + "version": "4.7.0", "description": "SVG icons for popular brands https://simpleicons.org", "homepage": "https://www.simpleicons.org", "keywords": [ @@ -31,7 +31,7 @@ }, "scripts": { "build": "node scripts/build-package.js", - "clean": "rm icons/*.js index.js", + "clean": "rm -f icons/*.js index.js", "lint": "run-s our-lint jsonlint svglint wslint", "our-lint": "node scripts/lint.js", "jsonlint": "jsonlint _data/simple-icons.json -q -V .jsonlintschema", diff --git a/scripts/lint.js b/scripts/lint.js index a9833b4a..0613efe1 100644 --- a/scripts/lint.js +++ b/scripts/lint.js @@ -2,7 +2,7 @@ /** * @fileoverview Lints for the package that can't be implemented in the existing linters (e.g. jsonlint/svglint) */ - + const fs = require("fs"); const path = require("path"); diff --git a/scripts/templates/index.js b/scripts/templates/index.js index 18823bb4..cd0370c7 100644 --- a/scripts/templates/index.js +++ b/scripts/templates/index.js @@ -10,7 +10,7 @@ Object.defineProperty(icons, "get", { for (var iconName in icons) { var icon = icons[iconName]; if (icon.title.toLowerCase() === normalizedName || icon.slug === normalizedName) { - return icon; + return icon; } } }