Updating GHES workflows
This commit is contained in:
-24
@@ -1,24 +0,0 @@
|
||||
name: Ada (GNAT)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ $default-branch ]
|
||||
pull_request:
|
||||
branches: [ $default-branch ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set up GNAT toolchain
|
||||
run: >
|
||||
sudo apt-get update &&
|
||||
sudo apt-get install gnat gprbuild
|
||||
|
||||
- name: Build
|
||||
run: gprbuild -j0 -p
|
||||
+10
-10
@@ -19,15 +19,15 @@ jobs:
|
||||
|
||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||
steps:
|
||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||
- uses: actions/checkout@v2
|
||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
# Runs a single command using the runners shell
|
||||
- name: Run a one-line script
|
||||
run: echo Hello, world!
|
||||
# Runs a single command using the runners shell
|
||||
- name: Run a one-line script
|
||||
run: echo Hello, world!
|
||||
|
||||
# Runs a set of commands using the runners shell
|
||||
- name: Run a multi-line script
|
||||
run: |
|
||||
echo Add other actions to build,
|
||||
echo test, and deploy your project.
|
||||
# Runs a set of commands using the runners shell
|
||||
- name: Run a multi-line script
|
||||
run: |
|
||||
echo Add other actions to build,
|
||||
echo test, and deploy your project.
|
||||
|
||||
@@ -1,46 +0,0 @@
|
||||
name: CMake
|
||||
|
||||
on: [push]
|
||||
|
||||
env:
|
||||
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
||||
BUILD_TYPE: Release
|
||||
|
||||
jobs:
|
||||
build:
|
||||
# The CMake configure and build commands are platform agnostic and should work equally
|
||||
# well on Windows or Mac. You can convert this to a matrix build if you need
|
||||
# cross-platform coverage.
|
||||
# See: https://docs.github.com/en/actions/configuring-and-managing-workflows/configuring-a-workflow#configuring-a-build-matrix
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Create Build Environment
|
||||
# Some projects don't allow in-source building, so create a separate build directory
|
||||
# We'll use this as our working directory for all subsequent commands
|
||||
run: cmake -E make_directory ${{runner.workspace}}/build
|
||||
|
||||
- name: Configure CMake
|
||||
# Use a bash shell so we can use the same syntax for environment variable
|
||||
# access regardless of the host operating system
|
||||
shell: bash
|
||||
working-directory: ${{runner.workspace}}/build
|
||||
# Note the current convention is to use the -S and -B options here to specify source
|
||||
# and build directories, but this is only available with CMake 3.13 and higher.
|
||||
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
|
||||
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE
|
||||
|
||||
- name: Build
|
||||
working-directory: ${{runner.workspace}}/build
|
||||
shell: bash
|
||||
# Execute the build. You can specify a specific target with "--target <NAME>"
|
||||
run: cmake --build . --config $BUILD_TYPE
|
||||
|
||||
- name: Test
|
||||
working-directory: ${{runner.workspace}}/build
|
||||
shell: bash
|
||||
# Execute tests defined by the CMake configuration.
|
||||
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
|
||||
run: ctest -C $BUILD_TYPE
|
||||
@@ -50,13 +50,12 @@ jobs:
|
||||
- name: Build image
|
||||
run: docker build . --file Dockerfile --tag $IMAGE_NAME
|
||||
|
||||
- name: Log into GitHub Container Registry
|
||||
# TODO: Create a PAT with `read:packages` and `write:packages` scopes and save it as an Actions secret `CR_PAT`
|
||||
run: echo "${{ secrets.CR_PAT }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin
|
||||
- name: Log into registry
|
||||
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
|
||||
|
||||
- name: Push image to GitHub Container Registry
|
||||
- name: Push image
|
||||
run: |
|
||||
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
|
||||
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/$IMAGE_NAME
|
||||
|
||||
# Change all uppercase to lowercase
|
||||
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
|
||||
|
||||
+1
-1
@@ -16,7 +16,7 @@ jobs:
|
||||
- name: Setup .NET Core
|
||||
uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
dotnet-version: 3.1.301
|
||||
dotnet-version: 3.1.101
|
||||
- name: Install dependencies
|
||||
run: dotnet restore
|
||||
- name: Build
|
||||
|
||||
-42
@@ -1,42 +0,0 @@
|
||||
name: iOS starter workflow
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ $default-branch ]
|
||||
pull_request:
|
||||
branches: [ $default-branch ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build and Test default scheme using any available iPhone simulator
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Set Default Scheme
|
||||
run: |
|
||||
scheme_list=$(xcodebuild -list -json | tr -d "\n")
|
||||
default=$(echo $scheme_list | ruby -e "require 'json'; puts JSON.parse(STDIN.gets)['project']['targets'][0]")
|
||||
echo $default | cat >default
|
||||
echo Using default scheme: $default
|
||||
- name: Build
|
||||
env:
|
||||
scheme: ${{ 'default' }}
|
||||
platform: ${{ 'iOS Simulator' }}
|
||||
run: |
|
||||
device=`instruments -s -devices | grep -oE 'iPhone.*?[^\(]+' | head -1 | awk '{$1=$1;print}'`
|
||||
if [ $scheme = default ]; then scheme=$(cat default); fi
|
||||
if [ "`ls -A | grep -i \\.xcworkspace\$`" ]; then filetype_parameter="workspace" && file_to_build="`ls -A | grep -i \\.xcworkspace\$`"; else filetype_parameter="project" && file_to_build="`ls -A | grep -i \\.xcodeproj\$`"; fi
|
||||
file_to_build=`echo $file_to_build | awk '{$1=$1;print}'`
|
||||
xcodebuild build-for-testing -scheme "$scheme" -"$filetype_parameter" "$file_to_build" -destination "platform=$platform,name=$device"
|
||||
- name: Test
|
||||
env:
|
||||
scheme: ${{ 'default' }}
|
||||
platform: ${{ 'iOS Simulator' }}
|
||||
run: |
|
||||
device=`instruments -s -devices | grep -oE 'iPhone.*?[^\(]+' | head -1 | awk '{$1=$1;print}'`
|
||||
if [ $scheme = default ]; then scheme=$(cat default); fi
|
||||
if [ "`ls -A | grep -i \\.xcworkspace\$`" ]; then filetype_parameter="workspace" && file_to_build="`ls -A | grep -i \\.xcworkspace\$`"; else filetype_parameter="project" && file_to_build="`ls -A | grep -i \\.xcodeproj\$`"; fi
|
||||
file_to_build=`echo $file_to_build | awk '{$1=$1;print}'`
|
||||
xcodebuild test-without-building -scheme "$scheme" -"$filetype_parameter" "$file_to_build" -destination "platform=$platform,name=$device"
|
||||
+1
-1
@@ -40,7 +40,7 @@ jobs:
|
||||
- uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 12
|
||||
registry-url: $registry-url(npm)
|
||||
registry-url: https://npm.pkg.github.com/
|
||||
- run: npm ci
|
||||
- run: npm publish
|
||||
env:
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
{
|
||||
"name": "Ada",
|
||||
"description": "Build Ada project with GPRbuild.",
|
||||
"iconName": "ada",
|
||||
"categories": ["Ada"]
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
{
|
||||
"name": "CMake based projects",
|
||||
"description": "Build and test a CMake based project.",
|
||||
"iconName": "cmake",
|
||||
"categories": ["C", "C++"]
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"name": "iOS",
|
||||
"description": "Build and test an iOS application using xcodebuild and any available iPhone simulator.",
|
||||
"iconName": "xcode",
|
||||
"categories": [
|
||||
"iOS",
|
||||
"Xcode"
|
||||
]
|
||||
}
|
||||
-283
@@ -1,283 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="2499.6855"
|
||||
height="2499.6855"
|
||||
viewBox="0 0 2499.6856 2499.6856"
|
||||
xml:space="preserve"
|
||||
id="svg900"
|
||||
sodipodi:docname="ada.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||
id="metadata906"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs904" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1639"
|
||||
inkscape:window-height="1026"
|
||||
id="namedview902"
|
||||
showgrid="false"
|
||||
fit-margin-top="10"
|
||||
fit-margin-left="10"
|
||||
fit-margin-right="10"
|
||||
fit-margin-bottom="10"
|
||||
inkscape:zoom="0.31791045"
|
||||
inkscape:cx="1244.8642"
|
||||
inkscape:cy="1148.4665"
|
||||
inkscape:window-x="41"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg900" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style815">
|
||||
path { stroke: #000; fill: #000; }
|
||||
.blue { stroke: none; fill: #001ec8; }
|
||||
.purple { stroke: none; fill: #14127b; }
|
||||
.lace{
|
||||
fill: none;
|
||||
stroke: #000050;
|
||||
stroke-width: 4.56;
|
||||
stroke-linecap: round;
|
||||
stroke-dasharray: 4.56, 9.12;
|
||||
}
|
||||
#beak { stroke-width: 1.4543; }
|
||||
#eye { fill: #fff; }
|
||||
#slogan{
|
||||
font-family: DejaVu Sans, DejaVuSans, sans-serif;
|
||||
font-size: 160px;
|
||||
letter-spacing: 2.058;
|
||||
}
|
||||
</style>
|
||||
<g
|
||||
id="mascot"
|
||||
transform="matrix(0.89154934,0,0,0.90465015,26.993382,126.4591)">
|
||||
<path
|
||||
d="m 1611.977,893.89 c 0,0 9.516,-105.79 218.437,-113.147 176.135,10.486 299.541,181.092 341.412,235.654 0,0 -152.667,101.169 -309.918,-74.527 -181.344,-162.704 -249.931,-47.98 -249.931,-47.98 z"
|
||||
id="path817"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1611.977,893.89 c 0,0 9.516,-105.79 218.437,-113.147 176.135,10.486 299.541,181.092 341.412,235.654 0,0 -152.667,101.169 -309.918,-74.527 -181.344,-162.704 -249.931,-47.98 -249.931,-47.98 z"
|
||||
id="path819"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1609.99,951.172 c 0,0 -17.842,77.477 85.748,137.389 72.271,41.798 31.627,53.267 31.627,53.267 0,0 33.552,6.073 89.941,-45.237 80.09,-72.877 39.384,-130.639 39.384,-130.639 0,0 -84.44,-119.765 -160.184,-28.007 -10e-4,-0.001 -23.964,28.114 -86.516,13.227 z"
|
||||
id="path821"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1609.99,951.172 c 0,0 -17.842,77.477 85.748,137.389 72.271,41.798 31.627,53.267 31.627,53.267 0,0 33.552,6.073 89.941,-45.237 80.09,-72.877 39.384,-130.639 39.384,-130.639 0,0 -84.44,-119.765 -160.184,-28.007 -10e-4,-0.001 -23.964,28.114 -86.516,13.227 z"
|
||||
id="path823"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1886.471,988.581 c 0,0 11.138,114.979 -147.041,163.575 0,0 162.152,-61.352 338.891,89.662 0,0 18.5,-138.54 102.683,-209.607 -9.579,2.773 -141.095,89.481 -294.533,-43.63 z"
|
||||
id="path825"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1886.471,988.581 c 0,0 11.138,114.979 -147.041,163.575 0,0 162.152,-61.352 338.891,89.662 0,0 18.5,-138.54 102.683,-209.607 -9.579,2.773 -141.095,89.481 -294.533,-43.63 z"
|
||||
id="path827"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1620.416,927.717 c 0,0 52.75,50.553 101.022,-46.643 0,0.001 -59.981,-41.814 -101.022,46.643 z"
|
||||
id="path829"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1620.416,927.717 c 0,0 52.75,50.553 101.022,-46.643 0,0.001 -59.981,-41.814 -101.022,46.643 z"
|
||||
id="path831"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
id="eye"
|
||||
d="m 1663.644,906.901 c 1.978,6.592 -1.131,13.3 -6.948,14.985 -5.818,1.685 -12.139,-2.292 -14.12,-8.884 -1.978,-6.589 1.134,-13.297 6.952,-14.982 5.817,-1.685 12.138,2.292 14.116,8.881 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;stroke:#000000" />
|
||||
<path
|
||||
d="m 2425.161,1516.737 c 10.324,-223.678 6.519,-390.567 -146.927,-494.139 -197.333,-224.644 -429.309,-530.796 -380.538,-901.605 35.248,-267.985 54.6,-5.352 54.6,-5.352 0,0 43.629,382.154 187.388,504.897 366.257,323.333 366.683,500.749 285.477,896.199 z"
|
||||
id="path834"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 2425.161,1516.737 c 10.324,-223.678 6.519,-390.567 -146.927,-494.139 -197.333,-224.644 -429.309,-530.796 -380.538,-901.605 35.248,-267.985 54.6,-5.352 54.6,-5.352 0,0 43.629,382.154 187.388,504.897 366.257,323.333 366.683,500.749 285.477,896.199 z"
|
||||
id="path836"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1828.757,315.384 c 0,0 52.75,258.796 193.011,419.396 147.362,168.734 110.844,131.4 234.271,285.874 0,0 -13.726,-12.4 -55.464,0.307 0,0 -112.847,-170.83 -224.24,-222.873 0,0 -139.636,-143.078 -161.395,-297.193 -35.334,-250.261 -3.128,-280.036 13.817,-185.511 z"
|
||||
id="path838"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1828.757,315.384 c 0,0 52.75,258.796 193.011,419.396 147.362,168.734 110.844,131.4 234.271,285.874 0,0 -13.726,-12.4 -55.464,0.307 0,0 -112.847,-170.83 -224.24,-222.873 0,0 -139.636,-143.078 -161.395,-297.193 -35.334,-250.261 -3.128,-280.036 13.817,-185.511 z"
|
||||
id="path840"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1948.479,783.247 c 0,0 -125.77,-141.083 -137.986,-179.972 -21.57,-68.681 -29.621,-88.42 -36.591,-29.45 -3.865,32.725 19.875,183.652 86.226,190.548 44.038,4.576 88.351,18.874 88.351,18.874 z"
|
||||
id="path842"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1948.479,783.247 c 0,0 -125.77,-141.083 -137.986,-179.972 -21.57,-68.681 -29.621,-88.42 -36.591,-29.45 -3.865,32.725 19.875,183.652 86.226,190.548 44.038,4.576 88.351,18.874 88.351,18.874 z"
|
||||
id="path844"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 265.722,564.054 c -8.152,108.752 34.836,295.607 94.35,374.47 116.74,238.76 440.318,520.593 886.586,435.668 138.708,-39.579 259.46,24.864 346.052,98.731 83.282,84.862 112.474,99.424 169.505,65.834 -59.141,-57.281 -122.45,-124.229 -121.132,-212.485 4.155,-64.08 27.511,-126.884 68.622,-161.109 -40.588,-142.423 -268.016,-149.301 -369.352,-139.12 -131.23,8.867 -262.996,76.582 -380.2,89.509 C 634.705,1088.895 398.79,864.875 322.157,519.999 289.667,361.155 273.87,455.302 265.722,564.054 Z"
|
||||
id="path846"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 265.722,564.054 c -8.152,108.752 34.836,295.607 94.35,374.47 116.74,238.76 440.318,520.593 886.586,435.668 138.708,-39.579 259.46,24.864 346.052,98.731 83.282,84.862 112.474,99.424 169.505,65.834 -59.141,-57.281 -122.45,-124.229 -121.132,-212.485 4.155,-64.08 27.511,-126.884 68.622,-161.109 -40.588,-142.423 -268.016,-149.301 -369.352,-139.12 -131.23,8.867 -262.996,76.582 -380.2,89.509 C 634.705,1088.895 398.79,864.875 322.157,519.999 289.667,361.155 273.87,455.302 265.722,564.054 Z"
|
||||
id="path848"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 562.838,1304.813 c 230.013,136.835 460.685,181.856 650.958,111.34 0,0 173.715,-105.567 417.032,116.186 0,0 -273.168,145.195 -534.295,135.596 -94.496,-3.474 -390.567,-65.621 -583.404,-262.864 -175.166,-179.173 -177.987,-366.224 -99.331,-247.676 77.492,116.786 149.04,147.418 149.04,147.418 z"
|
||||
id="path850"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 562.838,1304.813 c 230.013,136.835 460.685,181.856 650.958,111.34 0,0 173.715,-105.567 417.032,116.186 0,0 -273.168,145.195 -534.295,135.596 -94.496,-3.474 -390.567,-65.621 -583.404,-262.864 -175.166,-179.173 -177.987,-366.224 -99.331,-247.676 77.492,116.786 149.04,147.418 149.04,147.418 z"
|
||||
id="path852"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 965.398,1707.048 c 335.49,31.676 535.63,-83.299 681.562,-151.143 24.455,174.479 -266.714,305.736 -474.431,287.002 -138.928,-6.75 -333.321,-37.361 -454.117,-163.129 -11.647,-12.125 -91.392,-113.813 36.099,-35.268 82.58,39.237 141.487,48.613 210.887,62.538 z"
|
||||
id="path854"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 965.398,1707.048 c 335.49,31.676 535.63,-83.299 681.562,-151.143 24.455,174.479 -266.714,305.736 -474.431,287.002 -138.928,-6.75 -333.321,-37.361 -454.117,-163.129 -11.647,-12.125 -91.392,-113.813 36.099,-35.268 82.58,39.237 141.487,48.613 210.887,62.538 z"
|
||||
id="path856"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1684.492,1568.591 c 63.313,127.972 114.759,155.246 291.324,232.417 107.66,49.228 142.959,77.509 117.842,122.341 0,0 133.856,-71.649 196.353,-165.761 0,0 -339.162,-60.108 -515.42,-210.421 -44.607,36.702 -90.099,21.424 -90.099,21.424 z"
|
||||
id="path858"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1684.492,1568.591 c 63.313,127.972 114.759,155.246 291.324,232.417 107.66,49.228 142.959,77.509 117.842,122.341 0,0 133.856,-71.649 196.353,-165.761 0,0 -339.162,-60.108 -515.42,-210.421 -44.607,36.702 -90.099,21.424 -90.099,21.424 z"
|
||||
id="path860"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1670.934,1581.267 c 0,0 5.497,149.755 -207.863,248.039 -153.561,70.739 39.722,44.073 138.258,-3.812 101.34,-49.249 123.406,-118.457 108.874,-175.288 -11.095,-43.385 -28.16,-56.93 -39.269,-68.939 z"
|
||||
id="path862"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1670.934,1581.267 c 0,0 5.497,149.755 -207.863,248.039 -153.561,70.739 39.722,44.073 138.258,-3.812 101.34,-49.249 123.406,-118.457 108.874,-175.288 -11.095,-43.385 -28.16,-56.93 -39.269,-68.939 z"
|
||||
id="path864"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 2421.78,1531.324 c 0,0 -61.757,173.345 -118.533,221.491 0,0 36.291,8.63 49.189,85.811 36.989,-90.593 69.344,-307.302 69.344,-307.302 z"
|
||||
id="path866"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 2421.78,1531.324 c 0,0 -61.757,173.345 -118.533,221.491 0,0 36.291,8.63 49.189,85.811 36.989,-90.593 69.344,-307.302 69.344,-307.302 z"
|
||||
id="path868"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 2298.067,1774.257 c 0,0 60.485,207.06 -215.383,436.233 -121.197,100.688 -246.916,149.312 -391.878,178.315 0,0 -287.012,47.125 -352.704,-156.11 0,0 58.862,34.805 211.641,24.406 430.153,-29.275 709.851,-266.408 748.324,-482.844 z"
|
||||
id="path870"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 2298.067,1774.257 c 0,0 60.485,207.06 -215.383,436.233 -121.197,100.688 -246.916,149.312 -391.878,178.315 0,0 -287.012,47.125 -352.704,-156.11 0,0 58.862,34.805 211.641,24.406 430.153,-29.275 709.851,-266.408 748.324,-482.844 z"
|
||||
id="path872"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1496.487,2128.527 c 0,0 38.184,92.072 159.839,90.203 210.235,-3.234 551.609,-189.684 614.506,-413.938 0,0 -176.721,209.97 -498.868,285.338 -209.259,48.955 -275.477,38.397 -275.477,38.397 z"
|
||||
id="path874"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 1496.487,2128.527 c 0,0 38.184,92.072 159.839,90.203 210.235,-3.234 551.609,-189.684 614.506,-413.938 0,0 -176.721,209.97 -498.868,285.338 -209.259,48.955 -275.477,38.397 -275.477,38.397 z"
|
||||
id="path876"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 2319.562,1784.373 c 67.984,66.106 49.556,575.534 -455.449,704.963 0,0 -201.498,64.398 -354.49,-55.349 201.174,25.111 498.821,-106.314 617.34,-227.303 131.909,-134.655 211.685,-272.923 192.599,-422.311 z"
|
||||
id="path878"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 2319.562,1784.373 c 67.984,66.106 49.556,575.534 -455.449,704.963 0,0 -201.498,64.398 -354.49,-55.349 201.174,25.111 498.821,-106.314 617.34,-227.303 131.909,-134.655 211.685,-272.923 192.599,-422.311 z"
|
||||
id="path880"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
d="m 947.427,945.126 c 251.781,-104.964 473.12,-102.836 658.46,-50.581 0,0 -8.138,17.765 -24.361,13.907 -5.711,-1.357 1.667,12.11 26.509,40.646 -188.827,-76.332 -414.26,-62.7 -660.608,-3.972 z"
|
||||
id="path882"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000" />
|
||||
<path
|
||||
id="beak"
|
||||
d="m 947.427,945.126 c 251.781,-104.964 473.12,-102.836 658.46,-50.581 0,0 -8.138,17.765 -24.361,13.907 -5.711,-1.357 1.667,12.11 26.509,40.646 -188.827,-76.332 -414.26,-62.7 -660.608,-3.972 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;stroke:#000000;stroke-width:1.45430005" />
|
||||
<path
|
||||
class="blue"
|
||||
d="m 2072.565,1258.561 c 0,0 -40.71,-39.82 -105.351,-69.183 -32.318,-14.681 -73.917,-29.034 -112.812,-29.92 -47.728,-1.085 -90.031,-8.288 -139.967,30.381 -161.914,198.937 48.743,442.226 554.504,543.472 -53.728,-4.627 -636.817,-584.716 -196.374,-474.75 z"
|
||||
id="path885"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#001ec8;stroke:none" />
|
||||
<path
|
||||
class="lace"
|
||||
d="m 2072.565,1258.561 c 0,0 -40.71,-39.82 -105.351,-69.183 -32.318,-14.681 -73.917,-29.034 -112.812,-29.92 -47.728,-1.085 -90.031,-8.288 -139.967,30.381 -161.914,198.937 48.743,442.226 554.504,543.472 -53.728,-4.627 -636.817,-584.716 -196.374,-474.75 z"
|
||||
id="path887"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#000050;stroke-width:4.55999994;stroke-linecap:round;stroke-dasharray:4.56, 9.12" />
|
||||
<path
|
||||
class="blue"
|
||||
d="m 2089,1250.758 c 0,0 6.621,-47.435 31.076,-105.404 24.456,-57.972 69.361,-122.52 135.318,-108.428 99.035,38.683 198.1,202.659 144.854,504.171 -27.158,96.066 -92.941,186.513 -92.941,186.513 11.774,2.201 -14.852,-880.663 -218.307,-476.852 z"
|
||||
id="path889"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#001ec8;stroke:none" />
|
||||
<path
|
||||
class="lace"
|
||||
d="m 2089,1250.758 c 0,0 6.621,-47.435 31.076,-105.404 24.456,-57.972 69.361,-122.52 135.318,-108.428 99.035,38.683 198.1,202.659 144.854,504.171 -27.158,96.066 -92.941,186.513 -92.941,186.513 11.774,2.201 -14.852,-880.663 -218.307,-476.852 z"
|
||||
id="path891"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#000050;stroke-width:4.55999994;stroke-linecap:round;stroke-dasharray:4.56, 9.12" />
|
||||
<path
|
||||
class="purple"
|
||||
d="m 2093.633,1281.527 c -180.681,-66.114 -247.607,81.789 206.231,465.208 -9.578,-211.528 -48.209,-785.232 -206.231,-465.208 z"
|
||||
id="path893"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#14127b;stroke:none" />
|
||||
<path
|
||||
class="lace"
|
||||
d="m 2093.633,1281.527 c -180.681,-66.114 -247.607,81.789 206.231,465.208 -9.578,-211.528 -48.209,-785.232 -206.231,-465.208 z"
|
||||
id="path895"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#000050;stroke-width:4.55999994;stroke-linecap:round;stroke-dasharray:4.56, 9.12" />
|
||||
</g>
|
||||
|
||||
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 16 KiB |
-493
@@ -1,493 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg2816"
|
||||
version="1.1"
|
||||
inkscape:version="0.47 r22583"
|
||||
width="2072"
|
||||
height="2072"
|
||||
sodipodi:docname="Cmake.svg">
|
||||
<metadata
|
||||
id="metadata2822">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs2820">
|
||||
<linearGradient
|
||||
id="linearGradient4276">
|
||||
<stop
|
||||
style="stop-color:#32691d;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4278" />
|
||||
<stop
|
||||
id="stop4280"
|
||||
offset="0.02012207"
|
||||
style="stop-color:#01d200;stop-opacity:0" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4282" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4227">
|
||||
<stop
|
||||
style="stop-color:#ebebec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4229" />
|
||||
<stop
|
||||
id="stop4231"
|
||||
offset="0.00518292"
|
||||
style="stop-color:#d3d3d3;stop-opacity:0" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4233" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4129">
|
||||
<stop
|
||||
id="stop4131"
|
||||
offset="0"
|
||||
style="stop-color:#cbf595;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#01da00;stop-opacity:0"
|
||||
offset="0.01826929"
|
||||
id="stop4133" />
|
||||
<stop
|
||||
id="stop4135"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4039">
|
||||
<stop
|
||||
style="stop-color:#321e1d;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4041" />
|
||||
<stop
|
||||
id="stop4043"
|
||||
offset="0.01546729"
|
||||
style="stop-color:#555548;stop-opacity:0" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4045" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3990">
|
||||
<stop
|
||||
style="stop-color:#321e1d;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3992" />
|
||||
<stop
|
||||
id="stop3994"
|
||||
offset="0.02012207"
|
||||
style="stop-color:#5a5bd7;stop-opacity:0" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3996" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3941">
|
||||
<stop
|
||||
id="stop3943"
|
||||
offset="0"
|
||||
style="stop-color:#f6b1b2;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#c51f1f;stop-opacity:0"
|
||||
offset="0.02821624"
|
||||
id="stop3945" />
|
||||
<stop
|
||||
id="stop3947"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3851">
|
||||
<stop
|
||||
id="stop3853"
|
||||
offset="0"
|
||||
style="stop-color:#321e1d;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#555548;stop-opacity:0"
|
||||
offset="0.02012207"
|
||||
id="stop3855" />
|
||||
<stop
|
||||
id="stop3857"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3800">
|
||||
<stop
|
||||
style="stop-color:#cbcaf2;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3802" />
|
||||
<stop
|
||||
id="stop3808"
|
||||
offset="0.02636753"
|
||||
style="stop-color:#5555d2;stop-opacity:0" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3804" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3715">
|
||||
<stop
|
||||
style="stop-color:#848484;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3717" />
|
||||
<stop
|
||||
style="stop-color:#d2d2d2;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3719" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3669">
|
||||
<stop
|
||||
style="stop-color:#01a300;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3671" />
|
||||
<stop
|
||||
style="stop-color:#01df00;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3673" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3653">
|
||||
<stop
|
||||
style="stop-color:#b40e0e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3655" />
|
||||
<stop
|
||||
style="stop-color:#ff5959;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3657" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3645">
|
||||
<stop
|
||||
style="stop-color:#1011a1;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3647" />
|
||||
<stop
|
||||
style="stop-color:#6969e1;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3649" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3645"
|
||||
id="linearGradient3651"
|
||||
x1="-1527.3507"
|
||||
y1="1387.5206"
|
||||
x2="-1086.1161"
|
||||
y2="454.13968"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(2104,48)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3653"
|
||||
id="linearGradient3659"
|
||||
x1="-933.38092"
|
||||
y1="680.41388"
|
||||
x2="-316.78384"
|
||||
y2="1721.275"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(2104,48)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3669"
|
||||
id="linearGradient3675"
|
||||
x1="-678.82251"
|
||||
y1="1794.8141"
|
||||
x2="-1549.978"
|
||||
y2="1721.275"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(2104,48)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3715"
|
||||
id="linearGradient3721"
|
||||
x1="-984.2926"
|
||||
y1="1472.3735"
|
||||
x2="-995.60632"
|
||||
y2="1093.3643"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(2104,48)" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter3777">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="9.0766588"
|
||||
id="feGaussianBlur3779" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3800"
|
||||
id="linearGradient3806"
|
||||
x1="-1238.0465"
|
||||
y1="919.71448"
|
||||
x2="-555.82379"
|
||||
y2="917.51282"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.9188939,0.98349385,-0.45611308,0.88992183,3476.0418,1285.266)" />
|
||||
<linearGradient
|
||||
y2="913.40582"
|
||||
x2="-552.84039"
|
||||
y1="919.71448"
|
||||
x1="-1238.0465"
|
||||
gradientTransform="matrix(-1.9407023,0.93972781,-0.43581582,-0.90003588,-412.21511,3168.6506)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient3828"
|
||||
xlink:href="#linearGradient3851"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient3851-6">
|
||||
<stop
|
||||
id="stop3853-2"
|
||||
offset="0"
|
||||
style="stop-color:#321e1d;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#555548;stop-opacity:0"
|
||||
offset="0.02012207"
|
||||
id="stop3855-4" />
|
||||
<stop
|
||||
id="stop3857-5"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
y2="915.30005"
|
||||
x2="-555.83728"
|
||||
y1="919.71448"
|
||||
x1="-1238.0465"
|
||||
gradientTransform="matrix(0.02700295,-2.1560608,0.90368745,0.01314507,114.37039,-755.42907)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient3877"
|
||||
xlink:href="#linearGradient3851-6"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="917.6181"
|
||||
x2="-554.89746"
|
||||
y1="919.71448"
|
||||
x1="-1238.0465"
|
||||
gradientTransform="matrix(3.1362513,0.00261809,0.06431073,0.7601511,4936.1356,68.133286)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient3918"
|
||||
xlink:href="#linearGradient3941"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="917.51282"
|
||||
x2="-555.82379"
|
||||
y1="918.44379"
|
||||
x1="-1229.327"
|
||||
gradientTransform="matrix(-2.1510215,-0.07025797,-0.03821188,-0.48210687,-1498.469,1058.0104)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient3967"
|
||||
xlink:href="#linearGradient3990"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="917.51282"
|
||||
x2="-555.82379"
|
||||
y1="920.41797"
|
||||
x1="-1237.1112"
|
||||
gradientTransform="matrix(-1.3798164,-1.6569612,0.7684458,-0.63991489,-2195.6367,413.8935)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient4016"
|
||||
xlink:href="#linearGradient4039"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient3851-62">
|
||||
<stop
|
||||
id="stop3853-38"
|
||||
offset="0"
|
||||
style="stop-color:#321e1d;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#555548;stop-opacity:0"
|
||||
offset="0.01739271"
|
||||
id="stop3855-2" />
|
||||
<stop
|
||||
id="stop3857-62"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
y2="910.64618"
|
||||
x2="-551.12549"
|
||||
y1="915.73645"
|
||||
x1="-1242.2334"
|
||||
gradientTransform="matrix(0.85312044,-1.9803029,0.91840135,0.39565006,2182.2918,-885.93458)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient4065"
|
||||
xlink:href="#linearGradient3851-62"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="915.4801"
|
||||
x2="-555.86682"
|
||||
y1="919.71448"
|
||||
x1="-1238.0465"
|
||||
gradientTransform="matrix(1.3829904,1.654313,-0.7672176,0.6413869,2529.8389,3432.8719)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient4106"
|
||||
xlink:href="#linearGradient4129"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="917.18665"
|
||||
x2="-866.86804"
|
||||
y1="918.09875"
|
||||
x1="-1242.5582"
|
||||
gradientTransform="matrix(1.3829904,1.654313,-0.7672176,0.6413869,2930.535,3096.9376)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient4196"
|
||||
xlink:href="#linearGradient4227"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="917.51282"
|
||||
x2="-555.82379"
|
||||
y1="919.71448"
|
||||
x1="-1238.0465"
|
||||
gradientTransform="matrix(-0.83179183,1.989334,-0.83312221,-0.35033011,1447.5752,4603.6836)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient4253"
|
||||
xlink:href="#linearGradient4276"
|
||||
inkscape:collect="always" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="750"
|
||||
id="namedview2818"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.25"
|
||||
inkscape:cx="668.45545"
|
||||
inkscape:cy="769.26341"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2816"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true" />
|
||||
<g
|
||||
id="g3668">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path2831-1"
|
||||
d="m 1971.5575,1939.9137 -1797.08691,-0.1258 c -11.0291,-1.2221 -8.5403,-6.713 -5.9958,-12.2215 L 1069.3546,128.0808 c 3.3139,-5.2772 6.2883,-4.4372 9.0861,-0.4108 l 900.8561,1799.4363 c 4.5781,9.1667 1.5811,13.1503 -7.7393,12.8074 z"
|
||||
style="fill:none;stroke:#3a393b;stroke-width:22.50000000000000000;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter3777);opacity:0.53974895" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2828"
|
||||
d="M 1143.3083,1084.3217 158.69119,1926.0618 1060.5107,124.10214 1143.3083,1084.3217 z"
|
||||
style="fill:url(#linearGradient3651);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="rect3781"
|
||||
d="m 1060.5637,125.61959 c 13.4152,80.71591 11.94,94.79031 -18.0349,140.07316 L 245.92029,1844.832 161.31739,1921.7588 1060.5637,125.61959 z"
|
||||
style="fill:url(#linearGradient3806);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="rect3781-0-9"
|
||||
d="m 1147.188,1083.1536 -50.1671,40.0537 -52.7887,-888.7261 c -4.0533,-47.4341 -6.2416,-43.17076 -6.5492,-68.17004 l 25.1004,-48.95208 84.4046,965.79452 z"
|
||||
style="fill:url(#linearGradient3967);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2828-4"
|
||||
d="M 1188.9362,1609.9939 1060.9788,123.94021 1963.9529,1926.2261 1188.9362,1609.9939 z"
|
||||
style="fill:url(#linearGradient3659);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="rect3781-9"
|
||||
d="m 1060.9071,120.07731 c 24.1749,30.04558 39.608,75.93991 48.9654,112.17843 l 179.3742,1415.10436 -98.4276,-38.4391 -129.912,-1488.84369 z"
|
||||
style="fill:url(#linearGradient3918);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2828-1"
|
||||
d="M 743.40929,1423.8349 1964.8794,1926.0085 158.92799,1925.81 743.40929,1423.8349 z"
|
||||
style="fill:url(#linearGradient3675);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="rect3781-0"
|
||||
d="m 1963.6891,1926.5277 -56.7139,-24.6169 -795.9854,-1603.05217 c -21.9472,-24.37845 -34.3449,-39.62306 -41.2192,-51.95192 -1.1264,-32.3188 -2.943,-61.0813 -9.9138,-126.2626 l 903.8323,1805.88359 z"
|
||||
style="fill:url(#linearGradient3828);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2828-4-7"
|
||||
d="m 745.26609,1425.0475 397.42281,-339.0381 55.3298,523.5716 -452.75261,-184.5335 z"
|
||||
style="fill:url(#linearGradient3721);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:4;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
inkscape:transform-center-y="624.859"
|
||||
inkscape:transform-center-x="758.12355"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="rect3781-8"
|
||||
d="m 742.72829,1426.2554 c 17.4821,6.7504 20.8419,8.2827 35.806,14.4205 -16.1593,13.8305 -69.88,86.4885 -91.4281,103.8499 l -428.4072,362.6992 -98.8195,18.3883 582.8488,-499.3579 z"
|
||||
style="fill:url(#linearGradient4106);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:transform-center-y="347.22075"
|
||||
inkscape:transform-center-x="-821.22079"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="rect3781-0-8-6"
|
||||
d="m 1962.8676,1925.4594 -68.0643,-1.0486 -1174.86681,-479.6332 23.5048,-18.7167 470.76241,191.9416 748.6639,307.4569 z"
|
||||
style="fill:url(#linearGradient4253);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="rect3781-0-8"
|
||||
d="m 159.98259,1925.4405 50.2958,-42.8864 1643.00831,0.1531 110.3276,42.727 -1803.63171,0.01 z"
|
||||
style="fill:url(#linearGradient3877);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:transform-center-y="369.96725"
|
||||
inkscape:transform-center-x="-887.51544"
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="rect3781-0-7"
|
||||
d="m 1199.8469,1610.9874 -2.1608,-22.3386 610.5884,235.1678 c 39.4555,18.7661 69.1058,27.2993 88.8249,43.327 12.6947,5.2081 34.7241,12.6345 46.1135,16.4736 13.9264,9.2219 11.5065,23.9583 20.3177,41.5431 l -763.6837,-314.1729 z"
|
||||
style="fill:url(#linearGradient4065);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path2831"
|
||||
d="m 1958.5868,1931.807 -1797.08691,-0.1258 c -11.0291,-1.2221 -8.5403,-6.713 -5.9958,-12.2215 L 1056.3839,119.97408 c 3.3139,-5.27718 6.2883,-4.43721 9.0861,-0.4108 l 900.8561,1799.43632 c 4.5781,9.1667 1.5811,13.1503 -7.7393,12.8074 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:12.19999981;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="rect3781-0-98"
|
||||
d="m 160.09059,1924.1505 25.5248,-54.5322 52.0681,-38.5691 899.32641,-780.8749 c 4.7998,18.518 1.8803,6.9336 6.1315,33.989 l -983.05081,839.9872 z"
|
||||
style="fill:url(#linearGradient4016);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
<path
|
||||
inkscape:transform-center-y="624.859"
|
||||
inkscape:transform-center-x="758.12355"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="rect3781-8-2"
|
||||
d="m 1141.0494,1090.571 c -7.8922,86.6075 -17.7158,81.5443 -53.2471,118.0205 l -263.40721,244.6992 -74.9445,-29.2367 391.59881,-333.483 z"
|
||||
style="fill:url(#linearGradient4196);fill-opacity:1;fill-rule:nonzero;stroke:none" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 17 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><style>.cls-7{fill:#63b2ff}.cls-2{fill:none}.cls-2,.cls-7{stroke:#fff;stroke-miterlimit:10}.cls-3{fill:#58595b}.cls-4{fill:#939598}</style></defs><path transform="rotate(-8.8 30.61 35.43)" fill="#63b2ff" d="M3.62 14.95h54v41h-54z"/><path class="cls-2" d="M10 58L4 20M15 46l-2-13M47 41l-2-13M58 49L8 57M58 47.04l-50 8M51 13l6 38M3 22l51-8M10 37l40-7M12 44l39-7"/><path class="cls-3" d="M63.27 9.18c-2-.85-3.92-2.24-6.42-1.37a2.78 2.78 0 01-2.53-.89C52.79 4.18 50 3.48 47.48 3 36.22.88 31.55 6.65 30.34 7.74c.12.26.24.52.37.78a.61.61 0 000 .12c.68-.1 5.63-2.19 9.22.06 1.62 1 2.75 2.35 2.45 4.25a3.84 3.84 0 01-.09.44c-.06.2 0 .24-.06.45l.18.06 4.73 1.54c.07-.14.15-.35.23-.48 1.8-2.92 5.4-1.68 7.37.35 1.41 1.45 3 2 5 2.71 1.1.39 1.46-.22 1.6-.56.92-2.2 1.68-4.43 2.43-6.69a1.14 1.14 0 00-.5-1.59z"/><path class="cls-4" d="M63.27 10.33c-2-.86-3.92-2.25-6.42-1.38a2.78 2.78 0 01-2.53-.89C52.79 5.33 50 4.62 47.48 4.14 37.15 2.2 32.37 6.89 30.71 8.52a.61.61 0 000 .12c.68-.1 5.63-2.19 9.22.06 1.62 1 2.75 2.35 2.45 4.25a3.32 3.32 0 010 .95l4.73 1.54c.07-.14.15-.35.23-.48 1.8-2.92 5.4-1.68 7.37.35 1.41 1.45 3 2 5 2.71 1.1.39 1.46-.22 1.6-.56.92-2.2 1.68-4.43 2.43-6.69a1.07 1.07 0 00-.47-.44z"/><path class="cls-4" d="M42.34 13.49l-5.22 13.64 4.46 1.76 5.72-13.7-4.96-1.7z"/><path fill="#a7a9ac" d="M37.7 28.25l5.64-14.53 3.04 1.09-6.12 14.96-2.56-1.52z"/><path class="cls-3" d="M42.3 13.44l-.44 1.33c.37-1 4.49.31 5 1.56l.53-1.25c.36-1.02-4.69-2.66-5.09-1.64z"/><path d="M41.73 28.61l-11 31a2 2 0 01-2.59 1.13l-2.83-1.1a2 2 0 01-1.14-2.59L37.09 27c.14-.37.82-.4 1.63-.24C40.16 27 42 28 41.73 28.61z"/><path d="M41.73 28.61l-11 31a2 2 0 01-1.11 1.11l-2.83-1.1A2 2 0 0125.65 57l12.89-30a.39.39 0 01.18-.2c1.44.2 3.28 1.2 3.01 1.81z" fill="#231f20"/><path class="cls-7" d="M29.8 22.76l-.61-.24a2.63 2.63 0 00-3.4 1.5L18 44v7l6-5 7.3-19.84a2.63 2.63 0 00-1.5-3.4zM25.33 25.28l5.5 2.11M18.06 43.67l5.72 2.5"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB |
Reference in New Issue
Block a user