Revert "update changes from https://git.crafterpika.cc/kittentm/splatnet"
This reverts commit d95fd63a48. Not sure what happened here to be honest.
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
*.pem
|
||||||
|
server.py
|
||||||
87
404.html
Normal file
|
|
@ -0,0 +1,87 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<title>SplatNet - Splatoon's multiplayer service hub</title>
|
||||||
|
|
||||||
|
<link rel="icon" href="/favicon.ico" />
|
||||||
|
<link rel="stylesheet" href="/styles.css" />
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.notfound {
|
||||||
|
margin-top: 40px;
|
||||||
|
background: rgba(0, 0, 0, 0.85);
|
||||||
|
border-radius: 18px;
|
||||||
|
padding: 32px 40px;
|
||||||
|
text-align: center;
|
||||||
|
max-width: 600px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notfound h1 {
|
||||||
|
font-family: "Splatoon1";
|
||||||
|
font-size: 96px;
|
||||||
|
margin: 0;
|
||||||
|
color: #ff4fd8;
|
||||||
|
letter-spacing: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notfound h2 {
|
||||||
|
font-family: "Splatoon1";
|
||||||
|
font-size: 32px;
|
||||||
|
margin: 8px 0 16px;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notfound p {
|
||||||
|
font-family: "Regular";
|
||||||
|
font-size: 18px;
|
||||||
|
color: #ddd;
|
||||||
|
margin-bottom: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notfound a {
|
||||||
|
display: inline-block;
|
||||||
|
font-family: "Splatoon1";
|
||||||
|
font-size: 20px;
|
||||||
|
padding: 12px 28px;
|
||||||
|
background: #ff4fd8;
|
||||||
|
color: black;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 999px;
|
||||||
|
transition: transform 0.15s ease, background 0.15s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notfound a:hover {
|
||||||
|
background: #ff7ae6;
|
||||||
|
transform: scale(1.05);
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
background-image: url("/assets/friendlist.png");
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div id="header"></div>
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<div class="notfound">
|
||||||
|
<h1>404</h1>
|
||||||
|
<h2>Booyah…?</h2>
|
||||||
|
<p>
|
||||||
|
This page got splatted.<br />
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<a href="/">Return to somewhere safe</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
fetch("/header.html")
|
||||||
|
.then(res => res.text())
|
||||||
|
.then(html => {
|
||||||
|
document.getElementById("header").innerHTML = html;
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
BIN
Splatoon1.otf
Normal file
44
app/stages/index.html
Normal file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<div id="squid-container">
|
||||||
|
<canvas id="squid-canvas" width="1920" height="1080"></canvas>
|
||||||
|
</div>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<title>SplatNet - Splatoon's multiplayer service hub</title>
|
||||||
|
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
|
||||||
|
<link rel="stylesheet" href="../../styles.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="header-container"></div>
|
||||||
|
|
||||||
|
<div id="loading-overlay" class="loading-overlay">
|
||||||
|
<canvas id="loading-canvas" width="100" height="100"></canvas>
|
||||||
|
<div id="loading-text">Loading</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<img src="/assets/stageinfo.png" class="stage-info" alt="Stage Info" />
|
||||||
|
<div class="stage-info-text">
|
||||||
|
Use the stage information to guide your weapon strategy and battle strategy!
|
||||||
|
</div>
|
||||||
|
<div class="stages-container" id="stages-container"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
fetch("../../../header.html")
|
||||||
|
.then(res => res.text())
|
||||||
|
.then(html => {
|
||||||
|
document.getElementById("header-container").innerHTML = html;
|
||||||
|
})
|
||||||
|
.catch(err => console.error("Failed to load header:", err));
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script src="stages.js"></script>
|
||||||
|
</body>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
background-image: url("/assets/stage.png");
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</html>
|
||||||
241
app/stages/stages.js
Normal file
|
|
@ -0,0 +1,241 @@
|
||||||
|
const API_URL = "https://api.splatcord.ink/prod/s1rotations";
|
||||||
|
|
||||||
|
function stageNames(stages, lang = "en-US") {
|
||||||
|
return stages.map(s => s.translatedNames[lang]);
|
||||||
|
}
|
||||||
|
|
||||||
|
function stageImagePath(stageName) {
|
||||||
|
const firstWord = stageName
|
||||||
|
.split(" ")[0]
|
||||||
|
.toLowerCase()
|
||||||
|
.replace(/['.]/g, "");
|
||||||
|
return `/assets/stages/${firstWord}.png`;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function fetchRotations() {
|
||||||
|
try {
|
||||||
|
const res = await fetch(API_URL);
|
||||||
|
if (!res.ok) throw new Error(`HTTP error! status: ${res.status}`);
|
||||||
|
const data = await res.json();
|
||||||
|
const rotations = data?.pretendo?.rotations ?? {};
|
||||||
|
const now = new Date();
|
||||||
|
const timestamps = Object.keys(rotations).sort((a, b) => Number(a) - Number(b));
|
||||||
|
|
||||||
|
const result = [];
|
||||||
|
|
||||||
|
for (const ts of timestamps) {
|
||||||
|
const start = new Date(Number(ts));
|
||||||
|
const end = new Date(start.getTime() + 2 * 60 * 60 * 1000);
|
||||||
|
if (end < now) continue;
|
||||||
|
|
||||||
|
const r = rotations[ts];
|
||||||
|
|
||||||
|
result.push({
|
||||||
|
turf: stageNames(r.turfStages),
|
||||||
|
ranked: stageNames(r.rankedStages),
|
||||||
|
ranked_mode: r.rankedMode.replace(/([a-z])([A-Z])/g, "$1 $2"),
|
||||||
|
startTime: start,
|
||||||
|
endTime: end,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Failed to fetch rotations:", error);
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function animateLoadingCanvas() {
|
||||||
|
const canvas = document.getElementById("loading-canvas");
|
||||||
|
const loadingOverlay = document.getElementById("loading-overlay");
|
||||||
|
if (!canvas || !loadingOverlay) return;
|
||||||
|
const ctx = canvas.getContext("2d");
|
||||||
|
const image = new Image();
|
||||||
|
image.src = "/assets/loading.png";
|
||||||
|
const frameWidth = 100;
|
||||||
|
const frameHeight = 100;
|
||||||
|
const totalFrames = 17;
|
||||||
|
let currentFrame = 0;
|
||||||
|
let lastUpdateTime = 0;
|
||||||
|
let animationId;
|
||||||
|
image.onload = () => {
|
||||||
|
function animate(timestamp = 0) {
|
||||||
|
if (loadingOverlay.style.display === "none") {
|
||||||
|
cancelAnimationFrame(animationId);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!lastUpdateTime) lastUpdateTime = timestamp;
|
||||||
|
const elapsed = timestamp - lastUpdateTime;
|
||||||
|
if (elapsed > 50) {
|
||||||
|
ctx.clearRect(0, 0, canvas.width, canvas.height);
|
||||||
|
ctx.drawImage(
|
||||||
|
image,
|
||||||
|
0,
|
||||||
|
currentFrame * frameHeight,
|
||||||
|
frameWidth,
|
||||||
|
frameHeight,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
frameWidth,
|
||||||
|
frameHeight
|
||||||
|
);
|
||||||
|
currentFrame = (currentFrame + 1) % totalFrames;
|
||||||
|
lastUpdateTime = timestamp;
|
||||||
|
}
|
||||||
|
animationId = requestAnimationFrame(animate);
|
||||||
|
}
|
||||||
|
animationId = requestAnimationFrame(animate);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
//pain in the ass to implement. im proud of ts
|
||||||
|
const canvas = document.getElementById("squid-canvas");
|
||||||
|
const ctx = canvas.getContext("2d");
|
||||||
|
const frameWidth = 64;
|
||||||
|
const frameHeight = 64;
|
||||||
|
const totalFrames = 8;
|
||||||
|
const squidCount = 5;
|
||||||
|
const squids = [];
|
||||||
|
const canvasWidth = canvas.width;
|
||||||
|
const canvasHeight = canvas.height;
|
||||||
|
const titleYThreshold = 0;
|
||||||
|
|
||||||
|
function createSquid() {
|
||||||
|
return {
|
||||||
|
x: Math.random() * canvasWidth,
|
||||||
|
y: canvasHeight + Math.random() * 300,
|
||||||
|
currentFrame: Math.floor(Math.random() * totalFrames),
|
||||||
|
speed: 0.05 + Math.random() * 0.15,
|
||||||
|
lastFrameUpdate: 0
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
for (let i = 0; i < squidCount; i++) {
|
||||||
|
squids.push(createSquid());
|
||||||
|
}
|
||||||
|
|
||||||
|
let lastTimestamp = 0;
|
||||||
|
|
||||||
|
const image = new Image();
|
||||||
|
image.src = "/assets/squids.png";
|
||||||
|
|
||||||
|
image.onload = () => {
|
||||||
|
function animate(timestamp = 0) {
|
||||||
|
if (!lastTimestamp) lastTimestamp = timestamp;
|
||||||
|
const delta = timestamp - lastTimestamp;
|
||||||
|
|
||||||
|
ctx.clearRect(0, 0, canvasWidth, canvasHeight);
|
||||||
|
|
||||||
|
for (const squid of squids) {
|
||||||
|
squid.y -= squid.speed * delta;
|
||||||
|
|
||||||
|
if (squid.y + frameHeight < titleYThreshold) {
|
||||||
|
squid.x = Math.random() * canvasWidth;
|
||||||
|
squid.y = canvasHeight + Math.random() * 300;
|
||||||
|
squid.currentFrame = Math.floor(Math.random() * totalFrames);
|
||||||
|
squid.speed = 0.05 + Math.random() * 0.15;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (timestamp - squid.lastFrameUpdate > 100) {
|
||||||
|
squid.currentFrame = (squid.currentFrame + 1) % totalFrames;
|
||||||
|
squid.lastFrameUpdate = timestamp;
|
||||||
|
}
|
||||||
|
|
||||||
|
ctx.drawImage(
|
||||||
|
image,
|
||||||
|
squid.currentFrame * frameWidth,
|
||||||
|
0,
|
||||||
|
frameWidth,
|
||||||
|
frameHeight,
|
||||||
|
squid.x,
|
||||||
|
squid.y,
|
||||||
|
frameWidth,
|
||||||
|
frameHeight
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
lastTimestamp = timestamp;
|
||||||
|
requestAnimationFrame(animate);
|
||||||
|
}
|
||||||
|
requestAnimationFrame(animate);
|
||||||
|
};
|
||||||
|
|
||||||
|
async function renderStages() {
|
||||||
|
const loadingOverlay = document.getElementById("loading-overlay");
|
||||||
|
const container = document.getElementById("stages-container");
|
||||||
|
let rotations = [];
|
||||||
|
try {
|
||||||
|
rotations = await fetchRotations();
|
||||||
|
} catch (err) {
|
||||||
|
console.error("Error in renderStages:", err);
|
||||||
|
} finally {
|
||||||
|
loadingOverlay.style.display = "none";
|
||||||
|
}
|
||||||
|
if (!rotations.length) {
|
||||||
|
container.innerHTML = `<h2 class="error-message">Something went wrong! Try reloading the page. If this problem persists you may be ratelimited.</h2>`;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let html = "";
|
||||||
|
|
||||||
|
for (const rotation of rotations) {
|
||||||
|
const optionsDate = { day: "2-digit", month: "2-digit" };
|
||||||
|
const optionsTime = { hour: "numeric", minute: "2-digit", hour12: true };
|
||||||
|
const timeZone = "Europe/Paris";
|
||||||
|
const formattedTime = `${rotation.startTime.toLocaleDateString("en-GB", {
|
||||||
|
...optionsDate,
|
||||||
|
timeZone,
|
||||||
|
})} at ${rotation.startTime.toLocaleTimeString("en-GB", { ...optionsTime, timeZone })} (CEST) ~ ${rotation.endTime.toLocaleDateString("en-GB", {
|
||||||
|
...optionsDate,
|
||||||
|
timeZone,
|
||||||
|
})} at ${rotation.endTime.toLocaleTimeString("en-GB", { ...optionsTime, timeZone })} (CEST)`;
|
||||||
|
|
||||||
|
html += `
|
||||||
|
<div class="rotation-time">${formattedTime}</div>
|
||||||
|
|
||||||
|
<div class="stages-section">
|
||||||
|
<img class="mode-title" src="/assets/regular.svg" alt="Regular Battle">
|
||||||
|
<div class="mode-text">Regular Battle</div>
|
||||||
|
<div class="stages">
|
||||||
|
${rotation.turf
|
||||||
|
.map(
|
||||||
|
(name) => `
|
||||||
|
<div class="stage-tile">
|
||||||
|
<img src="${stageImagePath(name)}" alt="${name}">
|
||||||
|
<div class="stage-title">${name}</div>
|
||||||
|
</div>
|
||||||
|
`
|
||||||
|
)
|
||||||
|
.join("")}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="stages-section">
|
||||||
|
<img class="mode-title" src="/assets/ranked.svg" alt="Ranked Battle">
|
||||||
|
<div class="mode-text">Ranked Battle</div>
|
||||||
|
<div class="ranked-mode-labels">
|
||||||
|
<div class="battle-mode-text">Battle Mode</div>
|
||||||
|
<div class="ranked-mode-text">${rotation.ranked_mode}</div>
|
||||||
|
</div>
|
||||||
|
<div class="stages">
|
||||||
|
${rotation.ranked
|
||||||
|
.map(
|
||||||
|
(name) => `
|
||||||
|
<div class="stage-tile">
|
||||||
|
<img src="${stageImagePath(name)}" alt="${name}">
|
||||||
|
<div class="stage-title">${name}</div>
|
||||||
|
</div>
|
||||||
|
`
|
||||||
|
)
|
||||||
|
.join("")}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
container.innerHTML = html;
|
||||||
|
}
|
||||||
|
|
||||||
|
animateLoadingCanvas();
|
||||||
|
renderStages();
|
||||||
BIN
assets/SplatNetLogo.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 71 KiB |
|
After Width: | Height: | Size: 68 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 128 KiB |
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 70 KiB |
|
After Width: | Height: | Size: 72 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 102 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 235 KiB |
|
After Width: | Height: | Size: 262 KiB |
|
After Width: | Height: | Size: 205 KiB |
|
After Width: | Height: | Size: 519 KiB |
|
After Width: | Height: | Size: 505 KiB |
|
After Width: | Height: | Size: 432 KiB |
|
After Width: | Height: | Size: 92 KiB |
|
After Width: | Height: | Size: 95 KiB |
|
After Width: | Height: | Size: 83 KiB |
|
After Width: | Height: | Size: 199 KiB |
|
After Width: | Height: | Size: 192 KiB |
|
After Width: | Height: | Size: 176 KiB |
BIN
assets/friendlist.png
Normal file
|
After Width: | Height: | Size: 68 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 14 KiB |
BIN
assets/loading.png
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
assets/mb-thankyou.png
Normal file
|
After Width: | Height: | Size: 296 KiB |
19
assets/nnlogo.svg
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 16.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" width="18px" height="20px" viewBox="0 0 18 20" enable-background="new 0 0 18 20" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path fill="#FFFFFF" d="M0,7.613c0-0.399,0.337-0.722,0.754-0.722H2.67c0.171,0,0.298-0.078,0.456-0.186
|
||||||
|
c1.22-0.835,2.712-1.324,4.327-1.324c4.115,0,7.453,3.194,7.453,7.134v6.549c0,0.4-0.339,0.725-0.757,0.725h-2.428
|
||||||
|
c-0.419,0-0.759-0.324-0.759-0.725v-6.549c0-1.854-1.569-3.359-3.51-3.359c-1.939,0-3.51,1.505-3.51,3.359v6.549
|
||||||
|
c0,0.4-0.34,0.725-0.759,0.725H0.757C0.34,19.789,0,19.465,0,19.064V7.613z"/>
|
||||||
|
<path fill="#FFFFFF" d="M2.561,2.312c1.493-0.663,3.156-1.033,4.913-1.033c3.96,0,7.453,1.887,9.567,4.767
|
||||||
|
c0.176,0.238,0.508,0.288,0.743,0.114c0.235-0.178,0.286-0.511,0.111-0.749c-2.312-3.148-6.122-5.199-10.422-5.199
|
||||||
|
c-1.907,0-3.717,0.401-5.343,1.124C1.862,1.455,1.741,1.771,1.86,2.04C1.979,2.312,2.292,2.432,2.561,2.312"/>
|
||||||
|
<path fill="#FFFFFF" d="M15.45,7.653c-0.162,0-0.323-0.075-0.427-0.216c-1.734-2.346-4.563-3.748-7.57-3.748
|
||||||
|
c-1.344,0-2.64,0.269-3.851,0.799c-0.269,0.117-0.58-0.005-0.698-0.272c-0.116-0.269,0.006-0.58,0.274-0.697
|
||||||
|
C4.524,2.93,5.962,2.632,7.453,2.632c3.341,0,6.489,1.562,8.422,4.178c0.174,0.235,0.123,0.565-0.111,0.74
|
||||||
|
C15.668,7.62,15.558,7.653,15.45,7.653"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
BIN
assets/pc-thankyou.png
Normal file
|
After Width: | Height: | Size: 599 KiB |
82
assets/ranked.svg
Executable file
|
|
@ -0,0 +1,82 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 82 74" style="enable-background:new 0 0 82 74;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#FFFFFF;}
|
||||||
|
.st1{fill:#F54910;}
|
||||||
|
</style>
|
||||||
|
<g id="XMLID_42_">
|
||||||
|
<path id="XMLID_40_" d="M33.5,17.2c-3.4-2.1-5-5.1-3.3-6.4c1.3-1,3-3.2,3.1-5.9c0.1-2-1.3-4-1.3-4c-0.4,2.1-1.5,3.9-4.3,4.9
|
||||||
|
c-2.8,1.1-6.2,4.2-6.5,8c-0.4,3.9,0.8,5.7,1.6,7.4C25.7,20.8,35,18.1,33.5,17.2z"/>
|
||||||
|
<path id="XMLID_39_" d="M60.9,13.9c-0.4-3.9-3.8-6.9-6.5-8c-2.8-1.1-3.8-2.9-4.3-4.9c0,0-1.4,2-1.3,4c0.1,2.7,1.8,4.9,3.1,5.9
|
||||||
|
c1.7,1.3,0.1,4.3-3.3,6.4c-1.5,1,7.8,3.7,10.8,4.2C60.1,19.6,61.2,17.7,60.9,13.9z"/>
|
||||||
|
<path id="XMLID_38_" d="M8.3,30.7c0.5-2.6,3.6-4.2,5.5-4.1c-1.2-1.2-4.9-1.6-7-1.1c-3.5,0.8-6.4,3.7-6.7,8
|
||||||
|
c-0.4,6.3,4,9.9,10.5,11.7c6.3,1.8,6.9,3.7,6.9,3.7l4.2-15.9c0,0-1.5,1.4-6.1,2.3C10.3,36.2,7.8,33.3,8.3,30.7z"/>
|
||||||
|
<path id="XMLID_37_" d="M82,33.4c-0.3-4.3-3.2-7.1-6.7-8c-2.1-0.5-5.8-0.1-7,1.1c1.9,0,4.9,1.5,5.5,4.1c0.5,2.6-2,5.6-7.3,4.5
|
||||||
|
c-4.6-0.9-6.1-2.3-6.1-2.3l4.2,15.9c0,0,0.6-1.9,6.9-3.7C77.9,43.3,82.4,39.8,82,33.4z"/>
|
||||||
|
<path id="XMLID_36_" d="M23.8,52.6C19.4,47.8,14,49,10,52.2c-2.4,1.9-3.3,4.1-3.2,6.9c0.1,1.5,0.6,2.6,1.2,3.2
|
||||||
|
c0.6-2.3,1.5-3.8,3.6-4.6c2.8-1.1,5.9,2.4,8,6.3c2.8,5.4,8.5,6.8,14.1,4.2c8.1-3.7,7.2-12.4,7.2-12.4
|
||||||
|
C36.1,59.1,31.3,60.6,23.8,52.6z"/>
|
||||||
|
<path id="XMLID_35_" d="M72,52.2c-4-3.2-9.3-4.4-13.8,0.4c-7.5,8.1-12.3,6.5-17.2,3.3c0,0-0.9,8.7,7.2,12.4
|
||||||
|
c5.6,2.6,11.2,1.1,14.1-4.2c2-3.9,5.2-7.3,8-6.3c2.1,0.8,3,2.3,3.6,4.6c0.6-0.7,1.2-1.7,1.2-3.2C75.3,56.3,74.3,54.1,72,52.2z"/>
|
||||||
|
<g id="XMLID_67_">
|
||||||
|
<path id="XMLID_34_" d="M41,72.8L40.2,72c-2.4-2.3-5.4-3.8-8.6-5.4c-5.5-2.7-11.2-5.5-14.4-12.8c-3-6.7-2.6-12.5-2.1-19.3
|
||||||
|
c0.3-4,0.6-8.6,0.2-13.9l-0.1-1.3l1.3,0.1c0.7,0,1.3,0.1,2,0.1c7.8,0,14.3-3.3,21.7-10.6L41,8l0.8,0.8
|
||||||
|
c7.4,7.3,13.9,10.6,21.7,10.6c0.6,0,1.3,0,2-0.1l1.3-0.1l-0.1,1.3c-0.4,5.3-0.1,9.9,0.2,13.9c0.5,6.7,0.9,12.5-2.1,19.3
|
||||||
|
c-3.3,7.3-8.9,10.1-14.4,12.8c-3.2,1.6-6.2,3.1-8.6,5.4L41,72.8z"/>
|
||||||
|
<path id="XMLID_68_" d="M41,73.1l-0.9-0.9c-2.4-2.3-5.4-3.8-8.5-5.3C26,64.1,20.3,61.3,17,53.9c-3-6.8-2.6-12.6-2.1-19.4
|
||||||
|
c0.3-4,0.6-8.6,0.2-13.9L15,19.1l1.5,0.1c0.7,0,1.3,0.1,1.9,0.1c7.6,0,14.1-3.2,21.6-10.6L41,7.8l0.9,0.9
|
||||||
|
c7.5,7.4,14,10.6,21.6,10.6c0.6,0,1.3,0,2-0.1l1.5-0.1l-0.1,1.6c-0.4,5.3-0.1,9.9,0.2,13.9c0.5,6.8,0.9,12.6-2.1,19.4
|
||||||
|
c-3.3,7.4-9,10.2-14.5,12.9c-3.2,1.6-6.2,3.1-8.5,5.3L41,73.1z M15.4,19.5l0.1,1.1c0.4,5.3,0.1,9.9-0.2,14
|
||||||
|
c-0.5,6.7-0.9,12.5,2.1,19.2c3.2,7.2,8.9,10,14.3,12.7c3.2,1.6,6.2,3.1,8.6,5.4l0.6,0.6l0.6-0.6c2.4-2.3,5.4-3.8,8.6-5.4
|
||||||
|
c5.5-2.7,11.1-5.5,14.3-12.7c3-6.7,2.6-12.5,2.1-19.2c-0.3-4-0.6-8.6-0.2-14l0.1-1.1l-1.1,0.1c-0.7,0-1.3,0.1-2,0.1
|
||||||
|
c-7.7,0-14.3-3.2-21.9-10.7L41,8.3L40.3,9c-7.6,7.5-14.1,10.7-21.9,10.7c-0.6,0-1.3,0-2-0.1L15.4,19.5z"/>
|
||||||
|
</g>
|
||||||
|
<path id="XMLID_31_" class="st0" d="M17.9,22.3c0.3,4.8,0,8.9-0.3,12.6c-0.5,6.5-0.8,11.6,1.9,17.7c2.9,6.4,8.1,8.9,13.2,11.4
|
||||||
|
c2.9,1.4,5.8,2.8,8.3,4.9c2.5-2.1,5.4-3.5,8.3-4.9c5.1-2.5,10.3-5,13.2-11.4c2.7-6,2.4-11.2,1.9-17.7c-0.3-3.7-0.6-7.8-0.3-12.6
|
||||||
|
c-0.3,0-0.5,0-0.8,0c-8.1,0-14.8-3-22.3-10.1c-7.5,7.1-14.2,10.1-22.3,10.1h0C18.4,22.3,18.1,22.3,17.9,22.3z"/>
|
||||||
|
<path id="XMLID_63_" d="M41,17.8c3.9,3.9,11.6,7.9,19.8,8.2c-0.3,8,2,15.4-0.1,22C57.4,58.8,49.6,59.3,41,64.5
|
||||||
|
c-8.6-5.1-16.4-5.7-19.7-16.4c-2-6.7,0.2-14-0.1-22C29.4,25.7,37.1,21.7,41,17.8 M41,15.3l-1,1c-3.6,3.7-10.8,7.6-18.5,7.9L20,24.3
|
||||||
|
l0.1,1.5c0.1,3-0.1,6-0.4,8.9c-0.4,4.9-0.8,9.4,0.5,13.9c2.6,8.8,8.1,11.5,13.9,14.3c2,1,4,2,6.1,3.3l0.7,0.5l0.7-0.5
|
||||||
|
c2.1-1.3,4.2-2.3,6.1-3.3c5.8-2.8,11.3-5.5,13.9-14.3c1.3-4.5,0.9-9.1,0.5-13.9c-0.2-2.9-0.5-5.8-0.4-8.9l0.1-1.5l-1.4-0.1
|
||||||
|
C52.8,24,45.7,20.1,42,16.4L41,15.3L41,15.3z"/>
|
||||||
|
<path id="XMLID_28_" class="st1" d="M60.7,48c2-6.7-0.2-14,0.1-22C52.6,25.7,45,21.7,41,17.8v46.7C49.6,59.3,57.4,58.8,60.7,48z"/>
|
||||||
|
<g id="XMLID_51_">
|
||||||
|
<path id="XMLID_27_" d="M37.2,59.5c1.3,1,2.5,2.2,3.8,3.8c1.3-1.6,2.5-2.8,3.8-3.8c-1.2-0.3-2.5-0.6-3.8-1
|
||||||
|
C39.7,58.9,38.4,59.3,37.2,59.5z"/>
|
||||||
|
<path id="XMLID_26_" d="M35.7,55.9c-0.9-0.5-1.8-1.1-2.6-1.8c0,0,0,0.1-0.1,0.1c-0.7,0.2-1.5,0.4-2.5,0.4c-0.4,0-0.9,0-1.4-0.1
|
||||||
|
c0.5,1.1,1.2,1.5,2.1,1.7c0.5,0.1,1,0.2,1.6,0.2C33.7,56.3,34.7,56.2,35.7,55.9z"/>
|
||||||
|
<path id="XMLID_25_" d="M32.8,53.9c-0.9-0.7-1.7-1.4-2.5-2.2c-1.3,0-2.6-0.1-4-0.4c0.3,1.3,0.9,1.7,1.8,2.1
|
||||||
|
C29.3,53.9,31,54.1,32.8,53.9z"/>
|
||||||
|
<path id="XMLID_24_" d="M36,56.1c-0.9,0.5-2,0.9-3.4,0.9c-0.4,0-0.8,0-1.1-0.1c0.8,1.6,4.1,2.1,8.2,1C38.5,57.4,37.3,56.8,36,56.1
|
||||||
|
z"/>
|
||||||
|
<path id="XMLID_23_" d="M29.9,42.3c0,0,2.3-0.1,4.2-0.8c0,0-4.1-1.6-9.2-8.2c-1.5,4.2-2.2,7.3-1.2,13.5c0.7-0.6,2.4-2.7,2.4-2.7
|
||||||
|
C33.3,58,48.7,60.5,50.6,56.9C50.2,57,49.8,57,49.4,57c-1.3-0.1-2.6-0.5-3.5-0.9c-0.1,0-0.1-0.1-0.1-0.2c0-0.1,0.1-0.1,0.2-0.1
|
||||||
|
c1.1,0.3,2.2,0.5,3.3,0.5c0.6,0,1.1-0.1,1.6-0.2c0.9-0.2,1.5-0.5,2.1-1.7c-0.5,0.1-0.9,0.1-1.4,0.1c-1,0-1.8-0.2-2.5-0.4
|
||||||
|
C49,54.2,49,54.1,49,54c0-0.1,0.1-0.1,0.2-0.1c1.8,0.2,3.5,0,4.8-0.5c0.8-0.3,1.4-0.8,1.8-2.1C44.6,53.3,32.6,47,29.9,42.3z"/>
|
||||||
|
<path id="XMLID_54_" d="M38.3,36.2L38.3,36.2c0.8,0,1.2,0.3,1.2,1.1c-0.1,5-1.6,7.3-3.6,9.1c1.1,1,3.3,1.7,5.2,2.3
|
||||||
|
c1.9-0.6,4.1-1.3,5.2-2.3c-2.1-1.7-3.5-4.1-3.6-9.1c0-0.8,0.4-1.1,1.2-1.1h0c2.1,0,3.4-0.7,3.4-2.4v-1.1l-4.6,0.6
|
||||||
|
c0-0.3,0-1.2,0-1.4c2.3-0.7,4-2.8,4-5.3c0-3.1-2.5-5.6-5.6-5.6c-3.1,0-5.6,2.5-5.6,5.6c0,2.5,1.7,4.7,4,5.3c0,0.3,0,1.1,0,1.4
|
||||||
|
l-4.6-0.6v1.1C34.9,35.6,36.2,36.2,38.3,36.2z M41,24.5c1.2,0,2.1,0.9,2.1,2.1c0,1.2-0.9,2.1-2.1,2.1c-1.2,0-2.1-0.9-2.1-2.1
|
||||||
|
C38.9,25.4,39.8,24.5,41,24.5z"/>
|
||||||
|
<g id="XMLID_52_">
|
||||||
|
<path id="XMLID_20_" d="M57.1,33.3c-4.8,6.4-9.2,8.2-9.2,8.2c2,0.7,4.2,0.8,4.2,0.8c-1.4,2.3-5,5-9.7,7c2.7,0.9,5.6,1.5,8.6,1.6
|
||||||
|
c1.8-1.9,3.5-4.1,4.9-6.8c0,0,1.7,2.1,2.4,2.7C59.4,42.3,58.6,37.5,57.1,33.3z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="XMLID_47_">
|
||||||
|
<g id="XMLID_48_">
|
||||||
|
<rect id="XMLID_19_" x="54.4" y="26.8" width="1.7" height="3.4"/>
|
||||||
|
<polygon id="XMLID_18_" points="49.5,26.8 50.9,26.8 50.9,28 53.4,28 53.4,30.9 56,30.9 56,33.2 52.1,33.2 52.1,30.2 50.9,30.2
|
||||||
|
50.9,33.2 49.5,33.2 "/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="XMLID_43_">
|
||||||
|
<g id="XMLID_44_">
|
||||||
|
<polygon id="XMLID_17_" points="28.8,26.8 32.4,26.8 32.4,33.2 30.9,33.2 30.9,29.2 28.8,29.2 "/>
|
||||||
|
<polygon id="XMLID_16_" points="25.9,26.8 27.4,26.8 27.4,30.5 29.5,30.5 29.5,33.2 25.9,33.2 "/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.3 KiB |
38
assets/regular.svg
Executable file
|
|
@ -0,0 +1,38 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 82 74" style="enable-background:new 0 0 82 74;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#D6DC00;}
|
||||||
|
.st1{fill:#FFFFFF;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<path d="M82,0.3L42.3,10.9l5.9,5.9L8.5,56.4l17.3,17.3l39.7-39.7l5.9,5.9L82,0.3L82,0.3z M77.5,4.8l-7.8,29.1l-4.2-4.2L25.8,69.2
|
||||||
|
L23,66.4l11.6-11.6l-2.1-2.1L20.9,64.3L18,61.4l11.6-11.6l-2.1-2.1L15.9,59.3L13,56.4l39.7-39.7l-4.2-4.2L77.5,4.8L77.5,4.8z"/>
|
||||||
|
<polygon id="XMLID_13_" class="st0" points="77.5,4.8 69.7,33.8 65.5,29.6 25.8,69.2 23,66.4 34.6,54.7 32.5,52.6 20.9,64.3
|
||||||
|
18,61.4 29.6,49.8 27.5,47.7 15.9,59.3 13,56.4 52.7,16.8 48.4,12.5 77.5,4.8 "/>
|
||||||
|
<path d="M0,0.3L10.6,40l5.9-5.9l39.7,39.7l17.3-17.3L33.8,16.8l5.9-5.9L0,0.3L0,0.3z M4.5,4.8l29.1,7.8l-4.2,4.2L69,56.4l-2.9,2.9
|
||||||
|
L54.5,47.7l-2.1,2.1L64,61.4l-2.9,2.9L49.5,52.6l-2.1,2.1L59,66.4l-2.9,2.9L16.5,29.6l-4.2,4.2L4.5,4.8L4.5,4.8z"/>
|
||||||
|
<polygon id="XMLID_10_" class="st1" points="4.5,4.8 33.6,12.5 29.3,16.8 69,56.4 66.1,59.3 54.5,47.7 52.4,49.8 64,61.4
|
||||||
|
61.1,64.3 49.5,52.6 47.4,54.7 59,66.4 56.2,69.2 16.5,29.6 12.3,33.8 4.5,4.8 "/>
|
||||||
|
<path d="M61.3,37c-5.6-3.5-14.5,8-20.2,8c-5.7,0-14.6-11.5-20.2-8c-5.6,3.5-0.2,17.2,10.1,18.8c10.3,1.6,6.4-7,10.1-7
|
||||||
|
c3.7,0-0.2,8.7,10.1,7C61.5,54.2,66.9,40.5,61.3,37z M37.4,50.2c-2.5,2.8-5.9,3.3-9.6,1.4c-3.7-1.9-5-6.1-3.3-9.5
|
||||||
|
c1-2,2.7-2.1,4.6-1.5c-0.6,0.1-1.1,0.4-1.4,1.1c-1.1,2.1-0.1,4.8,2.4,6.1c2.5,1.3,4.8,1.1,6.4-0.7c0.6-0.7,0.7-1.4,0.5-2
|
||||||
|
C38.6,46.7,39,48.4,37.4,50.2z M54.2,51.6c-3.7,1.9-7.1,1.5-9.6-1.4c-1.5-1.7-1.2-3.4,0.1-4.9c-0.1,0.6,0,1.2,0.6,1.8
|
||||||
|
c1.6,1.8,3.9,1.9,6.4,0.7c2.5-1.3,3.5-4,2.4-6.1c-0.3-0.7-0.8-1-1.3-1.1c2-0.7,3.6-0.6,4.7,1.5C59.2,45.5,57.9,49.7,54.2,51.6z
|
||||||
|
M48.7,42.5c0.7-0.3,1.3-0.7,2-1c0.3,0.1,0.5,0.3,0.7,0.7c0.6,1.2,0.3,2.8-0.9,3.4c-1.2,0.6-2.4,0.4-3.2-0.7
|
||||||
|
c-0.4-0.5-0.4-0.9-0.3-1.3C47.4,43.2,48,42.8,48.7,42.5z M33.3,42.5c0.6,0.3,1.3,0.7,1.8,1.1c0.1,0.4,0.1,0.8-0.3,1.3
|
||||||
|
c-0.9,1.1-2,1.3-3.2,0.7c-1.2-0.6-1.6-2.1-0.9-3.4c0.2-0.4,0.4-0.6,0.7-0.7C32,41.8,32.7,42.1,33.3,42.5z"/>
|
||||||
|
<g>
|
||||||
|
<path id="XMLID_4_" class="st1" d="M37.4,50.2c-2.5,2.8-5.9,3.3-9.6,1.4c-3.7-1.9-5-6.1-3.3-9.5c1-2,2.7-2.1,4.6-1.5
|
||||||
|
c-0.6,0.1-1.1,0.4-1.4,1.1c-1.1,2.1-0.1,4.8,2.4,6.1c2.5,1.3,4.8,1.1,6.4-0.7c0.6-0.7,0.7-1.4,0.5-2C38.6,46.7,39,48.4,37.4,50.2z
|
||||||
|
"/>
|
||||||
|
<path id="XMLID_3_" class="st1" d="M54.2,51.6c-3.7,1.9-7.1,1.5-9.6-1.4c-1.5-1.7-1.2-3.4,0.1-4.9c-0.1,0.6,0,1.2,0.6,1.8
|
||||||
|
c1.6,1.8,3.9,1.9,6.4,0.7c2.5-1.3,3.5-4,2.4-6.1c-0.3-0.7-0.8-1-1.3-1.1c2-0.7,3.6-0.6,4.7,1.5C59.2,45.5,57.9,49.7,54.2,51.6z"/>
|
||||||
|
<path id="XMLID_2_" class="st1" d="M48.7,42.5c0.7-0.3,1.3-0.7,2-1c0.3,0.1,0.5,0.3,0.7,0.7c0.6,1.2,0.3,2.8-0.9,3.4
|
||||||
|
c-1.2,0.6-2.4,0.4-3.2-0.7c-0.4-0.5-0.4-0.9-0.3-1.3C47.4,43.2,48,42.8,48.7,42.5z"/>
|
||||||
|
<path id="XMLID_1_" class="st1" d="M33.3,42.5c0.6,0.3,1.3,0.7,1.8,1.1c0.1,0.4,0.1,0.8-0.3,1.3c-0.9,1.1-2,1.3-3.2,0.7
|
||||||
|
c-1.2-0.6-1.6-2.1-0.9-3.4c0.2-0.4,0.4-0.6,0.7-0.7C32,41.8,32.7,42.1,33.3,42.5z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.1 KiB |
BIN
assets/special_SplatNetLogo.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
assets/squids.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
assets/stage.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
assets/stageinfo.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
assets/stages/ancho-v.png
Normal file
|
After Width: | Height: | Size: 258 KiB |
BIN
assets/stages/arowana.png
Normal file
|
After Width: | Height: | Size: 236 KiB |
BIN
assets/stages/blackbelly.png
Normal file
|
After Width: | Height: | Size: 246 KiB |
BIN
assets/stages/bluefin.png
Normal file
|
After Width: | Height: | Size: 272 KiB |
BIN
assets/stages/camp.png
Normal file
|
After Width: | Height: | Size: 274 KiB |
BIN
assets/stages/flounder.png
Normal file
|
After Width: | Height: | Size: 245 KiB |
BIN
assets/stages/hammerhead.png
Normal file
|
After Width: | Height: | Size: 204 KiB |
BIN
assets/stages/kelp.png
Normal file
|
After Width: | Height: | Size: 267 KiB |
BIN
assets/stages/mahi-mahi.png
Normal file
|
After Width: | Height: | Size: 257 KiB |
BIN
assets/stages/moray.png
Normal file
|
After Width: | Height: | Size: 251 KiB |
BIN
assets/stages/museum.png
Normal file
|
After Width: | Height: | Size: 241 KiB |
BIN
assets/stages/piranha.png
Normal file
|
After Width: | Height: | Size: 235 KiB |
BIN
assets/stages/port.png
Normal file
|
After Width: | Height: | Size: 261 KiB |
BIN
assets/stages/saltspray.png
Normal file
|
After Width: | Height: | Size: 223 KiB |
BIN
assets/stages/urchin.png
Normal file
|
After Width: | Height: | Size: 232 KiB |
BIN
assets/stages/walleye.png
Normal file
|
After Width: | Height: | Size: 231 KiB |
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 248 52" style="enable-background:new 0 0 248 52;" xml:space="preserve">
|
||||||
|
<polygon id="XMLID_1_" points="0,0 0,52 241.9,42.1 248,6.9 "/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 424 B |
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 248 52" style="enable-background:new 0 0 248 52;" xml:space="preserve">
|
||||||
|
<polygon id="XMLID_1_" points="0,0 0,52 241.9,42.1 248,6.9 "/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 424 B |
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 1024 18" style="enable-background:new 0 0 1024 18;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path id="XMLID_1_" d="M0,0v8.6c6.7,1,13.5,1.2,20,3.1c14.9,4.4,29.3,3.5,43.6-3.4C74.6,3,86,2.2,97.7,3.2
|
||||||
|
c11.7,1.1,23.5,1.9,35.2,1.3c15.7-0.8,31,0.9,46.1,6.7c17.9,6.8,36,9.3,54.4,3.7c13.4-4.1,26.9-4.7,40.5-2.5
|
||||||
|
c0.2,0.1,0.5,0.2,0.7,0.3c21,6.6,41.9,5.7,62.1-4.5c16.5-8.4,33-9.9,50.1-3.4c16.2,6.2,32.8,8,49.7,5.3c3.6-0.6,7.3-1.2,11-1.5
|
||||||
|
c0-0.2,0.1,0.2,0.1,0c6.9,1.1,14,1.2,20.8,3.2c14.9,4.4,29.3,3.5,43.6-3.4c11-5.4,22.4-6.2,34.1-5.1c11.7,1.1,23.5,1.9,35.2,1.3
|
||||||
|
c15.7-0.8,31,0.9,46.1,6.7c17.9,6.8,36,9.3,54.4,3.7c13.2-4.1,26.5-4.6,39.9-2.6c0.3,0.1,0.7,0.2,1,0.3c21,6.6,41.9,5.7,62.1-4.5
|
||||||
|
c16.5-8.4,33-9.9,50.1-3.4c16.2,6.2,32.8,8,49.7,5.3c3.6-0.6,7.3-1.2,11-1.5c0-0.2,0.1,0.2,0.1,0c6.9,1.1,14,1.2,20.8,3.2
|
||||||
|
c14.9,4.4,29.3,3.5,43.6-3.4c11-5.4,22.4-6.2,34.1-5.1c9.9,0.9,19.9,1.6,29.9,1.4V0H0z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
|
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 300 24" style="enable-background:new 0 0 300 24;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path id="XMLID_1_" d="M0,16c11.7-1.9,23.3-4,34.6-6.1c27-5.1,78.3,3,106.7,4.9c13.7,0.9,27.8-0.6,41.4,1.7
|
||||||
|
C261.5,29.6,276.5,18.4,300,0H0V16z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 516 B |
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 38 800" style="enable-background:new 0 0 38 800;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path id="XMLID_1_" d="M0,800c26.6-20.9,22.4-69.8,19.3-86.1c-4.7-24.5-15.5-50.2-7-74.7c5.5-16,9.1-46.6,15.8-62.4
|
||||||
|
c12-28.3,14.3-56.6,0.2-84.8c-20.5-41-22.8-82.5-13.4-124.5c5.9-26.5,4.7-52.7-6.3-78.7c-8.7-20.7-9.9-41.4,0.1-62.1
|
||||||
|
c13.8-28.5,13.4-57.1,0.8-85.7C-1.2,116.7-1.8,92.2,6.2,67.5c3.4-10.5,4.4-20,4.4-32.2S0,0,0,0V800z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 701 B |
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 40 28" style="enable-background:new 0 0 40 28;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#DAE000;}
|
||||||
|
</style>
|
||||||
|
<path class="st0" d="M26.8,27.1V22C23.4,22.1,2.3,22.2,0,22.2c0-2.3,0-4.1,0-4.1c5-0.2,6.6-0.2,6.6-0.2c0-0.4,0-0.9,0-1.4
|
||||||
|
c-1.1,0-4.3,0.1-6.6,0c0-2.2,0-4,0-4c5-0.2,6.6-0.2,6.6-0.2c0-0.5,0-1,0-1.4c-1,0-4.3,0-6.6,0c0-2.2,0-4,0-4
|
||||||
|
c22-0.9,26.8-0.9,26.8-0.9v-5L40,14L26.8,27.1z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 688 B |
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 40 28" style="enable-background:new 0 0 40 28;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#DAE000;}
|
||||||
|
</style>
|
||||||
|
<path id="XMLID_3_" class="st0" d="M0,14L13.2,0.9v5c0,0,4.8,0,26.8,0.9c0,0,0,1.8,0,4c-2.4,0-5.6,0-6.6,0c0,0.5,0,1,0,1.4
|
||||||
|
c0,0,1.6,0,6.6,0.2c0,0,0,1.8,0,4c-2.3,0.1-5.6,0-6.6,0c0,0.5,0,1,0,1.4c0,0,1.6,0,6.6,0.2c0,0,0,1.8,0,4.1
|
||||||
|
c-2.3,0-23.4-0.1-26.8-0.2v5.1L0,14z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 678 B |
|
|
@ -0,0 +1,92 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 192 126" style="enable-background:new 0 0 192 126;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#DDFF25;}
|
||||||
|
</style>
|
||||||
|
<g id="XMLID_81_">
|
||||||
|
<g id="XMLID_82_">
|
||||||
|
<path id="XMLID_83_" class="st0" d="M186,56.1c-1.1-0.8-2.6-1.2-4.2-1.2c-1.4,0-2.9,0.3-4.4,0.9c-2.9,1.1-5.6,1.6-7.8,1.6
|
||||||
|
c-2.2,0-4.1-0.5-5.6-1.5c-1.2-0.8-2.6-2.6-2-4.1c0.3-0.6,1-1.4,3-1.6c2.1-0.3,2.8-1.1,2.7-1.6c-0.1-0.5-0.7-1-1.9-1
|
||||||
|
c-0.9,0-1.9,0.3-3,0.8c-0.5,0.2-1,0.3-1.5,0.3c-1.2,0-2.3-0.7-2.4-1.5c-0.1-0.6,0.5-1.4,2.2-1.6c3.6-0.4,8.2-2,9-3.4
|
||||||
|
c0.2-0.5,0.1-0.9-0.4-1.3c-0.6-0.5-1.1-0.7-1.8-0.7c-1.3,0-2.9,1-4.5,1.9c-1.3,0.8-2.5,1.5-3.8,1.8c-0.6,0.1-1.2,0.2-1.8,0.2
|
||||||
|
c-1.3,0-2.5-0.3-3.1-0.9c-0.5-0.4-0.9-1.1-0.4-2.3c1.3-3.3,9.6-6,14.6-7.7c1.1-0.4,2.1-0.7,2.8-1c1.5-0.6,2.2-1.3,2-1.9
|
||||||
|
c-0.3-0.7-1.5-1.2-2.6-1.2c-0.5,0-1.2,0.1-1.6,0.6c-2.1,2.4-11.3,6.8-16.8,8c-0.4,0.1-0.9,0.2-1.3,0.2c-1.1,0-2.2-0.4-2.8-1
|
||||||
|
c-0.6-0.6-0.6-1.5-0.1-2.2c0.9-1.3,2.3-1.8,3.6-2.2c1.4-0.5,2.6-0.9,3-2.1c0.2-0.5,0.1-1-0.3-1.4c-0.4-0.4-1.2-0.6-2-0.6
|
||||||
|
c-0.4,0-0.8,0-1.2,0.1c-1.6,0.3-2.1,0.9-2.8,1.7c-0.5,0.6-1.2,1.3-2.4,2c-0.6,0.3-1.4,0.5-2.4,0.5c-1.7,0-3.5-0.5-4.6-1.3
|
||||||
|
c-0.9-0.7-1.4-1.5-1.4-2.5c0.2-2.9,7.1-9.6,10.1-11.3c2-1.1,2.1-2.4,1.7-3.3c-0.3-0.6-1-1-1.7-1c-1.4,0-2.8,1.2-4,3.2
|
||||||
|
c-3.8,6.6-6.5,11-10.3,11c-0.6,0-1.2-0.1-1.8-0.3c-2.6-0.9-2-2.6-1.2-4.5l0.1-0.2c0.4-1,0.3-1.7-0.2-2.1c-0.4-0.4-1-0.4-1.5-0.4
|
||||||
|
c-1.3,0-2.8,0.6-3.7,1.4c-1.4,1.3-3.4,2-5.7,2c-2.4,0-4.7-0.8-5.8-2.1c-1.9-2.1,0.4-5.8,2.1-8.6l0.2-0.4c0.6-0.9,0.6-1.7,0-2.2
|
||||||
|
c-0.4-0.4-1-0.6-1.7-0.6c-0.6,0-1.1,0.2-1.5,0.4c-0.5,0.4-0.7,0.9-0.6,1.6c0.4,3.8,0,7.9-6.1,9.2c-1.2,0.3-2.4,0.4-3.5,0.4
|
||||||
|
c-2.4,0-3.8-0.7-4.5-1.3c-1.1-0.8-1.6-2-1.3-3.1c0.1-0.6-0.1-1.2-0.7-1.6c-0.7-0.5-1.7-0.8-2.7-0.8c-0.9,0-1.7,0.2-2.3,0.6
|
||||||
|
c-0.7,0.5-1,1.2-1,2c0.1,3.6-3.1,4.6-5.9,5.1c-0.9,0.2-1.9,0.2-2.8,0.2c-3.4,0-5.4-1.1-5.7-3c-0.3-2-1.1-3.3-2.1-3.3
|
||||||
|
c-0.1,0-0.2,0-0.3,0c-0.9,0.2-0.9,0.7-0.3,2.4c0.1,0.3,0.2,0.7,0.4,1.1c0.4,1.4,1.2,4.4-2.9,5.4c-0.8,0.2-1.4,0.3-2,0.3
|
||||||
|
c-2.5,0-3.8-1.5-5.2-4.2c-1.4-2.6-3.6-6.9-7.9-6.9c-1.4,0-2.9,0.4-4.6,1.3c-2,1-3,2.5-3.1,4.3c-0.1,2.9,2.5,6.1,6.7,8.5
|
||||||
|
c2.7,1.5,2.8,3,2.7,3.8c-0.2,0.9-1,1.7-2.1,2.1c-0.5,0.1-0.9,0.2-1.4,0.2c-1.9,0-3.3-1.2-4.1-2.1c-2.7-2.8-5.2-4.2-7.3-4.2
|
||||||
|
c-0.4,0-0.9,0.1-1.3,0.2c-0.9,0.3-1.4,0.7-1.4,1.2c0,1.1,2.2,2.9,7,4.4c3.1,0.9,4.7,2.4,4.8,4.4c0,0.8-0.5,1.6-1.4,2.2
|
||||||
|
c-0.7,0.5-1.6,0.8-2.4,0.8c-0.8,0-1.9-0.2-2.7-1.3c-0.1-0.1-0.2-0.2-0.2-0.3c-1.1-1.4-2.5-3-5.2-3c-0.2,0-0.5,0-0.7,0
|
||||||
|
c-2.2,0.2-3.8,1.2-3.8,2.4c-0.1,1.3,1.5,2.9,6.3,3.7c1.6,0.3,2.6,0.8,3.1,1.7c0.9,1.5-0.3,3.5-1.2,4.5l-0.1,0.2
|
||||||
|
c-0.9,1-2.7,2.9-5.5,2.9c-0.6,0-1.2-0.1-1.8-0.3c-1-0.3-2.2-0.8-3.3-1.2c-1.7-0.7-3.5-1.4-4.5-1.4c-0.4,0-0.7,0.1-0.8,0.4
|
||||||
|
c-0.4,0.6-0.3,1.1,0.1,1.5c0.9,1,3.6,1.6,7.1,1.6c1.3,0,2.4,0.5,3.1,1.3c0.9,1.1,1,2.6,0.2,3.7c-0.7,0.9-1.5,1.4-2.7,1.4
|
||||||
|
c-0.9,0-1.8-0.3-2.7-0.6c-0.8-0.3-1.6-0.6-2.3-0.6c-0.5,0-0.9,0.1-1.3,0.4c-0.6,0.5-0.8,1.1-0.4,1.7c0.5,0.8,2.1,1.3,4.3,1.3
|
||||||
|
c0.2,0,0.5,0,0.7,0c0,0,0.1,0,0.1,0c1.3,0,2.1,0.9,2.1,1.7c0,0.8-0.8,1.7-2.6,1.7c-0.8,0-1.7-0.2-2.8-0.5
|
||||||
|
c-1.6-0.5-3.7-1.3-5.9-2.2c-4.4-1.7-9.9-3.8-13.5-4.5c-0.9-0.2-1.9-0.3-2.8-0.3c-4.2,0-7.3,1.8-7.7,3.4c-0.6,2.2,0.9,3.7,3.9,4.2
|
||||||
|
c1.2,0.2,2.4,0.3,3.6,0.3c1.7,0,3.3-0.2,4.9-0.4c1.6-0.2,3.2-0.4,4.9-0.4c1.4,0,2.8,0.1,4.1,0.4c3,0.6,3.3,1.4,3.2,1.8
|
||||||
|
c-0.1,0.5-0.8,0.9-1.8,0.9c-1.2,0-2.1,0.3-2.5,0.8c-0.4,0.5-0.1,1.2,0.7,1.8c0.5,0.4,1.2,0.6,2.3,0.6c1.7,0,4.1-0.5,7.5-1.3
|
||||||
|
c0.9-0.2,1.8-0.4,2.8-0.6c0.4-0.1,0.7-0.1,1.1-0.1c1.5,0,2.7,0.8,2.8,2c0.1,1.1-0.8,2.3-2.8,2.4c-1.3,0.1-3.1,0.2-5,0.4
|
||||||
|
c-3,0.2-6.2,0.5-7.7,0.5c-3.1,0.2-5.6,0.9-6.4,1.8c-0.3,0.3-0.3,0.7,0,1c0.5,0.8,1.4,1.2,2.7,1.2c1.2,0,2.7-0.3,4.3-1
|
||||||
|
c3-1.2,10.3-2.7,13.7-2.8c0.1,0,0.2,0,0.3,0c3.1,0,5.1,2.1,5.3,4c0.2,1.7-0.9,3-2.7,3.2c-0.3,0-0.5,0-0.8,0
|
||||||
|
c-0.7,0-1.4-0.1-2.2-0.2c-0.7-0.1-1.5-0.2-2.2-0.2c-1.1,0-1.9,0.2-2.5,0.6c-0.8,0.5-1.1,1.5-0.7,2.4c0.2,0.5,0.8,1.1,2.1,1.2
|
||||||
|
c0.5,0.1,1,0.1,1.4,0.1c1.5,0,2.2-0.4,3-0.8c0.7-0.4,1.6-0.8,3-0.9c0.1,0,0.2,0,0.3,0c2,0,3,0.7,3,1.5c0,0.9-1.2,1.9-3.7,2
|
||||||
|
c-3.2,0.2-5.7,0.8-6.4,1.6c-0.3,0.3-0.2,0.7,0.1,1.1c0.4,0.5,0.8,0.6,1.2,0.6c0.8,0,1.9-0.4,3-0.8c0.6-0.2,1.2-0.5,1.9-0.7
|
||||||
|
c0.6-0.2,1.2-0.3,1.9-0.3c2.3,0,3.9,1.1,4.5,2.2c0.5,0.9,0.5,1.8-0.1,2.6c-0.7,0.9-2,1.6-3.7,1.9c-0.7,0.1-1.8,0.3-3.1,0.5
|
||||||
|
c-3.5,0.5-8.3,1.1-10.5,2.2c-3.3,1.6-4.5,4-2.9,5.7c1.6,1.7,3.9,2.1,5.5,2.1c2.4,0,4.9-0.8,6.1-2c3.1-3.1,8-6.3,11.1-7.2
|
||||||
|
c0.4-0.1,0.9-0.2,1.3-0.2c2.1,0,4.2,1.4,4.5,2.7c0.2,0.7-0.2,1.3-1.2,1.6c-2,0.5-3.3,1.4-3.6,2.4c-0.2,0.7,0.1,1.5,1.1,2.1
|
||||||
|
c0.6,0.4,1.3,0.6,2,0.6c1.9,0,3.7-1,4.2-1.5c0.9-1,1.8-1.2,2.4-1.2c1,0,1.7,0.6,1.9,1.6c0.4,2-2.1,4.1-4.3,6
|
||||||
|
c-1.1,0.9-2.1,1.8-2.7,2.5c-0.8,1-0.4,1.7-0.1,2c0.4,0.5,1.2,0.8,1.9,0.8c0.5,0,1-0.2,1.4-0.5c2-1.6,3.1-4.1,4-6.3
|
||||||
|
c0.6-1.4,1.1-2.6,1.8-3.5c0.8-0.9,2.4-1.5,4.2-1.5c2,0,4.3,0.8,4.5,2.5c0.3,2.4,0.9,3,2.6,3c0.3,0,0.7,0,1.1-0.1
|
||||||
|
c0.2,0,0.3,0,0.5,0c0.7,0,1.4,0.2,1.9,0.6c2,1.7,1.2,6.3,0.9,7.4c-0.1,0.2-0.2,0.6-0.4,1c-0.6,1.7-2,5.2-0.6,6.5
|
||||||
|
c0.3,0.3,0.8,0.4,1.5,0.4c0.1,0,0.2,0,0.3,0c1-0.1,1.7-0.3,2.1-0.7c1.2-1.1,0.5-3.3-0.1-5.4c-0.2-0.8-0.5-1.6-0.6-2.4
|
||||||
|
c-0.5-3.1-0.3-4.8,0.6-5.5c0.3-0.3,0.8-0.4,1.3-0.4c0.1,0,0.1,0,0.2,0c0.9,0,1.8,0.2,2.4,0.7c0.7,0.5,1.6,1.5,1.5,3.6
|
||||||
|
c-0.1,1.8,0.6,2.7,1.2,3.1c0.4,0.3,1,0.5,1.6,0.5c0.1,0,0.2,0,0.4,0c0.5,0,0.9-0.3,1.2-0.6c0.6-0.8,0.5-1.9,0.1-2.3
|
||||||
|
c-0.8-1-2.3-4.2-1.1-6.3c0.9-1.5,3.1-2.6,5.5-2.6c1,0,1.9,0.2,2.7,0.6c1.4,0.6,1.9,1.6,2.4,2.4c0.7,1.2,1.2,2.1,3.8,2.1
|
||||||
|
c0,0,0.1,0,0.1,0c2.1,0,2.6-0.7,3.3-1.6c0.7-0.9,1.5-2,4.1-2.4c0.4-0.1,0.8-0.1,1.2-0.1c3.5,0,6.3,2.2,7.9,6.3c0.7,1.7,1.9,5,4,5
|
||||||
|
c0.2,0,0.4,0,0.6-0.1c0.9-0.2,1.5-0.5,1.7-0.9c0.5-0.9-0.2-2.5-2.1-5c-3.6-4.7-3.4-7.4,0.5-9.4c1.2-0.6,2.6-0.9,4-0.9
|
||||||
|
c3.3,0,6.3,1.6,7.3,3.8c0.6,1.3,1.8,2,3.2,2c1,0,1.9-0.4,2.3-1c0.4-0.7,0-1.6-1.3-2.5c-1.6-1.1-3.2-3.8-2.3-5.4
|
||||||
|
c0.3-0.5,1.1-1.1,2.7-1.1c0.1,0,0.1,0,0.2,0c4,0.1,7.7,3.8,10.1,6.3c0.4,0.4,0.8,0.8,1.2,1.2c0.2,0.2,0.5,0.4,0.7,0.7
|
||||||
|
c1.5,1.5,4.1,4,5.4,4c0.1,0,0.2,0,0.2,0c0.5-0.2,0.7-0.6,0.8-1c0.1-0.6-0.2-2.3-4.1-4.8c-0.6-0.4-1.2-0.7-1.8-1.1
|
||||||
|
c-5.8-3.6-10.2-6.5-10.2-8.3c0-0.4,0.2-0.7,0.6-1c0.4-0.3,0.9-0.4,1.4-0.4c2,0,3.9,2.1,4.6,3c0.9,1.1,2.3,1.9,3.5,1.9
|
||||||
|
c0.1,0,0.3,0,0.4,0c0.4-0.1,0.6-0.2,0.6-0.2c0.1-0.1-0.3-0.6-0.5-0.8c-0.4-0.5-1.1-1.3-0.2-1.7c0.4-0.2,0.9-0.3,1.4-0.3
|
||||||
|
c2.1,0,4.5,1.8,6.7,3.4l0.4,0.3c0.4,0.3,0.9,0.6,1.3,1c1.6,1.2,3.4,2.6,4.7,2.6c0.2,0,0.3,0,0.5-0.1c1-0.3,1.5-0.6,1.6-1.2
|
||||||
|
c0.1-0.9-1.2-2.6-5.2-4.3c-5.9-2.6-12.3-7.2-12.3-10.3c0-1.5,0.5-2.7,1.4-3.6c1.1-1,2.8-1.6,5-1.6c0.3,0,0.6,0,0.9,0
|
||||||
|
c1.6,0.1,3.2,0.7,5.2,1.3c2.5,0.9,5.3,1.9,9,2.2c0.3,0,0.6,0,0.8,0c2.6,0,3.7-1.1,3.9-2.1c0.2-1.2-0.8-2.7-3.6-3.2
|
||||||
|
c-2.8-0.5-5.1-0.7-7.1-0.9c-2.3-0.2-4.3-0.4-6.6-0.9c-1.4-0.4-2.4-1.1-2.8-2.3c-0.7-2,0.4-4.5,1.6-5.4c0.6-0.4,1.4-0.7,2.5-0.7
|
||||||
|
c2,0,4.4,0.7,7,1.4c0.4,0.1,0.8,0.2,1.3,0.2c1.9,0,3.4-1.1,3.4-2.1c0-0.8-1.1-1.2-2.9-1.2c-0.3,0-0.5,0-0.8,0
|
||||||
|
c-0.7,0-1.8,0.1-2.9,0.1c-4,0-6.3-0.7-6.9-2c-0.2-0.6-0.1-1.2,0.5-1.7c0.9-0.8,3-1.3,5.7-1.3c2.2,0,4.7,0.3,7.6,0.8
|
||||||
|
c1.4,0.3,2.8,0.4,4,0.4c5.9,0,7.5-3.2,7.5-4.9C188.1,58.4,187.3,57,186,56.1z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<path id="XMLID_80_" class="st0" d="M16.8,49.8c0.1,0,0.2,0,0.3,0c1.6,0,3.2-0.5,4.3-1.5c1.2-1,1.6-2.4,1.2-3.7
|
||||||
|
c-0.9-2.5-2.9-4.2-6.4-4.2c-0.8,0-1.6,0.1-2.3,0.4c-0.9,0.3-2,1.4-2.2,2.2c-0.6,2.1-0.2,3.9,1.3,5.2C14.2,49.3,14.4,49.7,16.8,49.8z
|
||||||
|
"/>
|
||||||
|
<path id="XMLID_79_" class="st0" d="M126.7,9.9h0.1c2.8,0,5-1.6,5.1-3.2c0.1-1.3,0-3.4-1.3-4.3c-1-0.7-2.8-1.4-4.2-1.4h0
|
||||||
|
c-3.9,0-5.4,1.6-5.5,4c0,1,0.4,2.6,1.5,3.4C123.6,9.1,125.1,9.8,126.7,9.9z"/>
|
||||||
|
<path id="XMLID_78_" class="st0" d="M181,116.7c-2,0-3.2,0.5-4.4,1.8c-1.1,1.3-0.2,3.8,1.6,4.6c1.1,0.4,1.1,0.7,2.4,0.7
|
||||||
|
c1.6,0,2.1-0.4,3.4-1.1c1-0.5,1.3-1.2,1.5-1.8c0.2-1.1-0.2-2.3-1.1-3.1C183.6,117.1,183,116.7,181,116.7z"/>
|
||||||
|
<path id="XMLID_77_" class="st0" d="M190.7,41.8c-0.8-0.6-1.3-0.7-2.6-0.7h0c-3.3,0-4.5,1.2-4.5,3.4c0,0.8,0.4,1.5,1.2,2
|
||||||
|
c0.8,0.6,2,0.9,3.3,0.9h0c2.7,0,3.8-1.7,3.8-3.4C192,43.2,191.5,42.4,190.7,41.8z"/>
|
||||||
|
<path id="XMLID_76_" class="st0" d="M71,10.4c0,0,0.1,0,0.1,0c1.9,0,3.2-1.3,3.2-3.4c0.1-2-1.2-3.2-3.4-3.3c-0.1,0-0.1,0-0.2,0
|
||||||
|
c-2.3,0-4,1.3-4,3C66.7,8.4,69,10.3,71,10.4z"/>
|
||||||
|
<path id="XMLID_75_" class="st0" d="M47.1,118.2c-0.1,0-0.1,0-0.2,0c-2.3,0-4,1.3-4,3c0,1.6,2.2,3.6,4.3,3.6c0,0,0.1,0,0.1,0
|
||||||
|
c1.9,0,3.2-1.3,3.2-3.4C50.7,119.5,49.4,118.3,47.1,118.2z"/>
|
||||||
|
<path id="XMLID_74_" class="st0" d="M154.9,9.4c0.2,0,0.5,0,0.7,0c1,0,1.2-0.2,2.4-0.7c0.9-0.3,1.2-1.1,1.4-1.6
|
||||||
|
c0.2-0.6,0-1.8-0.7-2.6c-0.9-0.9-1.3-1.3-2.8-1.3c-0.6,0-1.2,0.1-1.9,0.3c-1.9,0.5-2.3,2.2-2.1,3.6C152.2,8.8,153.8,9.3,154.9,9.4z"
|
||||||
|
/>
|
||||||
|
<path id="XMLID_73_" class="st0" d="M4.5,76.2c0,0-0.1,0-0.1,0c-1.5,0-3,0.6-3,1.9c0,1.5,1.3,2.8,2.8,2.9c0.1,0,0.2,0,0.3,0
|
||||||
|
c1.9,0,3.2-0.8,3.2-1.9C7.7,77.8,6.8,76.3,4.5,76.2z"/>
|
||||||
|
<path id="XMLID_72_" class="st0" d="M160.4,10.8c-0.7,0-2.2,0.2-2.5,1.7c-0.1,0.7,1,1.2,1.4,1.2c0.1,0,0.3,0,0.4,0
|
||||||
|
c1.2,0,1.9-0.5,2-1.5c0.1-0.4-0.1-0.9-0.5-1.1C161,10.9,160.7,10.8,160.4,10.8L160.4,10.8z"/>
|
||||||
|
<path id="XMLID_71_" class="st0" d="M178.2,111.1c0-1-1.1-1.5-2.2-1.6c-0.1,0-0.2,0-0.3,0c-1,0-2.1,0.5-2.5,1.1
|
||||||
|
c-0.3,0.5-0.2,1,0.2,1.5c0.5,0.5,1.2,0.7,2,0.7l0.1,0C177.6,112.7,178.2,112.3,178.2,111.1z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 9.2 KiB |
|
|
@ -0,0 +1,93 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="89 -35 124 82" style="enable-background:new 89 -35 124 82;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#DDFF25;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<g id="XMLID_81_">
|
||||||
|
<g id="XMLID_82_">
|
||||||
|
<path id="XMLID_83_" class="st0" d="M209.2,1.5c-0.7-0.5-1.7-0.8-2.7-0.8c-0.9,0-1.9,0.2-2.8,0.6c-1.9,0.7-3.6,1-5,1
|
||||||
|
c-1.4,0-2.7-0.3-3.6-1c-0.8-0.5-1.7-1.7-1.3-2.7c0.2-0.4,0.6-0.9,1.9-1c1.4-0.2,1.8-0.7,1.7-1c-0.1-0.3-0.5-0.6-1.2-0.6
|
||||||
|
c-0.6,0-1.2,0.2-1.9,0.5c-0.3,0.1-0.6,0.2-1,0.2c-0.8,0-1.5-0.5-1.6-1c-0.1-0.4,0.3-0.9,1.4-1c2.3-0.3,5.3-1.3,5.8-2.2
|
||||||
|
c0.1-0.3,0.1-0.6-0.3-0.8c-0.4-0.3-0.7-0.5-1.2-0.5c-0.8,0-1.9,0.6-2.9,1.2c-0.8,0.5-1.6,1-2.5,1.2c-0.4,0.1-0.8,0.1-1.2,0.1
|
||||||
|
c-0.8,0-1.6-0.2-2-0.6c-0.3-0.3-0.6-0.7-0.3-1.5c0.8-2.1,6.2-3.9,9.4-5c0.7-0.3,1.4-0.5,1.8-0.6c1-0.4,1.4-0.8,1.3-1.2
|
||||||
|
c-0.2-0.5-1-0.8-1.7-0.8c-0.3,0-0.8,0.1-1,0.4c-1.4,1.6-7.3,4.4-10.9,5.2c-0.3,0.1-0.6,0.1-0.8,0.1c-0.7,0-1.4-0.3-1.8-0.6
|
||||||
|
c-0.4-0.4-0.4-1-0.1-1.4c0.6-0.8,1.5-1.2,2.3-1.4c0.9-0.3,1.7-0.6,1.9-1.4c0.1-0.3,0.1-0.6-0.2-0.9c-0.3-0.3-0.8-0.4-1.3-0.4
|
||||||
|
c-0.3,0-0.5,0-0.8,0.1c-1,0.2-1.4,0.6-1.8,1.1c-0.3,0.4-0.8,0.8-1.6,1.3c-0.4,0.2-0.9,0.3-1.6,0.3c-1.1,0-2.3-0.3-3-0.8
|
||||||
|
c-0.6-0.5-0.9-1-0.9-1.6c0.1-1.9,4.6-6.2,6.5-7.3c1.3-0.7,1.4-1.6,1.1-2.1c-0.2-0.4-0.6-0.6-1.1-0.6c-0.9,0-1.8,0.8-2.6,2.1
|
||||||
|
c-2.5,4.3-4.2,7.1-6.7,7.1c-0.4,0-0.8-0.1-1.2-0.2c-1.7-0.6-1.3-1.7-0.8-2.9l0.1-0.1c0.3-0.6,0.2-1.1-0.1-1.4
|
||||||
|
c-0.3-0.3-0.6-0.3-1-0.3c-0.8,0-1.8,0.4-2.4,0.9c-0.9,0.8-2.2,1.3-3.7,1.3c-1.6,0-3-0.5-3.8-1.4c-1.2-1.4,0.3-3.8,1.4-5.6
|
||||||
|
l0.1-0.3c0.4-0.6,0.4-1.1,0-1.4c-0.3-0.3-0.6-0.4-1.1-0.4c-0.4,0-0.7,0.1-1,0.3c-0.3,0.3-0.5,0.6-0.4,1c0.3,2.5,0,5.1-3.9,6
|
||||||
|
c-0.8,0.2-1.6,0.3-2.3,0.3c-1.6,0-2.5-0.5-2.9-0.8c-0.7-0.5-1-1.3-0.8-2c0.1-0.4-0.1-0.8-0.5-1c-0.5-0.3-1.1-0.5-1.7-0.5
|
||||||
|
c-0.6,0-1.1,0.1-1.5,0.4c-0.5,0.3-0.6,0.8-0.6,1.3c0.1,2.3-2,3-3.8,3.3c-0.6,0.1-1.2,0.1-1.8,0.1c-2.2,0-3.5-0.7-3.7-1.9
|
||||||
|
c-0.2-1.3-0.7-2.1-1.4-2.1c-0.1,0-0.1,0-0.2,0c-0.6,0.1-0.6,0.5-0.2,1.6c0.1,0.2,0.1,0.5,0.3,0.7c0.3,0.9,0.8,2.8-1.9,3.5
|
||||||
|
c-0.5,0.1-0.9,0.2-1.3,0.2c-1.6,0-2.5-1-3.4-2.7c-0.9-1.7-2.3-4.5-5.1-4.5c-0.9,0-1.9,0.3-3,0.8c-1.3,0.6-1.9,1.6-2,2.8
|
||||||
|
c-0.1,1.9,1.6,3.9,4.3,5.5c1.7,1,1.8,1.9,1.7,2.5c-0.1,0.6-0.6,1.1-1.4,1.4c-0.3,0.1-0.6,0.1-0.9,0.1c-1.2,0-2.1-0.8-2.7-1.4
|
||||||
|
c-1.7-1.8-3.4-2.7-4.7-2.7c-0.3,0-0.6,0.1-0.8,0.1c-0.6,0.2-0.9,0.5-0.9,0.8c0,0.7,1.4,1.9,4.5,2.8c2,0.6,3,1.6,3.1,2.8
|
||||||
|
c0,0.5-0.3,1-0.9,1.4c-0.5,0.3-1,0.5-1.6,0.5c-0.5,0-1.2-0.1-1.7-0.8c-0.1-0.1-0.1-0.1-0.1-0.2c-0.7-0.9-1.6-1.9-3.4-1.9
|
||||||
|
c-0.1,0-0.3,0-0.5,0c-1.4,0.1-2.5,0.8-2.5,1.6c-0.1,0.8,1,1.9,4.1,2.4c1,0.2,1.7,0.5,2,1.1c0.6,1-0.2,2.3-0.8,2.9l-0.1,0.1
|
||||||
|
c-0.6,0.6-1.7,1.9-3.6,1.9c-0.4,0-0.8-0.1-1.2-0.2c-0.6-0.2-1.4-0.5-2.1-0.8c-1.1-0.5-2.3-0.9-2.9-0.9c-0.3,0-0.5,0.1-0.5,0.3
|
||||||
|
c-0.3,0.4-0.2,0.7,0.1,1c0.6,0.6,2.3,1,4.6,1c0.8,0,1.6,0.3,2,0.8c0.6,0.7,0.6,1.7,0.1,2.4c-0.5,0.6-1,0.9-1.7,0.9
|
||||||
|
c-0.6,0-1.2-0.2-1.7-0.4c-0.5-0.2-1-0.4-1.5-0.4c-0.3,0-0.6,0.1-0.8,0.3c-0.4,0.3-0.5,0.7-0.3,1.1c0.3,0.5,1.4,0.8,2.8,0.8
|
||||||
|
c0.1,0,0.3,0,0.5,0h0.1c0.8,0,1.4,0.6,1.4,1.1s-0.5,1.1-1.7,1.1c-0.5,0-1.1-0.1-1.8-0.3c-1-0.3-2.4-0.8-3.8-1.4
|
||||||
|
c-2.8-1.1-6.4-2.5-8.7-2.9c-0.6-0.1-1.2-0.2-1.8-0.2c-2.7,0-4.7,1.2-5,2.2c-0.4,1.4,0.6,2.4,2.5,2.7c0.8,0.1,1.6,0.2,2.3,0.2
|
||||||
|
c1.1,0,2.1-0.1,3.2-0.3c1-0.1,2.1-0.3,3.2-0.3c0.9,0,1.8,0.1,2.7,0.3c1.9,0.4,2.1,0.9,2.1,1.2c-0.1,0.3-0.5,0.6-1.2,0.6
|
||||||
|
c-0.8,0-1.4,0.2-1.6,0.5c-0.3,0.3-0.1,0.8,0.5,1.2c0.3,0.3,0.8,0.4,1.5,0.4c1.1,0,2.7-0.3,4.9-0.8c0.6-0.1,1.2-0.3,1.8-0.4
|
||||||
|
c0.3-0.1,0.5-0.1,0.7-0.1c1,0,1.7,0.5,1.8,1.3c0.1,0.7-0.5,1.5-1.8,1.6c-0.8,0.1-2,0.1-3.2,0.3c-1.9,0.1-4,0.3-5,0.3
|
||||||
|
c-2,0.1-3.6,0.6-4.1,1.2c-0.2,0.2-0.2,0.5,0,0.6c0.3,0.5,0.9,0.8,1.7,0.8c0.8,0,1.7-0.2,2.8-0.6c1.9-0.8,6.7-1.7,8.9-1.8
|
||||||
|
c0.1,0,0.1,0,0.2,0c2,0,3.3,1.4,3.4,2.6c0.1,1.1-0.6,1.9-1.7,2.1c-0.2,0-0.3,0-0.5,0c-0.5,0-0.9-0.1-1.4-0.1
|
||||||
|
c-0.5-0.1-1-0.1-1.4-0.1c-0.7,0-1.2,0.1-1.6,0.4c-0.5,0.3-0.7,1-0.5,1.6c0.1,0.3,0.5,0.7,1.4,0.8c0.3,0.1,0.6,0.1,0.9,0.1
|
||||||
|
c1,0,1.4-0.3,1.9-0.5c0.5-0.3,1-0.5,1.9-0.6c0.1,0,0.1,0,0.2,0c1.3,0,1.9,0.5,1.9,1c0,0.6-0.8,1.2-2.4,1.3
|
||||||
|
c-2.1,0.1-3.7,0.5-4.1,1c-0.2,0.2-0.1,0.5,0.1,0.7c0.3,0.3,0.5,0.4,0.8,0.4c0.5,0,1.2-0.3,1.9-0.5c0.4-0.1,0.8-0.3,1.2-0.5
|
||||||
|
c0.4-0.1,0.8-0.2,1.2-0.2c1.5,0,2.5,0.7,2.9,1.4c0.3,0.6,0.3,1.2-0.1,1.7c-0.5,0.6-1.3,1-2.4,1.2c-0.5,0.1-1.2,0.2-2,0.3
|
||||||
|
c-2.3,0.3-5.4,0.7-6.8,1.4c-2.1,1-2.9,2.6-1.9,3.7c1,1.1,2.5,1.4,3.6,1.4c1.6,0,3.2-0.5,3.9-1.3c2-2,5.2-4.1,7.2-4.7
|
||||||
|
c0.3-0.1,0.6-0.1,0.8-0.1c1.4,0,2.7,0.9,2.9,1.7c0.1,0.5-0.1,0.8-0.8,1c-1.3,0.3-2.1,0.9-2.3,1.6c-0.1,0.5,0.1,1,0.7,1.4
|
||||||
|
c0.4,0.3,0.8,0.4,1.3,0.4c1.2,0,2.4-0.6,2.7-1c0.6-0.6,1.2-0.8,1.6-0.8c0.6,0,1.1,0.4,1.2,1c0.3,1.3-1.4,2.7-2.8,3.9
|
||||||
|
c-0.7,0.6-1.4,1.2-1.7,1.6c-0.5,0.6-0.3,1.1-0.1,1.3c0.3,0.3,0.8,0.5,1.2,0.5c0.3,0,0.6-0.1,0.9-0.3c1.3-1,2-2.7,2.6-4.1
|
||||||
|
c0.4-0.9,0.7-1.7,1.2-2.3c0.5-0.6,1.6-1,2.7-1c1.3,0,2.8,0.5,2.9,1.6c0.2,1.6,0.6,1.9,1.7,1.9c0.2,0,0.5,0,0.7-0.1
|
||||||
|
c0.1,0,0.2,0,0.3,0c0.5,0,0.9,0.1,1.2,0.4c1.3,1.1,0.8,4.1,0.6,4.8c-0.1,0.1-0.1,0.4-0.3,0.6c-0.4,1.1-1.3,3.4-0.4,4.2
|
||||||
|
c0.2,0.2,0.5,0.3,1,0.3c0.1,0,0.1,0,0.2,0c0.6-0.1,1.1-0.2,1.4-0.5c0.8-0.7,0.3-2.1-0.1-3.5c-0.1-0.5-0.3-1-0.4-1.6
|
||||||
|
c-0.3-2-0.2-3.1,0.4-3.6c0.2-0.2,0.5-0.3,0.8-0.3c0.1,0,0.1,0,0.1,0c0.6,0,1.2,0.1,1.6,0.5c0.5,0.3,1,1,1,2.3
|
||||||
|
c-0.1,1.2,0.4,1.7,0.8,2c0.3,0.2,0.6,0.3,1,0.3c0.1,0,0.1,0,0.3,0c0.3,0,0.6-0.2,0.8-0.4c0.4-0.5,0.3-1.2,0.1-1.5
|
||||||
|
c-0.5-0.6-1.5-2.7-0.7-4.1c0.6-1,2-1.7,3.6-1.7c0.6,0,1.2,0.1,1.7,0.4c0.9,0.4,1.2,1,1.6,1.6c0.5,0.8,0.8,1.4,2.5,1.4h0.1
|
||||||
|
c1.4,0,1.7-0.5,2.1-1c0.5-0.6,1-1.3,2.7-1.6c0.3-0.1,0.5-0.1,0.8-0.1c2.3,0,4.1,1.4,5.1,4.1c0.5,1.1,1.2,3.2,2.6,3.2
|
||||||
|
c0.1,0,0.3,0,0.4-0.1c0.6-0.1,1-0.3,1.1-0.6c0.3-0.6-0.1-1.6-1.4-3.2c-2.3-3-2.2-4.8,0.3-6.1c0.8-0.4,1.7-0.6,2.6-0.6
|
||||||
|
c2.1,0,4.1,1,4.7,2.5c0.4,0.8,1.2,1.3,2.1,1.3c0.6,0,1.2-0.3,1.5-0.6c0.3-0.5,0-1-0.8-1.6c-1-0.7-2.1-2.5-1.5-3.5
|
||||||
|
c0.2-0.3,0.7-0.7,1.7-0.7c0.1,0,0.1,0,0.1,0c2.6,0.1,5,2.5,6.5,4.1c0.3,0.3,0.5,0.5,0.8,0.8c0.1,0.1,0.3,0.3,0.5,0.5
|
||||||
|
c1,1,2.7,2.6,3.5,2.6c0.1,0,0.1,0,0.1,0c0.3-0.1,0.5-0.4,0.5-0.6c0.1-0.4-0.1-1.5-2.7-3.1c-0.4-0.3-0.8-0.5-1.2-0.7
|
||||||
|
c-3.8-2.3-6.6-4.2-6.6-5.4c0-0.3,0.1-0.5,0.4-0.6s0.6-0.3,0.9-0.3c1.3,0,2.5,1.4,3,1.9c0.6,0.7,1.5,1.2,2.3,1.2
|
||||||
|
c0.1,0,0.2,0,0.3,0c0.3-0.1,0.4-0.1,0.4-0.1c0.1-0.1-0.2-0.4-0.3-0.5c-0.3-0.3-0.7-0.8-0.1-1.1c0.3-0.1,0.6-0.2,0.9-0.2
|
||||||
|
c1.4,0,2.9,1.2,4.3,2.2l0.3,0.2c0.3,0.2,0.6,0.4,0.8,0.6c1,0.8,2.2,1.7,3,1.7c0.1,0,0.2,0,0.3-0.1c0.6-0.2,1-0.4,1-0.8
|
||||||
|
c0.1-0.6-0.8-1.7-3.4-2.8c-3.8-1.7-8-4.7-8-6.7c0-1,0.3-1.7,0.9-2.3c0.7-0.6,1.8-1,3.2-1c0.2,0,0.4,0,0.6,0
|
||||||
|
c1,0.1,2.1,0.5,3.4,0.8c1.6,0.6,3.4,1.2,5.8,1.4c0.2,0,0.4,0,0.5,0c1.7,0,2.4-0.7,2.5-1.4c0.1-0.8-0.5-1.7-2.3-2.1
|
||||||
|
c-1.8-0.3-3.3-0.5-4.6-0.6c-1.5-0.1-2.8-0.3-4.3-0.6c-0.9-0.3-1.6-0.7-1.8-1.5c-0.5-1.3,0.3-2.9,1-3.5c0.4-0.3,0.9-0.5,1.6-0.5
|
||||||
|
c1.3,0,2.8,0.5,4.5,0.9c0.3,0.1,0.5,0.1,0.8,0.1c1.2,0,2.2-0.7,2.2-1.4c0-0.5-0.7-0.8-1.9-0.8c-0.2,0-0.3,0-0.5,0
|
||||||
|
c-0.5,0-1.2,0.1-1.9,0.1c-2.6,0-4.1-0.5-4.5-1.3c-0.1-0.4-0.1-0.8,0.3-1.1c0.6-0.5,1.9-0.8,3.7-0.8c1.4,0,3,0.2,4.9,0.5
|
||||||
|
c0.9,0.2,1.8,0.3,2.6,0.3c3.8,0,4.9-2.1,4.9-3.2C210.5,3,210,2.1,209.2,1.5z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<path id="XMLID_80_" class="st0" d="M99.7-2.6c0.1,0,0.1,0,0.2,0c1,0,2.1-0.3,2.8-1c0.8-0.6,1-1.6,0.8-2.4
|
||||||
|
c-0.6-1.6-1.9-2.7-4.1-2.7c-0.5,0-1,0.1-1.5,0.3c-0.6,0.2-1.3,0.9-1.4,1.4c-0.4,1.4-0.1,2.5,0.8,3.4C98-2.9,98.1-2.7,99.7-2.6z"/>
|
||||||
|
<path id="XMLID_79_" class="st0" d="M170.8-28.4L170.8-28.4c1.9,0,3.3-1,3.4-2.1c0.1-0.8,0-2.2-0.8-2.8c-0.6-0.5-1.8-0.9-2.7-0.9
|
||||||
|
l0,0c-2.5,0-3.5,1-3.6,2.6c0,0.6,0.3,1.7,1,2.2C168.8-28.9,169.8-28.5,170.8-28.4z"/>
|
||||||
|
<path id="XMLID_78_" class="st0" d="M205.9,40.7c-1.3,0-2.1,0.3-2.8,1.2c-0.7,0.8-0.1,2.5,1,3c0.7,0.3,0.7,0.5,1.6,0.5
|
||||||
|
c1,0,1.4-0.3,2.2-0.7c0.6-0.3,0.8-0.8,1-1.2c0.1-0.7-0.1-1.5-0.7-2C207.6,40.9,207.2,40.7,205.9,40.7z"/>
|
||||||
|
<path id="XMLID_77_" class="st0" d="M212.2-7.8c-0.5-0.4-0.8-0.5-1.7-0.5l0,0c-2.1,0-2.9,0.8-2.9,2.2c0,0.5,0.3,1,0.8,1.3
|
||||||
|
c0.5,0.4,1.3,0.6,2.1,0.6l0,0c1.7,0,2.5-1.1,2.5-2.2C213-6.9,212.7-7.4,212.2-7.8z"/>
|
||||||
|
<path id="XMLID_76_" class="st0" d="M134.8-28.1L134.8-28.1c1.3,0,2.1-0.8,2.1-2.2c0.1-1.3-0.8-2.1-2.2-2.1c-0.1,0-0.1,0-0.1,0
|
||||||
|
c-1.5,0-2.6,0.8-2.6,1.9C132-29.4,133.5-28.2,134.8-28.1z"/>
|
||||||
|
<path id="XMLID_75_" class="st0" d="M119.3,41.6c-0.1,0-0.1,0-0.1,0c-1.5,0-2.6,0.8-2.6,1.9c0,1,1.4,2.3,2.8,2.3h0.1
|
||||||
|
c1.2,0,2.1-0.8,2.1-2.2C121.6,42.5,120.8,41.7,119.3,41.6z"/>
|
||||||
|
<path id="XMLID_74_" class="st0" d="M189-28.7c0.1,0,0.3,0,0.5,0c0.6,0,0.8-0.1,1.6-0.5c0.6-0.2,0.8-0.7,0.9-1
|
||||||
|
c0.1-0.4,0-1.2-0.5-1.7c-0.6-0.6-0.8-0.8-1.8-0.8c-0.4,0-0.8,0.1-1.2,0.2c-1.2,0.3-1.5,1.4-1.4,2.3C187.3-29.1,188.3-28.8,189-28.7
|
||||||
|
z"/>
|
||||||
|
<path id="XMLID_73_" class="st0" d="M91.7,14.5L91.7,14.5c-1,0-2,0.4-2,1.2c0,1,0.8,1.8,1.8,1.9c0.1,0,0.1,0,0.2,0
|
||||||
|
c1.2,0,2.1-0.5,2.1-1.2C93.8,15.5,93.2,14.5,91.7,14.5z"/>
|
||||||
|
<path id="XMLID_72_" class="st0" d="M192.6-27.8c-0.5,0-1.4,0.1-1.6,1.1c-0.1,0.5,0.6,0.8,0.9,0.8c0.1,0,0.2,0,0.3,0
|
||||||
|
c0.8,0,1.2-0.3,1.3-1c0.1-0.3-0.1-0.6-0.3-0.7C193-27.8,192.8-27.8,192.6-27.8L192.6-27.8z"/>
|
||||||
|
<path id="XMLID_71_" class="st0" d="M204.1,37.1c0-0.6-0.7-1-1.4-1c-0.1,0-0.1,0-0.2,0c-0.6,0-1.4,0.3-1.6,0.7
|
||||||
|
c-0.2,0.3-0.1,0.6,0.1,1c0.3,0.3,0.8,0.5,1.3,0.5h0.1C203.7,38.1,204.1,37.8,204.1,37.1z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 9.2 KiB |
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 128 90" style="enable-background:new 0 0 128 90;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#DDFF25;}
|
||||||
|
</style>
|
||||||
|
<path id="XMLID_1_" class="st0" d="M128,42.4c0,16.4-8.7,27.2-21.8,38.1C95.5,89.3,77.4,93,62.1,87.1c-17.9-6.9-30.4,1-41-7.3
|
||||||
|
c-10.7-8.4-4-12.5-16-26.5C-5.9,40.5,2,18.4,17.1,8.9c7.9-5,31.3-16,52-2.2c7.9,5.3,18.5,11,32.2,9.2C113.4,14.3,127.9,23,128,42.4z
|
||||||
|
"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 708 B |
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="45 -24 84 60" style="enable-background:new 45 -24 84 60;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#DDFF25;}
|
||||||
|
</style>
|
||||||
|
<path id="XMLID_1_" class="st0" d="M129,4.3c0,10.8-5.7,17.8-14.3,25c-7,5.8-18.9,8.2-28.9,4.3c-11.7-4.5-19.9,0.7-26.9-4.8
|
||||||
|
c-7-5.5-2.6-8.2-10.5-17.4c-7.2-8.4-2-22.9,7.9-29.1c5.2-3.3,20.5-10.5,34.1-1.4c5.2,3.5,12.1,7.2,21.1,6
|
||||||
|
C119.4-14.1,128.9-8.4,129,4.3z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 678 B |
|
|
@ -0,0 +1,97 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 124 82" style="enable-background:new 0 0 124 82;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#00ACED;}
|
||||||
|
</style>
|
||||||
|
<g id="XMLID_13_">
|
||||||
|
<g id="XMLID_124_">
|
||||||
|
<g id="XMLID_136_">
|
||||||
|
<g id="XMLID_137_">
|
||||||
|
<path id="XMLID_138_" class="st0" d="M120.1,36.5c-0.7-0.5-1.7-0.8-2.7-0.8c-0.9,0-1.9,0.2-2.9,0.6c-1.9,0.7-3.6,1-5.1,1
|
||||||
|
c-1.4,0-2.6-0.3-3.6-0.9c-0.8-0.5-1.7-1.7-1.3-2.6c0.2-0.4,0.6-0.9,1.9-1.1c1.4-0.2,1.8-0.7,1.7-1.1c0-0.3-0.5-0.7-1.3-0.7
|
||||||
|
c-0.6,0-1.3,0.2-1.9,0.5c-0.3,0.1-0.6,0.2-1,0.2c-0.8,0-1.5-0.4-1.6-1c-0.1-0.4,0.3-0.9,1.4-1c2.3-0.3,5.3-1.3,5.8-2.2
|
||||||
|
c0.2-0.3,0.1-0.6-0.3-0.8c-0.4-0.3-0.7-0.4-1.1-0.4c-0.9,0-1.9,0.6-2.9,1.2c-0.8,0.5-1.6,1-2.4,1.2c-0.4,0.1-0.8,0.1-1.2,0.1
|
||||||
|
c-0.9,0-1.6-0.2-2-0.6c-0.3-0.3-0.6-0.7-0.3-1.5c0.9-2.1,6.2-3.9,9.4-5c0.7-0.2,1.4-0.5,1.8-0.6c1-0.4,1.4-0.8,1.3-1.2
|
||||||
|
c-0.2-0.4-0.9-0.8-1.7-0.8c-0.3,0-0.8,0.1-1,0.4c-1.3,1.5-7.3,4.4-10.9,5.2c-0.3,0.1-0.6,0.1-0.9,0.1c-0.7,0-1.4-0.2-1.8-0.6
|
||||||
|
c-0.4-0.4-0.4-1-0.1-1.4c0.6-0.8,1.5-1.2,2.4-1.4c0.9-0.3,1.7-0.6,1.9-1.4c0.1-0.4,0.1-0.7-0.2-0.9c-0.3-0.2-0.7-0.4-1.3-0.4
|
||||||
|
c-0.2,0-0.5,0-0.7,0.1c-1,0.2-1.4,0.6-1.8,1.1c-0.3,0.4-0.7,0.9-1.5,1.3c-0.4,0.2-0.9,0.3-1.5,0.3c-1.1,0-2.3-0.3-3-0.8
|
||||||
|
c-0.6-0.4-0.9-1-0.9-1.6c0.1-1.9,4.6-6.2,6.5-7.3c1.3-0.7,1.4-1.6,1.1-2.1c-0.2-0.4-0.6-0.6-1.1-0.6c-0.9,0-1.8,0.8-2.6,2.1
|
||||||
|
c-2.4,4.3-4.2,7.1-6.7,7.1c-0.4,0-0.8-0.1-1.2-0.2c-1.7-0.6-1.3-1.7-0.8-2.9l0-0.1c0.2-0.6,0.2-1.1-0.1-1.4
|
||||||
|
c-0.3-0.2-0.7-0.3-1-0.3c-0.8,0-1.8,0.4-2.4,0.9c-0.9,0.8-2.2,1.3-3.7,1.3c-1.5,0-3.1-0.5-3.8-1.3c-1.2-1.4,0.3-3.8,1.3-5.5
|
||||||
|
L75,8.2c0.4-0.6,0.4-1.1,0-1.4c-0.2-0.2-0.6-0.4-1.1-0.4c-0.4,0-0.7,0.1-1,0.3c-0.3,0.2-0.5,0.6-0.4,1c0.3,2.4,0,5.1-3.9,6
|
||||||
|
c-0.8,0.2-1.6,0.3-2.2,0.3c-1.5,0-2.4-0.4-2.9-0.8c-0.7-0.5-1-1.3-0.9-2c0.1-0.4-0.1-0.8-0.4-1c-0.4-0.3-1.1-0.5-1.8-0.5
|
||||||
|
c-0.6,0-1.1,0.1-1.5,0.4c-0.4,0.3-0.6,0.8-0.6,1.3c0.1,2.3-2,3-3.8,3.3c-0.6,0.1-1.2,0.2-1.8,0.2c-2.2,0-3.5-0.7-3.7-2
|
||||||
|
c-0.2-1.3-0.7-2.2-1.4-2.2c-0.1,0-0.1,0-0.2,0c-0.6,0.1-0.6,0.4-0.2,1.6c0.1,0.2,0.2,0.5,0.2,0.7c0.3,0.9,0.8,2.8-1.8,3.5
|
||||||
|
c-0.5,0.1-0.9,0.2-1.3,0.2c-1.6,0-2.4-1-3.3-2.7c-0.9-1.7-2.3-4.4-5.1-4.4c-0.9,0-1.9,0.3-3,0.8c-1.3,0.7-2,1.6-2,2.8
|
||||||
|
c-0.1,1.9,1.6,4,4.3,5.5c1.7,1,1.8,1.9,1.7,2.4c-0.1,0.6-0.6,1.1-1.4,1.3c-0.3,0.1-0.6,0.1-0.9,0.1c-1.2,0-2.1-0.8-2.7-1.4
|
||||||
|
c-1.8-1.8-3.3-2.7-4.7-2.7c-0.3,0-0.6,0-0.8,0.1c-0.6,0.2-0.9,0.4-0.9,0.8c0,0.7,1.4,1.9,4.5,2.8c2,0.6,3.1,1.6,3.1,2.8
|
||||||
|
c0,0.5-0.3,1-0.9,1.4c-0.5,0.3-1,0.5-1.5,0.5c-0.5,0-1.2-0.1-1.8-0.8c0-0.1-0.1-0.1-0.1-0.2c-0.7-0.9-1.6-2-3.3-2
|
||||||
|
c-0.1,0-0.3,0-0.5,0c-1.4,0.1-2.4,0.8-2.5,1.6c-0.1,0.8,1,1.9,4.1,2.4c1,0.2,1.7,0.5,2,1.1c0.6,1-0.2,2.3-0.8,2.9l-0.1,0.1
|
||||||
|
c-0.6,0.7-1.7,1.9-3.5,1.9c-0.4,0-0.8-0.1-1.2-0.2c-0.7-0.2-1.4-0.5-2.1-0.8c-1.1-0.4-2.2-0.9-2.9-0.9c-0.3,0-0.4,0.1-0.5,0.3
|
||||||
|
c-0.2,0.4-0.2,0.7,0.1,1c0.6,0.6,2.3,1,4.6,1.1c0.8,0,1.6,0.3,2,0.8c0.6,0.7,0.7,1.7,0.2,2.4c-0.4,0.6-1,0.9-1.7,0.9
|
||||||
|
c-0.6,0-1.2-0.2-1.8-0.4c-0.5-0.2-1-0.4-1.5-0.4c-0.3,0-0.6,0.1-0.8,0.3c-0.4,0.3-0.5,0.7-0.3,1.1c0.3,0.5,1.3,0.8,2.8,0.8
|
||||||
|
c0.1,0,0.3,0,0.5,0c0,0,0.1,0,0.1,0c0.9,0,1.4,0.6,1.4,1.1c0,0.5-0.5,1.1-1.7,1.1c-0.5,0-1.1-0.1-1.8-0.3
|
||||||
|
c-1-0.3-2.4-0.9-3.8-1.4c-2.8-1.1-6.4-2.5-8.8-2.9C6.3,37,5.7,37,5.1,37c-2.7,0-4.7,1.1-5,2.2c-0.4,1.4,0.6,2.4,2.5,2.7
|
||||||
|
c0.8,0.1,1.5,0.2,2.3,0.2c1.1,0,2.2-0.1,3.2-0.2c1-0.1,2.1-0.2,3.2-0.2c0.9,0,1.8,0.1,2.6,0.3c1.9,0.4,2.1,0.9,2.1,1.2
|
||||||
|
c-0.1,0.3-0.5,0.6-1.1,0.6c-0.8,0-1.4,0.2-1.6,0.5c-0.2,0.3-0.1,0.7,0.4,1.2c0.3,0.3,0.8,0.4,1.5,0.4c1.1,0,2.7-0.4,4.8-0.8
|
||||||
|
c0.6-0.1,1.2-0.3,1.8-0.4c0.2-0.1,0.5-0.1,0.7-0.1c1,0,1.7,0.5,1.8,1.3c0.1,0.7-0.5,1.5-1.8,1.6c-0.8,0.1-2,0.1-3.2,0.2
|
||||||
|
c-2,0.1-4,0.3-5,0.4c-2,0.1-3.6,0.6-4.1,1.2c-0.2,0.2-0.2,0.4,0,0.7c0.4,0.5,0.9,0.8,1.8,0.8c0.8,0,1.7-0.2,2.8-0.6
|
||||||
|
c2-0.8,6.7-1.7,8.9-1.8c0.1,0,0.1,0,0.2,0c2,0,3.3,1.3,3.4,2.6c0.1,1.1-0.6,1.9-1.8,2c-0.2,0-0.3,0-0.5,0
|
||||||
|
c-0.4,0-0.9-0.1-1.4-0.1c-0.5,0-1-0.1-1.4-0.1c-0.7,0-1.2,0.1-1.6,0.4c-0.5,0.3-0.7,1-0.5,1.5c0.1,0.3,0.5,0.7,1.3,0.8
|
||||||
|
c0.3,0,0.6,0.1,0.9,0.1c0.9,0,1.4-0.2,1.9-0.5c0.5-0.2,1-0.5,2-0.6c0.1,0,0.1,0,0.2,0c1.3,0,1.9,0.5,2,1c0,0.6-0.8,1.2-2.4,1.3
|
||||||
|
c-2.1,0.1-3.7,0.5-4.1,1c-0.2,0.2-0.2,0.4,0.1,0.7c0.3,0.3,0.5,0.4,0.8,0.4c0.5,0,1.2-0.3,2-0.5c0.4-0.2,0.8-0.3,1.2-0.4
|
||||||
|
c0.4-0.1,0.8-0.2,1.2-0.2c1.5,0,2.5,0.7,2.9,1.4c0.3,0.6,0.3,1.2-0.1,1.7c-0.4,0.6-1.3,1-2.4,1.2c-0.5,0.1-1.2,0.2-2,0.3
|
||||||
|
c-2.3,0.3-5.4,0.7-6.8,1.4c-2.2,1.1-2.9,2.6-1.8,3.7c1.1,1.1,2.5,1.3,3.6,1.3c1.6,0,3.1-0.5,3.9-1.3c2-2,5.2-4,7.2-4.7
|
||||||
|
c0.3-0.1,0.6-0.1,0.9-0.1c1.4,0,2.7,0.9,2.9,1.7c0.1,0.5-0.2,0.9-0.8,1c-1.3,0.3-2.1,0.9-2.3,1.5c-0.1,0.5,0.1,1,0.7,1.3
|
||||||
|
c0.4,0.2,0.8,0.4,1.3,0.4c1.2,0,2.4-0.6,2.7-1c0.6-0.7,1.2-0.8,1.5-0.8c0.6,0,1.1,0.4,1.2,1c0.3,1.3-1.4,2.7-2.8,3.9
|
||||||
|
c-0.7,0.6-1.4,1.1-1.8,1.6c-0.5,0.6-0.2,1.1,0,1.3c0.3,0.3,0.8,0.5,1.2,0.5c0.4,0,0.7-0.1,0.9-0.3c1.3-1,2-2.7,2.6-4.1
|
||||||
|
c0.4-0.9,0.7-1.7,1.2-2.2c0.5-0.6,1.6-1,2.7-1c1.3,0,2.8,0.5,2.9,1.6c0.2,1.6,0.6,2,1.7,2c0.2,0,0.5,0,0.7,0c0.1,0,0.2,0,0.3,0
|
||||||
|
c0.5,0,0.9,0.1,1.2,0.4c1.3,1.1,0.8,4.1,0.6,4.8c0,0.2-0.1,0.4-0.2,0.6c-0.4,1.1-1.3,3.4-0.4,4.2c0.2,0.2,0.5,0.3,1,0.3
|
||||||
|
c0.1,0,0.1,0,0.2,0c0.6,0,1.1-0.2,1.3-0.4c0.8-0.7,0.3-2.2-0.1-3.5c-0.2-0.5-0.3-1.1-0.4-1.5c-0.3-2-0.2-3.1,0.4-3.6
|
||||||
|
c0.2-0.2,0.5-0.3,0.9-0.3c0,0,0.1,0,0.1,0c0.6,0,1.1,0.2,1.6,0.5c0.5,0.3,1,1,1,2.3c-0.1,1.2,0.4,1.7,0.7,2
|
||||||
|
c0.3,0.2,0.6,0.3,1,0.3c0.1,0,0.2,0,0.2,0c0.3,0,0.6-0.2,0.7-0.4c0.4-0.5,0.3-1.2,0.1-1.5c-0.5-0.6-1.5-2.7-0.7-4
|
||||||
|
c0.6-1,2-1.7,3.5-1.7c0.6,0,1.2,0.1,1.8,0.4c0.9,0.4,1.2,1,1.6,1.5c0.4,0.8,0.8,1.3,2.4,1.4c0,0,0.1,0,0.1,0
|
||||||
|
c1.4,0,1.7-0.4,2.2-1c0.4-0.6,1-1.3,2.7-1.5c0.3,0,0.5-0.1,0.8-0.1c2.3,0,4.1,1.4,5.1,4c0.4,1.1,1.3,3.2,2.6,3.2
|
||||||
|
c0.1,0,0.2,0,0.4,0c0.6-0.1,1-0.3,1.1-0.6c0.3-0.6-0.1-1.6-1.3-3.2c-2.3-3.1-2.2-4.8,0.3-6.1c0.8-0.4,1.7-0.6,2.6-0.6
|
||||||
|
c2.1,0,4.1,1,4.7,2.5c0.4,0.8,1.1,1.3,2.1,1.3c0.7,0,1.3-0.3,1.5-0.6c0.3-0.5,0-1.1-0.8-1.6c-1-0.7-2.1-2.5-1.5-3.5
|
||||||
|
c0.2-0.3,0.7-0.7,1.8-0.7c0,0,0.1,0,0.1,0c2.6,0.1,5,2.5,6.5,4.1c0.3,0.3,0.5,0.5,0.8,0.8c0.1,0.1,0.3,0.3,0.5,0.4
|
||||||
|
c1,1,2.7,2.6,3.5,2.6c0.1,0,0.1,0,0.2,0c0.3-0.1,0.5-0.4,0.5-0.7c0.1-0.4-0.1-1.5-2.6-3.1c-0.4-0.2-0.8-0.5-1.2-0.7
|
||||||
|
c-3.7-2.3-6.6-4.2-6.6-5.4c0-0.3,0.1-0.5,0.4-0.6c0.3-0.2,0.6-0.3,0.9-0.3c1.3,0,2.5,1.4,3,2c0.6,0.7,1.5,1.2,2.3,1.2
|
||||||
|
c0.1,0,0.2,0,0.3,0c0.3,0,0.4-0.1,0.4-0.1c0.1-0.1-0.2-0.4-0.3-0.5c-0.3-0.3-0.7-0.8-0.1-1.1c0.3-0.1,0.6-0.2,0.9-0.2
|
||||||
|
c1.3,0,2.9,1.2,4.3,2.2l0.2,0.2c0.3,0.2,0.6,0.4,0.8,0.6c1,0.8,2.2,1.7,3.1,1.7c0.1,0,0.2,0,0.3,0c0.6-0.2,1-0.4,1-0.8
|
||||||
|
c0.1-0.6-0.7-1.6-3.4-2.8c-3.8-1.7-8-4.7-8-6.7c0-1,0.3-1.8,0.9-2.4c0.7-0.7,1.8-1,3.2-1c0.2,0,0.4,0,0.6,0
|
||||||
|
c1,0.1,2.1,0.4,3.3,0.9c1.6,0.6,3.5,1.2,5.8,1.4c0.2,0,0.4,0,0.5,0c1.7,0,2.4-0.7,2.5-1.3c0.2-0.8-0.5-1.8-2.3-2.1
|
||||||
|
c-1.8-0.3-3.3-0.5-4.6-0.6c-1.5-0.1-2.8-0.2-4.3-0.6c-0.9-0.2-1.6-0.7-1.8-1.5c-0.5-1.3,0.3-2.9,1-3.5c0.4-0.3,0.9-0.4,1.6-0.4
|
||||||
|
c1.3,0,2.8,0.4,4.5,0.9c0.3,0.1,0.5,0.1,0.8,0.1c1.2,0,2.2-0.7,2.2-1.4c0-0.5-0.7-0.8-1.9-0.8c-0.2,0-0.3,0-0.5,0
|
||||||
|
c-0.5,0-1.1,0.1-1.9,0.1c-2.6,0-4.1-0.4-4.4-1.3c-0.2-0.4-0.1-0.8,0.3-1.1c0.6-0.5,1.9-0.8,3.7-0.8c1.4,0,3.1,0.2,4.9,0.5
|
||||||
|
c0.9,0.2,1.8,0.3,2.6,0.3c3.8,0,4.9-2.1,4.9-3.1C121.5,38,121,37.1,120.1,36.5z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="XMLID_125_">
|
||||||
|
<path id="XMLID_135_" class="st0" d="M10.8,32.5c0.1,0,0.1,0,0.2,0c1.1,0,2.1-0.3,2.8-0.9c0.8-0.7,1.1-1.6,0.7-2.4
|
||||||
|
c-0.6-1.6-1.9-2.7-4.1-2.7c-0.5,0-1.1,0.1-1.5,0.2c-0.6,0.2-1.3,0.9-1.4,1.4c-0.4,1.3-0.1,2.5,0.9,3.4
|
||||||
|
C9.1,32.2,9.3,32.4,10.8,32.5z"/>
|
||||||
|
<path id="XMLID_134_" class="st0" d="M81.9,6.7L81.9,6.7c1.9,0,3.3-1.1,3.4-2.1c0-0.8,0-2.2-0.8-2.8c-0.7-0.5-1.8-0.9-2.7-0.9h0
|
||||||
|
c-2.5,0-3.5,1-3.5,2.6c0,0.7,0.3,1.7,0.9,2.2C79.8,6.2,80.8,6.6,81.9,6.7z"/>
|
||||||
|
<path id="XMLID_133_" class="st0" d="M116.9,75.7c-1.3,0-2.1,0.3-2.8,1.2c-0.7,0.9-0.2,2.4,1.1,2.9c0.7,0.3,0.7,0.4,1.5,0.4
|
||||||
|
c1.1,0,1.4-0.3,2.2-0.7c0.6-0.3,0.9-0.8,0.9-1.2c0.1-0.7-0.1-1.5-0.7-2C118.6,75.9,118.2,75.7,116.9,75.7z"/>
|
||||||
|
<path id="XMLID_132_" class="st0" d="M123.2,27.3c-0.5-0.4-0.8-0.5-1.7-0.5h0c-2.1,0-2.9,0.8-2.9,2.2c0,0.5,0.3,1,0.8,1.3
|
||||||
|
c0.5,0.4,1.3,0.6,2.1,0.6h0c1.7,0,2.4-1.1,2.5-2.2C124,28.2,123.7,27.7,123.2,27.3z"/>
|
||||||
|
<path id="XMLID_131_" class="st0" d="M45.9,7C45.9,7,45.9,7,45.9,7C47.2,7,48,6.1,48,4.8c0.1-1.3-0.8-2.1-2.2-2.1
|
||||||
|
c0,0-0.1,0-0.1,0c-1.5,0-2.6,0.8-2.6,1.9C43.1,5.7,44.6,6.9,45.9,7z"/>
|
||||||
|
<path id="XMLID_130_" class="st0" d="M30.4,76.7c0,0-0.1,0-0.1,0c-1.5,0-2.6,0.8-2.6,1.9c0,1.1,1.4,2.3,2.8,2.3c0,0,0.1,0,0.1,0
|
||||||
|
c1.2,0,2-0.9,2.1-2.2C32.7,77.5,31.9,76.7,30.4,76.7z"/>
|
||||||
|
<path id="XMLID_129_" class="st0" d="M100.1,6.4c0.1,0,0.3,0,0.4,0c0.6,0,0.8-0.1,1.5-0.4c0.6-0.2,0.8-0.7,0.9-1
|
||||||
|
c0.1-0.4,0-1.2-0.4-1.7c-0.6-0.6-0.8-0.8-1.8-0.8c-0.4,0-0.8,0.1-1.2,0.2C98.3,2.9,98,4.1,98.1,5C98.3,6,99.4,6.3,100.1,6.4z"/>
|
||||||
|
<path id="XMLID_128_" class="st0" d="M2.9,49.6C2.8,49.6,2.8,49.6,2.9,49.6c-1,0-2,0.4-2,1.2c0,0.9,0.8,1.8,1.8,1.8
|
||||||
|
c0.1,0,0.1,0,0.2,0c1.2,0,2.1-0.5,2.1-1.2C4.9,50.6,4.4,49.6,2.9,49.6z"/>
|
||||||
|
<path id="XMLID_127_" class="st0" d="M103.6,7.3c-0.4,0-1.4,0.1-1.6,1.1c-0.1,0.4,0.6,0.7,0.9,0.8c0.1,0,0.2,0,0.3,0
|
||||||
|
c0.8,0,1.2-0.3,1.3-0.9c0-0.3-0.1-0.6-0.3-0.7C104,7.3,103.8,7.3,103.6,7.3L103.6,7.3z"/>
|
||||||
|
<path id="XMLID_126_" class="st0" d="M115.1,72.1c0-0.6-0.7-1-1.4-1c-0.1,0-0.1,0-0.2,0c-0.7,0-1.4,0.3-1.6,0.7
|
||||||
|
c-0.2,0.3-0.1,0.7,0.2,0.9c0.3,0.3,0.8,0.5,1.3,0.5l0,0C114.8,73.1,115.1,72.8,115.1,72.1z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 9.4 KiB |
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="24 -12 84 60" style="enable-background:new 24 -12 84 60;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#A0A0A0;}
|
||||||
|
</style>
|
||||||
|
<path id="XMLID_1_" class="st0" d="M108,16.3c0,10.8-5.7,17.9-14.3,25.1c-7,5.8-18.9,8.3-28.9,4.4C53,41.2,44.9,46.5,37.9,41
|
||||||
|
s-2.6-8.2-10.5-17.4c-7.2-8.5-2-23,7.8-29.2C40.4-9,55.8-16.3,69.3-7.2C74.5-3.7,81.5,0,90.4-1.1C98.4-2.2,108,3.5,108,16.3z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 666 B |
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 84 60" style="enable-background:new 0 0 84 60;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#00ACED;}
|
||||||
|
</style>
|
||||||
|
<path id="XMLID_1_" class="st0" d="M84,28.3c0,10.8-5.7,17.9-14.3,25.1c-7,5.8-18.9,8.3-28.9,4.4c-11.8-4.6-19.9,0.7-26.9-4.8
|
||||||
|
c-7-5.5-2.6-8.2-10.5-17.4c-7.2-8.5-2-23,7.8-29.2C16.4,3,31.8-4.3,45.3,4.8c5.2,3.5,12.2,7.2,21.1,6.1C74.4,9.8,84,15.5,84,28.3z"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 704 B |
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 72 36" style="enable-background:new 0 0 72 36;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#DDFF25;}
|
||||||
|
</style>
|
||||||
|
<path id="XMLID_1_" class="st0" d="M0.1,0c1.1,0,2,1.3,2,2.4v2.9c0,4.3,3.5,7.8,7.8,7.8c4.3,0,7.8-3.5,7.8-7.8v-2
|
||||||
|
c0-1.8,1.5-3.3,3.3-3.3c1.8,0,3.3,1.5,3.3,3.3v22.5c0,4.9,4,8.9,8.9,8.9c4.9,0,8.9-4,8.9-8.9V3.3v0c0-1.7,1.4-3,3-3s3,1.4,3,3v0v1.3
|
||||||
|
c0,5.9,4.8,10.7,10.7,10.7c5.9,0,10.7-4.8,10.7-10.7V3.3c0-0.7,0-2.9,2.1-3.3H0.1z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 737 B |
|
|
@ -0,0 +1,37 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 108 124" style="enable-background:new 0 0 108 124;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#212121;}
|
||||||
|
.st1{fill:#FF4E00;}
|
||||||
|
</style>
|
||||||
|
<path id="XMLID_3_" class="st0" d="M92.6,53.2c0,24.4-14.3,35.4-36.1,36.9c-20.6,1.5-35.8-15.9-35.9-35.7c-0.1-9.2,5-19.8,11.1-27.5
|
||||||
|
c6-7.7,17.4-11.3,25.2-11.1C73.9,16,92.6,33.4,92.6,53.2z"/>
|
||||||
|
<g id="XMLID_8_">
|
||||||
|
<g id="XMLID_9_">
|
||||||
|
<path id="XMLID_20_" class="st1" d="M52,73.7c1.5,1.1,2.8,2.5,4.3,4.3c1.5-1.8,2.8-3.2,4.3-4.3c-1.4-0.3-2.8-0.7-4.3-1.2
|
||||||
|
C54.9,73,53.5,73.4,52,73.7z"/>
|
||||||
|
<path id="XMLID_19_" class="st1" d="M50.3,69.6c-1-0.6-2-1.3-3-2l-0.1,0.1c-0.8,0.2-1.7,0.5-2.8,0.5c-0.5,0-1-0.1-1.5-0.2
|
||||||
|
c0.6,1.3,1.4,1.7,2.3,1.9c0.5,0.1,1.1,0.2,1.8,0.2C48,70.1,49.2,69.9,50.3,69.6z"/>
|
||||||
|
<path id="XMLID_18_" class="st1" d="M47,67.4c-1-0.8-1.9-1.6-2.9-2.5c-1.5,0-3-0.2-4.5-0.4c0.4,1.4,1.1,2,2,2.3
|
||||||
|
C43.1,67.4,45,67.6,47,67.4z"/>
|
||||||
|
<path id="XMLID_17_" class="st1" d="M50.7,69.9c-1.1,0.5-2.3,1-3.9,1c-0.4,0-0.9,0-1.3-0.1c0.9,1.8,4.6,2.3,9.3,1.1
|
||||||
|
C53.5,71.3,52.1,70.7,50.7,69.9z"/>
|
||||||
|
<path id="XMLID_16_" class="st1" d="M43.7,54.2c0,0,2.6-0.1,4.8-0.9c0,0-4.7-1.8-10.4-9.3c-1.7,4.8-2.5,8.3-1.3,15.3
|
||||||
|
c0.8-0.7,2.7-3.1,2.7-3.1c8.1,15.9,25.6,18.6,27.7,14.6c-0.5,0.1-0.9,0.1-1.3,0.1c-1.5-0.1-2.9-0.5-4-1.1c-0.1,0-0.1-0.1-0.1-0.2
|
||||||
|
s0.1-0.1,0.2-0.1c1.3,0.4,2.5,0.6,3.7,0.6c0.6,0,1.2-0.1,1.8-0.2c1-0.2,1.7-0.6,2.3-1.9c-0.5,0.1-1,0.2-1.5,0.2
|
||||||
|
c-1.1,0-2-0.2-2.8-0.5c-0.1,0-0.1-0.1-0.1-0.2s0.1-0.1,0.2-0.1c2.1,0.2,4,0,5.5-0.6c0.9-0.4,1.6-0.9,2-2.3
|
||||||
|
C60.4,66.6,46.9,59.5,43.7,54.2z"/>
|
||||||
|
<path id="XMLID_14_" class="st1" d="M53.3,47.3L53.3,47.3c0.9,0,1.3,0.4,1.4,1.2c-0.1,5.6-1.8,8.3-4.1,10.3c1.3,1.1,3.7,2,5.9,2.6
|
||||||
|
c2.1-0.6,4.6-1.5,5.9-2.6c-2.4-2-4-4.6-4.1-10.3c0-0.9,0.5-1.2,1.4-1.2l0,0c2.4,0,3.8-0.8,3.8-2.7v-1.2L58.3,44c0-0.4,0-1.3,0-1.6
|
||||||
|
c2.6-0.8,4.6-3.2,4.6-6.1c0-3.5-2.8-6.3-6.3-6.3s-6.3,2.8-6.3,6.3c0,2.9,1.9,5.3,4.6,6.1c0,0.3,0,1.3,0,1.6l-5.2-0.6v1.2
|
||||||
|
C49.4,46.5,50.9,47.3,53.3,47.3z M56.4,33.9c1.3,0,2.4,1.1,2.4,2.4c0,1.3-1.1,2.4-2.4,2.4S54,37.6,54,36.3
|
||||||
|
C54,35,55,33.9,56.4,33.9z"/>
|
||||||
|
<g id="XMLID_10_">
|
||||||
|
<path id="XMLID_12_" class="st1" d="M74.6,44c-5.4,7.2-10.4,9.3-10.4,9.3c2.2,0.7,4.8,0.9,4.8,0.9c-1.6,2.6-5.7,5.7-11,7.9
|
||||||
|
c3,1,6.3,1.7,9.7,1.9c2.1-2.1,4-4.7,5.5-7.7c0,0,1.9,2.4,2.7,3.1C77.2,54.2,76.3,48.8,74.6,44z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.5 KiB |
|
|
@ -0,0 +1,107 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 108 124" style="enable-background:new 0 0 108 124;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF4E00;}
|
||||||
|
.st1{fill:#212121;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<path class="st0" d="M102.1,45c-0.8,0-1.6,0.2-2.5,0.7c-1.6,0.9-3.1,1.3-4.4,1.3c-1.2,0-2.3-0.4-3.1-1.2c-0.7-0.7-1.5-2.2-1.1-3.4
|
||||||
|
c0.1-0.5,0.6-1.2,1.7-1.4c1.2-0.2,1.6-0.9,1.5-1.4c0-0.4-0.4-0.8-1.1-0.8c-0.5,0-1.1,0.2-1.7,0.7c-0.3,0.2-0.5,0.3-0.8,0.3
|
||||||
|
c-0.7,0-1.3-0.6-1.4-1.3c0-0.5,0.3-1.1,1.3-1.3c2-0.4,4.6-1.6,5.1-2.9c0.1-0.4,0.1-0.7-0.2-1.1c-0.3-0.4-0.6-0.6-1-0.6
|
||||||
|
c-0.8,0-1.6,0.8-2.5,1.6c-0.7,0.6-1.4,1.3-2.1,1.5c-0.3,0.1-0.7,0.2-1,0.2c-0.7,0-1.4-0.3-1.7-0.7c-0.3-0.3-0.5-0.9-0.2-1.9
|
||||||
|
c0.7-2.7,5.4-5,8.2-6.4c0.6-0.3,1.2-0.6,1.6-0.8c0.8-0.5,1.2-1,1.1-1.6c-0.1-0.5-0.8-1-1.5-1c-0.3,0-0.7,0.1-0.9,0.5
|
||||||
|
c-1.2,2-6.4,5.6-9.4,6.6c-0.2,0.1-0.5,0.1-0.7,0.1c-0.6,0-1.2-0.3-1.5-0.8c-0.3-0.5-0.4-1.2-0.1-1.8c0.5-1,1.3-1.5,2-1.9
|
||||||
|
c0.8-0.4,1.4-0.8,1.7-1.8c0.1-0.5,0.1-0.8-0.2-1.1c-0.2-0.3-0.6-0.5-1.1-0.5c-0.2,0-0.4,0-0.6,0.1c-0.9,0.2-1.2,0.8-1.6,1.4
|
||||||
|
c-0.3,0.5-0.6,1.1-1.3,1.6c-0.3,0.2-0.8,0.4-1.3,0.4c-1,0-2-0.4-2.6-1.1c-0.5-0.5-0.8-1.3-0.8-2c0.1-2.4,4-8,5.7-9.4
|
||||||
|
c1.1-0.9,1.2-2,0.9-2.7c-0.2-0.5-0.5-0.8-0.9-0.8c-0.8,0-1.6,1-2.2,2.7c-2.1,5.5-3.6,9.1-5.8,9.1c-0.3,0-0.7-0.1-1-0.3
|
||||||
|
c-1.4-0.8-1.1-2.1-0.7-3.7l0-0.2c0.2-0.8,0.2-1.4-0.1-1.8c-0.2-0.3-0.6-0.4-0.8-0.4c-0.7,0-1.6,0.5-2.1,1.1
|
||||||
|
c-0.8,1.1-1.9,1.7-3.2,1.7c-1.3,0-2.6-0.7-3.3-1.7c-1.1-1.8,0.2-4.8,1.2-7.1l0.1-0.3c0.3-0.8,0.3-1.4,0-1.8
|
||||||
|
c-0.2-0.3-0.6-0.5-0.9-0.5c-0.3,0-0.6,0.1-0.8,0.4C63.3,8,63.2,8.4,63.2,9c0.2,3.1,0,6.5-3.4,7.7c-0.7,0.2-1.3,0.3-1.9,0.3
|
||||||
|
c-1.3,0-2.1-0.6-2.5-1.1c-0.6-0.7-0.9-1.6-0.7-2.5c0.1-0.5-0.1-1-0.4-1.3c-0.4-0.4-0.9-0.7-1.5-0.7c-0.5,0-0.9,0.2-1.3,0.5
|
||||||
|
c-0.4,0.4-0.6,1-0.5,1.7c0.1,3-1.7,3.8-3.3,4.2C47,17.9,46.5,18,46,18c-1.9,0-3-0.9-3.2-2.5c-0.2-1.6-0.6-2.8-1.2-2.8
|
||||||
|
c-0.1,0-0.1,0-0.2,0c-0.5,0.2-0.5,0.6-0.2,2c0.1,0.3,0.1,0.6,0.2,0.9c0.2,1.2,0.7,3.6-1.6,4.5c-0.4,0.2-0.8,0.2-1.1,0.2
|
||||||
|
c-1.4,0-2.1-1.3-2.9-3.5c-0.8-2.1-2-5.7-4.4-5.7c-0.8,0-1.6,0.4-2.6,1.1c-1.1,0.9-1.7,2.1-1.7,3.6c0,2.4,1.4,5.1,3.7,7.1
|
||||||
|
c1.5,1.2,1.6,2.5,1.5,3.1c-0.1,0.8-0.6,1.4-1.2,1.7c-0.3,0.1-0.5,0.2-0.8,0.2c-1.1,0-1.8-1-2.3-1.8c-1.5-2.3-2.9-3.5-4.1-3.5
|
||||||
|
c-0.2,0-0.5,0.1-0.7,0.2c-0.5,0.2-0.8,0.6-0.8,1c0,0.9,1.2,2.4,3.9,3.6c1.7,0.8,2.6,2,2.7,3.7c0,0.6-0.3,1.3-0.8,1.8
|
||||||
|
c-0.4,0.4-0.9,0.6-1.3,0.6c-0.4,0-1-0.2-1.5-1.1c0-0.1-0.1-0.2-0.1-0.2c-0.6-1.1-1.4-2.5-2.9-2.5c-0.1,0-0.3,0-0.4,0
|
||||||
|
c-1.2,0.2-2.1,1-2.1,2c0,1.1,0.9,2.4,3.5,3.1c0.9,0.2,1.5,0.7,1.8,1.4c0.5,1.3-0.2,2.9-0.7,3.7L24.4,40c-0.5,0.8-1.5,2.4-3.1,2.4
|
||||||
|
c-0.3,0-0.7-0.1-1-0.2c-0.6-0.3-1.2-0.6-1.8-1c-1-0.6-1.9-1.2-2.5-1.2c-0.2,0-0.4,0.1-0.5,0.3c-0.2,0.5-0.2,0.9,0.1,1.3
|
||||||
|
c0.5,0.8,2,1.3,4,1.4c0.7,0,1.4,0.4,1.7,1c0.5,0.9,0.6,2.2,0.1,3.1c-0.4,0.8-0.9,1.1-1.5,1.1c-0.5,0-1-0.3-1.5-0.5
|
||||||
|
c-0.4-0.2-0.9-0.5-1.3-0.5c-0.3,0-0.5,0.1-0.7,0.4c-0.3,0.4-0.4,0.9-0.2,1.4c0.3,0.7,1.2,1.1,2.4,1.1c0.1,0,0.3,0,0.4,0
|
||||||
|
c0,0,0,0,0.1,0c0.8,0,1.2,0.7,1.2,1.4c0,0.7-0.4,1.4-1.5,1.4c-0.4,0-1-0.1-1.6-0.4c-0.9-0.4-2.1-1.1-3.3-1.8
|
||||||
|
c-2.5-1.4-5.5-3.2-7.6-3.7c-0.5-0.2-1.1-0.2-1.6-0.2c-2.4,0-4.1,1.5-4.3,2.8c-0.3,1.8,0.5,3.1,2.2,3.5c0.7,0.2,1.3,0.3,2,0.3
|
||||||
|
c1,0,1.9-0.2,2.7-0.3c0.9-0.2,1.8-0.3,2.8-0.3c0.8,0,1.6,0.1,2.3,0.3c1.7,0.5,1.8,1.2,1.8,1.5c-0.1,0.4-0.5,0.7-1,0.7
|
||||||
|
c-0.7,0-1.2,0.3-1.4,0.7c-0.2,0.4-0.1,1,0.4,1.5c0.3,0.4,0.7,0.5,1.3,0.5c1,0,2.3-0.5,4.2-1.1c0.5-0.2,1-0.3,1.6-0.5
|
||||||
|
c0.2-0.1,0.4-0.1,0.6-0.1c0.9,0,1.5,0.7,1.6,1.7c0,0.9-0.5,1.9-1.6,2c-0.7,0.1-1.7,0.2-2.8,0.3c-1.7,0.2-3.5,0.4-4.3,0.5
|
||||||
|
c-1.7,0.2-3.1,0.8-3.6,1.5c-0.2,0.3-0.2,0.6,0,0.9c0.3,0.7,0.8,1,1.5,1c0.7,0,1.5-0.3,2.4-0.8c1.7-1,5.8-2.2,7.7-2.3
|
||||||
|
c0.1,0,0.1,0,0.2,0c1.7,0,2.8,1.7,3,3.3c0.1,1.4-0.5,2.4-1.5,2.6c-0.1,0-0.3,0-0.5,0c-0.4,0-0.8-0.1-1.2-0.1
|
||||||
|
c-0.4-0.1-0.8-0.1-1.2-0.1c-0.6,0-1.1,0.2-1.4,0.5c-0.4,0.4-0.6,1.3-0.4,2c0.1,0.4,0.4,0.9,1.2,1c0.3,0,0.5,0.1,0.8,0.1
|
||||||
|
c0.8,0,1.2-0.3,1.7-0.6c0.4-0.3,0.9-0.7,1.7-0.7c0.1,0,0.1,0,0.2,0c1.1,0,1.7,0.6,1.7,1.2c0,0.7-0.7,1.6-2.1,1.7
|
||||||
|
c-1.8,0.1-3.2,0.6-3.6,1.3c-0.2,0.3-0.1,0.6,0,0.9c0.2,0.4,0.5,0.5,0.7,0.5c0.5,0,1.1-0.3,1.7-0.7c0.3-0.2,0.7-0.4,1.1-0.6
|
||||||
|
c0.3-0.2,0.7-0.2,1.1-0.2c1.3,0,2.2,0.9,2.5,1.8c0.3,0.8,0.3,1.5-0.1,2.2c-0.4,0.7-1.1,1.3-2.1,1.6c-0.4,0.1-1,0.2-1.8,0.4
|
||||||
|
c-2,0.4-4.7,0.9-5.9,1.8c-1.9,1.4-2.5,3.3-1.6,4.7c0.9,1.4,2.2,1.7,3.1,1.7c1.3,0,2.7-0.7,3.4-1.7c1.8-2.6,4.5-5.2,6.2-6
|
||||||
|
c0.2-0.1,0.5-0.2,0.7-0.2c1.2,0,2.3,1.2,2.5,2.2c0.1,0.6-0.1,1.1-0.7,1.3c-1.1,0.4-1.8,1.1-2,2c-0.1,0.6,0.1,1.2,0.6,1.7
|
||||||
|
c0.3,0.3,0.7,0.5,1.1,0.5c1,0,2.1-0.8,2.3-1.3c0.5-0.8,1-1,1.3-1c0.6,0,1,0.5,1.1,1.3c0.2,1.7-1.2,3.4-2.4,5
|
||||||
|
c-0.6,0.8-1.2,1.5-1.5,2.1c-0.4,0.8-0.2,1.4,0,1.7c0.2,0.4,0.7,0.7,1.1,0.7c0.3,0,0.6-0.2,0.8-0.4c1.2-1.1,1.8-3.6,2.1-4.6l0,0
|
||||||
|
c0.3-0.8,1.1-0.9,1.3,0.3l0,0.4c0.4,3.2,1.2,6.1,3,6.6c4.2,1,2.9,10.6,5.2,18.9c2.8,10.6,12.1,8.4,12.3,0.1
|
||||||
|
c0.5-17.5,3.3-25.4,7.1-11.4c2.9,10.7,16.8,10,16.9-9.1c0-4,0.2-7.6,0.4-10.8c0.2-2.5,1.5-3,2.4-2.3c1,1.1,1.9,2.4,2.6,3.5
|
||||||
|
c0.2,0.4,0.5,0.7,0.7,1c0.1,0.2,0.3,0.4,0.4,0.6c0.9,1.2,2.3,3.3,3,3.3c0.1,0,0.1,0,0.1,0c0.3-0.2,0.4-0.5,0.4-0.8
|
||||||
|
c0-0.5-0.1-1.9-2.3-4c-0.3-0.3-0.7-0.6-1-0.9c-2.1-1.9-3.8-3.6-4.8-4.9c-0.6-0.9-1.1-3,0.4-3.1c1.1,0.2,2,1.8,2.4,2.5
|
||||||
|
c0.5,0.9,1.1,1.7,1.8,1.7c0.1,0,0.3,0,0.4,0c0.2-0.1,0.4-0.2,0.4-0.3c0-0.1-0.2-0.5-0.3-0.7c-0.3-0.4-0.6-1-0.1-1.4
|
||||||
|
c0.2-0.2,0.5-0.3,0.8-0.3c1.2,0,2.5,1.5,3.8,2.8l0.2,0.2c0.2,0.3,0.5,0.5,0.7,0.8c0.9,1,1.9,2.2,2.7,2.2c0.1,0,0.2,0,0.3,0
|
||||||
|
c0.5-0.2,0.8-0.5,0.9-1c0.1-0.8-0.6-2.1-2.9-3.6c-3.3-2.1-6.9-6-6.9-8.5c0-1.3,0.3-2.3,0.8-3c0.6-0.9,1.6-1.3,2.8-1.3
|
||||||
|
c0.2,0,0.3,0,0.5,0c0.9,0.1,1.8,0.6,2.9,1.1c1.4,0.7,3,1.5,5,1.8c0.2,0,0.3,0,0.5,0c1.4,0,2.1-0.9,2.2-1.7c0.1-1-0.5-2.3-2-2.7
|
||||||
|
c-1.6-0.4-2.9-0.6-4-0.7c-1.3-0.2-2.4-0.3-3.7-0.8c-0.8-0.3-1.4-0.9-1.6-1.9c-0.4-1.6,0.2-3.7,0.9-4.5c0.3-0.4,0.8-0.6,1.4-0.6
|
||||||
|
c1.1,0,2.5,0.5,3.9,1.2c0.2,0.1,0.5,0.2,0.7,0.2c1,0,1.9-0.9,1.9-1.7c0-0.6-0.6-1-1.6-1c-0.1,0-0.3,0-0.4,0c-0.4,0-1,0.1-1.6,0.1
|
||||||
|
c-2.3,0-3.5-0.6-3.8-1.6c-0.1-0.5-0.1-1,0.3-1.4c0.5-0.7,1.7-1.1,3.2-1.1c1.2,0,2.7,0.2,4.3,0.7c0.8,0.2,1.6,0.3,2.2,0.3
|
||||||
|
c3.3,0,4.2-2.6,4.2-4c0-1.2-0.5-2.3-1.2-3.1C103.8,45.4,103,45,102.1,45z"/>
|
||||||
|
<path class="st0" d="M9.7,40.8c0.1,0,0.1,0,0.2,0c0.9,0,1.8-0.4,2.4-1.2c0.7-0.9,0.9-2,0.6-3.1c-0.5-2-1.6-3.5-3.6-3.5
|
||||||
|
c-0.5,0-0.9,0.1-1.3,0.3c-0.5,0.3-1.1,1.1-1.3,1.8c-0.4,1.7-0.1,3.2,0.7,4.3C8.2,40.4,8.3,40.7,9.7,40.8z"/>
|
||||||
|
<path class="st0" d="M71.2,7.7L71.2,7.7c1.7,0,2.9-1.3,2.9-2.7c0-1.1,0-2.8-0.7-3.6c-0.6-0.6-1.6-1.1-2.3-1.1h0
|
||||||
|
c-2.2,0-3,1.3-3.1,3.3c0,0.8,0.2,2.2,0.8,2.8C69.5,7.1,70.3,7.7,71.2,7.7z"/>
|
||||||
|
<path class="st0" d="M101.6,96.2c-1.1,0-1.8,0.4-2.4,1.5c-0.6,1.1-0.1,3.1,0.9,3.8c0.6,0.4,0.6,0.6,1.3,0.6c0.9,0,1.2-0.4,1.9-0.9
|
||||||
|
c0.6-0.4,0.8-1,0.8-1.5c0.1-0.9-0.1-1.9-0.6-2.5C103.1,96.5,102.7,96.2,101.6,96.2z"/>
|
||||||
|
<path class="st0" d="M107,34.2c-0.4-0.5-0.7-0.6-1.4-0.6h0c-1.9,0-2.5,1-2.5,2.8c0,0.6,0.2,1.2,0.7,1.7c0.5,0.5,1.1,0.8,1.8,0.8h0
|
||||||
|
c1.5,0,2.1-1.4,2.1-2.8C107.7,35.3,107.5,34.6,107,34.2z"/>
|
||||||
|
<path class="st0" d="M40,8.1C40.1,8.1,40.1,8.1,40,8.1c1.1,0,1.8-1.1,1.9-2.8c0-1.7-0.7-2.6-1.9-2.7c0,0-0.1,0-0.1,0
|
||||||
|
c-1.3,0-2.2,1.1-2.3,2.5C37.6,6.5,38.9,8.1,40,8.1z"/>
|
||||||
|
<path class="st0" d="M26.7,97.5C26.6,97.5,26.6,97.5,26.7,97.5c-1.4,0-2.3,1.1-2.3,2.5c0,1.4,1.3,2.9,2.4,3c0,0,0,0,0.1,0
|
||||||
|
c1.1,0,1.8-1.1,1.8-2.8C28.6,98.5,27.9,97.5,26.7,97.5z"/>
|
||||||
|
<path class="st0" d="M87,7.3c0.1,0,0.3,0,0.4,0c0.5,0,0.7-0.2,1.3-0.6c0.5-0.3,0.7-0.9,0.8-1.3c0.1-0.5,0-1.5-0.4-2.1
|
||||||
|
c-0.5-0.8-0.7-1.1-1.5-1.1c-0.3,0-0.7,0.1-1,0.2c-1,0.4-1.3,1.9-1.2,3C85.5,6.8,86.4,7.2,87,7.3z"/>
|
||||||
|
<path class="st0" d="M2.8,62.7C2.8,62.7,2.7,62.7,2.8,62.7c-0.9,0-1.7,0.5-1.7,1.6c0,1.2,0.7,2.3,1.5,2.4c0.1,0,0.1,0,0.1,0
|
||||||
|
c1,0,1.8-0.6,1.8-1.6C4.6,64,4.1,62.7,2.8,62.7z"/>
|
||||||
|
<path class="st0" d="M88.7,9.9c-0.1,0.6,0.6,1,0.8,1c0.1,0,0.2,0,0.2,0c0.7,0,1-0.4,1.1-1.2c0-0.4-0.1-0.7-0.3-0.9
|
||||||
|
c-0.1-0.2-0.3-0.2-0.5-0.2l0,0C89.7,8.5,88.8,8.6,88.7,9.9z"/>
|
||||||
|
<path class="st0" d="M100,91.6c0-0.8-0.6-1.3-1.2-1.3c-0.1,0-0.1,0-0.2,0c-0.6,0-1.2,0.4-1.4,0.9c-0.2,0.4-0.1,0.9,0.1,1.2
|
||||||
|
c0.3,0.4,0.7,0.6,1.1,0.6l0,0C99.7,92.9,100.1,92.6,100,91.6z"/>
|
||||||
|
</g>
|
||||||
|
<g id="XMLID_8_">
|
||||||
|
<g id="XMLID_9_">
|
||||||
|
<path id="XMLID_20_" class="st1" d="M52,73.7c1.5,1.1,2.8,2.5,4.3,4.3c1.5-1.8,2.8-3.2,4.3-4.3c-1.4-0.3-2.8-0.7-4.3-1.2
|
||||||
|
C54.9,73,53.5,73.4,52,73.7z"/>
|
||||||
|
<path id="XMLID_19_" class="st1" d="M50.3,69.6c-1-0.6-2-1.3-3-2l-0.1,0.1c-0.8,0.2-1.7,0.5-2.8,0.5c-0.5,0-1-0.1-1.5-0.2
|
||||||
|
c0.6,1.3,1.4,1.7,2.3,1.9c0.5,0.1,1.1,0.2,1.8,0.2C48,70.1,49.2,69.9,50.3,69.6z"/>
|
||||||
|
<path id="XMLID_18_" class="st1" d="M47,67.4c-1-0.8-1.9-1.6-2.9-2.5c-1.5,0-3-0.2-4.5-0.4c0.4,1.4,1.1,2,2,2.3
|
||||||
|
C43.1,67.4,45,67.6,47,67.4z"/>
|
||||||
|
<path id="XMLID_17_" class="st1" d="M50.7,69.9c-1.1,0.5-2.3,1-3.9,1c-0.4,0-0.9,0-1.3-0.1c0.9,1.8,4.6,2.3,9.3,1.1
|
||||||
|
C53.5,71.3,52.1,70.7,50.7,69.9z"/>
|
||||||
|
<path id="XMLID_16_" class="st1" d="M43.7,54.2c0,0,2.6-0.1,4.8-0.9c0,0-4.7-1.8-10.4-9.3c-1.7,4.8-2.5,8.3-1.3,15.3
|
||||||
|
c0.8-0.7,2.7-3.1,2.7-3.1c8.1,15.9,25.6,18.6,27.7,14.6c-0.5,0.1-0.9,0.1-1.3,0.1c-1.5-0.1-2.9-0.5-4-1.1c-0.1,0-0.1-0.1-0.1-0.2
|
||||||
|
s0.1-0.1,0.2-0.1c1.3,0.4,2.5,0.6,3.7,0.6c0.6,0,1.2-0.1,1.8-0.2c1-0.2,1.7-0.6,2.3-1.9c-0.5,0.1-1,0.2-1.5,0.2
|
||||||
|
c-1.1,0-2-0.2-2.8-0.5c-0.1,0-0.1-0.1-0.1-0.2s0.1-0.1,0.2-0.1c2.1,0.2,4,0,5.5-0.6c0.9-0.4,1.6-0.9,2-2.3
|
||||||
|
C60.4,66.6,46.9,59.5,43.7,54.2z"/>
|
||||||
|
<path id="XMLID_14_" class="st1" d="M53.3,47.3L53.3,47.3c0.9,0,1.3,0.4,1.4,1.2c-0.1,5.6-1.8,8.3-4.1,10.3c1.3,1.1,3.7,2,5.9,2.6
|
||||||
|
c2.1-0.6,4.6-1.5,5.9-2.6c-2.4-2-4-4.6-4.1-10.3c0-0.9,0.5-1.2,1.4-1.2l0,0c2.4,0,3.8-0.8,3.8-2.7v-1.2L58.3,44c0-0.4,0-1.3,0-1.6
|
||||||
|
c2.6-0.8,4.6-3.2,4.6-6.1c0-3.5-2.8-6.3-6.3-6.3s-6.3,2.8-6.3,6.3c0,2.9,1.9,5.3,4.6,6.1c0,0.3,0,1.3,0,1.6l-5.2-0.6v1.2
|
||||||
|
C49.4,46.5,50.9,47.3,53.3,47.3z M56.4,33.9c1.3,0,2.4,1.1,2.4,2.4c0,1.3-1.1,2.4-2.4,2.4S54,37.6,54,36.3
|
||||||
|
C54,35,55,33.9,56.4,33.9z"/>
|
||||||
|
<g id="XMLID_10_">
|
||||||
|
<path id="XMLID_12_" class="st1" d="M74.6,44c-5.4,7.2-10.4,9.3-10.4,9.3c2.2,0.7,4.8,0.9,4.8,0.9c-1.6,2.6-5.7,5.7-11,7.9
|
||||||
|
c3,1,6.3,1.7,9.7,1.9c2.1-2.1,4-4.7,5.5-7.7c0,0,1.9,2.4,2.7,3.1C77.2,54.2,76.3,48.8,74.6,44z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 10 KiB |
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 108 124" style="enable-background:new 0 0 108 124;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#212121;}
|
||||||
|
.st1{fill:#7BED00;}
|
||||||
|
</style>
|
||||||
|
<path id="XMLID_3_" class="st0" d="M92.6,53.2c0,24.4-14.3,35.4-36.1,36.9c-20.6,1.5-35.8-15.9-35.9-35.7c-0.1-9.2,5-19.8,11.1-27.5
|
||||||
|
c6-7.7,17.4-11.3,25.2-11.1C73.9,16,92.6,33.4,92.6,53.2z"/>
|
||||||
|
<g>
|
||||||
|
<polygon class="st1" points="61.3,38.9 64.1,41.7 57.9,47.9 46.5,59.3 38,67.8 39.9,69.7 47.5,62 48.9,63.4 41.3,71 43.2,72.9
|
||||||
|
50.8,65.3 52.2,66.7 44.5,74.3 46.4,76.2 54.9,67.7 66.3,56.3 72.5,50.1 75.3,52.9 80.4,33.8 "/>
|
||||||
|
<g>
|
||||||
|
<polygon class="st1" points="40.3,50.1 47.3,57.1 55.7,48.7 48.7,41.7 51.5,38.9 32.4,33.8 37.5,52.9 "/>
|
||||||
|
<polygon class="st1" points="57.1,66.9 66.4,76.2 68.3,74.3 60.6,66.7 62,65.3 69.6,72.9 71.5,71 63.9,63.4 65.3,62 72.9,69.7
|
||||||
|
74.8,67.8 65.5,58.5 "/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
|
|
@ -0,0 +1,90 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 108 124" style="enable-background:new 0 0 108 124;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#7BED00;}
|
||||||
|
.st1{fill:#212121;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<path class="st0" d="M102.1,45c-0.8,0-1.6,0.2-2.5,0.7c-1.6,0.9-3.1,1.3-4.4,1.3c-1.2,0-2.3-0.4-3.1-1.2c-0.7-0.7-1.5-2.2-1.1-3.4
|
||||||
|
c0.1-0.5,0.6-1.2,1.7-1.4c1.2-0.2,1.6-0.9,1.5-1.4c0-0.4-0.4-0.8-1.1-0.8c-0.5,0-1.1,0.2-1.7,0.7c-0.3,0.2-0.5,0.3-0.8,0.3
|
||||||
|
c-0.7,0-1.3-0.6-1.4-1.3c0-0.5,0.3-1.1,1.3-1.3c2-0.4,4.6-1.6,5.1-2.9c0.1-0.4,0.1-0.7-0.2-1.1c-0.3-0.4-0.6-0.6-1-0.6
|
||||||
|
c-0.8,0-1.6,0.8-2.5,1.6c-0.7,0.6-1.4,1.3-2.1,1.5c-0.3,0.1-0.7,0.2-1,0.2c-0.7,0-1.4-0.3-1.7-0.7c-0.3-0.3-0.5-0.9-0.2-1.9
|
||||||
|
c0.7-2.7,5.4-5,8.2-6.4c0.6-0.3,1.2-0.6,1.6-0.8c0.8-0.5,1.2-1,1.1-1.6c-0.1-0.5-0.8-1-1.5-1c-0.3,0-0.7,0.1-0.9,0.5
|
||||||
|
c-1.2,2-6.4,5.6-9.4,6.6c-0.2,0.1-0.5,0.1-0.7,0.1c-0.6,0-1.2-0.3-1.5-0.8c-0.3-0.5-0.4-1.2-0.1-1.8c0.5-1,1.3-1.5,2-1.9
|
||||||
|
c0.8-0.4,1.4-0.8,1.7-1.8c0.1-0.5,0.1-0.8-0.2-1.1c-0.2-0.3-0.6-0.5-1.1-0.5c-0.2,0-0.4,0-0.6,0.1c-0.9,0.2-1.2,0.8-1.6,1.4
|
||||||
|
c-0.3,0.5-0.6,1.1-1.3,1.6c-0.3,0.2-0.8,0.4-1.3,0.4c-1,0-2-0.4-2.6-1.1c-0.5-0.5-0.8-1.3-0.8-2c0.1-2.4,4-8,5.7-9.4
|
||||||
|
c1.1-0.9,1.2-2,0.9-2.7c-0.2-0.5-0.5-0.8-0.9-0.8c-0.8,0-1.6,1-2.2,2.7c-2.1,5.5-3.6,9.1-5.8,9.1c-0.3,0-0.7-0.1-1-0.3
|
||||||
|
c-1.4-0.8-1.1-2.1-0.7-3.7l0-0.2c0.2-0.8,0.2-1.4-0.1-1.8c-0.2-0.3-0.6-0.4-0.8-0.4c-0.7,0-1.6,0.5-2.1,1.1
|
||||||
|
c-0.8,1.1-1.9,1.7-3.2,1.7c-1.3,0-2.6-0.7-3.3-1.7c-1.1-1.8,0.2-4.8,1.2-7.1l0.1-0.3c0.3-0.8,0.3-1.4,0-1.8
|
||||||
|
c-0.2-0.3-0.6-0.5-0.9-0.5c-0.3,0-0.6,0.1-0.8,0.4C63.3,8,63.2,8.4,63.2,9c0.2,3.1,0,6.5-3.4,7.7c-0.7,0.2-1.3,0.3-1.9,0.3
|
||||||
|
c-1.3,0-2.1-0.6-2.5-1.1c-0.6-0.7-0.9-1.6-0.7-2.5c0.1-0.5-0.1-1-0.4-1.3c-0.4-0.4-0.9-0.7-1.5-0.7c-0.5,0-0.9,0.2-1.3,0.5
|
||||||
|
c-0.4,0.4-0.6,1-0.5,1.7c0.1,3-1.7,3.8-3.3,4.2C47,17.9,46.5,18,46,18c-1.9,0-3-0.9-3.2-2.5c-0.2-1.6-0.6-2.8-1.2-2.8
|
||||||
|
c-0.1,0-0.1,0-0.2,0c-0.5,0.2-0.5,0.6-0.2,2c0.1,0.3,0.1,0.6,0.2,0.9c0.2,1.2,0.7,3.6-1.6,4.5c-0.4,0.2-0.8,0.2-1.1,0.2
|
||||||
|
c-1.4,0-2.1-1.3-2.9-3.5c-0.8-2.1-2-5.7-4.4-5.7c-0.8,0-1.6,0.4-2.6,1.1c-1.1,0.9-1.7,2.1-1.7,3.6c0,2.4,1.4,5.1,3.7,7.1
|
||||||
|
c1.5,1.2,1.6,2.5,1.5,3.1c-0.1,0.8-0.6,1.4-1.2,1.7c-0.3,0.1-0.5,0.2-0.8,0.2c-1.1,0-1.8-1-2.3-1.8c-1.5-2.3-2.9-3.5-4.1-3.5
|
||||||
|
c-0.2,0-0.5,0.1-0.7,0.2c-0.5,0.2-0.8,0.6-0.8,1c0,0.9,1.2,2.4,3.9,3.6c1.7,0.8,2.6,2,2.7,3.7c0,0.6-0.3,1.3-0.8,1.8
|
||||||
|
c-0.4,0.4-0.9,0.6-1.3,0.6c-0.4,0-1-0.2-1.5-1.1c0-0.1-0.1-0.2-0.1-0.2c-0.6-1.1-1.4-2.5-2.9-2.5c-0.1,0-0.3,0-0.4,0
|
||||||
|
c-1.2,0.2-2.1,1-2.1,2c0,1.1,0.9,2.4,3.5,3.1c0.9,0.2,1.5,0.7,1.8,1.4c0.5,1.3-0.2,2.9-0.7,3.7L24.4,40c-0.5,0.8-1.5,2.4-3.1,2.4
|
||||||
|
c-0.3,0-0.7-0.1-1-0.2c-0.6-0.3-1.2-0.6-1.8-1c-1-0.6-1.9-1.2-2.5-1.2c-0.2,0-0.4,0.1-0.5,0.3c-0.2,0.5-0.2,0.9,0.1,1.3
|
||||||
|
c0.5,0.8,2,1.3,4,1.4c0.7,0,1.4,0.4,1.7,1c0.5,0.9,0.6,2.2,0.1,3.1c-0.4,0.8-0.9,1.1-1.5,1.1c-0.5,0-1-0.3-1.5-0.5
|
||||||
|
c-0.4-0.2-0.9-0.5-1.3-0.5c-0.3,0-0.5,0.1-0.7,0.4c-0.3,0.4-0.4,0.9-0.2,1.4c0.3,0.7,1.2,1.1,2.4,1.1c0.1,0,0.3,0,0.4,0
|
||||||
|
c0,0,0,0,0.1,0c0.8,0,1.2,0.7,1.2,1.4c0,0.7-0.4,1.4-1.5,1.4c-0.4,0-1-0.1-1.6-0.4c-0.9-0.4-2.1-1.1-3.3-1.8
|
||||||
|
c-2.5-1.4-5.5-3.2-7.6-3.7c-0.5-0.2-1.1-0.2-1.6-0.2c-2.4,0-4.1,1.5-4.3,2.8c-0.3,1.8,0.5,3.1,2.2,3.5c0.7,0.2,1.3,0.3,2,0.3
|
||||||
|
c1,0,1.9-0.2,2.7-0.3c0.9-0.2,1.8-0.3,2.8-0.3c0.8,0,1.6,0.1,2.3,0.3c1.7,0.5,1.8,1.2,1.8,1.5c-0.1,0.4-0.5,0.7-1,0.7
|
||||||
|
c-0.7,0-1.2,0.3-1.4,0.7c-0.2,0.4-0.1,1,0.4,1.5c0.3,0.4,0.7,0.5,1.3,0.5c1,0,2.3-0.5,4.2-1.1c0.5-0.2,1-0.3,1.6-0.5
|
||||||
|
c0.2-0.1,0.4-0.1,0.6-0.1c0.9,0,1.5,0.7,1.6,1.7c0,0.9-0.5,1.9-1.6,2c-0.7,0.1-1.7,0.2-2.8,0.3c-1.7,0.2-3.5,0.4-4.3,0.5
|
||||||
|
c-1.7,0.2-3.1,0.8-3.6,1.5c-0.2,0.3-0.2,0.6,0,0.9c0.3,0.7,0.8,1,1.5,1c0.7,0,1.5-0.3,2.4-0.8c1.7-1,5.8-2.2,7.7-2.3
|
||||||
|
c0.1,0,0.1,0,0.2,0c1.7,0,2.8,1.7,3,3.3c0.1,1.4-0.5,2.4-1.5,2.6c-0.1,0-0.3,0-0.5,0c-0.4,0-0.8-0.1-1.2-0.1
|
||||||
|
c-0.4-0.1-0.8-0.1-1.2-0.1c-0.6,0-1.1,0.2-1.4,0.5c-0.4,0.4-0.6,1.3-0.4,2c0.1,0.4,0.4,0.9,1.2,1c0.3,0,0.5,0.1,0.8,0.1
|
||||||
|
c0.8,0,1.2-0.3,1.7-0.6c0.4-0.3,0.9-0.7,1.7-0.7c0.1,0,0.1,0,0.2,0c1.1,0,1.7,0.6,1.7,1.2c0,0.7-0.7,1.6-2.1,1.7
|
||||||
|
c-1.8,0.1-3.2,0.6-3.6,1.3c-0.2,0.3-0.1,0.6,0,0.9c0.2,0.4,0.5,0.5,0.7,0.5c0.5,0,1.1-0.3,1.7-0.7c0.3-0.2,0.7-0.4,1.1-0.6
|
||||||
|
c0.3-0.2,0.7-0.2,1.1-0.2c1.3,0,2.2,0.9,2.5,1.8c0.3,0.8,0.3,1.5-0.1,2.2c-0.4,0.7-1.1,1.3-2.1,1.6c-0.4,0.1-1,0.2-1.8,0.4
|
||||||
|
c-2,0.4-4.7,0.9-5.9,1.8c-1.9,1.4-2.5,3.3-1.6,4.7c0.9,1.4,2.2,1.7,3.1,1.7c1.3,0,2.7-0.7,3.4-1.7c1.8-2.6,4.5-5.2,6.2-6
|
||||||
|
c0.2-0.1,0.5-0.2,0.7-0.2c1.2,0,2.3,1.2,2.5,2.2c0.1,0.6-0.1,1.1-0.7,1.3c-1.1,0.4-1.8,1.1-2,2c-0.1,0.6,0.1,1.2,0.6,1.7
|
||||||
|
c0.3,0.3,0.7,0.5,1.1,0.5c1,0,2.1-0.8,2.3-1.3c0.5-0.8,1-1,1.3-1c0.6,0,1,0.5,1.1,1.3c0.2,1.7-1.2,3.4-2.4,5
|
||||||
|
c-0.6,0.8-1.2,1.5-1.5,2.1c-0.4,0.8-0.2,1.4,0,1.7c0.2,0.4,0.7,0.7,1.1,0.7c0.3,0,0.6-0.2,0.8-0.4c1.2-1.1,1.8-3.6,2.1-4.6l0,0
|
||||||
|
c0.3-0.8,1.1-0.9,1.3,0.3l0,0.4c0.4,3.2,1.2,6.1,3,6.6c4.2,1,2.9,10.6,5.2,18.9c2.8,10.6,12.1,8.4,12.3,0.1
|
||||||
|
c0.5-17.5,3.3-25.4,7.1-11.4c2.9,10.7,16.8,10,16.9-9.1c0-4,0.2-7.6,0.4-10.8c0.2-2.5,1.5-3,2.4-2.3c1,1.1,1.9,2.4,2.6,3.5
|
||||||
|
c0.2,0.4,0.5,0.7,0.7,1c0.1,0.2,0.3,0.4,0.4,0.6c0.9,1.2,2.3,3.3,3,3.3c0.1,0,0.1,0,0.1,0c0.3-0.2,0.4-0.5,0.4-0.8
|
||||||
|
c0-0.5-0.1-1.9-2.3-4c-0.3-0.3-0.7-0.6-1-0.9c-2.1-1.9-3.8-3.6-4.8-4.9c-0.6-0.9-1.1-3,0.4-3.1c1.1,0.2,2,1.8,2.4,2.5
|
||||||
|
c0.5,0.9,1.1,1.7,1.8,1.7c0.1,0,0.3,0,0.4,0c0.2-0.1,0.4-0.2,0.4-0.3c0-0.1-0.2-0.5-0.3-0.7c-0.3-0.4-0.6-1-0.1-1.4
|
||||||
|
c0.2-0.2,0.5-0.3,0.8-0.3c1.2,0,2.5,1.5,3.8,2.8l0.2,0.2c0.2,0.3,0.5,0.5,0.7,0.8c0.9,1,1.9,2.2,2.7,2.2c0.1,0,0.2,0,0.3,0
|
||||||
|
c0.5-0.2,0.8-0.5,0.9-1c0.1-0.8-0.6-2.1-2.9-3.6c-3.3-2.1-6.9-6-6.9-8.5c0-1.3,0.3-2.3,0.8-3c0.6-0.9,1.6-1.3,2.8-1.3
|
||||||
|
c0.2,0,0.3,0,0.5,0c0.9,0.1,1.8,0.6,2.9,1.1c1.4,0.7,3,1.5,5,1.8c0.2,0,0.3,0,0.5,0c1.4,0,2.1-0.9,2.2-1.7c0.1-1-0.5-2.3-2-2.7
|
||||||
|
c-1.6-0.4-2.9-0.6-4-0.7c-1.3-0.2-2.4-0.3-3.7-0.8c-0.8-0.3-1.4-0.9-1.6-1.9c-0.4-1.6,0.2-3.7,0.9-4.5c0.3-0.4,0.8-0.6,1.4-0.6
|
||||||
|
c1.1,0,2.5,0.5,3.9,1.2c0.2,0.1,0.5,0.2,0.7,0.2c1,0,1.9-0.9,1.9-1.7c0-0.6-0.6-1-1.6-1c-0.1,0-0.3,0-0.4,0c-0.4,0-1,0.1-1.6,0.1
|
||||||
|
c-2.3,0-3.5-0.6-3.8-1.6c-0.1-0.5-0.1-1,0.3-1.4c0.5-0.7,1.7-1.1,3.2-1.1c1.2,0,2.7,0.2,4.3,0.7c0.8,0.2,1.6,0.3,2.2,0.3
|
||||||
|
c3.3,0,4.2-2.6,4.2-4c0-1.2-0.5-2.3-1.2-3.1C103.8,45.4,103,45,102.1,45z"/>
|
||||||
|
<path class="st0" d="M9.7,40.8c0.1,0,0.1,0,0.2,0c0.9,0,1.8-0.4,2.4-1.2c0.7-0.9,0.9-2,0.6-3.1c-0.5-2-1.6-3.5-3.6-3.5
|
||||||
|
c-0.5,0-0.9,0.1-1.3,0.3c-0.5,0.3-1.1,1.1-1.3,1.8c-0.4,1.7-0.1,3.2,0.7,4.3C8.2,40.4,8.3,40.7,9.7,40.8z"/>
|
||||||
|
<path class="st0" d="M71.2,7.7L71.2,7.7c1.7,0,2.9-1.3,2.9-2.7c0-1.1,0-2.8-0.7-3.6c-0.6-0.6-1.6-1.1-2.3-1.1h0
|
||||||
|
c-2.2,0-3,1.3-3.1,3.3c0,0.8,0.2,2.2,0.8,2.8C69.5,7.1,70.3,7.7,71.2,7.7z"/>
|
||||||
|
<path class="st0" d="M101.6,96.2c-1.1,0-1.8,0.4-2.4,1.5c-0.6,1.1-0.1,3.1,0.9,3.8c0.6,0.4,0.6,0.6,1.3,0.6c0.9,0,1.2-0.4,1.9-0.9
|
||||||
|
c0.6-0.4,0.8-1,0.8-1.5c0.1-0.9-0.1-1.9-0.6-2.5C103.1,96.5,102.7,96.2,101.6,96.2z"/>
|
||||||
|
<path class="st0" d="M107,34.2c-0.4-0.5-0.7-0.6-1.4-0.6h0c-1.9,0-2.5,1-2.5,2.8c0,0.6,0.2,1.2,0.7,1.7c0.5,0.5,1.1,0.8,1.8,0.8h0
|
||||||
|
c1.5,0,2.1-1.4,2.1-2.8C107.7,35.3,107.5,34.6,107,34.2z"/>
|
||||||
|
<path class="st0" d="M40,8.1C40.1,8.1,40.1,8.1,40,8.1c1.1,0,1.8-1.1,1.9-2.8c0-1.7-0.7-2.6-1.9-2.7c0,0-0.1,0-0.1,0
|
||||||
|
c-1.3,0-2.2,1.1-2.3,2.5C37.6,6.5,38.9,8.1,40,8.1z"/>
|
||||||
|
<path class="st0" d="M26.7,97.5C26.6,97.5,26.6,97.5,26.7,97.5c-1.4,0-2.3,1.1-2.3,2.5c0,1.4,1.3,2.9,2.4,3c0,0,0,0,0.1,0
|
||||||
|
c1.1,0,1.8-1.1,1.8-2.8C28.6,98.5,27.9,97.5,26.7,97.5z"/>
|
||||||
|
<path class="st0" d="M87,7.3c0.1,0,0.3,0,0.4,0c0.5,0,0.7-0.2,1.3-0.6c0.5-0.3,0.7-0.9,0.8-1.3c0.1-0.5,0-1.5-0.4-2.1
|
||||||
|
c-0.5-0.8-0.7-1.1-1.5-1.1c-0.3,0-0.7,0.1-1,0.2c-1,0.4-1.3,1.9-1.2,3C85.5,6.8,86.4,7.2,87,7.3z"/>
|
||||||
|
<path class="st0" d="M2.8,62.7C2.8,62.7,2.7,62.7,2.8,62.7c-0.9,0-1.7,0.5-1.7,1.6c0,1.2,0.7,2.3,1.5,2.4c0.1,0,0.1,0,0.1,0
|
||||||
|
c1,0,1.8-0.6,1.8-1.6C4.6,64,4.1,62.7,2.8,62.7z"/>
|
||||||
|
<path class="st0" d="M88.7,9.9c-0.1,0.6,0.6,1,0.8,1c0.1,0,0.2,0,0.2,0c0.7,0,1-0.4,1.1-1.2c0-0.4-0.1-0.7-0.3-0.9
|
||||||
|
c-0.1-0.2-0.3-0.2-0.5-0.2l0,0C89.7,8.5,88.8,8.6,88.7,9.9z"/>
|
||||||
|
<path class="st0" d="M100,91.6c0-0.8-0.6-1.3-1.2-1.3c-0.1,0-0.1,0-0.2,0c-0.6,0-1.2,0.4-1.4,0.9c-0.2,0.4-0.1,0.9,0.1,1.2
|
||||||
|
c0.3,0.4,0.7,0.6,1.1,0.6l0,0C99.7,92.9,100.1,92.6,100,91.6z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon class="st1" points="61.3,38.9 64.1,41.7 57.9,47.9 46.5,59.3 38,67.8 39.9,69.7 47.5,62 48.9,63.4 41.3,71 43.2,72.9
|
||||||
|
50.8,65.3 52.2,66.7 44.5,74.3 46.4,76.2 54.9,67.7 66.3,56.3 72.5,50.1 75.3,52.9 80.4,33.8 "/>
|
||||||
|
<g>
|
||||||
|
<polygon class="st1" points="40.3,50.1 47.3,57.1 55.7,48.7 48.7,41.7 51.5,38.9 32.4,33.8 37.5,52.9 "/>
|
||||||
|
<polygon class="st1" points="57.1,66.9 66.4,76.2 68.3,74.3 60.6,66.7 62,65.3 69.6,72.9 71.5,71 63.9,63.4 65.3,62 72.9,69.7
|
||||||
|
74.8,67.8 65.5,58.5 "/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 8.5 KiB |
|
|
@ -0,0 +1,19 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 18 18" style="enable-background:new 0 0 18 18;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#FFFFFF;}
|
||||||
|
</style>
|
||||||
|
<g id="XMLID_7_">
|
||||||
|
<path id="XMLID_12_" class="st0" d="M9,0C7.6,0,0.3,7.9,0.8,10c0.3,1,3.2,1.2,3.2,1.2s1,2.2,0.7,3.2c-0.1,0.4-1.4,1.9,0.7,3.2
|
||||||
|
c0,0,1.2-0.7,1.2-2.2c0,0.2-0.1,2.1,1.2,2.6c0,0,1.1-0.2,1.1-2.5c0,2.2,1.1,2.5,1.1,2.5c1.3-0.5,1.2-2.5,1.2-2.6
|
||||||
|
c0.1,1.5,1.2,2.2,1.2,2.2c2-1.3,0.8-2.8,0.7-3.2c-0.3-1.1,0.7-3.2,0.7-3.2s3-0.2,3.2-1.2C17.7,7.9,10.4,0,9,0z M11.2,12.7
|
||||||
|
c-1.4,0-1.5-0.6-2.2-0.6c-0.7,0-0.8,0.6-2.2,0.6c-1.5,0-2.7-1.4-2.7-3.1c0-1.6,1-3.2,3.1-3.1C8.3,6.6,8.6,7.1,9,7.1
|
||||||
|
c0.4,0,0.7-0.4,1.8-0.5c2.1-0.2,3.1,1.4,3.1,3.1C13.9,11.3,12.7,12.7,11.2,12.7z"/>
|
||||||
|
<path id="XMLID_8_" class="st0" d="M11.1,6.9c-0.9,0-1.7,0.6-2.1,1.4C8.6,7.5,7.8,6.9,6.9,6.9C5.7,6.9,4.6,8,4.6,9.4
|
||||||
|
c0,1.4,1,2.5,2.3,2.5c0.9,0,1.7-0.6,2.1-1.4c0.4,0.8,1.2,1.4,2.1,1.4c1.3,0,2.3-1.1,2.3-2.5C13.4,8,12.3,6.9,11.1,6.9z M7.1,9.8
|
||||||
|
c-0.8,0-1.4-0.6-1.4-1.3c0-0.7,0.6-1.3,1.4-1.3c0.8,0,1.4,0.6,1.4,1.3C8.5,9.3,7.9,9.8,7.1,9.8z M10.9,9.8c-0.7,0-1.4-0.6-1.4-1.3
|
||||||
|
c0-0.7,0.6-1.3,1.4-1.3c0.8,0,1.4,0.6,1.4,1.3C12.3,9.3,11.6,9.8,10.9,9.8z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 18.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 26 26" enable-background="new 0 0 26 26" xml:space="preserve">
|
||||||
|
<polygon fill="#DDFF25" points="10.4,23.1 0,12.9 4.7,9.4 10.2,16 18.5,2.9 26,6.3 "/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 437 B |
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="-24 -10 32 32" style="enable-background:new -24 -10 32 32;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#212121;}
|
||||||
|
</style>
|
||||||
|
<g id="XMLID_1_">
|
||||||
|
|
||||||
|
<rect id="XMLID_3_" x="-10.9" y="-9.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 1.9001 7.4145)" class="st0" width="5.8" height="31"/>
|
||||||
|
|
||||||
|
<rect id="XMLID_2_" x="-10.9" y="-9.5" transform="matrix(-0.7074 0.7068 -0.7068 -0.7074 -9.4167 15.8982)" class="st0" width="5.8" height="31"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 736 B |
|
|
@ -0,0 +1,18 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#12CCAD;}
|
||||||
|
</style>
|
||||||
|
<path id="XMLID_16_" class="st0" d="M20.2,1L20.2,1L20.2,1C17.3,0.9,1.3,17,2.4,21.6c0.5,2.1,6.8,2.6,6.8,2.6s2,4.6,1.2,6.8
|
||||||
|
c-0.3,0.9-3,3.9,1.2,6.8l0,0c0,0,2.5-1.4,2.7-4.5c0,0.3-0.3,4.5,2.4,5.6l0,0l0,0c0,0,2.4-0.4,2.5-5.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||||
|
c-0.1,4.7,2.2,5.3,2.2,5.3l0,0l0,0c2.8-0.9,2.7-5.1,2.7-5.4c0,3.1,2.4,4.7,2.4,4.7l0,0c4.4-2.6,1.9-5.8,1.7-6.7
|
||||||
|
c-0.6-2.3,1.7-6.7,1.7-6.7s6.3-0.2,6.9-2.2C38.1,18.1,23.1,1.1,20.2,1z M24,28c-3-0.1-3.2-1.3-4.6-1.4c0,0,0,0,0,0c0,0,0,0,0,0
|
||||||
|
c-1.4,0-1.7,1.2-4.7,1.1c-3.1-0.1-5.6-3.1-5.5-6.7c0.1-3.4,2.4-6.8,6.8-6.3c2.2,0.3,2.8,1.2,3.7,1.2c0.9,0,1.5-0.9,3.7-1
|
||||||
|
c4.5-0.2,6.5,3.2,6.4,6.7C29.8,25.2,27.1,28.1,24,28z"/>
|
||||||
|
<path id="XMLID_12_" class="st0" d="M24.1,15.7c-1.9-0.1-3.6,1.1-4.5,2.8c-0.7-1.8-2.3-3-4.3-3.1c-2.7-0.1-4.9,2.2-5,5
|
||||||
|
c-0.1,2.9,2,5.3,4.7,5.3c1.9,0.1,3.6-1.1,4.5-2.8c0.7,1.8,2.3,3,4.3,3.1c2.7,0.1,4.9-2.2,5-5C28.9,18.1,26.8,15.7,24.1,15.7z
|
||||||
|
M15.6,21.6c-1.6,0-2.8-1.3-2.8-2.8c0-1.5,1.4-2.7,2.9-2.6c1.6,0,2.8,1.3,2.8,2.8C18.5,20.5,17.1,21.7,15.6,21.6z M23.6,21.9
|
||||||
|
c-1.6,0-2.8-1.3-2.8-2.8c0-1.5,1.4-2.7,2.9-2.6c1.6,0,2.8,1.3,2.8,2.8C26.4,20.7,25.1,21.9,23.6,21.9z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
|
|
@ -0,0 +1,18 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#FFFFFF;}
|
||||||
|
</style>
|
||||||
|
<path id="XMLID_16_" class="st0" d="M20.2,1L20.2,1L20.2,1C17.3,0.9,1.3,17,2.4,21.6c0.5,2.1,6.8,2.6,6.8,2.6s2,4.6,1.2,6.8
|
||||||
|
c-0.3,0.9-3,3.9,1.2,6.8l0,0c0,0,2.5-1.4,2.7-4.5c0,0.3-0.3,4.5,2.4,5.6l0,0l0,0c0,0,2.4-0.4,2.5-5.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||||
|
c-0.1,4.7,2.2,5.3,2.2,5.3l0,0l0,0c2.8-0.9,2.7-5.1,2.7-5.4c0,3.1,2.4,4.7,2.4,4.7l0,0c4.4-2.6,1.9-5.8,1.7-6.7
|
||||||
|
c-0.6-2.3,1.7-6.7,1.7-6.7s6.3-0.2,6.9-2.2C38.1,18.1,23.1,1.1,20.2,1z M24,28c-3-0.1-3.2-1.3-4.6-1.4c0,0,0,0,0,0c0,0,0,0,0,0
|
||||||
|
c-1.4,0-1.7,1.2-4.7,1.1c-3.1-0.1-5.6-3.1-5.5-6.7c0.1-3.4,2.4-6.8,6.8-6.3c2.2,0.3,2.8,1.2,3.7,1.2c0.9,0,1.5-0.9,3.7-1
|
||||||
|
c4.5-0.2,6.5,3.2,6.4,6.7C29.8,25.2,27.1,28.1,24,28z"/>
|
||||||
|
<path id="XMLID_12_" class="st0" d="M24.1,15.7c-1.9-0.1-3.6,1.1-4.5,2.8c-0.7-1.8-2.3-3-4.3-3.1c-2.7-0.1-4.9,2.2-5,5
|
||||||
|
c-0.1,2.9,2,5.3,4.7,5.3c1.9,0.1,3.6-1.1,4.5-2.8c0.7,1.8,2.3,3,4.3,3.1c2.7,0.1,4.9-2.2,5-5C28.9,18.1,26.8,15.7,24.1,15.7z
|
||||||
|
M15.6,21.6c-1.6,0-2.8-1.3-2.8-2.8c0-1.5,1.4-2.7,2.9-2.6c1.6,0,2.8,1.3,2.8,2.8C18.5,20.5,17.1,21.7,15.6,21.6z M23.6,21.9
|
||||||
|
c-1.6,0-2.8-1.3-2.8-2.8c0-1.5,1.4-2.7,2.9-2.6c1.6,0,2.8,1.3,2.8,2.8C26.4,20.7,25.1,21.9,23.6,21.9z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
|
|
@ -0,0 +1,71 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 60 32" style="enable-background:new 0 0 60 32;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#FFFFFF;}
|
||||||
|
.st1{fill:url('ico_failure-02c2d2a62de8c67b516a7330c9e979935ef107d98bb3a41d5d4464574b321fa4.svg');}
|
||||||
|
.st2{fill:url('ico_failure-02c2d2a62de8c67b516a7330c9e979935ef107d98bb3a41d5d4464574b321fa4.svg');}
|
||||||
|
.st3{fill:url('ico_failure-02c2d2a62de8c67b516a7330c9e979935ef107d98bb3a41d5d4464574b321fa4.svg');}
|
||||||
|
.st4{fill:url('ico_failure-02c2d2a62de8c67b516a7330c9e979935ef107d98bb3a41d5d4464574b321fa4.svg');}
|
||||||
|
.st5{fill:url('ico_failure-02c2d2a62de8c67b516a7330c9e979935ef107d98bb3a41d5d4464574b321fa4.svg');}
|
||||||
|
</style>
|
||||||
|
<path id="XMLID_7_" class="st0" d="M44.5,19.2l-9-0.6c-0.1,0.1-0.1,0.2-0.2,0.2c-0.6,0.5-4,1.5-2.3,5.6c0,0,2.5,0.1,4.1-2.1
|
||||||
|
c-0.2,0.2-2.4,3.1-0.9,5.2c0,0,1.9,0.8,4.3-2.6c-2.3,3.4-0.9,4.9-0.9,4.9c2.5,0.6,4.4-2.5,4.5-2.7c-1.4,2.3-0.4,4.6-0.4,4.6
|
||||||
|
c4.5,0.2,4.1-3.4,4.4-4.1c0-0.1,0.1-0.2,0.2-0.3L44.5,19.2z"/>
|
||||||
|
<path id="XMLID_6_" class="st0" d="M56.7,1.3C54.6-0.1,35.3,4.2,33.9,8c-0.6,1.8,3.7,5.1,3.7,5.1s-0.1,0.5-0.2,1.1l5,0.3l-2.3-5
|
||||||
|
l3.4-3.2l4,8.5l9.4,0.6L55,19.9l-5.5-0.4l2.1,4.5c0.5-0.4,0.9-0.6,0.9-0.6s4.7,2.8,6.1,1.6C61.8,22.3,58.8,2.8,56.7,1.3z"/>
|
||||||
|
<radialGradient id="XMLID_9_" cx="46.2541" cy="6.3927" r="7.2142" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0.1991" style="stop-color:#6230FF"/>
|
||||||
|
<stop offset="0.3887" style="stop-color:#622DFC"/>
|
||||||
|
<stop offset="0.5381" style="stop-color:#6025F2"/>
|
||||||
|
<stop offset="0.6737" style="stop-color:#5E17E1"/>
|
||||||
|
<stop offset="0.8004" style="stop-color:#5B04CA"/>
|
||||||
|
<stop offset="0.8229" style="stop-color:#5A00C5"/>
|
||||||
|
</radialGradient>
|
||||||
|
<path id="XMLID_5_" class="st1" d="M37.6,5.2c1.5,0.2,1.7,1.7,4.2,1.9c3.4,0.3,2.5-2.3,3.9-2.4c1.3-0.1-0.8,7.1,4,7.2
|
||||||
|
c3.3,0,3.4-4.2,3.1-7c-0.3-2.9,1.5-3.6,2.1-3.8C51.1,1,42.6,2.9,37.6,5.2z"/>
|
||||||
|
<radialGradient id="XMLID_10_" cx="30.9822" cy="10.0617" r="2.9375" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0.1991" style="stop-color:#6230FF"/>
|
||||||
|
<stop offset="0.3887" style="stop-color:#622DFC"/>
|
||||||
|
<stop offset="0.5381" style="stop-color:#6025F2"/>
|
||||||
|
<stop offset="0.6737" style="stop-color:#5E17E1"/>
|
||||||
|
<stop offset="0.8004" style="stop-color:#5B04CA"/>
|
||||||
|
<stop offset="0.8229" style="stop-color:#5A00C5"/>
|
||||||
|
</radialGradient>
|
||||||
|
<path id="XMLID_4_" class="st2" d="M31.7,13c1.4-0.3,2.4-1.7,2.1-3.4c-0.3-1.6-1.3-2.7-3-2.6c-1.5,0.1-2.9,1.8-2.6,3.5
|
||||||
|
C28.4,12.2,30.3,13.3,31.7,13z"/>
|
||||||
|
<radialGradient id="XMLID_11_" cx="19.6129" cy="1.9576" r="1.4382" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0.1991" style="stop-color:#6230FF"/>
|
||||||
|
<stop offset="0.3887" style="stop-color:#622DFC"/>
|
||||||
|
<stop offset="0.5381" style="stop-color:#6025F2"/>
|
||||||
|
<stop offset="0.6737" style="stop-color:#5E17E1"/>
|
||||||
|
<stop offset="0.8004" style="stop-color:#5B04CA"/>
|
||||||
|
<stop offset="0.8229" style="stop-color:#5A00C5"/>
|
||||||
|
</radialGradient>
|
||||||
|
<path id="XMLID_3_" class="st3" d="M20.9,2.6c-0.3,0.8-1,0.9-1.7,0.8c-0.8-0.2-1.2-1-0.8-1.8c0.3-0.8,1.4-1.4,2.1-0.9
|
||||||
|
C21,1.1,21.2,1.8,20.9,2.6z"/>
|
||||||
|
<radialGradient id="XMLID_12_" cx="20.1872" cy="27.8009" r="2.2098" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0.1991" style="stop-color:#6230FF"/>
|
||||||
|
<stop offset="0.3887" style="stop-color:#622DFC"/>
|
||||||
|
<stop offset="0.5381" style="stop-color:#6025F2"/>
|
||||||
|
<stop offset="0.6737" style="stop-color:#5E17E1"/>
|
||||||
|
<stop offset="0.8004" style="stop-color:#5B04CA"/>
|
||||||
|
<stop offset="0.8229" style="stop-color:#5A00C5"/>
|
||||||
|
</radialGradient>
|
||||||
|
<path id="XMLID_2_" class="st4" d="M20.3,29.8c-1.3,0.2-2.1-0.6-2.4-1.6c-0.4-1.2,0.5-2.2,1.8-2.4c1.3-0.2,2.9,0.7,2.9,2.1
|
||||||
|
C22.5,28.9,21.6,29.7,20.3,29.8z"/>
|
||||||
|
<radialGradient id="XMLID_13_" cx="14.1429" cy="14.1912" r="14.0155" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0.1991" style="stop-color:#6230FF"/>
|
||||||
|
<stop offset="0.3887" style="stop-color:#622DFC"/>
|
||||||
|
<stop offset="0.5381" style="stop-color:#6025F2"/>
|
||||||
|
<stop offset="0.6737" style="stop-color:#5E17E1"/>
|
||||||
|
<stop offset="0.8004" style="stop-color:#5B04CA"/>
|
||||||
|
<stop offset="0.8229" style="stop-color:#5A00C5"/>
|
||||||
|
</radialGradient>
|
||||||
|
<path id="XMLID_1_" class="st5" d="M1,10.8c4.3,0.6,6.8-1.3,7.2-4c0.7-4.5,3.7-8.1,7.2-5.7c1.5,1,1.4,3.1-0.4,4.6
|
||||||
|
c-2.6,2.1,1.4,3.6,3.1,1.1c1.6-2.3,3.8-2.4,5.5-1.5c1.5,0.7,2.2,2.9,0.2,4.8c-1,0.9-2.9,0.6-2.3,2.2c0.6,1.6,3.1-0.4,5.5,1.1
|
||||||
|
c1.6,1,1.9,3.3,0.5,4.4c-1.6,1.2-3.1,0.5-4.5-0.2c-1.7-0.9-3.2,1.4-1.1,2c1.8,0.6,4.7,1.5,2.6,4.3c-0.8,1.1-2.8,0.9-4.9-1.3
|
||||||
|
c-0.7-0.8-1.2-1.3-2.4-0.8c-1,0.4-1,1.3-0.7,3.4c0.2,2.1-1.6,3.2-3.3,2.8c-2.4-0.6-3.1-2.5-2.5-4.7c0.5-1.8,0.2-3.6-1.2-3.1
|
||||||
|
c-1.1,0.4-0.1,3.3-1.2,4.5c-1.1,1.1-3.5,0.7-4.4-1.6c-1.2-3.1,1.4-3.9,1.5-7c0-3-3.4-3.2-4.5-3.8C-0.4,11.6-0.2,10.7,1,10.8z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.8 KiB |
|
|
@ -0,0 +1,19 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 22 24" style="enable-background:new 0 0 22 24;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#FF6E00;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<path class="st0" d="M11,0C9.1,0-0.7,10.5,0,13.3c0.4,1.3,4.4,1.5,4.4,1.5s1.3,2.9,0.9,4.3c-0.2,0.6-1.8,2.5,0.9,4.3
|
||||||
|
c0,0,1.5-1,1.6-2.9c0,0.2-0.1,2.8,1.6,3.5c0,0,1.5-0.3,1.5-3.3c0,3,1.5,3.3,1.5,3.3c1.7-0.6,1.6-3.3,1.6-3.5c0.1,2,1.6,2.9,1.6,2.9
|
||||||
|
c2.7-1.7,1.1-3.7,0.9-4.3c-0.4-1.4,0.9-4.3,0.9-4.3s4-0.2,4.4-1.5C22.7,10.5,12.8,0,11,0z M14,17c-1.9,0-2.1-0.8-3-0.8
|
||||||
|
c-0.9,0-1.1,0.8-3,0.8c-2,0-3.6-1.9-3.6-4.1c0-2.2,1.4-4.3,4.2-4.1c1.4,0.1,1.8,0.7,2.4,0.7c0.6,0,0.9-0.6,2.4-0.7
|
||||||
|
c2.8-0.2,4.2,1.9,4.2,4.1C17.6,15.1,16,17,14,17z"/>
|
||||||
|
<path class="st0" d="M13.8,9.2c-1.2,0-2.3,0.8-2.8,1.9C10.5,10,9.4,9.2,8.2,9.2c-1.7,0-3.1,1.5-3.1,3.3c0,1.8,1.4,3.3,3.1,3.3
|
||||||
|
c1.2,0,2.3-0.8,2.8-1.9c0.5,1.1,1.6,1.9,2.8,1.9c1.7,0,3.1-1.5,3.1-3.3C16.9,10.7,15.5,9.2,13.8,9.2z M8.5,13.1
|
||||||
|
c-1,0-1.8-0.8-1.8-1.7c0-0.9,0.8-1.7,1.8-1.7c1,0,1.8,0.8,1.8,1.7C10.3,12.4,9.5,13.1,8.5,13.1z M13.5,13.1c-1,0-1.8-0.8-1.8-1.7
|
||||||
|
c0-0.9,0.8-1.7,1.8-1.7c1,0,1.8,0.8,1.8,1.7C15.4,12.4,14.6,13.1,13.5,13.1z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
|
|
@ -0,0 +1,89 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 74 60" style="enable-background:new 0 0 74 60;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#FFFFFF;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<path id="XMLID_27_" class="st0" d="M64.4,29.4c-0.5,0-1.1,0.2-1.7,0.4c-0.2,0.1-0.4,0.1-0.6,0.2c-0.3,0.1-0.6,0.2-0.8,0.2
|
||||||
|
c-0.5,0-0.8-0.2-1-0.4c-0.6-0.6-0.5-1.8-0.5-3c0-0.6,0.1-1.2,0-1.7c-0.3-1.8-0.8-2.5-1.3-3.2c-0.2-0.2-0.3-0.5-0.5-0.7
|
||||||
|
c-0.3-0.5-0.3-0.9-0.2-1.3c0.2-0.7,0.8-1,1.4-1.3c0.8-0.4,0.9-0.6,0.8-0.8c-0.2-0.5-0.4-0.5-0.5-0.5c-0.3,0-0.7,0.1-1.1,0.3
|
||||||
|
C58,17.8,57.4,18,56.9,18c-0.4,0-0.7-0.1-1-0.3c-1.6-1-2-1.9-2.3-2.7c-0.2-0.7-0.5-1.3-1.4-2c-1.1-0.9-2-1.1-2.6-1.2
|
||||||
|
c-0.6-0.1-1.2-0.3-1.4-1c-0.3-1.2,0.6-1.9,1.3-2.4c0.5-0.3,0.9-0.7,1-1.1c0-0.5-0.1-0.9-0.3-1.1c-0.2-0.2-0.5-0.3-0.8-0.3
|
||||||
|
c-0.6,0-1.4,0.4-1.5,1.2l0,0l0,0c-0.4,2-1.8,2.7-2.9,2.7c-0.6,0-1.1-0.2-1.6-0.5c-1.1-0.7-2.3-1.1-3.5-1.1c-0.6,0-1.1,0.1-1.6,0.3
|
||||||
|
C37.4,8.8,36.6,9,36,9c-0.6,0-1-0.2-1.2-0.5c-0.2-0.2-0.3-0.5-0.2-1.1c0.2-0.6,0.1-1.1-0.1-1.5c-0.2-0.2-0.5-0.4-0.8-0.4
|
||||||
|
c-0.2,0-0.4,0.1-0.5,0.2c-0.1,0.2-0.1,0.4,0,0.6c0.2,0.7,0.4,1.6,0,2.3c-0.4,0.7-1.4,1.2-3.1,1.5c-0.2,0-0.3,0-0.5,0
|
||||||
|
c-1.3,0-1.7-1-2.1-2C27,7.2,26.5,6,24.6,5.8c-0.1,0-0.3,0-0.4,0c-1.3,0-2.6,0.7-3.1,1.7c-0.4,0.9-0.3,1.8,0.5,2.8
|
||||||
|
c0.2,0.3,0.6,0.5,1,0.8c0.6,0.4,1.3,0.9,1.4,1.6c0.1,0.5-0.1,1.1-0.7,1.8c-0.7,0.9-1.5,1.3-2.2,1.3c-0.7,0-1.4-0.4-2.1-1.2
|
||||||
|
c-0.3-0.3-0.6-0.4-0.8-0.4c-0.3,0-0.7,0.2-0.9,0.5c-0.2,0.2-0.4,0.6-0.2,1.2c0.1,0.5,0.6,0.8,1,1.2c0.5,0.4,1,0.7,1.1,1.4
|
||||||
|
c0.1,0.5-0.1,1-0.6,1.6c-1,1.2-1.8,1.8-2.6,1.8c-0.8,0-1.5-0.6-2.1-1.1c-0.5-0.5-1-0.9-1.6-1c-0.1,0-0.2,0-0.3,0
|
||||||
|
c-0.5,0-0.8,0.1-1,0.4c-0.3,0.3-0.3,0.8-0.2,1.5c0.2,1.4,1,2,2.7,2.1c1.2,0.1,1.8,0.3,2.1,0.8c0.4,0.6,0.2,1.3-0.1,2.3
|
||||||
|
c-0.3,0.9-0.6,2.1-0.7,3.6c-0.1,2.1,0.4,3.5,0.8,4.5c0.4,1.1,0.8,2.1-0.3,3.3c-0.8,1-1.8,1.3-2.7,1.6c-0.9,0.2-1.7,0.4-2.3,1.3
|
||||||
|
c-0.4,0.5-0.5,1.3-0.2,1.9c0.3,0.6,0.8,1,1.5,1.1c0.1,0,0.2,0,0.3,0c1,0,1.9-0.7,2.9-1.3c0.9-0.6,1.7-1.1,2.5-1.1c0,0,0.1,0,0.1,0
|
||||||
|
c1.1,0.1,1.4,1.1,1.6,1.9c0.2,0.8,0.4,1.6,1.1,2.3c0.8,0.8,1.2,1.4,1.1,2c-0.1,0.7-0.6,1-1.2,1.4c-0.2,0.1-0.5,0.3-0.7,0.5
|
||||||
|
c-0.6,0.4-0.7,1-0.6,1.2c0.1,0.3,0.3,0.4,0.6,0.4c0.3,0,1.2-0.2,2.3-1.6c0.4-0.6,0.8-0.9,1.3-0.9c0.4,0,0.8,0.3,1.1,0.7
|
||||||
|
c0.6,0.6,1.7,1.7,4.3,2.6c1,0.4,0.8,1.5,0.5,2.4c-0.2,0.8-0.4,1.6,0,2.2c0.2,0.2,0.5,0.4,1,0.4c0.2,0,0.4,0,0.5-0.1
|
||||||
|
c0.2-0.1,0.5-0.2,0.6-0.5c0.1-0.2,0-0.4,0-0.5l-0.1-0.1c-0.3-0.6-1-1.8,0.1-2.7c0.2-0.1,0.4-0.2,0.7-0.2c0.5,0,1.3,0.2,1.9,0.4
|
||||||
|
c0.1,0,0.3,0.1,0.3,0.1c0.6,0.1,1.5,0.2,2.8,0.2c0.6,0,1.2,0,1.7,0c0.5,0,1,0,1.4,0c0.5,0,0.8,0.1,1,0.4c0.4,0.5,0.3,1.2,0.2,2
|
||||||
|
c-0.1,0.6-0.2,1.3,0.1,1.6c0.2,0.2,0.7,0.3,1,0.3l0.1,0c0.2,0,0.4-0.1,0.5-0.2c0.2-0.3,0-1.2-0.1-1.9c-0.2-1.1-0.5-2.4,0.6-2.7
|
||||||
|
c0.2,0,0.4-0.1,0.5-0.1c1,0,1.2,0.9,1.4,1.6c0,0.2,0.1,0.3,0.1,0.5c0.3,1.2,1.2,2.4,2.5,2.4c0.2,0,0.4,0,0.7-0.1
|
||||||
|
c0.6-0.2,1.1-0.7,1.5-1.3c0.3-0.6,0.4-1.2,0.2-1.7c-0.1-0.3-0.4-0.6-0.7-0.8c-0.5-0.5-1.4-1.3-0.5-2.3c0.5-0.5,1.6-1.8,3-1.8
|
||||||
|
c0.5,0,1.2,0.2,1.7,1.1c0.6,0.9,1.8,1.6,2.9,1.6c0.4,0,0.7-0.1,1-0.2c0.7-0.3,1.4-1,1.6-1.8c0.1-0.4,0-0.8-0.4-1.2
|
||||||
|
c-0.3-0.3-0.9-0.3-1.5-0.4c-0.9,0-2.1-0.1-2.7-1.1c-0.6-1.1-0.4-1.5,0.2-2.1c0.4-0.5,1.2-1.2,1.9-3.4c0.5-1.6,2-1.7,3.1-1.7
|
||||||
|
c1.3-0.1,2-0.2,2.3-1.1c0.5-1.4-0.4-2.2-1.3-3c-0.7-0.6-1.4-1.2-1.1-2.1c0.4-1.4,1.1-2,2.4-2c0.4,0,0.8,0,1.4,0.1
|
||||||
|
c0.2,0,0.3,0,0.5,0c0.8,0,1.5-0.3,1.7-0.7c0.2-0.3,0.2-0.7,0-1.2C65.2,29.5,64.8,29.4,64.4,29.4z"/>
|
||||||
|
<path id="XMLID_26_" class="st0" d="M8.3,19.1c0,1.2-1.7,1.8-2.6,1.8c-1.1,0-1.9-0.7-2.2-1.9c-0.3-1.3,1.3-2.5,2.6-2.3
|
||||||
|
C8,17.1,8.3,18.2,8.3,19.1z"/>
|
||||||
|
<path id="XMLID_25_" class="st0" d="M9.3,40.9c0.3,0.5-0.2,1.2-0.6,1.4c-0.4,0.3-1,0.2-1.4-0.2c-0.4-0.5-0.1-1.3,0.5-1.6
|
||||||
|
C8.7,40.2,9.1,40.5,9.3,40.9z"/>
|
||||||
|
<path id="XMLID_24_" class="st0" d="M62.3,42.9c0.3,0.5-0.2,1.2-0.6,1.4c-0.4,0.3-1,0.2-1.4-0.2c-0.4-0.5-0.1-1.3,0.5-1.6
|
||||||
|
C61.6,42.2,62.1,42.5,62.3,42.9z"/>
|
||||||
|
<path id="XMLID_23_" class="st0" d="M63.2,14.8c-0.7,0.5-1.7,0-2-0.4c-0.4-0.5-0.3-1.3,0.2-1.9c0.6-0.7,1.9-0.5,2.3,0.3
|
||||||
|
C64.1,13.7,63.7,14.4,63.2,14.8z"/>
|
||||||
|
<path id="XMLID_22_" class="st0" d="M65.8,17.9c0.3,0.5-0.2,1.2-0.6,1.4c-0.4,0.3-1,0.2-1.4-0.2c-0.4-0.5-0.1-1.3,0.5-1.6
|
||||||
|
C65.1,17.2,65.5,17.5,65.8,17.9z"/>
|
||||||
|
<path id="XMLID_21_" class="st0" d="M52.5,58.8c0.2,0.3-0.1,0.6-0.3,0.7c-0.2,0.1-0.5,0.1-0.7-0.1c-0.2-0.2,0-0.7,0.3-0.8
|
||||||
|
C52.2,58.4,52.4,58.6,52.5,58.8z"/>
|
||||||
|
<path id="XMLID_20_" class="st0" d="M59.5,54.4c0.3,0.6-0.1,1.2-0.5,1.4c-0.4,0.2-0.9,0.1-1.4-0.4c-0.5-0.5-0.2-1.5,0.4-1.6
|
||||||
|
C58.8,53.5,59.2,53.9,59.5,54.4z"/>
|
||||||
|
<path id="XMLID_19_" class="st0" d="M63.6,54.3c0.2,0.4-0.1,0.9-0.4,1.1c-0.3,0.2-0.7,0.1-1-0.3c-0.3-0.4-0.1-1.1,0.3-1.2
|
||||||
|
C63.1,53.6,63.4,54,63.6,54.3z"/>
|
||||||
|
<path id="XMLID_18_" class="st0" d="M9.7,47.2c0.5,0.8-0.2,1.9-0.7,2.1c-0.6,0.4-1.4,0.2-2-0.6c-0.7-0.8-0.3-2.2,0.5-2.4
|
||||||
|
C8.7,46,9.3,46.6,9.7,47.2z"/>
|
||||||
|
<path id="XMLID_17_" class="st0" d="M12.7,16.4c0.3,0.4-0.1,0.9-0.4,1.1c-0.3,0.2-0.7,0.1-1-0.3c-0.4-0.4-0.2-1.1,0.3-1.2
|
||||||
|
C12.2,15.8,12.5,16.1,12.7,16.4z"/>
|
||||||
|
<path id="XMLID_16_" class="st0" d="M23.9,2c0.2,0.8-0.5,1.4-1,1.6c-0.6,0.2-1.2-0.1-1.5-0.8C21,2,21.6,1,22.3,0.9
|
||||||
|
C23.3,0.8,23.7,1.4,23.9,2z"/>
|
||||||
|
<path id="XMLID_15_" class="st0" d="M4.8,35.9c0.5,0.1,0.7,0.7,0.7,1c0,0.4-0.4,0.6-0.9,0.7c-0.6,0-1-0.6-0.9-1
|
||||||
|
C3.9,35.9,4.4,35.8,4.8,35.9z"/>
|
||||||
|
<path id="XMLID_14_" class="st0" d="M1.6,36.1c0.4,0,0.5,0.5,0.5,0.7c0,0.3-0.3,0.5-0.6,0.5c-0.4,0-0.7-0.4-0.6-0.7
|
||||||
|
C1,36.1,1.3,36.1,1.6,36.1z"/>
|
||||||
|
<path id="XMLID_13_" class="st0" d="M45.6,4.8c-1.2,0-1.8-1.7-1.8-2.6c0-1.1,0.7-1.9,1.9-2.2C47-0.2,48.2,1.3,48,2.6
|
||||||
|
C47.6,4.4,46.6,4.8,45.6,4.8z"/>
|
||||||
|
<path id="XMLID_12_" class="st0" d="M53,3.4c-0.5,0.3-1.2-0.2-1.4-0.6c-0.3-0.4-0.2-1,0.2-1.4C52.4,1,53.2,1.4,53.5,2
|
||||||
|
C53.8,2.8,53.4,3.2,53,3.4z"/>
|
||||||
|
<path id="XMLID_11_" class="st0" d="M21.5,55.6c-0.5,0.3-1.2-0.2-1.4-0.6c-0.3-0.4-0.2-1,0.2-1.4c0.5-0.4,1.3-0.1,1.6,0.5
|
||||||
|
C22.2,55,21.9,55.4,21.5,55.6z"/>
|
||||||
|
<path id="XMLID_10_" class="st0" d="M44.8,59.9c-0.3,0.2-0.8-0.2-0.9-0.4c-0.2-0.3-0.1-0.6,0.2-0.9c0.3-0.3,0.9-0.1,1,0.3
|
||||||
|
C45.3,59.5,45.1,59.8,44.8,59.9z"/>
|
||||||
|
<path id="XMLID_9_" class="st0" d="M4.7,45.8c-0.5,0.3-1.2-0.2-1.4-0.6c-0.3-0.4-0.2-1,0.2-1.4c0.5-0.4,1.3-0.1,1.6,0.5
|
||||||
|
C5.4,45.1,5.1,45.5,4.7,45.8z"/>
|
||||||
|
<path id="XMLID_8_" class="st0" d="M16.9,50.6c-0.6,0.3-1.2-0.1-1.4-0.5c-0.2-0.4-0.1-0.9,0.4-1.4c0.5-0.5,1.4-0.2,1.6,0.4
|
||||||
|
C17.7,49.9,17.3,50.4,16.9,50.6z"/>
|
||||||
|
<path id="XMLID_7_" class="st0" d="M72.7,34.7c-0.4,0.2-0.9-0.1-1.1-0.4c-0.2-0.3-0.1-0.7,0.3-1c0.4-0.3,1.1-0.2,1.2,0.3
|
||||||
|
C73.3,34.2,73,34.5,72.7,34.7z"/>
|
||||||
|
<path id="XMLID_6_" class="st0" d="M17.6,10c-0.4,0.3-0.9-0.1-1.1-0.4c-0.2-0.3-0.1-0.7,0.3-1c0.4-0.4,1.1-0.2,1.2,0.3
|
||||||
|
C18.2,9.4,17.9,9.8,17.6,10z"/>
|
||||||
|
<path id="XMLID_5_" class="st0" d="M68.7,16.2c-0.7,0.4-1.5-0.2-1.8-0.6c-0.3-0.5-0.1-1.2,0.5-1.7c0.6-0.6,1.8-0.2,2,0.5
|
||||||
|
C69.7,15.4,69.2,15.9,68.7,16.2z"/>
|
||||||
|
<path id="XMLID_4_" class="st0" d="M30.1,2.5c-0.1,0.5-0.7,0.7-1,0.7c-0.4,0-0.6-0.4-0.7-0.9c0-0.6,0.6-1,1-0.9
|
||||||
|
C30,1.6,30.1,2.1,30.1,2.5z"/>
|
||||||
|
<path id="XMLID_3_" class="st0" d="M27.6,0.8c0,0.4-0.5,0.5-0.7,0.5c-0.3,0-0.5-0.3-0.5-0.6c0-0.4,0.4-0.7,0.7-0.6
|
||||||
|
C27.6,0.2,27.7,0.5,27.6,0.8z"/>
|
||||||
|
<path id="XMLID_2_" class="st0" d="M66.6,23.4c-0.1,0.5-0.7,0.7-1,0.7c-0.4,0-0.6-0.4-0.7-0.9c0-0.6,0.6-1,1-0.9
|
||||||
|
C66.5,22.5,66.6,23,66.6,23.4z"/>
|
||||||
|
<path id="XMLID_1_" class="st0" d="M64.1,21.6c0,0.4-0.5,0.5-0.7,0.5c-0.3,0-0.5-0.3-0.5-0.6c0-0.4,0.4-0.7,0.7-0.6
|
||||||
|
C64.1,21,64.1,21.4,64.1,21.6z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 7.4 KiB |
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#FF6E00;}
|
||||||
|
</style>
|
||||||
|
<path id="XMLID_5_" class="st0" d="M34.1,2H5.9C2.6,2,0,4.6,0,7.8v24.4C0,35.4,2.6,38,5.9,38h28.3c3.2,0,5.9-2.6,5.9-5.9V7.8
|
||||||
|
C40,4.6,37.4,2,34.1,2z M36.1,32.2c0,1.1-0.9,2-2,2H5.9c-1.1,0-2-0.9-2-2V7.8c0-1.1,0.9-2,2-2h28.3c1.1,0,2,0.9,2,2V32.2z"/>
|
||||||
|
<path id="XMLID_4_" class="st0" d="M13.2,19h1.9c0.5,0,1-0.4,1-1v-4.9c0-0.5-0.4-1-1-1h-1.9c-0.5,0-1,0.4-1,1V18
|
||||||
|
C12.2,18.6,12.6,19,13.2,19z"/>
|
||||||
|
<path id="XMLID_3_" class="st0" d="M24.9,19h2c0.5,0,1-0.4,1-1v-4.9c0-0.5-0.4-1-1-1h-2c-0.5,0-1,0.4-1,1V18
|
||||||
|
C23.9,18.6,24.3,19,24.9,19z"/>
|
||||||
|
<path id="XMLID_2_" class="st0" d="M28.2,24.5L26.5,24l-0.2,0c-0.3,0-0.5,0.2-0.7,0.5c0,0-1,2.9-5.6,2.9c-4.6,0-5.6-2.8-5.6-3
|
||||||
|
c-0.1-0.3-0.4-0.5-0.7-0.5l-1.9,0.6c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.2-0.1,0.4,0,0.5c0.1,0.2,1.8,5.1,8.6,5.1
|
||||||
|
c6.9,0,8.6-4.9,8.6-5.1c0.1-0.2,0-0.4,0-0.5C28.5,24.7,28.4,24.6,28.2,24.5z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#FFFFFF;}
|
||||||
|
</style>
|
||||||
|
<path id="XMLID_5_" class="st0" d="M34.1,2H5.9C2.6,2,0,4.6,0,7.8v24.4C0,35.4,2.6,38,5.9,38h28.3c3.2,0,5.9-2.6,5.9-5.9V7.8
|
||||||
|
C40,4.6,37.4,2,34.1,2z M36.1,32.2c0,1.1-0.9,2-2,2H5.9c-1.1,0-2-0.9-2-2V7.8c0-1.1,0.9-2,2-2h28.3c1.1,0,2,0.9,2,2V32.2z"/>
|
||||||
|
<path id="XMLID_4_" class="st0" d="M13.2,19h1.9c0.5,0,1-0.4,1-1v-4.9c0-0.5-0.4-1-1-1h-1.9c-0.5,0-1,0.4-1,1V18
|
||||||
|
C12.2,18.6,12.6,19,13.2,19z"/>
|
||||||
|
<path id="XMLID_3_" class="st0" d="M24.9,19h2c0.5,0,1-0.4,1-1v-4.9c0-0.5-0.4-1-1-1h-2c-0.5,0-1,0.4-1,1V18
|
||||||
|
C23.9,18.6,24.3,19,24.9,19z"/>
|
||||||
|
<path id="XMLID_2_" class="st0" d="M28.2,24.5L26.5,24l-0.2,0c-0.3,0-0.5,0.2-0.7,0.5c0,0-1,2.9-5.6,2.9c-4.6,0-5.6-2.8-5.6-3
|
||||||
|
c-0.1-0.3-0.4-0.5-0.7-0.5l-1.9,0.6c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.2-0.1,0.4,0,0.5c0.1,0.2,1.8,5.1,8.6,5.1
|
||||||
|
c6.9,0,8.6-4.9,8.6-5.1c0.1-0.2,0-0.4,0-0.5C28.5,24.7,28.4,24.6,28.2,24.5z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#FFFFFF;}
|
||||||
|
</style>
|
||||||
|
<g id="XMLID_1_">
|
||||||
|
|
||||||
|
<rect id="XMLID_3_" x="13.1" y="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.0002 -6.6278)" class="st0" width="5.8" height="31"/>
|
||||||
|
|
||||||
|
<rect id="XMLID_2_" x="13.1" y="0.5" transform="matrix(-0.7074 0.7068 -0.7068 -0.7074 38.6262 16.0065)" class="st0" width="5.8" height="31"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 726 B |
|
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||||
|
y="0px" viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#FFFFFF;}
|
||||||
|
</style>
|
||||||
|
<g id="XMLID_4_">
|
||||||
|
<rect id="XMLID_7_" x="3" y="4" class="st0" width="26" height="4"/>
|
||||||
|
<rect id="XMLID_6_" x="3" y="14" class="st0" width="26" height="4"/>
|
||||||
|
<rect id="XMLID_5_" x="3" y="24" class="st0" width="26" height="4"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 645 B |
|
|
@ -0,0 +1,19 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 16.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
|
||||||
|
<svg enable-background="new 0 0 18 20" height="20px" id="レイヤー_1" version="1.1" viewbox="0 0 18 20" width="18px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
|
||||||
|
<g>
|
||||||
|
<path d="M0,7.613c0-0.399,0.337-0.722,0.754-0.722H2.67c0.171,0,0.298-0.078,0.456-0.186
|
||||||
|
c1.22-0.835,2.712-1.324,4.327-1.324c4.115,0,7.453,3.194,7.453,7.134v6.549c0,0.4-0.339,0.725-0.757,0.725h-2.428
|
||||||
|
c-0.419,0-0.759-0.324-0.759-0.725v-6.549c0-1.854-1.569-3.359-3.51-3.359c-1.939,0-3.51,1.505-3.51,3.359v6.549
|
||||||
|
c0,0.4-0.34,0.725-0.759,0.725H0.757C0.34,19.789,0,19.465,0,19.064V7.613z" fill="#FFFFFF"></path>
|
||||||
|
<path d="M2.561,2.312c1.493-0.663,3.156-1.033,4.913-1.033c3.96,0,7.453,1.887,9.567,4.767
|
||||||
|
c0.176,0.238,0.508,0.288,0.743,0.114c0.235-0.178,0.286-0.511,0.111-0.749c-2.312-3.148-6.122-5.199-10.422-5.199
|
||||||
|
c-1.907,0-3.717,0.401-5.343,1.124C1.862,1.455,1.741,1.771,1.86,2.04C1.979,2.312,2.292,2.432,2.561,2.312" fill="#FFFFFF"></path>
|
||||||
|
<path d="M15.45,7.653c-0.162,0-0.323-0.075-0.427-0.216c-1.734-2.346-4.563-3.748-7.57-3.748
|
||||||
|
c-1.344,0-2.64,0.269-3.851,0.799c-0.269,0.117-0.58-0.005-0.698-0.272c-0.116-0.269,0.006-0.58,0.274-0.697
|
||||||
|
C4.524,2.93,5.962,2.632,7.453,2.632c3.341,0,6.489,1.562,8.422,4.178c0.174,0.235,0.123,0.565-0.111,0.74
|
||||||
|
C15.668,7.62,15.558,7.653,15.45,7.653" fill="#FFFFFF"></path>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |